This commit is contained in:
Hackerpilot 2015-04-20 00:07:33 -07:00
parent 70bc25a856
commit 87866f8fcd
14 changed files with 108 additions and 24 deletions

View File

@ -3,6 +3,11 @@ trim_trailing_whitespace = true
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true
[*.sh]
tab_width = 4
indent_size = 4
indent_style = tab
[*.d] [*.d]
dfmt_align_switch_statements = true dfmt_align_switch_statements = true
dfmt_brace_style = allman dfmt_brace_style = allman

View File

@ -48,7 +48,7 @@ dfmt_outdent_labels (Not yet implemented) | `true`, `false` | `true` | Decrease
dfmt_align_switch_statements (Not yet implemented) | `true`, `false` | `true` | Align labels, cases, and defaults with their enclosing switch dfmt_align_switch_statements (Not yet implemented) | `true`, `false` | `true` | Align labels, cases, and defaults with their enclosing switch
dfmt_outdent_attributes (Not yet implemented) | `true`, `false` | `true` | Decrease the indentation level of attributes dfmt_outdent_attributes (Not yet implemented) | `true`, `false` | `true` | Decrease the indentation level of attributes
dfmt_split_operator_at_line_end (Not yet implemented) | `true`, `false` | `false` | Place operators on the end of the previous line when splitting lines dfmt_split_operator_at_line_end (Not yet implemented) | `true`, `false` | `false` | Place operators on the end of the previous line when splitting lines
dfmt_space_after_cast (Not yet implemented) | `true`, `false` | `false` | Insert space after the closing paren of a `cast` expression dfmt_space_after_cast | `true`, `false` | `false` | Insert space after the closing paren of a `cast` expression
dfmt_space_after_keywords (Not yet implemented) | `true`, `false` | `true` | Insert space after `if`, `while`, `foreach`, etc, and before the `(` dfmt_space_after_keywords (Not yet implemented) | `true`, `false` | `true` | Insert space after `if`, `while`, `foreach`, etc, and before the `(`
## Terminology ## Terminology

View File

@ -23,21 +23,21 @@ enum BraceStyle
struct Config struct Config
{ {
/// ///
OptionalBoolean dfmt_align_switch_statements = OptionalBoolean.t; OptionalBoolean dfmt_align_switch_statements;
/// ///
BraceStyle dfmt_brace_style = BraceStyle.allman; BraceStyle dfmt_brace_style;
/// ///
OptionalBoolean dfmt_outdent_attributes = OptionalBoolean.t; OptionalBoolean dfmt_outdent_attributes;
/// ///
OptionalBoolean dfmt_outdent_labels = OptionalBoolean.t; OptionalBoolean dfmt_outdent_labels;
/// ///
int dfmt_soft_max_line_length = 80; int dfmt_soft_max_line_length = -1;
/// ///
OptionalBoolean dfmt_space_after_cast = OptionalBoolean.t; OptionalBoolean dfmt_space_after_cast;
/// ///
OptionalBoolean dfmt_space_after_keywords = OptionalBoolean.t; OptionalBoolean dfmt_space_after_keywords;
/// ///
OptionalBoolean dfmt_split_operator_at_line_end = OptionalBoolean.f; OptionalBoolean dfmt_split_operator_at_line_end;
mixin StandardEditorConfigFields; mixin StandardEditorConfigFields;
@ -48,12 +48,20 @@ struct Config
*/ */
void initializeWithDefaults() void initializeWithDefaults()
{ {
pattern = "*.d"; pattern = "*.d";
end_of_line = EOL.lf; end_of_line = EOL.lf;
indent_style = IndentStyle.space; indent_style = IndentStyle.space;
indent_size = 4; indent_size = 4;
tab_width = 4; tab_width = 4;
max_line_length = 120; max_line_length = 120;
dfmt_align_switch_statements = OptionalBoolean.t;
dfmt_brace_style = BraceStyle.allman;
dfmt_outdent_attributes = OptionalBoolean.t;
dfmt_outdent_labels = OptionalBoolean.t;
dfmt_soft_max_line_length = 80;
dfmt_space_after_cast = OptionalBoolean.t;
dfmt_space_after_keywords = OptionalBoolean.t;
dfmt_split_operator_at_line_end = OptionalBoolean.f;
} }
/** /**

View File

@ -650,6 +650,8 @@ private:
void formatKeyword() void formatKeyword()
{ {
import dfmt.editorconfig : OptionalBoolean;
switch (current.type) switch (current.type)
{ {
case tok!"default": case tok!"default":
@ -657,6 +659,8 @@ private:
break; break;
case tok!"cast": case tok!"cast":
writeToken(); writeToken();
if (currentIs(tok!"("))
writeParens(config.dfmt_space_after_cast == OptionalBoolean.t);
break; break;
case tok!"try": case tok!"try":
if (peekIs(tok!"{")) if (peekIs(tok!"{"))
@ -1062,12 +1066,15 @@ private:
body body
{ {
immutable int depth = parenDepth; immutable int depth = parenDepth;
parenDepth = 0;
do do
{ {
formatStep();
spaceAfterParens = spaceAfter; spaceAfterParens = spaceAfter;
formatStep();
} }
while (index < tokens.length && parenDepth > depth); while (index < tokens.length && parenDepth > 0);
parenDepth = depth;
spaceAfterParens = spaceAfter;
} }
void indent() void indent()

View File

@ -24,6 +24,30 @@ else
Config optConfig; Config optConfig;
optConfig.pattern = "*.d"; optConfig.pattern = "*.d";
bool showHelp; bool showHelp;
void handleBooleans(string option, string value)
{
import dfmt.editorconfig : OptionalBoolean;
import std.exception : enforce;
enforce(value == "true" || value == "false", "Invalid argument");
switch (option)
{
case "outdent_attributes":
optConfig.dfmt_outdent_attributes = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
break;
case "outdent_labels":
optConfig.dfmt_outdent_labels = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
break;
case "space_after_cast":
optConfig.dfmt_space_after_cast = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
break;
case "split_operator_at_line_end":
optConfig.dfmt_split_operator_at_line_end = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
break;
default: assert(false, "Invalid command-line switch");
}
}
getopt(args, getopt(args,
"align_switch_statements", &optConfig.dfmt_align_switch_statements, "align_switch_statements", &optConfig.dfmt_align_switch_statements,
"brace_style", &optConfig.dfmt_brace_style, "brace_style", &optConfig.dfmt_brace_style,
@ -34,10 +58,10 @@ else
"inplace", &inplace, "inplace", &inplace,
"max_line_length", &optConfig.max_line_length, "max_line_length", &optConfig.max_line_length,
"max_line_length", &optConfig.max_line_length, "max_line_length", &optConfig.max_line_length,
"outdent_attributes", &optConfig.dfmt_outdent_attributes, "outdent_attributes", &handleBooleans,
"outdent_labels", &optConfig.dfmt_outdent_labels, "outdent_labels", &handleBooleans,
"space_after_cast", &optConfig.dfmt_space_after_cast, "space_after_cast", &handleBooleans,
"split_operator_at_line_end", &optConfig.dfmt_split_operator_at_line_end, "split_operator_at_line_end", &handleBooleans,
"tab_width", &optConfig.tab_width); "tab_width", &optConfig.tab_width);
if (showHelp) if (showHelp)
@ -132,11 +156,6 @@ Formatting Options:
} }
private string createFilePath(bool readFromStdin, string fileName) private string createFilePath(bool readFromStdin, string fileName)
//out (result)
//{
// stderr.writeln(__FUNCTION__, ": ", result);
//}
//body
{ {
import std.file : getcwd; import std.file : getcwd;
import std.path : isRooted; import std.path : isRooted;

0
tests/allman/.d.ref Normal file
View File

View File

@ -0,0 +1,6 @@
import std.stdio : writeln;
void main()
{
writeln(cast(dchar)uint.max);
}

View File

@ -1,5 +1,10 @@
dfmt --braces=allman $1.d > allman/$1.d.ref argsFile=$1.args
dfmt --braces=otbs $1.d > otbs/$1.d.ref if [ -e ${argsFile} ]; then
args=$(cat ${argsFile})
fi
echo ${args}
dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref
dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref
echo "------------------" echo "------------------"
echo "allman:" echo "allman:"

1
tests/issue0031.args Normal file
View File

@ -0,0 +1 @@
--space_after_cast=false

6
tests/issue0031.d Normal file
View File

@ -0,0 +1,6 @@
import std.stdio : writeln;
void main()
{
writeln(cast(dchar) uint.max);
}

0
tests/otbs/.d.ref Normal file
View File

View File

@ -0,0 +1,5 @@
import std.stdio : writeln;
void main() {
writeln(cast(dchar)uint.max);
}

16
tests/test Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e
for braceStyle in allman otbs
do
for source in *.d
do
echo "${source}.ref" "${braceStyle}/${source}.out"
argsFile=$(basename ${source}).args
if [ -e ${argsFile} ]; then
args=$(cat ${argsFile})
fi
../bin/dfmt --brace_style=${braceStyle} ${args} "${source}" > "${braceStyle}/${source}.out"
diff -u "${braceStyle}/${source}.ref" "${braceStyle}/${source}.out"
done
done

View File

@ -6,7 +6,13 @@ do
for source in *.d for source in *.d
do do
echo "${source}.ref" "${braceStyle}/${source}.out" echo "${source}.ref" "${braceStyle}/${source}.out"
../bin/dfmt --brace_style=${braceStyle} "${source}" > "${braceStyle}/${source}.out" argsFile=$(basename ${source} .d).args
if [ -e ${argsFile} ]; then
args=$(cat ${argsFile})
else
args=
fi
../bin/dfmt --brace_style=${braceStyle} ${args} "${source}" > "${braceStyle}/${source}.out"
diff -u "${braceStyle}/${source}.ref" "${braceStyle}/${source}.out" diff -u "${braceStyle}/${source}.ref" "${braceStyle}/${source}.out"
done done
done done