Skip to content

Commit e573154

Browse files
committedMay 21, 2024·
add doxygen dependency and documentation to h files
Signed-off-by: SofiaFaraci <[email protected]>
1 parent 9a96ec2 commit e573154

File tree

6 files changed

+238
-27
lines changed

6 files changed

+238
-27
lines changed
 

‎.github/workflows/deploy.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
# install the dependencies
1717
- name: Install dependencies
1818
run: pip install -r docs/requirements.txt
19+
# install doxygen
20+
- name: Install doxygen
21+
run: sudo apt install doxygen
1922
# build the documentation
2023
- name: Build documentation
2124
run: |

‎code/include/ExtractFromElement.h

+56-6
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,65 @@
1212
#include <algorithm>
1313
#include <vector>
1414

15-
bool getElementAttValue(tinyxml2::XMLElement*, const std::string, std::string& );
15+
/**
16+
* @brief Gets the value of a specific attribute of a given XML element
17+
*
18+
* @param element
19+
* @param attribute
20+
* @param attributeValue
21+
* @return bool
22+
*/
23+
bool getElementAttValue(tinyxml2::XMLElement* element, const std::string attribute, std::string& attributeValue);
1624

17-
bool getElementText(tinyxml2::XMLElement*, std::string& );
25+
/**
26+
* @brief Gets the text of a given XML element
27+
*
28+
* @param element
29+
* @param textValue
30+
* @return bool
31+
*/
32+
bool getElementText(tinyxml2::XMLElement* element, std::string& textValue);
1833

19-
bool findElementByTagAndAttValue(tinyxml2::XMLElement* root, const std::string tag, const std::string, const std::string, tinyxml2::XMLElement*& );
34+
/**
35+
* @brief Find a XML element by tag and attribute name and value
36+
*
37+
* @param root
38+
* @param tag
39+
* @param attributeName
40+
* @param attributeValue
41+
* @param element
42+
* @return true
43+
* @return false
44+
*/
45+
bool findElementByTagAndAttValue(tinyxml2::XMLElement* root, const std::string tag, const std::string attributeName, const std::string attributeValue, tinyxml2::XMLElement*& element);
2046

21-
bool findElementByTag(tinyxml2::XMLElement*, const std::string, tinyxml2::XMLElement*& );
47+
/**
48+
* @brief Find a XML element by tag
49+
*
50+
* @param root
51+
* @param tag
52+
* @param element
53+
* @return true
54+
* @return false
55+
*/
56+
bool findElementByTag(tinyxml2::XMLElement* root, const std::string tag, tinyxml2::XMLElement*& element);
2257

23-
void findElementVectorByTagAndAttribute(tinyxml2::XMLElement*, const std::string, const std::string, std::vector<tinyxml2::XMLElement*>&);
58+
/**
59+
* @brief Find a vector of XML elements by tag and attribute name
60+
*
61+
* @param root
62+
* @param tag
63+
* @param attribute
64+
* @param elementVector
65+
*/
66+
void findElementVectorByTagAndAttribute(tinyxml2::XMLElement* root, const std::string tag, const std::string attribute, std::vector<tinyxml2::XMLElement*>& elementVector);
2467

25-
void findElementVectorByTag(tinyxml2::XMLElement*, const std::string, std::vector<tinyxml2::XMLElement*>&);
68+
/**
69+
* @brief Find a vector of XML elements by tag
70+
*
71+
* @param root
72+
* @param tag
73+
* @param elementVector
74+
*/
75+
void findElementVectorByTag(tinyxml2::XMLElement* root, const std::string tag, std::vector<tinyxml2::XMLElement*>& elementVector);
2676

‎code/include/ExtractFromXML.h

+29-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,34 @@
88
#include "Data.h"
99
#include "ExtractFromElement.h"
1010

11-
bool extractInterfaceName(const std::string, eventDataStr&);
11+
/**
12+
* @brief Extract the interface name from the model file
13+
*
14+
* @param fileName
15+
* @param eventData
16+
* @return bool
17+
*/
18+
bool extractInterfaceName(const std::string fileName, eventDataStr& eventData);
1219

13-
bool extractInterfaceType(const std::string, eventDataStr&);
20+
/**
21+
* @brief Extract the interface data from the interface file
22+
*
23+
* @param fileName
24+
* @param eventData
25+
* @return true
26+
* @return false
27+
*/
28+
bool extractInterfaceType(const std::string fileName, eventDataStr& eventData);
1429

15-
bool extractFromSCXML(tinyxml2::XMLDocument&, const std::string, std::string&, std::vector<tinyxml2::XMLElement*>&, std::vector<tinyxml2::XMLElement*>&);
30+
/**
31+
* @brief Extract data from SCXML file
32+
*
33+
* @param doc
34+
* @param fileName
35+
* @param rootName
36+
* @param elementsTransition
37+
* @param elementsSend
38+
* @return true
39+
* @return false
40+
*/
41+
bool extractFromSCXML(tinyxml2::XMLDocument& doc, const std::string fileName, std::string& rootName, std::vector<tinyxml2::XMLElement*>& elementsTransition, std::vector<tinyxml2::XMLElement*>& elementsSend);

‎code/include/Generator.h

+123-15
Original file line numberDiff line numberDiff line change
@@ -67,37 +67,145 @@ struct topicCodeStr
6767
std::string callbacksCode;
6868
};
6969

70+
/**
71+
* @brief Get component and function data from event name
72+
*
73+
* @param eventData
74+
*/
75+
void getDataFromEvent(eventDataStr& eventData);
7076

71-
void getDataFromEvent(eventDataStr&);
72-
73-
bool getDataFromRootName(const std::string, skillDataStr&);
77+
/**
78+
* @brief Get the skill Data From SCXML Root Name object
79+
*
80+
* @param attributeName
81+
* @param skillData
82+
* @return bool
83+
*/
84+
bool getDataFromRootName(const std::string attributeName, skillDataStr& skillData);
7485

75-
void printEventData(eventDataStr);
86+
/**
87+
* @brief Prints the event data
88+
*
89+
* @param eventData
90+
*/
91+
void printEventData(eventDataStr eventData);
7692

77-
void printSkillData(skillDataStr);
93+
/**
94+
* @brief Prints the skill data
95+
*
96+
* @param skillData
97+
*/
98+
void printSkillData(skillDataStr skillData);
7899

79-
void processEvent(fileDataStr fileData, eventDataStr, const skillDataStr, std::string, hCodeStr&, cppCodeStr&, topicCodeStr&);
100+
/**
101+
* @brief Process the event data
102+
*
103+
* @param eventData
104+
* @param skillData
105+
* @param target
106+
* @param hCode
107+
* @param cppCode
108+
* @param topicCode
109+
*/
110+
void processEvent(fileDataStr fileData, eventDataStr eventData, const skillDataStr skillData, std::string target, hCodeStr& hCode, cppCodeStr& cppCode, topicCodeStr& topicCode);
80111

81-
void getEventsCode(fileDataStr fileData, const std::vector<tinyxml2::XMLElement*>, const std::vector<tinyxml2::XMLElement*>, skillDataStr, hCodeStr&, cppCodeStr&, topicCodeStr&);
112+
/**
113+
* @brief Generate the code for the events
114+
*
115+
* @param elementsTransition
116+
* @param elementsSend
117+
* @param skillData
118+
* @param hCode
119+
* @param cppCode
120+
* @param topicCode
121+
*/
122+
void getEventsCode(fileDataStr fileData, const std::vector<tinyxml2::XMLElement*> elementsTransition, const std::vector<tinyxml2::XMLElement*> elementsSend, skillDataStr skillData, hCodeStr& hCode, cppCodeStr& cppCode, topicCodeStr& topicCode);
82123

83-
void writeHCode(const skillDataStr, hCodeStr&, bool);
124+
/**
125+
* @brief Write the header code
126+
*
127+
* @param skillData
128+
* @param code
129+
* @param datamodel_mode
130+
*/
131+
void writeHCode(const skillDataStr skillData, hCodeStr& code, bool datamodel_mode);
84132

85-
void writeCppCode(const skillDataStr, cppCodeStr&, bool);
133+
/**
134+
* @brief Write the cpp code
135+
*
136+
* @param skillData
137+
* @param code
138+
* @param datamodel_mode
139+
*/
140+
void writeCppCode(const skillDataStr skillData, cppCodeStr& code, bool datamodel_mode);
86141

87-
void writeDataModelHCode(const skillDataStr, hCodeStr&);
142+
/**
143+
* @brief Write the header code for the data model
144+
*
145+
* @param skillData
146+
* @param code
147+
*/
148+
void writeDataModelHCode(const skillDataStr skillData, hCodeStr& code);
88149

89-
void writeDataModelCppCode(const skillDataStr, cppDataModelCodeStr&);
150+
/**
151+
* @brief Write the cpp code for the data model
152+
*
153+
* @param skillData
154+
* @param code
155+
*/
156+
void writeDataModelCppCode(const skillDataStr skillData, cppDataModelCodeStr& code);
90157

91-
void generateDataModelHFile(const std::string, const std::string, hCodeStr);
158+
/**
159+
* @brief Generate the data model header file
160+
*
161+
* @param outputPath
162+
* @param outputFileName
163+
* @param code
164+
*/
165+
void generateDataModelHFile(const std::string outputPath, const std::string outputFileName, hCodeStr code);
92166

93-
void generateDataModelCppFile(const std::string, const std::string, cppDataModelCodeStr);
167+
/**
168+
* @brief Generate the data model cpp file
169+
*
170+
* @param outputPath
171+
* @param outputFileName
172+
* @param code
173+
*/
174+
void generateDataModelCppFile(const std::string outputPath, const std::string outputFileName, cppDataModelCodeStr code);
94175

95-
void generateHFile(const std::string, const std::string, const skillDataStr, hCodeStr);
176+
/**
177+
* @brief Generate the header file
178+
*
179+
* @param outputPath
180+
* @param outputFileName
181+
* @param skillData
182+
* @param code
183+
*/
184+
void generateHFile(const std::string outputPath, const std::string outputFileName, const skillDataStr skillData, hCodeStr code);
96185

97-
void generateCppFile(const std::string, const std::string, const skillDataStr, cppCodeStr);
186+
/**
187+
* @brief Generate the cpp file
188+
*
189+
* @param outputPath
190+
* @param outputFileName
191+
* @param skillData
192+
* @param code
193+
*/
194+
void generateCppFile(const std::string outputPath, const std::string outputFileName, const skillDataStr skillData, cppCodeStr code);
98195

196+
/**
197+
* @brief Print the help message
198+
*
199+
*/
99200
void print_help();
100201

202+
/**
203+
* @brief Generator function
204+
*
205+
* @param fileData
206+
* @return true
207+
* @return false
208+
*/
101209
bool generator(fileDataStr fileData);
102210

103211

‎code/include/utils.h

+21-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,26 @@
99
#include <string>
1010
#include <iostream>
1111

12-
void turnToSnakeCase(const std::string, std::string&);
12+
/**
13+
* @brief Convert string to snake case
14+
*
15+
* @param input
16+
* @param output
17+
*/
18+
void turnToSnakeCase(const std::string input, std::string& output);
1319

14-
void getDataTypePath(const std::string, std::string&);
20+
/**
21+
* @brief Get data type path from data type name (e.g. from "sensor_msgs::msg::BatteryState" to "sensor_msgs/msg/battery_state")
22+
*
23+
* @param input
24+
* @param output
25+
*/
26+
void getDataTypePath(const std::string input, std::string& output);
1527

16-
void getPath(const std::string, std::string&);
28+
/**
29+
* @brief Get the path
30+
*
31+
* @param filePath
32+
* @param output
33+
*/
34+
void getPath(const std::string filePath, std::string& output);

‎code/src/utils.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ void getDataTypePath(const std::string input, std::string& output)
5454
turnToSnakeCase(temp, output);
5555
}
5656

57+
/**
58+
* @brief Get the path
59+
*
60+
* @param filePath
61+
* @param output
62+
*/
5763
void getPath(const std::string filePath, std::string& output) {
5864
// searching for the second to last appearance of '/' to get the path
5965
size_t pos = filePath.find_last_of('/');

0 commit comments

Comments
 (0)