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 namespace armarx
39 {
40 
41  class PackageNotFoundException : public std::runtime_error
42  {
43 
44  public:
45  PackageNotFoundException(const std::string& package) :
46  std::runtime_error("Package '" + package + "' could not be found.")
47  {
48  // pass
49  }
50  };
51 
53  {
54 
55  private:
56  data::PackagePath m_pp;
57 
58  public:
59  PackagePath() = default;
60 
61  PackagePath(const std::string& package_name, const std::filesystem::path& rel_path);
62 
63  PackagePath(const data::PackagePath& pp);
64 
65  virtual ~PackagePath();
66 
67  static std::filesystem::path toSystemPath(const data::PackagePath& pp);
68 
69  std::filesystem::path toSystemPath() const;
70 
71  data::PackagePath serialize() const;
72  };
73 
74  std::ostream& operator<<(std::ostream& os, const PackagePath& packagePath);
75 
76 } // namespace armarx
armarx::PackageNotFoundException
Definition: PackagePath.h:41
armarx::PackagePath::PackagePath
PackagePath()=default
armarx::PackagePath::serialize
data::PackagePath serialize() const
Definition: PackagePath.cpp:67
armarx::PackageNotFoundException::PackageNotFoundException
PackageNotFoundException(const std::string &package)
Definition: PackagePath.h:45
armarx::PackagePath::~PackagePath
virtual ~PackagePath()
Definition: PackagePath.cpp:42
std
Definition: Application.h:66
armarx::operator<<
std::ostream & operator<<(std::ostream &os, const PythonApplicationManager::Paths &paths)
Definition: PythonApplicationManager.cpp:285
armarx::PackagePath
Definition: PackagePath.h:52
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::PackagePath::toSystemPath
std::filesystem::path toSystemPath() const
Definition: PackagePath.cpp:61