TDME2 1.9.121
sortincludes-main.cpp
Go to the documentation of this file.
1#include <algorithm>
2#include <string>
3#include <vector>
4
5#include <tdme/tdme.h>
8#include <tdme/math/Math.h>
17
18using std::sort;
19using std::string;
20using std::to_string;
21using std::unique;
22using std::vector;
23
35
36void scanDir(const string& folder, vector<string>& totalFiles) {
37 class ListFilter : public virtual FileNameFilter {
38 public:
39 virtual ~ListFilter() {}
40
41 bool accept(const string& pathName, const string& fileName) override {
42 if (fileName == ".") return false;
43 if (fileName == "..") return false;
44 if (FileSystem::getInstance()->isPath(pathName + "/" + fileName) == true) return true;
45 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".h") == true) return true;
46 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".cpp") == true) return true;
47 return false;
48 }
49 };
50
51 ListFilter listFilter;
52 vector<string> files;
53
54 FileSystem::getInstance()->list(folder, files, &listFilter);
55
56 for (auto fileName: files) {
57 if (StringTools::endsWith(fileName, ".h") == true ||
58 StringTools::endsWith(fileName, ".cpp") == true) {
59 totalFiles.push_back(folder + "/" + fileName);
60 } else {
61 scanDir(folder + "/" + fileName, totalFiles);
62 }
63 }
64}
65
66static int string_compare(const string& lhs, const string& rhs) {
67 if (StringTools::startsWith(lhs, "#include <tdme/tdme.h>") == true) return true; else
68 if (StringTools::startsWith(rhs, "#include <tdme/tdme.h>") == true) return false;
69 auto charCount = Math::min((int32_t)lhs.size(), (int32_t)rhs.size());
70 for (auto i = 0; i < charCount; i++) {
71 if (lhs[i] == rhs[i]) {
72 // no op
73 } else {
74 auto charLHS = lhs[i];
75 auto charLCLHS = Character::toLowerCase(lhs[i]);
76 auto charLHSLowerCase = charLHS == charLCLHS;
77 auto charRHS = rhs[i];
78 auto charLCRHS = Character::toLowerCase(rhs[i]);
79 auto charRHSLowerCase = charRHS == charLCRHS;
80 if (charLHSLowerCase == true && charRHSLowerCase == false) {
81 return true;
82 } else
83 if (charLHSLowerCase == false && charRHSLowerCase == true) {
84 return false;
85 } else {
86 return lhs < rhs;
87 }
88 }
89 }
90 return lhs.size() < rhs.size();
91}
92
93void processFile(const string& fileName) {
94 Console::println("Processing file: " + fileName);
95 vector<string> fileContent;
96 FileSystem::getInstance()->getContentAsStringArray(".", fileName, fileContent);
97 vector<string> newFileContent;
98 string method = "";
99 auto headerFile = StringTools::endsWith(StringTools::toLowerCase(fileName), ".h");
100 auto hadTDMEHInclude = false;
101 auto firstTDMEIncludeLineIdx = -1;
102 auto secondTDMEIncludeLineIdx = -1;
103 {
104 auto startLineIdx = -1;
105 auto endLineIdx = -1;
106 auto lineIdx = 0;
107 for (auto line: fileContent) {
108 newFileContent.push_back(line);
109 if (StringTools::startsWith(line, "#include ") == true) {
110 if (startLineIdx == -1) {
111 startLineIdx = lineIdx;
112 endLineIdx = lineIdx;
113 } else {
114 endLineIdx = lineIdx;
115 }
116 if (hadTDMEHInclude == false) hadTDMEHInclude = StringTools::trim(line) == "#include <tdme/tdme.h>";
117 } else
118 if (startLineIdx != -1 && endLineIdx != -1) {
119 sort(newFileContent.begin() + startLineIdx, newFileContent.begin() + endLineIdx + 1, string_compare);
120 startLineIdx = -1;
121 endLineIdx = -1;
122 }
123 if (StringTools::startsWith(StringTools::trim(line), "#include <tdme/") == true) {
124 if (firstTDMEIncludeLineIdx == -1) firstTDMEIncludeLineIdx = lineIdx; else
125 if (secondTDMEIncludeLineIdx == -1) secondTDMEIncludeLineIdx = lineIdx;
126 }
127 lineIdx++;
128 }
129 }
130 if (hadTDMEHInclude == false && firstTDMEIncludeLineIdx != -1) {
131 newFileContent.insert(
132 newFileContent.begin() + (headerFile == true?firstTDMEIncludeLineIdx:(secondTDMEIncludeLineIdx != -1?secondTDMEIncludeLineIdx:firstTDMEIncludeLineIdx)),
133 "#include <tdme/tdme.h>"
134 );
135 }
136 fileContent = newFileContent;
137 newFileContent.clear();
138 {
139 auto startLineIdx = -1;
140 auto endLineIdx = -1;
141 auto lineIdx = 0;
142 for (auto line: fileContent) {
143 newFileContent.push_back(line);
144 if (StringTools::startsWith(line, "using ") == true) {
145 if (startLineIdx == -1) {
146 startLineIdx = lineIdx;
147 endLineIdx = lineIdx;
148 } else {
149 endLineIdx = lineIdx;
150 }
151 } else
152 if (startLineIdx != -1 && endLineIdx != -1) {
153 sort(newFileContent.begin() + startLineIdx, newFileContent.begin() + endLineIdx + 1, string_compare);
154 startLineIdx = -1;
155 endLineIdx = -1;
156 }
157 lineIdx++;
158 }
159 }
160 fileContent = newFileContent;
161 newFileContent.clear();
162 {
163 string lastLine;
164 for (auto line: fileContent) {
165 if ((StringTools::startsWith(line, "using ") == true || StringTools::startsWith(line, "#include ")) && line == lastLine) {
166 lastLine = line;
167 continue;
168 }
169 newFileContent.push_back(line);
170 lastLine = line;
171 }
172 }
173 FileSystem::getInstance()->setContentFromStringArray(".", fileName, newFileContent);
174}
175
176int main(int argc, char** argv)
177{
178 Console::println(string("sortincludes ") + Version::getVersion());
179 Console::println(Version::getCopyright());
180 Console::println();
181
182 if (argc != 2) {
183 Console::println("Usage: sortincludes path_to_source");
184 Application::exit(1);
185 }
186
187 auto pathToSource = string(argv[1]);
188
189 Console::println("Scanning files");
190 vector<string> files;
191 scanDir(pathToSource, files);
192
193 Console::println("Processing files");
194 for (auto fileName: files) {
195 processFile(fileName);
196 }
197}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Standard math functions.
Definition: Math.h:21
File system singleton class.
Definition: FileSystem.h:14
Character class.
Definition: Character.h:15
Console class.
Definition: Console.h:26
String tokenizer class.
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
int main(int argc, char **argv)
void scanDir(const string &folder, vector< string > &totalFiles)
void processFile(const string &fileName)
static int string_compare(const string &lhs, const string &rhs)
File system file name filter interface.
virtual bool accept(const string &path, const string &file)=0
Accept a file.