nimpretty: explicit --indent option; fixes #9502; refs #9510 [backport]

(cherry picked from commit d1fe195dcc)
This commit is contained in:
Andreas Rumpf
2018-11-11 10:38:41 +01:00
committed by narimiran
parent 7d88738068
commit 172e95be50
4 changed files with 33 additions and 16 deletions

View File

@@ -30,7 +30,7 @@ type
lastTok: TTokType
inquote, lastTokWasTerse: bool
semicolons: SemicolonKind
col, lastLineNumber, lineSpan, indentLevel, indWidth: int
col, lastLineNumber, lineSpan, indentLevel, indWidth*: int
keepIndents*: int
doIndentMore*: int
content: string
@@ -41,9 +41,10 @@ type
proc openEmitter*(em: var Emitter, cache: IdentCache;
config: ConfigRef, fileIdx: FileIndex) =
let fullPath = Absolutefile config.toFullPath(fileIdx)
em.indWidth = getIndentWidth(fileIdx, llStreamOpen(fullPath, fmRead),
cache, config)
if em.indWidth == 0: em.indWidth = 2
if em.indWidth == 0:
em.indWidth = getIndentWidth(fileIdx, llStreamOpen(fullPath, fmRead),
cache, config)
if em.indWidth == 0: em.indWidth = 2
em.config = config
em.fid = fileIdx
em.lastTok = tkInvalid

View File

@@ -46,7 +46,7 @@ type
inSemiStmtList*: int
emptyNode: PNode
when defined(nimpretty2):
em: Emitter
em*: Emitter
SymbolMode = enum
smNormal, smAllowNil, smAfterDot

View File

@@ -160,14 +160,18 @@ proc openParsers*(p: var TParsers, fileIdx: FileIndex, inputstream: PLLStream;
proc closeParsers*(p: var TParsers) =
parser.closeParser(p.parser)
proc parseFile*(fileIdx: FileIndex; cache: IdentCache; config: ConfigRef): PNode {.procvar.} =
var
p: TParsers
f: File
proc setupParsers*(p: var TParsers; fileIdx: FileIndex; cache: IdentCache;
config: ConfigRef): bool =
var f: File
let filename = toFullPathConsiderDirty(config, fileIdx)
if not open(f, filename.string):
rawMessage(config, errGenerated, "cannot open file: " & filename.string)
return
return false
openParsers(p, fileIdx, llStreamOpen(f), cache, config)
result = parseAll(p)
closeParsers(p)
result = true
proc parseFile*(fileIdx: FileIndex; cache: IdentCache; config: ConfigRef): PNode {.procvar.} =
var p: TParsers
if setupParsers(p, fileIdx, cache, config):
result = parseAll(p)
closeParsers(p)

View File

@@ -12,7 +12,8 @@
when not defined(nimpretty):
{.error: "This needs to be compiled with --define:nimPretty".}
import ../compiler / [idents, msgs, ast, syntaxes, renderer, options, pathutils]
import ../compiler / [idents, msgs, ast, syntaxes, renderer, options,
pathutils, layouter]
import parseopt, strutils, os
@@ -26,6 +27,7 @@ Usage:
Options:
--backup:on|off create a backup file before overwritting (default: ON)
--output:file set the output file (default: overwrite the .nim file)
--indent:N set the number of spaces that is used for indentation
--version show the version
--help show this help
"""
@@ -40,12 +42,20 @@ proc writeVersion() =
stdout.flushFile()
quit(0)
proc prettyPrint(infile, outfile: string) =
type
PrettyOptions = object
indWidth: int
proc prettyPrint(infile, outfile: string, opt: PrettyOptions) =
var conf = newConfigRef()
let fileIdx = fileInfoIdx(conf, AbsoluteFile infile)
conf.outFile = AbsoluteFile outfile
when defined(nimpretty2):
discard parseFile(fileIdx, newIdentCache(), conf)
var p: TParsers
p.parser.em.indWidth = opt.indWidth
if setupParsers(p, fileIdx, newIdentCache(), conf):
discard parseAll(p)
closeParsers(p)
else:
let tree = parseFile(fileIdx, newIdentCache(), conf)
renderModule(tree, infile, outfile, {}, fileIdx, conf)
@@ -53,6 +63,7 @@ proc prettyPrint(infile, outfile: string) =
proc main =
var infile, outfile: string
var backup = true
var opt: PrettyOptions
for kind, key, val in getopt():
case kind
of cmdArgument:
@@ -63,6 +74,7 @@ proc main =
of "version", "v": writeVersion()
of "backup": backup = parseBool(val)
of "output", "o": outfile = val
of "indent": opt.indWidth = parseInt(val)
else: writeHelp()
of cmdEnd: assert(false) # cannot happen
if infile.len == 0:
@@ -70,6 +82,6 @@ proc main =
if backup:
os.copyFile(source=infile, dest=changeFileExt(infile, ".nim.backup"))
if outfile.len == 0: outfile = infile
prettyPrint(infile, outfile)
prettyPrint(infile, outfile, opt)
main()