From feb75b4d3b39f1d47420dea21f2c277fed0c5848 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Fri, 16 Jan 2015 20:46:06 +0100 Subject: [PATCH 1/6] No trailing space after for,foreach,etc --- src/dfmt.d | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/dfmt.d b/src/dfmt.d index 91e05f3..ae8dc75 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -215,7 +215,7 @@ private: currentLineLength += currentTokenLength() + 1; writeToken(); write(" "); - writeParens(); + writeParens(false); if (current.type != tok!"{" && current.type != tok!";") { pushIndent(); @@ -286,7 +286,7 @@ private: } goto binary; case tok!"(": - writeParens(); + writeParens(true); break; case tok!":": if (!assumeSorted(astInformation.ternaryColonLocations) @@ -488,7 +488,7 @@ private: popIndent(); } - void writeParens() + void writeParens(bool space_afterwards) in { assert (current.type == tok!"(", str(current.type)); @@ -518,7 +518,8 @@ private: && isKeyword(tokens[index + 1].type))) { writeToken(); - write(" "); + if (space_afterwards) + write(" "); } else writeToken(); @@ -542,7 +543,7 @@ private: immutable l = indentLevel; writeToken(); // switch write(" "); - writeParens(); + writeParens(true); if (current.type != tok!"{") return; if (config.braceStyle == BraceStyle.otbs) From 0f337b0a1590cdfcd5b5b59799ac49c199565496 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Fri, 16 Jan 2015 20:50:19 +0100 Subject: [PATCH 2/6] Put some space before @ --- src/dfmt.d | 3 ++- tests/heronian.d.ref | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dfmt.d b/src/dfmt.d index ae8dc75..c2c0f91 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -403,7 +403,8 @@ private: else if (current.type == tok!"identifier") { writeToken(); - if (current.type == tok!"identifier" || isKeyword(current.type)) + if (current.type == tok!"identifier" || isKeyword(current.type) + || current.type == tok!"@") write(" "); } else diff --git a/tests/heronian.d.ref b/tests/heronian.d.ref index f7334ff..d9c6d46 100644 --- a/tests/heronian.d.ref +++ b/tests/heronian.d.ref @@ -1,7 +1,7 @@ import std.stdio, std.math, std.range, std.algorithm, std.numeric, std.traits, std.typecons; -double hero(in uint a, in uint b, in uint c) pure nothrow @safe@nogc +double hero(in uint a, in uint b, in uint c) pure nothrow @safe @nogc { immutable s = (a + b + c) / 2.0; immutable a2 = s * (s - a) * (s - b) * (s - c); From 34f01d22c475614d82dc31798af7d431ad0ff7ba Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Fri, 16 Jan 2015 20:58:48 +0100 Subject: [PATCH 3/6] adapt test cases where current behavior is ok (though not perfect) --- tests/guessnumber.d.ref | 3 +-- tests/heronian.d.ref | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/guessnumber.d.ref b/tests/guessnumber.d.ref index 9ff51c1..071f7e4 100644 --- a/tests/guessnumber.d.ref +++ b/tests/guessnumber.d.ref @@ -3,8 +3,7 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range; void main() { immutable interval = tuple(1, 100); - writefln("Guess my target number that is between " - ~ "%d and %d (inclusive).\n", + writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", interval[]); immutable target = uniform!"[]"(interval[]); foreach (immutable i; sequence!q{n}) diff --git a/tests/heronian.d.ref b/tests/heronian.d.ref index d9c6d46..14d84c9 100644 --- a/tests/heronian.d.ref +++ b/tests/heronian.d.ref @@ -39,9 +39,9 @@ void main() /*@safe*/ writefln("%3s %8d %3dx%dx%d", t[].hero, t[].only.sum, t[]); } - writefln("Primitive Heronian triangles with sides up to %d: %d", maxSide, - h.length); - "\nFirst ten when ordered by increasing area, then perimeter,then maximum sides:".writeln; + writefln("Primitive Heronian triangles with sides up to %d: %d", maxSide, h.length); + "\nFirst ten when ordered by increasing area, then perimeter,then maximum sides:" + .writeln; showTriangles(h.take(10)); "\nAll with area 210 subject to the previous ordering:".writeln; showTriangles(h.filter!(t => t[].hero == 210)); From 2d218f234b1df336d34258e9aeaf30a588044a10 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Fri, 16 Jan 2015 21:34:15 +0100 Subject: [PATCH 4/6] refactor: extract function 'tokenLength' Seems to fix a bug where the length was incorrectly calculated, since tests/guessnumber.d output changed to something saner. --- src/dfmt.d | 35 +++++++++++++++++++---------------- tests/guessnumber.d.ref | 4 ++-- 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/src/dfmt.d b/src/dfmt.d index c2c0f91..c8c47c2 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -599,33 +599,36 @@ private: newline(); } - int currentTokenLength() - { - switch (current.type) - { - mixin (generateFixedLengthCases()); - default: return cast(int) current.text.length; - } - } - - int nextTokenLength() + int tokenLength(size_t i) pure @safe @nogc { import std.algorithm : countUntil; - if (index + 1 >= tokens.length) - return INVALID_TOKEN_LENGTH; - auto nextToken = tokens[index + 1]; - switch (nextToken.type) + assert (i+1 <= tokens.length); + switch (tokens[i].type) { case tok!"identifier": case tok!"stringLiteral": case tok!"wstringLiteral": case tok!"dstringLiteral": - return cast(int) nextToken.text.countUntil('\n'); + auto c = cast(int) tokens[i].text.countUntil('\n'); + if (c == -1) + return cast(int) tokens[i].text.length; mixin (generateFixedLengthCases()); - default: return -1; + default: return INVALID_TOKEN_LENGTH; } } + int currentTokenLength() pure @safe @nogc + { + return tokenLength(index); + } + + int nextTokenLength() pure @safe @nogc + { + if (index + 1 >= tokens.length) + return INVALID_TOKEN_LENGTH; + return tokenLength(index + 1); + } + ref current() const @property in { diff --git a/tests/guessnumber.d.ref b/tests/guessnumber.d.ref index 071f7e4..8304502 100644 --- a/tests/guessnumber.d.ref +++ b/tests/guessnumber.d.ref @@ -3,8 +3,8 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range; void main() { immutable interval = tuple(1, 100); - writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", - interval[]); + writefln("Guess my target number that is between " + ~ "%d and %d (inclusive).\n", interval[]); immutable target = uniform!"[]"(interval[]); foreach (immutable i; sequence!q{n}) { From 91983ebfea5b81456660dfdd606eec5eb4dd9955 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Fri, 16 Jan 2015 21:54:20 +0100 Subject: [PATCH 5/6] More clever length estimating for import statements Comma separated imports can get so long, they line breaks. Previously, line breaks were inserted, if the identifier after "," made the line longer than the soft limit. Now the whole expression length after "," is calculated for the decision. For example, no line breaks within "std.stdio" anymore. --- src/dfmt.d | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/dfmt.d b/src/dfmt.d index c8c47c2..83bd5dc 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -197,6 +197,28 @@ private: newline(); break; } + else if (current.type == tok!",") + { + // compute length until next , or ; + int length_of_next_chunk = INVALID_TOKEN_LENGTH; + for (size_t i=index+1; i= 0); + length_of_next_chunk += len; + } + assert (length_of_next_chunk > 0); + writeToken(); + if (currentLineLength+1+length_of_next_chunk >= config.columnSoftLimit) + { + pushIndent(); + newline(); + } + else + write(" "); + } else formatStep(); } From 207dbe638f2546c11899943fb2a2fd1da119ed75 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Fri, 16 Jan 2015 22:19:15 +0100 Subject: [PATCH 6/6] Fix tests --- tests/frontpage.d.ref | 2 +- tests/guessnumber.d.ref | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/frontpage.d.ref b/tests/frontpage.d.ref index 640ab33..9d82c63 100644 --- a/tests/frontpage.d.ref +++ b/tests/frontpage.d.ref @@ -10,5 +10,5 @@ void main() ++lines; sumLength += line.length; } - writeln("Average line length: ", lines ? sumLength / lines:0); + writeln("Average line length: ", lines ? sumLength / lines : 0); } diff --git a/tests/guessnumber.d.ref b/tests/guessnumber.d.ref index 8304502..7d8b62b 100644 --- a/tests/guessnumber.d.ref +++ b/tests/guessnumber.d.ref @@ -30,6 +30,6 @@ void main() writeln(" Well guessed."); break; } - writeln(answer < target ? " Too low.":" Too high."); + writeln(answer < target ? " Too low." : " Too high."); } }