PackagePath.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package ArmarXCore::core::PackagePath
19  * @author Christian R. G. Dreher <c.dreher@kit.edu>
20  * @date 2020
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 
26 #pragma once
27 
28 
29 // STD/STL
30 #include <exception>
31 #include <filesystem>
32 #include <ostream>
33 #include <string>
34 
35 // ArmarX
36 #include <ArmarXCore/interface/core/PackagePath.h>
37 
38 
39 namespace armarx
40 {
41 
42  class PackageNotFoundException : public std::runtime_error
43  {
44 
45  public:
46 
47  PackageNotFoundException(const std::string& package) :
48  std::runtime_error("Package '" + package + "' could not be found.")
49  {
50  // pass
51  }
52 
53  };
54 
56  {
57 
58  private:
59 
60  data::PackagePath m_pp;
61 
62  public:
63 
64  PackagePath() = default;
65 
66  PackagePath(const std::string& package_name, const std::filesystem::path& rel_path);
67 
68  PackagePath(const data::PackagePath& pp);
69 
70  virtual ~PackagePath();
71 
72  static std::filesystem::path toSystemPath(const data::PackagePath& pp);
73 
74  std::filesystem::path toSystemPath() const;
75 
76  data::PackagePath serialize() const;
77 
78  };
79 
80  std::ostream& operator<<(std::ostream& os, const PackagePath& packagePath);
81 
82 }
armarx::PackageNotFoundException
Definition: PackagePath.h:42
armarx::PackagePath::PackagePath
PackagePath()=default
armarx::PackagePath::serialize
data::PackagePath serialize() const
Definition: PackagePath.cpp:76
armarx::PackageNotFoundException::PackageNotFoundException
PackageNotFoundException(const std::string &package)
Definition: PackagePath.h:47
armarx::PackagePath::~PackagePath
virtual ~PackagePath()
Definition: PackagePath.cpp:47
std
Definition: Application.h:66
armarx::operator<<
std::ostream & operator<<(std::ostream &os, const PythonApplicationManager::Paths &paths)
Definition: PythonApplicationManager.cpp:221
armarx::PackagePath
Definition: PackagePath.h:55
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28
armarx::PackagePath::toSystemPath
std::filesystem::path toSystemPath() const
Definition: PackagePath.cpp:69