dastworx uses iz.options, close #275

This commit is contained in:
Basile Burg 2018-04-15 15:11:03 +02:00
parent feec564a35
commit 5aa6d32e7e
4 changed files with 130 additions and 154 deletions

View File

@ -3,74 +3,55 @@ module dastworx;
import import
core.memory; core.memory;
import import
std.array, std.getopt, std.stdio, std.path, std.algorithm, std.functional; std.array, std.getopt, std.stdio, std.path, std.algorithm, std.functional,
std.file, std.typecons;
import import
iz.memory; iz.memory, iz.options;
import import
dparse.lexer, dparse.parser, dparse.ast, dparse.rollback_allocator; dparse.lexer, dparse.parser, dparse.ast, dparse.rollback_allocator;
import import
common, todos, symlist, imports, mainfun, halstead, ddoc_template; common, todos, symlist, imports, mainfun, halstead, ddoc_template;
private __gshared int caretLine; void main(string[] args)
private __gshared bool option1; {
private __gshared static Appender!(ubyte[]) source; foreach(ref buffer; stdin.byChunk(4096))
private __gshared string[] files; Launcher.source.put(buffer);
handleArguments!(Yes.Throw, Launcher)(args[1..$]);
// -o : deep visit the symbols }
alias deepSymList = option1;
// -o : outputs /++ +/ ddoc instead of /** */
alias plusComment = option1;
struct Launcher
{
static this() static this()
{ {
GC.disable; GC.disable;
source.reserve(1024^^2); source.reserve(1024^^2);
} }
void main(string[] args) __gshared @Argument("-l") int caretLine;
__gshared @Argument("-o") bool option1;
__gshared static Appender!(ubyte[]) source;
__gshared string[] files;
// -o : deep visit the symbols
alias deepSymList = option1;
// -o : outputs /++ +/ ddoc instead of /** */
alias plusComment = option1;
/// Writes the list of files to process
@Argument("-f")
static void setFiles(string value)
{ {
version(devel) files = value
{ .splitter(pathSeparator)
mixin(logCall); .filter!exists
File f = File(__FILE__, "r"); .array;
foreach(ref buffer; f.byChunk(4096))
source.put(buffer);
f.close;
}
else
{
// get the source to process.
// even when files are passed, the std input has to be closed by the IDE
foreach(ref buffer; stdin.byChunk(4096))
source.put(buffer);
if (!source.data.length && args.length > 1)
{
import std.file: exists;
files = args[1].splitter(pathSeparator).filter!exists.array;
version(devel) writeln(files);
}
} }
// options for the work /// Writes the symbol list
getopt(args, std.getopt.config.passThrough, @Argument("-s", "", ArgFlags(ArgFlag.stopper))
"o", &option1, static void handleSymListOption()
"l", &caretLine
);
// launch directly a work
getopt(args, std.getopt.config.passThrough,
"i", &handleImportsOption,
"m", &handleMainfunOption,
"s", &handleSymListOption,
"t", &handleTodosOption,
"H", &handleHalsteadOption,
"K", &handleDdocTemplateOption,
);
}
/// Handles the "-s" option: create the symbol list in the output
void handleSymListOption()
{ {
mixin(logCall); mixin(logCall);
@ -95,16 +76,18 @@ void handleSymListOption()
.listSymbols(eh._errors.data, deepSymList); .listSymbols(eh._errors.data, deepSymList);
} }
/// Handles the "-t" option: create the list of todo comments in the output /// Writes the list of todo comments
void handleTodosOption() @Argument("-t", "", ArgFlags(ArgFlag.stopper))
static void handleTodosOption()
{ {
mixin(logCall); mixin(logCall);
if (files.length) if (files.length)
getTodos(files); getTodos(files);
} }
/// Handles the "-i" option: create the import list in the output /// Writes the import list
void handleImportsOption() @Argument("-i", "", ArgFlags(ArgFlag.stopper))
static void handleImportsOption()
{ {
mixin(logCall); mixin(logCall);
if (files.length) if (files.length)
@ -124,8 +107,9 @@ void handleImportsOption()
} }
} }
/// Handles the "-m" option: writes if a main() is present in the module /// Writes if a main() is present in the module
void handleMainfunOption() @Argument("-m", "", ArgFlags(ArgFlag.stopper))
static void handleMainfunOption()
{ {
mixin(logCall); mixin(logCall);
@ -139,8 +123,9 @@ void handleMainfunOption()
.detectMainFun(); .detectMainFun();
} }
/// Handles the "-H" option: write the halstead metrics /// Writes the halstead metrics
void handleHalsteadOption() @Argument("-H", "", ArgFlags(ArgFlag.stopper))
static void handleHalsteadOption()
{ {
mixin(logCall); mixin(logCall);
@ -154,8 +139,9 @@ void handleHalsteadOption()
.performHalsteadMetrics; .performHalsteadMetrics;
} }
/// Handles the "-D" option: write the ddoc template for a given declaration /// Writes the ddoc template for a given declaration
void handleDdocTemplateOption() @Argument("-K", "", ArgFlags(ArgFlag.stopper))
static void handleDdocTemplateOption()
{ {
mixin(logCall); mixin(logCall);
@ -168,15 +154,5 @@ void handleDdocTemplateOption()
.parseModule("", &alloc, toDelegate(&ignoreErrors)) .parseModule("", &alloc, toDelegate(&ignoreErrors))
.getDdocTemplate(caretLine, plusComment); .getDdocTemplate(caretLine, plusComment);
} }
version(devel)
{
version(none) import std.compiler;
version(all) import std.uri;
version(WatchOS) import std.math;
mixin(q{import std.c.time;});
// TODO: something
// NOTE: there was a bug here...
// FIXME-cmain-aMrFreeze-p8: there's an infinite recursion whith the option -x
} }

2
etc/iz

@ -1 +1 @@
Subproject commit 52288791debfe9b5ebf8691f91178dd525a38661 Subproject commit 4124a206ed9c88037f2394887e74b260d05acca4

View File

@ -75,7 +75,7 @@ begin
prc := TProcess.Create(nil); prc := TProcess.Create(nil);
try try
prc.Executable := str; prc.Executable := str;
prc.Parameters.Add(files); prc.Parameters.Add('-f' + files);
prc.Parameters.Add('-i'); prc.Parameters.Add('-i');
prc.Options := [poUsePipes {$IFDEF WINDOWS}, poNewConsole{$ENDIF}]; prc.Options := [poUsePipes {$IFDEF WINDOWS}, poNewConsole{$ENDIF}];
prc.ShowWindow := swoHIDE; prc.ShowWindow := swoHIDE;
@ -138,10 +138,10 @@ begin
prc := TProcess.Create(nil); prc := TProcess.Create(nil);
try try
prc.Executable := str; prc.Executable := str;
prc.Parameters.Add('-K');
prc.Parameters.Add('-l' + caretLine.ToString); prc.Parameters.Add('-l' + caretLine.ToString);
if plusComment then if plusComment then
prc.Parameters.Add('-o'); prc.Parameters.Add('-o');
prc.Parameters.Add('-K');
prc.Options := [poUsePipes {$IFDEF WINDOWS}, poNewConsole{$ENDIF}]; prc.Options := [poUsePipes {$IFDEF WINDOWS}, poNewConsole{$ENDIF}];
prc.ShowWindow := swoHIDE; prc.ShowWindow := swoHIDE;
prc.Execute; prc.Execute;

View File

@ -456,7 +456,7 @@ begin
end; end;
end end
else str := fDoc.fileName; else str := fDoc.fileName;
fToolProc.Parameters.Add(str); fToolProc.Parameters.Add('-f' + str);
fToolProc.Parameters.Add('-t'); fToolProc.Parameters.Add('-t');
// //
fToolProc.Execute; fToolProc.Execute;