GroupXmlReader.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
19  * @author
20  * @date
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 #pragma once
26 
27 #include <filesystem>
28 
31 
32 #include "../StateBase.h"
34 
35 namespace armarx
36 {
38  {
39  public:
41  {
44  };
45 
46  StatechartGroupXmlReader(const StatechartProfilePtr& selectedProfile);
47 
48  void readXml(const std::filesystem::path& groupDefinitionFile);
49  //void readXml(const std::string &groupDefinitionXMLString);
50  void readXml(RapidXmlReaderPtr reader);
51 
52  std::filesystem::path getGroupDefinitionFilePath() const;
53 
54  std::string
55  getGroupName() const
56  {
57  return groupName;
58  }
59 
60  std::vector<std::string>
62  {
63  return allstateFilePaths;
64  }
65 
66  std::string getDescription() const;
67  std::string getPackageName() const;
68  bool contextGenerationEnabled() const;
69  StateVisibility getStateVisibility(const std::string& filepath) const;
70  int getStateNestingLevel(std::string filepath) const;
71  std::vector<std::string> getProxies() const;
72 
74 
75  std::string getConfigurationFileContent() const;
76 
77  private:
78  void
79  ReadChildren(RapidXmlReaderNode xmlNode, const std::filesystem::path& path, int nesting);
80  std::vector<std::string> allstateFilePaths;
81  std::filesystem::path basePath;
82  std::filesystem::path groupDefinitionFile;
83  std::string groupName;
84  std::string packageName;
85  std::string description;
86  bool generateContext;
87  std::vector<std::string> proxies;
88  std::map<std::string, StateVisibility> stateVisibilityMap;
89  std::map<std::string, int> stateNestingMap;
90  StatechartProfilePtr selectedProfile;
91  std::map<std::string, std::string> profileConfigurations;
92  };
93 
94  using StatechartGroupXmlReaderPtr = std::shared_ptr<StatechartGroupXmlReader>;
95 } // namespace armarx
armarx::RapidXmlReaderPtr
std::shared_ptr< RapidXmlReader > RapidXmlReaderPtr
Definition: RapidXmlReader.h:67
armarx::StatechartGroupXmlReader::getConfigurationFileContent
std::string getConfigurationFileContent() const
Definition: GroupXmlReader.cpp:185
armarx::StatechartGroupXmlReader::getStateNestingLevel
int getStateNestingLevel(std::string filepath) const
Definition: GroupXmlReader.cpp:150
armarx::StatechartGroupXmlReader::ePublic
@ ePublic
Definition: GroupXmlReader.h:43
armarx::StatechartGroupXmlReader::StateVisibility
StateVisibility
Definition: GroupXmlReader.h:40
armarx::StatechartProfilePtr
std::shared_ptr< class StatechartProfile > StatechartProfilePtr
Definition: StatechartContext.h:51
armarx::StatechartGroupXmlReader::ePrivate
@ ePrivate
Definition: GroupXmlReader.h:42
armarx::StatechartGroupXmlReader::StatechartGroupXmlReader
StatechartGroupXmlReader(const StatechartProfilePtr &selectedProfile)
Definition: GroupXmlReader.cpp:41
armarx::StatechartGroupXmlReader::readXml
void readXml(const std::filesystem::path &groupDefinitionFile)
Definition: GroupXmlReader.cpp:47
armarx::StatechartGroupXmlReader::contextGenerationEnabled
bool contextGenerationEnabled() const
Definition: GroupXmlReader.cpp:131
armarx::StatechartGroupXmlReaderPtr
std::shared_ptr< StatechartGroupXmlReader > StatechartGroupXmlReaderPtr
Definition: GroupXmlReader.h:94
armarx::StatechartGroupXmlReader::getStateFilepaths
std::vector< std::string > getStateFilepaths() const
Definition: GroupXmlReader.h:61
armarx::StatechartGroupXmlReader::getGroupName
std::string getGroupName() const
Definition: GroupXmlReader.h:55
armarx::StatechartGroupXmlReader::getDescription
std::string getDescription() const
Definition: GroupXmlReader.cpp:216
armarx::StatechartGroupXmlReader::getStateVisibility
StateVisibility getStateVisibility(const std::string &filepath) const
Definition: GroupXmlReader.cpp:137
StatechartProfiles.h
armarx::RapidXmlReaderNode
Definition: RapidXmlReader.h:69
armarx::StatechartGroupXmlReader
Definition: GroupXmlReader.h:37
armarx::StatechartGroupXmlReader::getSelectedProfile
StatechartProfilePtr getSelectedProfile() const
Definition: GroupXmlReader.cpp:179
armarx::StatechartGroupXmlReader::getProxies
std::vector< std::string > getProxies() const
Definition: GroupXmlReader.cpp:173
armarx::StatechartGroupXmlReader::getGroupDefinitionFilePath
std::filesystem::path getGroupDefinitionFilePath() const
Definition: GroupXmlReader.cpp:95
RapidXmlReader.h
rapidxml.hpp
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::StatechartGroupXmlReader::getPackageName
std::string getPackageName() const
Definition: GroupXmlReader.cpp:124