mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* docgen: move to shared RST state (fix #16990) * Update lib/packages/docutils/rst.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de> * Update lib/packages/docutils/rst.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de> * Update lib/packages/docutils/rst.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de> * Update compiler/docgen.nim Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * Update compiler/docgen.nim Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * Update compiler/docgen.nim Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * Update lib/packages/docutils/rst.nim Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * rename `cmdDoc2` to `cmdDoc` * fix (P)RstSharedState convention * new style of initialization * misc suggestions * 1 more rename * fix a regression Co-authored-by: Andreas Rumpf <rumpf_a@web.de> Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
89 lines
2.5 KiB
Nim
89 lines
2.5 KiB
Nim
#
|
|
#
|
|
# The Nim Compiler
|
|
# (c) Copyright 2012 Andreas Rumpf
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
#
|
|
|
|
# This module implements a new documentation generator that runs after
|
|
# semantic checking.
|
|
|
|
import
|
|
options, ast, msgs, passes, docgen, lineinfos, pathutils
|
|
|
|
from modulegraphs import ModuleGraph, PPassContext
|
|
|
|
type
|
|
TGen = object of PPassContext
|
|
doc: PDoc
|
|
module: PSym
|
|
config: ConfigRef
|
|
PGen = ref TGen
|
|
|
|
proc shouldProcess(g: PGen): bool =
|
|
(optWholeProject in g.doc.conf.globalOptions and g.module.getnimblePkgId == g.doc.conf.mainPackageId) or
|
|
sfMainModule in g.module.flags or g.config.projectMainIdx == g.module.info.fileIndex
|
|
|
|
template closeImpl(body: untyped) {.dirty.} =
|
|
var g = PGen(p)
|
|
let useWarning = sfMainModule notin g.module.flags
|
|
let groupedToc = true
|
|
if shouldProcess(g):
|
|
finishGenerateDoc(g.doc)
|
|
body
|
|
try:
|
|
generateIndex(g.doc)
|
|
except IOError:
|
|
discard
|
|
|
|
proc close(graph: ModuleGraph; p: PPassContext, n: PNode): PNode =
|
|
closeImpl:
|
|
writeOutput(g.doc, useWarning, groupedToc)
|
|
|
|
proc closeJson(graph: ModuleGraph; p: PPassContext, n: PNode): PNode =
|
|
closeImpl:
|
|
writeOutputJson(g.doc, useWarning)
|
|
|
|
proc processNode(c: PPassContext, n: PNode): PNode =
|
|
result = n
|
|
var g = PGen(c)
|
|
if shouldProcess(g):
|
|
generateDoc(g.doc, n, n)
|
|
|
|
proc processNodeJson(c: PPassContext, n: PNode): PNode =
|
|
result = n
|
|
var g = PGen(c)
|
|
if shouldProcess(g):
|
|
generateJson(g.doc, n, false)
|
|
|
|
template myOpenImpl(ext: untyped) {.dirty.} =
|
|
var g: PGen
|
|
new(g)
|
|
g.module = module
|
|
g.config = graph.config
|
|
var d = newDocumentor(AbsoluteFile toFullPath(graph.config, FileIndex module.position),
|
|
graph.cache, graph.config, ext, module)
|
|
d.hasToc = true
|
|
g.doc = d
|
|
result = g
|
|
|
|
proc myOpen(graph: ModuleGraph; module: PSym; idgen: IdGenerator): PPassContext =
|
|
myOpenImpl(HtmlExt)
|
|
|
|
proc myOpenTex(graph: ModuleGraph; module: PSym; idgen: IdGenerator): PPassContext =
|
|
myOpenImpl(TexExt)
|
|
|
|
proc myOpenJson(graph: ModuleGraph; module: PSym; idgen: IdGenerator): PPassContext =
|
|
myOpenImpl(JsonExt)
|
|
|
|
const docgen2Pass* = makePass(open = myOpen, process = processNode, close = close)
|
|
const docgen2TexPass* = makePass(open = myOpenTex, process = processNode,
|
|
close = close)
|
|
const docgen2JsonPass* = makePass(open = myOpenJson, process = processNodeJson,
|
|
close = closeJson)
|
|
|
|
proc finishDoc2Pass*(project: string) =
|
|
discard
|