Swiss-army knife for D source code
Go to file
Hackerpilot 552d0bbb07 Solved the mystery of the disappearing doc comments 2014-01-30 20:00:20 -08:00
analysis Relaxed rules on number formatting for #84. Implemented #86 2014-01-26 23:29:45 -08:00
scripts Fix bug with AST output 2013-11-21 16:29:41 -08:00
stdx Solved the mystery of the disappearing doc comments 2014-01-30 20:00:20 -08:00
.gitignore Fixed another bug 2013-07-04 16:13:09 -07:00
LICENSE_1_0.txt Fixed another bug 2013-07-04 16:13:09 -07:00
README.md Update README.md 2014-01-21 01:13:23 -08:00
astprinter.d Fixed null pointer error 2014-01-30 19:59:54 -08:00
build.bat Fix #90 2014-01-30 10:45:14 -08:00
build.sh Lots of optimization. Updated GDC portion of build script 2014-01-21 23:26:23 -08:00
ctags.d Fixed float lexing and static analysis issues 2014-01-20 20:34:30 -08:00
dsc.sublime-project Fixed another bug 2013-07-04 16:13:09 -07:00
formatter.d Converted everything to the new lexer 2013-12-15 03:02:52 -08:00
highlighter.d Migrated over to Dmitry's buffer range. Lots of stuff is disabled for now 2014-01-09 01:17:47 +00:00
imports.d Fixed float lexing and static analysis issues 2014-01-20 20:34:30 -08:00
main.d Solved the mystery of the disappearing doc comments 2014-01-30 20:00:20 -08:00
makefile Fixed another bug 2013-07-04 16:13:09 -07:00
outliner.d Fixed float lexing and static analysis issues 2014-01-20 20:34:30 -08:00
stats.d Lots of optimization. Updated GDC portion of build script 2014-01-21 23:26:23 -08:00

README.md

Overview

DScanner is a tool for analyzing D source code

Building and installing

To build DScanner, run the build.sh script (or the build.bat file on Windows). The build time can be rather long with the -inline flag (over 2 minutes on an i7 processor), so you may wish to remove it from the build script. To install, simply place the generated binary somewhere on your $PATH.

Usage

The following examples assume that we are analyzing a simple file called helloworld.d

import std.stdio;
void main(string[] args)
{
	writeln("Hello World");
}

Token Count

The "--tokenCount" or "-t" option prints the number of tokens in the given file

$ dscanner --tokencount helloworld.d
20

Import Listing

The "--imports" or "-i" option prints a listing of modules imported by the given source file.

$ dscanner --imports helloworld.d
std.stdio

Syntax Check

The "--syntaxCheck" option prints a listing of any errors or warnings found while lexing or parsing the given source file. It does not do any semantic analysis and it does not compile the code.

Style Check

The "--styleCheck" option runs some basic static analysis checks against the given source files.

Implemented checks

  • Old alias syntax (i.e "alias a b;" should be replaced with "alias b = a;").
  • Implicit concatenation of string literals.
  • Complex number literals (e.g. "1.23i").
  • Empty declarations (i.e. random ";" characters)
  • enum array literals in struct/class bodies
  • Avoid Pokémon exception handling

Wishlish

  • Assigning to foreach variables that are not "ref".
  • opCmp or opEquals, or toHash not declared "const".
  • Unused variables.
  • Unused imports.
  • Unused parameters (check is skipped if function is marked "override")
  • Struct constructors that have a single parameter that has a default argument.
  • Variables that are never modified and not declared immutable.
  • Public declarations not documented
  • Format numbers for readability
  • Declaring opEquals without toHash
  • Assignment in conditionals
  • delete keyword is deprecated
  • "fish operators" (floating point operators) are deprecated

Line of Code Count

The "--sloc" or "-l" option prints the number of lines of code in the file. Instead of simply printing the number of line breaks, this counts the number of semicolon, while, if, do, else, switch, for, foreach, foreach_reverse, default, and case tokens in the file.

$ ./dscanner --sloc helloworld.d
2

Syntax Highlighting

The "--highlight" option prints the given source file as syntax-highlighted HTML to the standard output. The CSS styling is currently hard-coded to use the Solarized color scheme.

No example. It would take up too much space

CTAGS output

The "--ctags" or "-c" option generates CTAGS information and writes it to the standard output. When used with the "--recursive", "-R", or "-r" option, CTAGS information will be generated for a specified directory and all of its sub-directories.

$ dscanner --ctags helloworld.d
!_TAG_FILE_FORMAT	2
!_TAG_FILE_SORTED	1
!_TAG_FILE_AUTHOR	Brian Schott
!_TAG_PROGRAM_URL	https://github.com/Hackerpilot/Dscanner/
main	helloworld.d	3;"	f	arity:1

CTAGS output uses the following tag kinds:

  • g -- enum declarataion
  • e -- enum member
  • v -- variable declaration
  • i -- interface declaration
  • c -- class declaration
  • s -- struct declaration
  • f -- function declaration
  • u -- union declaration
  • T -- template declaration

More information on the CTAGS format can be found here.

Outline

The "--outline" option parses the given D source file and writes an simple outline of the file's declarations to stdout.

AST Dump

The "--ast" or "--xml" options will dump the complete abstract syntax tree of the given source file to standard output in XML format. JSON output is planned but not yet implemented.

$ dscanner --ast helloworld.d
<module>
<declaration>
<importDeclaration>
<singleImport>
<identifierChain>
<identifier>std</identifier>
<identifier>stdio</identifier>
</identifierChain>
</singleImport>
</importDeclaration>
</declaration>
<declaration>
<functionDeclaration line="3">
<name>main</name>
<type pretty="void">
<type2>
void
</type2>
</type>
<parameters>
<parameter>
<name>args</name>
<type pretty="string[]">
<type2>
<symbol>
<identifierOrTemplateChain>
<identifierOrTemplateInstance>
<identifier>string</identifier>
</identifierOrTemplateInstance>
</identifierOrTemplateChain>
</symbol>
</type2>
<typeSuffix type="[]"/>
</type>
<identifier>args</identifier>
</parameter>
</parameters>
<functionBody>
<blockStatement>
<declarationsAndStatements>
<declarationOrStatement>
<statement>
<statementNoCaseNoDefault>
<expressionStatement>
<expression>
<assignExpression>
<functionCallExpression>
<unaryExpression>
<primaryExpression>
<identifierOrTemplateInstance>
<identifier>writeln</identifier>
</identifierOrTemplateInstance>
</primaryExpression>
</unaryExpression>
<arguments>
<argumentList>
<assignExpression>
<primaryExpression>
<stringLiteral>Hello World</stringLiteral>
</primaryExpression>
</assignExpression>
</argumentList>
</arguments>
</functionCallExpression>
</assignExpression>
</expression>
</expressionStatement>
</statementNoCaseNoDefault>
</statement>
</declarationOrStatement>
</declarationsAndStatements>
</blockStatement>
</functionBody>
</functionDeclaration>
</declaration>
</module>

Useful code

The source code for DScanner has a complete lexer, parser, and abstact syntax tree library for D code under the stdx/d/ directory. It is intended that these modules eventually end up in Phobos, so feel free to use them for your own D tools.