Better enum formatting and whitespace cleanup
This commit is contained in:
parent
b82ef4ad60
commit
9c8abe55fa
38
src/dfmt.d
38
src/dfmt.d
|
@ -36,14 +36,26 @@ import std.array;
|
||||||
|
|
||||||
int main(string[] args)
|
int main(string[] args)
|
||||||
{
|
{
|
||||||
if (args.length < 2)
|
ubyte[] buffer;
|
||||||
|
if (args.length == 1)
|
||||||
{
|
{
|
||||||
writeln("File name is a required argument");
|
ubyte[4096] inputBuffer;
|
||||||
return 1;
|
ubyte[] b;
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
b = stdin.rawRead(inputBuffer);
|
||||||
|
if (b.length)
|
||||||
|
buffer ~= b;
|
||||||
|
else
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
File f = File(args[1]);
|
File f = File(args[1]);
|
||||||
ubyte[] buffer = new ubyte[](f.size);
|
buffer = new ubyte[](f.size);
|
||||||
f.rawRead(buffer);
|
f.rawRead(buffer);
|
||||||
|
}
|
||||||
LexerConfig config;
|
LexerConfig config;
|
||||||
config.stringBehavior = StringBehavior.source;
|
config.stringBehavior = StringBehavior.source;
|
||||||
config.whitespaceBehavior = WhitespaceBehavior.skip;
|
config.whitespaceBehavior = WhitespaceBehavior.skip;
|
||||||
|
@ -54,7 +66,7 @@ int main(string[] args)
|
||||||
ASTInformation astInformation;
|
ASTInformation astInformation;
|
||||||
FormatterConfig formatterConfig;
|
FormatterConfig formatterConfig;
|
||||||
auto parseTokens = getTokensForParser(buffer, parseConfig, &cache);
|
auto parseTokens = getTokensForParser(buffer, parseConfig, &cache);
|
||||||
auto mod = parseModule(parseTokens, args[1]);
|
auto mod = parseModule(parseTokens, args.length > 1 ? args[1] : "stdin");
|
||||||
auto visitor = new FormatVisitor(&astInformation);
|
auto visitor = new FormatVisitor(&astInformation);
|
||||||
visitor.visit(mod);
|
visitor.visit(mod);
|
||||||
astInformation.cleanup();
|
astInformation.cleanup();
|
||||||
|
@ -87,6 +99,8 @@ struct TokenFormatter
|
||||||
assert (indentLevel >= 0);
|
assert (indentLevel >= 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
void formatStep()
|
void formatStep()
|
||||||
{
|
{
|
||||||
import std.range:assumeSorted;
|
import std.range:assumeSorted;
|
||||||
|
@ -312,18 +326,21 @@ struct TokenFormatter
|
||||||
assert (false, str(current.type));
|
assert (false, str(current.type));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Pushes a temporary indent level
|
||||||
void pushIndent()
|
void pushIndent()
|
||||||
{
|
{
|
||||||
if (tempIndent == 0)
|
if (tempIndent == 0)
|
||||||
tempIndent++;
|
tempIndent++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Pops a temporary indent level
|
||||||
void popIndent()
|
void popIndent()
|
||||||
{
|
{
|
||||||
if (tempIndent > 0)
|
if (tempIndent > 0)
|
||||||
tempIndent--;
|
tempIndent--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Writes balanced braces
|
||||||
void writeBraces()
|
void writeBraces()
|
||||||
{
|
{
|
||||||
import std.range : assumeSorted;
|
import std.range : assumeSorted;
|
||||||
|
@ -349,6 +366,9 @@ struct TokenFormatter
|
||||||
}
|
}
|
||||||
else if (current.type == tok!"}")
|
else if (current.type == tok!"}")
|
||||||
{
|
{
|
||||||
|
// Silly hack to format enums better.
|
||||||
|
if (peekBackIs(tok!"identifier"))
|
||||||
|
newline();
|
||||||
write("}");
|
write("}");
|
||||||
depth--;
|
depth--;
|
||||||
if (index < tokens.length &&
|
if (index < tokens.length &&
|
||||||
|
@ -653,7 +673,7 @@ struct FormatterConfig
|
||||||
uint columnHardLimit = 120;
|
uint columnHardLimit = 120;
|
||||||
|
|
||||||
/// Use the One True Brace Style
|
/// Use the One True Brace Style
|
||||||
BraceStyle braceStyle = BraceStyle.otbs;
|
BraceStyle braceStyle = BraceStyle.allman;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
@ -700,6 +720,12 @@ final class FormatVisitor : ASTVisitor
|
||||||
functionBody.accept(this);
|
functionBody.accept(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override void visit(const EnumBody enumBody)
|
||||||
|
{
|
||||||
|
astInformation.doubleNewlineLocations ~= enumBody.endLocation;
|
||||||
|
enumBody.accept(this);
|
||||||
|
}
|
||||||
|
|
||||||
override void visit(const Unittest unittest_)
|
override void visit(const Unittest unittest_)
|
||||||
{
|
{
|
||||||
astInformation.doubleNewlineLocations ~= unittest_.blockStatement.endLocation;
|
astInformation.doubleNewlineLocations ~= unittest_.blockStatement.endLocation;
|
||||||
|
|
Loading…
Reference in New Issue