More changes

This commit is contained in:
Hackerpilot 2015-02-19 12:43:21 -08:00
parent 32759fafae
commit 96501f7418
1 changed files with 58 additions and 45 deletions

View File

@ -172,7 +172,7 @@ private:
void formatStep() void formatStep()
{ {
import std.range : assumeSorted; import std.range : assumeSorted;
import std.algorithm : canFind; import std.algorithm : canFind;
assert (index < tokens.length); assert (index < tokens.length);
if (current.type == tok!"comment") if (current.type == tok!"comment")
@ -378,7 +378,7 @@ private:
case tok!";": case tok!";":
tempIndent = 0; tempIndent = 0;
writeToken(); writeToken();
linebreakHints = []; linebreakHints = [];
if (index >= tokens.length || current.type != tok!"comment") if (index >= tokens.length || current.type != tok!"comment")
newline(); newline();
if (peekImplementation(tok!"class",0)) if (peekImplementation(tok!"class",0))
@ -388,20 +388,20 @@ private:
writeBraces(); writeBraces();
break; break;
case tok!".": case tok!".":
writeToken(); writeToken();
break; break;
case tok!",": case tok!",":
if (linebreakHints.canFind(index)) if (linebreakHints.canFind(index))
{ {
writeToken(); writeToken();
pushIndent(); pushIndent();
newline(); newline();
} }
else else
{ {
writeToken(); writeToken();
write(" "); write(" ");
} }
break; break;
case tok!"=": case tok!"=":
case tok!">=": case tok!">=":
@ -414,13 +414,13 @@ private:
case tok!"&=": case tok!"&=":
case tok!"%=": case tok!"%=":
case tok!"+=": case tok!"+=":
write(" "); write(" ");
writeToken(); writeToken();
write(" "); write(" ");
immutable size_t i = expressionEndIndex(); immutable size_t i = expressionEndIndex();
linebreakHints = chooseLineBreakTokens(index, tokens[index .. i], linebreakHints = chooseLineBreakTokens(index, tokens[index .. i],
config, currentLineLength, indentLevel); config, currentLineLength, indentLevel);
break; break;
case tok!"^^": case tok!"^^":
case tok!"^=": case tok!"^=":
case tok!"^": case tok!"^":
@ -604,9 +604,9 @@ private:
{ {
writeToken(); writeToken();
depth++; depth++;
immutable size_t i = expressionEndIndex(); immutable size_t i = expressionEndIndex();
linebreakHints = chooseLineBreakTokens(index, tokens[index .. i], linebreakHints = chooseLineBreakTokens(index, tokens[index .. i],
config, currentLineLength, indentLevel); config, currentLineLength, indentLevel);
continue; continue;
} }
else if (current.type == tok!")") else if (current.type == tok!")")
@ -646,7 +646,7 @@ private:
while (index < tokens.length && depth > 0); while (index < tokens.length && depth > 0);
popIndent(); popIndent();
tempIndent = t; tempIndent = t;
linebreakHints = []; linebreakHints = [];
} }
bool peekIsLabel() bool peekIsLabel()
@ -833,7 +833,7 @@ private:
/// Information about the AST /// Information about the AST
ASTInformation* astInformation; ASTInformation* astInformation;
size_t[] linebreakHints; size_t[] linebreakHints;
/// Configuration /// Configuration
FormatterConfig* config; FormatterConfig* config;
@ -851,19 +851,14 @@ struct FormatterConfig
{ {
/// Number of spaces used for indentation /// Number of spaces used for indentation
uint indentSize = 4; uint indentSize = 4;
/// Use tabs or spaces /// Use tabs or spaces
bool useTabs = false; bool useTabs = false;
/// Size of a tab character /// Size of a tab character
uint tabSize = 8; uint tabSize = 8;
/// Soft line wrap limit /// Soft line wrap limit
uint columnSoftLimit = 80; uint columnSoftLimit = 80;
/// Hard line wrap limit /// Hard line wrap limit
uint columnHardLimit = 120; uint columnHardLimit = 120;
/// Use the One True Brace Style /// Use the One True Brace Style
BraceStyle braceStyle = BraceStyle.allman; BraceStyle braceStyle = BraceStyle.allman;
} }
@ -1011,6 +1006,18 @@ int tokenLength(ref const Token t) pure @safe @nogc
import std.algorithm : countUntil; import std.algorithm : countUntil;
switch (t.type) switch (t.type)
{ {
case tok!"doubleLiteral":
case tok!"floatLiteral":
case tok!"idoubleLiteral":
case tok!"ifloatLiteral":
case tok!"intLiteral":
case tok!"longLiteral":
case tok!"realLiteral":
case tok!"irealLiteral":
case tok!"uintLiteral":
case tok!"ulongLiteral":
case tok!"characterLiteral":
return cast(int) t.text.length;
case tok!"identifier": case tok!"identifier":
case tok!"stringLiteral": case tok!"stringLiteral":
case tok!"wstringLiteral": case tok!"wstringLiteral":
@ -1019,6 +1026,8 @@ int tokenLength(ref const Token t) pure @safe @nogc
auto c = cast(int) t.text.countUntil('\n'); auto c = cast(int) t.text.countUntil('\n');
if (c == -1) if (c == -1)
return cast(int) t.text.length; return cast(int) t.text.length;
else
return c;
mixin (generateFixedLengthCases()); mixin (generateFixedLengthCases());
default: default:
return INVALID_TOKEN_LENGTH; return INVALID_TOKEN_LENGTH;
@ -1072,6 +1081,9 @@ bool isBreakToken(IdType t)
case tok!"%": case tok!"%":
case tok!"+=": case tok!"+=":
case tok!".": case tok!".":
case tok!"~":
case tok!"+":
case tok!"-":
return true; return true;
default: default:
return false; return false;
@ -1084,10 +1096,10 @@ int breakCost(IdType t)
{ {
case tok!"||": case tok!"||":
case tok!"&&": case tok!"&&":
return 21; return 0;
case tok!"(": case tok!"(":
case tok!",": case tok!",":
return 34; return 10;
case tok!"^^": case tok!"^^":
case tok!"^=": case tok!"^=":
case tok!"^": case tok!"^":
@ -1125,6 +1137,9 @@ int breakCost(IdType t)
case tok!"&=": case tok!"&=":
case tok!"%=": case tok!"%=":
case tok!"%": case tok!"%":
case tok!"+":
case tok!"-":
case tok!"~":
case tok!"+=": case tok!"+=":
return 55; return 55;
case tok!".": case tok!".":
@ -1151,7 +1166,7 @@ struct State
if (breaks.length == 0) if (breaks.length == 0)
{ {
_cost = int.max; _cost = int.max;
s = false; s = tokens.map!(a => tokenLength(a)).sum() < formatterConfig.columnSoftLimit;
} }
else else
{ {
@ -1180,11 +1195,11 @@ struct State
int opCmp(ref const State other) const pure nothrow @safe int opCmp(ref const State other) const pure nothrow @safe
{ {
if (cost < other.cost if (cost < other.cost
|| (cost == other.cost && breaks.length && other.breaks.length && breaks[0] > other.breaks[0]) || (cost == other.cost && breaks.length && other.breaks.length && breaks[0] > other.breaks[0])
|| (cost == other.cost && _solved && !other.solved)) || (cost == other.cost && _solved && !other.solved))
{ {
return -1; return -1;
} }
return other.cost > _cost; return other.cost > _cost;
} }
@ -1212,33 +1227,31 @@ size_t[] chooseLineBreakTokens(size_t index, const Token[] tokens,
int depth = 0; int depth = 0;
auto open = new RedBlackTree!State; auto open = new RedBlackTree!State;
open.insert(State(cast(size_t[])[], tokens, depth, formatterConfig, open.insert(State(cast(size_t[])[], tokens, depth, formatterConfig, currentLineLength, indentLevel));
currentLineLength, indentLevel));
while (!open.empty) while (!open.empty)
{ {
State current = open.front(); State current = open.front();
open.removeFront(); open.removeFront();
if (current.solved) if (current.solved)
{ {
foreach (ref b; current.breaks) foreach (ref b; current.breaks)
b += index; b += index;
return current.breaks; return current.breaks;
} }
foreach (next; validMoves(tokens, current, formatterConfig, foreach (next; validMoves(tokens, current, formatterConfig, currentLineLength, indentLevel, depth))
currentLineLength, indentLevel, depth))
{ {
open.insert(next); open.insert(next);
} }
} }
size_t[] retVal = open.empty ? [] : open.front().breaks; size_t[] retVal = open.empty ? [] : open.front().breaks;
foreach (ref b; retVal) foreach (ref b; retVal)
b += index; b += index;
return retVal; return retVal;
} }
State[] validMoves(const Token[] tokens, ref const State current, State[] validMoves(const Token[] tokens, ref const State current,
const FormatterConfig* formatterConfig, int currentLineLength, const FormatterConfig* formatterConfig, int currentLineLength,
int indentLevel, int depth) int indentLevel, int depth)
{ {
import std.algorithm : sort, canFind; import std.algorithm : sort, canFind;
import std.array:insertInPlace; import std.array:insertInPlace;