cmdlinehelper.nim 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2018 Nim contributors
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. ## Helpers for binaries that use compiler passes, e.g.: nim, nimsuggest
  10. import
  11. options, idents, nimconf, extccomp, commands, msgs,
  12. lineinfos, modulegraphs, condsyms, os, pathutils, parseopt
  13. proc prependCurDir*(f: AbsoluteFile): AbsoluteFile =
  14. when defined(unix):
  15. if os.isAbsolute(f.string): result = f
  16. else: result = AbsoluteFile("./" & f.string)
  17. else:
  18. result = f
  19. proc addCmdPrefix*(result: var string, kind: CmdLineKind) =
  20. # consider moving this to std/parseopt
  21. case kind
  22. of cmdLongOption: result.add "--"
  23. of cmdShortOption: result.add "-"
  24. of cmdArgument, cmdEnd: discard
  25. type
  26. NimProg* = ref object
  27. suggestMode*: bool
  28. supportsStdinFile*: bool
  29. processCmdLine*: proc(pass: TCmdLinePass, cmd: string; config: ConfigRef)
  30. proc initDefinesProg*(self: NimProg, conf: ConfigRef, name: string) =
  31. condsyms.initDefines(conf.symbols)
  32. defineSymbol conf.symbols, name
  33. proc processCmdLineAndProjectPath*(self: NimProg, conf: ConfigRef) =
  34. self.processCmdLine(passCmd1, "", conf)
  35. if conf.projectIsCmd and conf.projectName in ["-", ""]:
  36. handleCmdInput(conf)
  37. elif self.supportsStdinFile and conf.projectName == "-":
  38. handleStdinInput(conf)
  39. elif conf.projectName != "":
  40. setFromProjectName(conf, conf.projectName)
  41. else:
  42. conf.projectPath = AbsoluteDir canonicalizePath(conf, AbsoluteFile getCurrentDir())
  43. proc loadConfigsAndProcessCmdLine*(self: NimProg, cache: IdentCache; conf: ConfigRef;
  44. graph: ModuleGraph): bool =
  45. if self.suggestMode:
  46. conf.setCmd cmdIdeTools
  47. if conf.cmd == cmdNimscript:
  48. incl(conf.globalOptions, optWasNimscript)
  49. loadConfigs(DefaultConfig, cache, conf, graph.idgen) # load all config files
  50. # restores `conf.notes` after loading config files
  51. # because it has overwrites the notes when compiling the system module which
  52. # is a foreign module compared to the project
  53. if conf.cmd in cmdBackends:
  54. conf.notes = conf.mainPackageNotes
  55. if not self.suggestMode:
  56. let scriptFile = conf.projectFull.changeFileExt("nims")
  57. # 'nim foo.nims' means to just run the NimScript file and do nothing more:
  58. if fileExists(scriptFile) and scriptFile == conf.projectFull:
  59. if conf.cmd == cmdNone: conf.setCmd cmdNimscript
  60. if conf.cmd == cmdNimscript: return false
  61. # now process command line arguments again, because some options in the
  62. # command line can overwrite the config file's settings
  63. if conf.backend != backendJs: # bug #19059
  64. extccomp.initVars(conf)
  65. self.processCmdLine(passCmd2, "", conf)
  66. if conf.cmd == cmdNone:
  67. rawMessage(conf, errGenerated, "command missing")
  68. graph.suggestMode = self.suggestMode
  69. return true
  70. proc loadConfigsAndRunMainCommand*(self: NimProg, cache: IdentCache; conf: ConfigRef; graph: ModuleGraph): bool =
  71. ## Alias for loadConfigsAndProcessCmdLine, here for backwards compatibility
  72. loadConfigsAndProcessCmdLine(self, cache, conf, graph)