TDME2 1.9.121
fixdoxygen-main.cpp
Go to the documentation of this file.
1#include <string>
2#include <vector>
3
4#include <tdme/tdme.h>
14
15using std::string;
16using std::to_string;
17using std::vector;
18
28
29void scanDir(const string& folder, vector<string>& totalFiles) {
30 class ListFilter : public virtual FileNameFilter {
31 public:
32 virtual ~ListFilter() {}
33
34 bool accept(const string& pathName, const string& fileName) override {
35 if (fileName == ".") return false;
36 if (fileName == "..") return false;
37 if (FileSystem::getInstance()->isPath(pathName + "/" + fileName) == true) return true;
38 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".h") == true) return true;
39 return false;
40 }
41 };
42
43 ListFilter listFilter;
44 vector<string> files;
45
46 FileSystem::getInstance()->list(folder, files, &listFilter);
47
48 for (auto fileName: files) {
49 if (StringTools::endsWith(fileName, ".h") == true) {
50 totalFiles.push_back(folder + "/" + fileName);
51 } else {
52 scanDir(folder + "/" + fileName, totalFiles);
53 }
54 }
55}
56
57void processFile(const string& fileName) {
58 vector<string> fileContent;
59 FileSystem::getInstance()->getContentAsStringArray(".", fileName, fileContent);
60 auto methodCount = 0;
61 auto paramCount = 0;
62 auto haveMethod = false;
63 auto hadMethod = false;
64 auto docLineStartIdx = -1;
65 auto docLineEndIdx = -1;
66 auto lineIdx = 0;
67 vector<string> doc;
68 vector<string> newFileContent;
69 string method = "";
70 for (auto line: fileContent) {
71 newFileContent.push_back(line);
72 if (haveMethod == false) {
73 if (line.find("/**") != string::npos) {
74 docLineStartIdx = lineIdx;
75 doc.push_back(line);
76 haveMethod = true;
77 methodCount++;
78 paramCount = 0;
79 }
80 } else {
81 doc.push_back(line);
82 if (line.find("@param ") != string::npos) {
83 paramCount++;
84 }
85 if (line.find("*/") != string::npos) {
86 docLineEndIdx = lineIdx;
87 if (paramCount == 0) methodCount--;
88 haveMethod = false;
89 hadMethod = true;
90 lineIdx++;
91 continue;
92 }
93 }
94 if (hadMethod) {
95 method+= line;
96 if (line.find(";") != string::npos || line.find("{") != string::npos) {
97 method = StringTools::trim(method);
98 // parse parameter names
99 if (paramCount > 0) {
100 // Console::println(fileName + ": " + method + ": " + to_string(paramCount) + " / " + to_string(docLineStartIdx) + " - " + to_string(docLineEndIdx));
101 bool paramBegin = false;
102 bool paramIgnore = false;
103 auto smallerCount = 0;
104 auto roundBracketCount = 0;
105 string methodName;
106 string param;
107 vector<string> params;
108 for (auto i = 0; i < method.length() && method[i] != ';' && method[i] != '{' && roundBracketCount >= 0; i++) {
109 if (paramBegin == false) {
110 if (method[i] == '(') {
112 t.tokenize(methodName, "\t\n ");
113 while (t.hasMoreTokens() == true) methodName = t.nextToken();
114 methodName = StringTools::trim(methodName);
115 paramBegin = true;
116 } else {
117 methodName+= method[i];
118 }
119 } else
120 if (method[i] == '<') {
121 smallerCount++;
122 } else
123 if (method[i] == '(') {
124 roundBracketCount++;
125 } else
126 if (method[i] == '>') {
127 smallerCount--;
128 } else
129 if (method[i] == ')') {
130 roundBracketCount--;
131 } else
132 if (method[i] == '=') {
133 paramIgnore = true;
134 } else
135 if (smallerCount == 0 && roundBracketCount == 0){
136 if (method[i] == ',') {
137 param = StringTools::trim(param);
138 params.push_back(param);
139 param = "";
140 paramIgnore = false;
141 } else
142 if (paramIgnore == false) {
143 param+= method[i];
144 }
145 }
146 }
147 if (param.length() > 0) {
148 param = StringTools::trim(param);
149 params.push_back(param);
150 param = "";
151 }
152 auto i = 0;
154 vector<string> paramsFinal;
155 for (auto param: params) {
156 t.tokenize(param, " ");
157 while (t.hasMoreTokens() == true) param = t.nextToken();
158 if (param.length() == 0) continue;
159 paramsFinal.push_back(param);
160 }
161 auto paramIdx = 0;
162 vector<string> newDoc;
163 for (auto docLine: doc) {
164 size_t docLineParamIdx = docLine.find("@param ");
165 if (docLineParamIdx != string::npos) {
166 if (paramIdx < paramsFinal.size()) {
167 docLine.insert(docLineParamIdx + 7, paramsFinal[paramIdx++] + " ");
168 } else {
169 Console::println(fileName + ": " + methodName + "(): " + "Warning: Missing parameter " + to_string(paramIdx));
170 }
171 }
172 newDoc.push_back(docLine);
173 }
174 if (paramIdx != paramsFinal.size()) {
175 Console::println(fileName + ": " + methodName + "(): " + "Warning: Having extra parameter: ");
176 for (auto i = paramIdx; i < paramsFinal.size(); i++) Console::print(paramsFinal[i] + " ");
177 Console::println();
178 }
179 for (auto i = docLineStartIdx; i <= docLineEndIdx; i++) {
180 newFileContent[i] = newDoc[i - docLineStartIdx];
181 }
182 }
183 hadMethod = false;
184 doc.clear();
185 method = "";
186 }
187 }
188 lineIdx++;
189 }
190 FileSystem::getInstance()->setContentFromStringArray(".", fileName, newFileContent);
191}
192
193int main(int argc, char** argv)
194{
195 Console::println(string("fixdoxygen ") + Version::getVersion());
196 Console::println(Version::getCopyright());
197 Console::println();
198
199 if (argc != 2) {
200 Console::println("Usage: fixdoxyen path_to_headers");
201 Application::exit(1);
202 }
203
204 auto pathToHeaders = string(argv[1]);
205
206 Console::println("Scanning files");
207 vector<string> files;
208 scanDir(pathToHeaders, files);
209
210 Console::println("Processing files");
211 for (auto fileName: files) {
212 processFile(fileName);
213 }
214}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
String tokenizer class.
void tokenize(const string &str, const string &delimiters)
Tokenize.
String tools class.
Definition: StringTools.h:20
int main(int argc, char **argv)
void scanDir(const string &folder, vector< string > &totalFiles)
void processFile(const string &fileName)
std::exception Exception
Exception base class.
Definition: Exception.h:19
File system file name filter interface.
virtual bool accept(const string &path, const string &file)=0
Accept a file.