Run dfmt on itself
This commit is contained in:
parent
12060fb92c
commit
ce128d8c62
135
src/dfmt.d
135
src/dfmt.d
|
@ -38,67 +38,70 @@ version (NoMain)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
int main(string[] args)
|
|
||||||
{
|
{
|
||||||
import std.getopt : getopt;
|
int main(string[] args)
|
||||||
|
|
||||||
bool inplace = false;
|
|
||||||
bool show_usage = false;
|
|
||||||
FormatterConfig formatterConfig;
|
|
||||||
getopt(args, "help|h", &show_usage, "inplace", &inplace, "tabs|t",
|
|
||||||
&formatterConfig.useTabs, "braces", &formatterConfig.braceStyle);
|
|
||||||
if (show_usage)
|
|
||||||
{
|
{
|
||||||
import std.path : baseName;
|
import std.getopt : getopt;
|
||||||
|
|
||||||
writef(USAGE, baseName(args[0]));
|
bool inplace = false;
|
||||||
|
bool show_usage = false;
|
||||||
|
FormatterConfig formatterConfig;
|
||||||
|
getopt(args, "help|h", &show_usage, "inplace", &inplace, "tabs|t",
|
||||||
|
&formatterConfig.useTabs, "braces", &formatterConfig.braceStyle);
|
||||||
|
if (show_usage)
|
||||||
|
{
|
||||||
|
import std.path : baseName;
|
||||||
|
|
||||||
|
writef(USAGE, baseName(args[0]));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
File output = stdout;
|
||||||
|
ubyte[] buffer;
|
||||||
|
args.popFront();
|
||||||
|
if (args.length == 0)
|
||||||
|
{
|
||||||
|
ubyte[4096] inputBuffer;
|
||||||
|
ubyte[] b;
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
b = stdin.rawRead(inputBuffer);
|
||||||
|
if (b.length)
|
||||||
|
buffer ~= b;
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
format("stdin", buffer, output.lockingTextWriter(), &formatterConfig);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
import std.file : dirEntries, isDir, SpanMode;
|
||||||
|
|
||||||
|
if (args.length >= 2)
|
||||||
|
inplace = true;
|
||||||
|
while (args.length > 0)
|
||||||
|
{
|
||||||
|
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.lockingTextWriter(), &formatterConfig);
|
||||||
|
}
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
File output = stdout;
|
|
||||||
ubyte[] buffer;
|
|
||||||
args.popFront();
|
|
||||||
if (args.length == 0)
|
|
||||||
{
|
|
||||||
ubyte[4096] inputBuffer;
|
|
||||||
ubyte[] b;
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
b = stdin.rawRead(inputBuffer);
|
|
||||||
if (b.length)
|
|
||||||
buffer ~= b;
|
|
||||||
else
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
format("stdin", buffer, output.lockingTextWriter(), &formatterConfig);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
import std.file : dirEntries, isDir, SpanMode;
|
|
||||||
|
|
||||||
if (args.length >= 2)
|
|
||||||
inplace = true;
|
|
||||||
while (args.length > 0)
|
|
||||||
{
|
|
||||||
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.lockingTextWriter(), &formatterConfig);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -309,10 +312,10 @@ private:
|
||||||
&& !currentIs(tok!"debug");
|
&& !currentIs(tok!"debug");
|
||||||
immutable bool b = a
|
immutable bool b = a
|
||||||
|| astInformation.conditionalWithElseLocations.canFindIndex(
|
|| astInformation.conditionalWithElseLocations.canFindIndex(
|
||||||
current.index);
|
current.index);
|
||||||
immutable bool shouldPushIndent = b
|
immutable bool shouldPushIndent = b
|
||||||
|| astInformation.conditionalStatementLocations.canFindIndex(
|
|| astInformation.conditionalStatementLocations.canFindIndex(
|
||||||
current.index);
|
current.index);
|
||||||
if (shouldPushIndent)
|
if (shouldPushIndent)
|
||||||
indents.push(current.type);
|
indents.push(current.type);
|
||||||
writeToken();
|
writeToken();
|
||||||
|
@ -492,7 +495,7 @@ private:
|
||||||
case tok!":":
|
case tok!":":
|
||||||
if (astInformation.caseEndLocations.canFindIndex(current.index)
|
if (astInformation.caseEndLocations.canFindIndex(current.index)
|
||||||
|| astInformation.attributeDeclarationLines.canFindIndex(
|
|| astInformation.attributeDeclarationLines.canFindIndex(
|
||||||
current.line))
|
current.line))
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
if (!currentIs(tok!"{"))
|
if (!currentIs(tok!"{"))
|
||||||
|
@ -612,7 +615,7 @@ private:
|
||||||
write("}");
|
write("}");
|
||||||
if (index < tokens.length - 1
|
if (index < tokens.length - 1
|
||||||
&& astInformation.doubleNewlineLocations.canFindIndex(
|
&& astInformation.doubleNewlineLocations.canFindIndex(
|
||||||
tokens[index].index) && !peekIs(tok!"}"))
|
tokens[index].index) && !peekIs(tok!"}"))
|
||||||
{
|
{
|
||||||
write("\n");
|
write("\n");
|
||||||
currentLineLength = 0;
|
currentLineLength = 0;
|
||||||
|
@ -633,7 +636,7 @@ private:
|
||||||
case tok!".":
|
case tok!".":
|
||||||
if (linebreakHints.canFind(index) || (linebreakHints.length == 0
|
if (linebreakHints.canFind(index) || (linebreakHints.length == 0
|
||||||
&& currentLineLength + nextTokenLength(
|
&& currentLineLength + nextTokenLength(
|
||||||
) > config.columnHardLimit))
|
) > config.columnHardLimit))
|
||||||
{
|
{
|
||||||
pushWrapIndent();
|
pushWrapIndent();
|
||||||
newline();
|
newline();
|
||||||
|
@ -1051,9 +1054,9 @@ private:
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"{")
|
else if (currentIs(tok!"{")
|
||||||
&& !astInformation.structInitStartLocations.canFindIndex(
|
&& !astInformation.structInitStartLocations.canFindIndex(
|
||||||
tokens[index].index)
|
tokens[index].index)
|
||||||
&& !astInformation.funLitStartLocations.canFindIndex(
|
&& !astInformation.funLitStartLocations.canFindIndex(
|
||||||
tokens[index].index))
|
tokens[index].index))
|
||||||
{
|
{
|
||||||
while (indents.length && isWrapIndent(indents.top))
|
while (indents.length && isWrapIndent(indents.top))
|
||||||
indents.pop();
|
indents.pop();
|
||||||
|
@ -1603,7 +1606,7 @@ struct State
|
||||||
{
|
{
|
||||||
this(size_t[] breaks, const Token[] tokens, int depth,
|
this(size_t[] breaks, const Token[] tokens, int depth,
|
||||||
const FormatterConfig* formatterConfig, int currentLineLength,
|
const FormatterConfig* formatterConfig, int currentLineLength,
|
||||||
int indentLevel)
|
int indentLevel)
|
||||||
{
|
{
|
||||||
this.breaks = breaks;
|
this.breaks = breaks;
|
||||||
this._depth = depth;
|
this._depth = depth;
|
||||||
|
@ -1733,7 +1736,7 @@ size_t[] chooseLineBreakTokens(size_t index, const Token[] tokens, const Formatt
|
||||||
|
|
||||||
State[] validMoves(const Token[] tokens, ref const State current,
|
State[] validMoves(const Token[] tokens, ref const State current,
|
||||||
const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel,
|
const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel,
|
||||||
int depth)
|
int depth)
|
||||||
{
|
{
|
||||||
import std.algorithm : sort, canFind;
|
import std.algorithm : sort, canFind;
|
||||||
import std.array : insertInPlace;
|
import std.array : insertInPlace;
|
||||||
|
|
Loading…
Reference in New Issue