StatechartGroup.cpp
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 #include "StatechartGroup.h"
25 
27 
28 #include "StateTreeNode.h"
29 
30 using namespace armarx;
31 
32 StatechartGroup::StatechartGroup(QString groupDefinitionFilePath,
33  QString groupPath,
34  QString name,
35  QString description,
36  QString packageName,
37  const QList<QString>& proxies,
38  bool generateContext,
39  const QMap<QString, QString>& statechartGroupConfigurations,
40  WriteAccess writable)
41 {
42  this->definitionFilePath = groupDefinitionFilePath;
43  this->groupPath = groupPath;
44  this->name = name;
45  this->description = description;
46  this->packageName = packageName;
47  this->proxies = proxies;
48  this->generateContext = generateContext;
49  this->statechartGroupConfigurations = statechartGroupConfigurations;
50  this->writable = writable;
51 }
52 
55 {
56  return rootNode;
57 }
58 
59 QString
61 {
62  return name;
63 }
64 
65 QString
67 {
68  return definitionFilePath;
69 }
70 
71 QString
73 {
74  return groupPath;
75 }
76 
77 std::filesystem::path
79 {
80  return std::filesystem::path(groupPath.toUtf8().data());
81 }
82 
83 std::filesystem::path
85 {
86  return std::filesystem::path(definitionFilePath.toUtf8().data());
87 }
88 
89 QString
91 {
92  return description;
93 }
94 
95 const QMap<QString, QString>&
97 {
98  return statechartGroupConfigurations;
99 }
100 
101 QList<QString>
103 {
104  return proxies;
105 }
106 
107 bool
109 {
110  return generateContext;
111 }
112 
113 void
115 {
116  this->generateContext = generateContext;
117 }
118 
119 bool
121 {
122  return std::filesystem::exists(getBoostGroupPath() / "CMakeLists.txt");
123 }
124 
125 void
127 {
128  this->rootNode = rootNode;
129 }
130 
133 {
134  return rootNode->findNodeByStateName(name);
135 }
136 
137 QVector<StateTreeNodePtr>
139 {
140  QVector<StateTreeNodePtr> result = rootNode->getAllSubNodesRecursively();
141  result.push_front(rootNode);
142  return result;
143 }
144 
145 QVector<statechartmodel::StatePtr>
146 StatechartGroup::getAllStates(bool localOnly) const
147 {
148  return rootNode->getAllStatesRecursively(localOnly);
149 }
150 
151 QString
153 {
154  return packageName;
155 }
156 
157 QString
159 {
160  CMakePackageFinder finder(getPackageName().toStdString());
161  return QString::fromStdString(finder.getPackageDir());
162 }
163 
164 void
165 StatechartGroup::setDescription(const QString& description)
166 {
167  this->description = description;
168 }
169 
170 void
171 StatechartGroup::setProxies(const QList<QString> proxies)
172 {
173  this->proxies = proxies;
174 }
175 
176 void
177 StatechartGroup::setConfigurations(const QMap<QString, QString>& statechartGroupConfigurations)
178 {
179  this->statechartGroupConfigurations = statechartGroupConfigurations;
180 }
181 
184 {
185  return writable;
186 }
armarx::StatechartGroup::getGroupPath
QString getGroupPath() const
Definition: StatechartGroup.cpp:72
armarx::StatechartGroup::contextGenerationEnabled
bool contextGenerationEnabled() const
Definition: StatechartGroup.cpp:108
armarx::StatechartGroup::StatechartGroup
StatechartGroup(QString definitionFilePath, QString groupPath, QString name, QString description, QString packageName, const QList< QString > &proxies, bool generateContext, const QMap< QString, QString > &statechartGroupConfigurations, WriteAccess writable)
Definition: StatechartGroup.cpp:32
armarx::StatechartGroup::existsCMakeLists
bool existsCMakeLists() const
Definition: StatechartGroup.cpp:120
armarx::StateTreeNodePtr
std::shared_ptr< StateTreeNode > StateTreeNodePtr
Definition: StatechartGroupDefs.h:31
armarx::StatechartGroup::WriteAccess
WriteAccess
Definition: StatechartGroup.h:42
armarx::StatechartGroup::getConfigurations
const QMap< QString, QString > & getConfigurations() const
Definition: StatechartGroup.cpp:96
armarx::CMakePackageFinder
The CMakePackageFinder class provides an interface to the CMake Package finder capabilities.
Definition: CMakePackageFinder.h:52
armarx::StatechartGroup::getDefinitionFilePath
QString getDefinitionFilePath() const
Definition: StatechartGroup.cpp:66
armarx::StatechartGroup::getBoostDefinitionFilePath
std::filesystem::path getBoostDefinitionFilePath() const
Definition: StatechartGroup.cpp:84
armarx::StatechartGroup::getWriteAccess
WriteAccess getWriteAccess()
Definition: StatechartGroup.cpp:183
armarx::StatechartGroup::getName
QString getName() const
Definition: StatechartGroup.cpp:60
armarx::StatechartGroup::getBoostGroupPath
std::filesystem::path getBoostGroupPath() const
Definition: StatechartGroup.cpp:78
armarx::StatechartGroup::getRootNode
StateTreeNodePtr getRootNode()
Definition: StatechartGroup.cpp:54
armarx::StatechartGroup::getDescription
QString getDescription() const
Definition: StatechartGroup.cpp:90
armarx::StatechartGroup::getProxies
QList< QString > getProxies() const
Definition: StatechartGroup.cpp:102
armarx::StatechartGroup::getAllNodes
QVector< StateTreeNodePtr > getAllNodes() const
Definition: StatechartGroup.cpp:138
armarx::StatechartGroup::findNodeByStateName
StateTreeNodePtr findNodeByStateName(QString name)
Definition: StatechartGroup.cpp:132
armarx::CMakePackageFinder::getPackageDir
std::string getPackageDir() const
Returns the top level path of a source package.
Definition: CMakePackageFinder.h:156
armarx::StatechartGroup::setConfigurations
void setConfigurations(const QMap< QString, QString > &statechartGroupConfigurations)
Definition: StatechartGroup.cpp:177
armarx::StatechartGroup::getPackageName
QString getPackageName() const
Definition: StatechartGroup.cpp:152
StatechartGroup.h
armarx::StatechartGroup::setDescription
void setDescription(const QString &description)
Definition: StatechartGroup.cpp:165
armarx::StatechartGroup::getPackagePath
QString getPackagePath() const
Definition: StatechartGroup.cpp:158
armarx::StatechartGroup::setRootNode
void setRootNode(StateTreeNodePtr rootNode)
Definition: StatechartGroup.cpp:126
CMakePackageFinder.h
armarx::StatechartGroup::getAllStates
QVector< statechartmodel::StatePtr > getAllStates(bool localOnly=true) const
Definition: StatechartGroup.cpp:146
StateTreeNode.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::StatechartGroup::setContextGeneration
void setContextGeneration(bool generateContext)
Definition: StatechartGroup.cpp:114
armarx::StatechartGroup::setProxies
void setProxies(const QList< QString > proxies)
Definition: StatechartGroup.cpp:171