Added stdin as an alternative to a filename for all other modes except for ctags. Ctags requires the filename, so it still requires a filename.

This commit is contained in:
John Maschmeyer 2012-10-17 18:04:48 -05:00
parent 258e10aef6
commit 12e242ca0f
2 changed files with 49 additions and 14 deletions

View File

@ -2,23 +2,23 @@
Dscanner is a tool used to analyze D source code. Dscanner is a tool used to analyze D source code.
### Options ### Options
* **--dotComplete** _sourceFile_ _cursorPosition_ - Provide autocompletion for the * **--dotComplete** [_sourceFile_] _cursorPosition_ - Provide autocompletion for the
insertion of the dot operator. The cursor position is the character position in insertion of the dot operator. The cursor position is the character position in
the **file**, not the position in the line. the **file**, not the position in the line. If no file is specified the file is read from stdin.
* **--sloc** _sourceFiles_ - count the number of logical lines of code in the given * **--sloc** [_sourceFiles_] - count the number of logical lines of code in the given
source files. source files. If no files are specified, a file is read from stdin.
* **--json** _sourceFile_ - Generate a JSON summary of the given source file * **--json** [_sourceFile_] - Generate a JSON summary of the given source file. If no file is specifed, the file is read from stdin.
* **--parenComplete** _sourceFile_ _cursorPosition_ - Provides a listing of function * **--parenComplete** [_sourceFile_] _cursorPosition_ - Provides a listing of function
parameters or pre-defined version identifiers at the cursor position. The cursor parameters or pre-defined version identifiers at the cursor position. The cursor
position is the character position in the **file**, not the line. position is the character position in the **file**, not the line. If no file is specified, the contents are read from stdin.
* **--highlight** _sourceFile_ - Syntax-highlight the given source file. The * **--highlight** [_sourceFile_] - Syntax-highlight the given source file. The
resulting HTML will be written to standard output. resulting HTML will be written to standard output.
* **-I** _includePath_ - Include _includePath_ in the list of paths used to search * **-I** _includePath_ - Include _includePath_ in the list of paths used to search
for imports. By default dscanner will search in the current working directory as for imports. By default dscanner will search in the current working directory as
well as any paths specified in /etc/dmd.conf. This is only used for the well as any paths specified in /etc/dmd.conf. This is only used for the
--parenComplete and --dotComplete options --parenComplete and --dotComplete options. If no file is specified, the file is read from stdin.
* **--ctags** _sourceFile_ - Generates ctags information from the given source * **--ctags** _sourceFile_ - Generates ctags information from the given source
code file. code file. Note that ctags information requires a filename, so stdin cannot be used in place of a filename.
* **--recursive** **-R** **-r** _directory_ - When used with --ctags, dscanner * **--recursive** **-R** **-r** _directory_ - When used with --ctags, dscanner
will produce ctags output for all .d and .di files contained within _directory_ will produce ctags output for all .d and .di files contained within _directory_
and its sub-directories. and its sub-directories.

43
main.d
View File

@ -155,14 +155,37 @@ void main(string[] args)
if (sloc) if (sloc)
{ {
writeln(args[1..$].map!(a => a.readText().tokenize())().joiner() if (args.length == 1)
.count!(a => isLineOfCode(a.type))()); {
string f;
char[] buf;
while (stdin.readln(buf))
f ~= buf;
f.tokenize().count!(a => isLineOfCode(a.type))();
}
else
{
writeln(args[1..$].map!(a => a.readText().tokenize())().joiner()
.count!(a => isLineOfCode(a.type))());
}
return; return;
} }
if (highlight) if (highlight)
{ {
highlighter.highlight(args[1].readText().tokenize(IterationStyle.EVERYTHING)); if (args.length == 1)
{
string f;
char[] buf;
while (stdin.readln(buf))
f ~= buf;
highlighter.highlight(f.tokenize(IterationStyle.EVERYTHING));
}
else
{
highlighter.highlight(args[1].readText().tokenize(IterationStyle.EVERYTHING));
}
return; return;
} }
@ -207,7 +230,19 @@ void main(string[] args)
if (json) if (json)
{ {
auto tokens = tokenize(readText(args[1])); Token[] tokens;
if (args.length == 1)
{
string f;
char[] buf;
while (stdin.readln(buf))
f ~= buf;
tokens = tokenize(f);
}
else
{
tokens = tokenize(readText(args[1]));
}
auto mod = parseModule(tokens); auto mod = parseModule(tokens);
mod.writeJSONTo(stdout); mod.writeJSONTo(stdout);
return; return;