-
-
Save ibuclaw/59c1b4b5608a8ecbf9902a576a7c97f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.stdio, std.file, std.path, std.range, std.string, std.algorithm ; | |
string[] filterList = ["./Makefile.in", "./gcc/config.d.in", "./gcc/libbacktrace.d.in", | |
"./Makefile.am", "./LICENSE", "./rt/dylib_fixes.c"]; | |
struct Files | |
{ | |
string[] baseList, cppList, gcList, gcStubList; | |
string[][string] sysList; | |
} | |
void main(string[] args) | |
{ | |
Files[string] fileMap; | |
foreach(entry; ".".dirEntries(SpanMode.depth).filter!(a => !filterList.canFind(a))) | |
{ | |
if(entry.isFile) | |
{ | |
auto ext = entry.extension.empty ? "" : entry.extension[1 .. $]; | |
if(!(ext in fileMap)) | |
fileMap[ext] = Files.init; | |
string sentry = entry[2 .. $]; | |
if(entry.name.startsWith("./gc/")) | |
fileMap[ext].gcList ~= sentry; | |
else if(entry.name.startsWith("./gcstub/")) | |
fileMap[ext].gcStubList ~= sentry; | |
else if(entry.name.startsWith("./core/stdcpp/")) | |
fileMap[ext].cppList ~= sentry; | |
else if(entry.name.startsWith("./core/sys/")) | |
{ | |
auto components = entry.pathSplitter; | |
components.popFrontN(3); | |
fileMap[ext].sysList[components.front] ~= sentry; | |
} | |
else | |
fileMap[ext].baseList ~= sentry; | |
} | |
} | |
foreach(extEntry; fileMap.byKeyValue.array.sort!"a.key < b.key") | |
{ | |
auto ext = extEntry.key; | |
auto value = extEntry.value; | |
writeList("DRUNTIME_" ~ ext.toUpper() ~ "SOURCES", value.baseList); | |
writeList("DRUNTIME_" ~ ext.toUpper() ~ "SOURCES_STDCXX", value.cppList); | |
writeList("DRUNTIME_" ~ ext.toUpper() ~ "SOURCES_GC", value.gcList); | |
writeList("DRUNTIME_" ~ ext.toUpper() ~ "SOURCES_GCSTUB", value.gcStubList); | |
foreach(entry; value.sysList.byKeyValue.array.sort!"a.key < b.key") | |
{ | |
writeList("DRUNTIME_" ~ ext.toUpper() ~ "SOURCES_" ~ entry.key.toUpper(), entry.value); | |
} | |
} | |
} | |
void writeList(string name, string[] values) | |
{ | |
if(values.empty) | |
return; | |
values = sort(values).array(); | |
writef("%s =", name); | |
size_t line = name.length + 3; | |
foreach(entry; values) | |
{ | |
if(line + entry.length > 70) | |
{ | |
line = 0; | |
writeln(` \`); | |
write('\t'); | |
} | |
else | |
write(" "); | |
write(entry); | |
line += entry.length + 1; | |
} | |
writeln(); | |
writeln(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment