36void scanDir(
const string& folder, vector<string>& totalFiles) {
39 virtual ~ListFilter() {}
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;
51 ListFilter listFilter;
54 FileSystem::getInstance()->list(folder, files, &listFilter);
56 for (
auto fileName: files) {
57 if (StringTools::endsWith(fileName,
".h") ==
true ||
58 StringTools::endsWith(fileName,
".cpp") ==
true) {
59 totalFiles.push_back(folder +
"/" + fileName);
61 scanDir(folder +
"/" + fileName, totalFiles);
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]) {
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) {
83 if (charLHSLowerCase ==
false && charRHSLowerCase ==
true) {
90 return lhs.size() < rhs.size();
94 Console::println(
"Processing file: " + fileName);
95 vector<string> fileContent;
96 FileSystem::getInstance()->getContentAsStringArray(
".", fileName, fileContent);
97 vector<string> newFileContent;
99 auto headerFile = StringTools::endsWith(StringTools::toLowerCase(fileName),
".h");
100 auto hadTDMEHInclude =
false;
101 auto firstTDMEIncludeLineIdx = -1;
102 auto secondTDMEIncludeLineIdx = -1;
104 auto startLineIdx = -1;
105 auto endLineIdx = -1;
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;
114 endLineIdx = lineIdx;
116 if (hadTDMEHInclude ==
false) hadTDMEHInclude = StringTools::trim(line) ==
"#include <tdme/tdme.h>";
118 if (startLineIdx != -1 && endLineIdx != -1) {
119 sort(newFileContent.begin() + startLineIdx, newFileContent.begin() + endLineIdx + 1,
string_compare);
123 if (StringTools::startsWith(StringTools::trim(line),
"#include <tdme/") ==
true) {
124 if (firstTDMEIncludeLineIdx == -1) firstTDMEIncludeLineIdx = lineIdx;
else
125 if (secondTDMEIncludeLineIdx == -1) secondTDMEIncludeLineIdx = lineIdx;
130 if (hadTDMEHInclude ==
false && firstTDMEIncludeLineIdx != -1) {
131 newFileContent.insert(
132 newFileContent.begin() + (headerFile ==
true?firstTDMEIncludeLineIdx:(secondTDMEIncludeLineIdx != -1?secondTDMEIncludeLineIdx:firstTDMEIncludeLineIdx)),
133 "#include <tdme/tdme.h>"
136 fileContent = newFileContent;
137 newFileContent.clear();
139 auto startLineIdx = -1;
140 auto endLineIdx = -1;
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;
149 endLineIdx = lineIdx;
152 if (startLineIdx != -1 && endLineIdx != -1) {
153 sort(newFileContent.begin() + startLineIdx, newFileContent.begin() + endLineIdx + 1,
string_compare);
160 fileContent = newFileContent;
161 newFileContent.clear();
164 for (
auto line: fileContent) {
165 if ((StringTools::startsWith(line,
"using ") ==
true || StringTools::startsWith(line,
"#include ")) && line == lastLine) {
169 newFileContent.push_back(line);
173 FileSystem::getInstance()->setContentFromStringArray(
".", fileName, newFileContent);
178 Console::println(
string(
"sortincludes ") + Version::getVersion());
179 Console::println(Version::getCopyright());
183 Console::println(
"Usage: sortincludes path_to_source");
184 Application::exit(1);
187 auto pathToSource = string(argv[1]);
189 Console::println(
"Scanning files");
190 vector<string> files;
193 Console::println(
"Processing files");
194 for (
auto fileName: files) {
Application base class, please make sure to allocate application on heap to have correct application ...
File system singleton class.
std::exception Exception
Exception base class.
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.