29void scanDir(
const string& folder, vector<string>& totalFiles) {
32 virtual ~ListFilter() {}
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;
43 ListFilter listFilter;
46 FileSystem::getInstance()->list(folder, files, &listFilter);
48 for (
auto fileName: files) {
49 if (StringTools::endsWith(fileName,
".h") ==
true) {
50 totalFiles.push_back(folder +
"/" + fileName);
52 scanDir(folder +
"/" + fileName, totalFiles);
58 vector<string> fileContent;
59 FileSystem::getInstance()->getContentAsStringArray(
".", fileName, fileContent);
62 auto haveMethod =
false;
63 auto hadMethod =
false;
64 auto docLineStartIdx = -1;
65 auto docLineEndIdx = -1;
68 vector<string> newFileContent;
70 for (
auto line: fileContent) {
71 newFileContent.push_back(line);
72 if (haveMethod ==
false) {
73 if (line.find(
"/**") != string::npos) {
74 docLineStartIdx = lineIdx;
82 if (line.find(
"@param ") != string::npos) {
85 if (line.find(
"*/") != string::npos) {
86 docLineEndIdx = lineIdx;
87 if (paramCount == 0) methodCount--;
96 if (line.find(
";") != string::npos || line.find(
"{") != string::npos) {
97 method = StringTools::trim(method);
101 bool paramBegin =
false;
102 bool paramIgnore =
false;
103 auto smallerCount = 0;
104 auto roundBracketCount = 0;
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] ==
'(') {
114 methodName = StringTools::trim(methodName);
117 methodName+= method[i];
120 if (method[i] ==
'<') {
123 if (method[i] ==
'(') {
126 if (method[i] ==
'>') {
129 if (method[i] ==
')') {
132 if (method[i] ==
'=') {
135 if (smallerCount == 0 && roundBracketCount == 0){
136 if (method[i] ==
',') {
137 param = StringTools::trim(param);
138 params.push_back(param);
142 if (paramIgnore ==
false) {
147 if (param.length() > 0) {
148 param = StringTools::trim(param);
149 params.push_back(param);
154 vector<string> paramsFinal;
155 for (
auto param: params) {
158 if (param.length() == 0)
continue;
159 paramsFinal.push_back(param);
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++] +
" ");
169 Console::println(fileName +
": " + methodName +
"(): " +
"Warning: Missing parameter " + to_string(paramIdx));
172 newDoc.push_back(docLine);
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] +
" ");
179 for (
auto i = docLineStartIdx; i <= docLineEndIdx; i++) {
180 newFileContent[i] = newDoc[i - docLineStartIdx];
190 FileSystem::getInstance()->setContentFromStringArray(
".", fileName, newFileContent);
195 Console::println(
string(
"fixdoxygen ") + Version::getVersion());
196 Console::println(Version::getCopyright());
200 Console::println(
"Usage: fixdoxyen path_to_headers");
201 Application::exit(1);
204 auto pathToHeaders = string(argv[1]);
206 Console::println(
"Scanning files");
207 vector<string> files;
210 Console::println(
"Processing files");
211 for (
auto fileName: files) {
Application base class, please make sure to allocate application on heap to have correct application ...
File system singleton class.
const string & nextToken()
void tokenize(const string &str, const string &delimiters)
Tokenize.
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.
File system file name filter interface.
virtual bool accept(const string &path, const string &file)=0
Accept a file.