handle multiple arguments and directories

This commit is contained in:
Andreas Zwinkau 2015-01-15 20:07:49 +01:00
parent 1e543822fc
commit d59e186ed9
1 changed files with 28 additions and 11 deletions

View File

@ -33,19 +33,19 @@ import std.d.parser;
import std.d.formatter; import std.d.formatter;
import std.d.ast; import std.d.ast;
import std.array; import std.array;
import std.getopt;
int main(string[] args) int main(string[] args)
{ {
import std.getopt;
bool inplace = false; bool inplace = false;
getopt(args, getopt(args,
"inplace", &inplace); "inplace", &inplace);
File output = stdout; File output = stdout;
ubyte[] buffer; ubyte[] buffer;
string source_desc; args.popFront();
if (args.length == 1) if (args.length == 0)
{ {
source_desc = "stdin";
ubyte[4096] inputBuffer; ubyte[4096] inputBuffer;
ubyte[] b; ubyte[] b;
while (true) while (true)
@ -56,17 +56,34 @@ int main(string[] args)
else else
break; break;
} }
format("stdin", buffer, output);
} }
else else
{ {
source_desc = args[1]; import std.file;
File f = File(args[1]); if (args.length >= 2)
buffer = new ubyte[](cast(size_t)f.size); inplace = true;
f.rawRead(buffer); while (args.length > 0)
if (inplace) {
output = File(args[1], "w"); const path = args.front;
args.popFront();
if (isDir(path))
{
inplace = true;
foreach (string name; dirEntries(path, "*.d", SpanMode.depth))
{
args ~= name;
}
continue;
}
File f = File(path);
buffer = new ubyte[](cast(size_t)f.size);
f.rawRead(buffer);
if (inplace)
output = File(path, "w");
format(path, buffer, output);
}
} }
format(source_desc, buffer, output);
return 0; return 0;
} }