From 1e543822fceb303a1cf392e77dff8e5486ad48f2 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Thu, 15 Jan 2015 19:49:55 +0100 Subject: [PATCH] refactor: extract function 'format' --- src/dfmt.d | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/dfmt.d b/src/dfmt.d index 341c91e..16af58e 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -42,8 +42,10 @@ int main(string[] args) "inplace", &inplace); File output = stdout; ubyte[] buffer; + string source_desc; if (args.length == 1) { + source_desc = "stdin"; ubyte[4096] inputBuffer; ubyte[] b; while (true) @@ -57,12 +59,19 @@ int main(string[] args) } else { + source_desc = args[1]; File f = File(args[1]); buffer = new ubyte[](cast(size_t)f.size); f.rawRead(buffer); if (inplace) output = File(args[1], "w"); } + format(source_desc, buffer, output); + return 0; +} + +void format(string source_desc, ubyte[] buffer, File output) +{ LexerConfig config; config.stringBehavior = StringBehavior.source; config.whitespaceBehavior = WhitespaceBehavior.skip; @@ -73,7 +82,7 @@ int main(string[] args) ASTInformation astInformation; FormatterConfig formatterConfig; auto parseTokens = getTokensForParser(buffer, parseConfig, &cache); - auto mod = parseModule(parseTokens, args.length > 1 ? args[1] : "stdin"); + auto mod = parseModule(parseTokens, source_desc); auto visitor = new FormatVisitor(&astInformation); visitor.visit(mod); astInformation.cleanup(); @@ -81,7 +90,6 @@ int main(string[] args) auto tokenFormatter = TokenFormatter(tokens, output, &astInformation, &formatterConfig); tokenFormatter.format(); - return 0; } struct TokenFormatter