nitdoc: introduce MakePagePhase
[nit.git] / src / nitdoc.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Documentation generator for the nit language.
16 #
17 # Generate API documentation in HTML format from nit source code.
18 module nitdoc
19
20 import modelbuilder
21 import doc
22
23 redef class ToolContext
24 # Nitdoc generation phase.
25 var docphase: Phase = new Nitdoc(self, null)
26 end
27
28 # Nitdoc phase explores the model and generate pages for each mentities found
29 private class Nitdoc
30 super Phase
31 redef fun process_mainmodule(mainmodule, mmodules)
32 do
33 var doc = new DocModel(mainmodule.model, mainmodule)
34
35 var phases = [
36 new ExtractionPhase(toolcontext, doc),
37 new MakePagePhase(toolcontext, doc): DocPhase]
38
39 for phase in phases do
40 toolcontext.info("# {phase.class_name}", 1)
41 phase.apply
42 end
43 end
44 end
45
46 # build toolcontext
47 var toolcontext = new ToolContext
48 var tpl = new Template
49 tpl.add "Usage: nitdoc [OPTION]... <file.nit>...\n"
50 tpl.add "Generates HTML pages of API documentation from Nit source files."
51 toolcontext.tooldescription = tpl.write_to_string
52
53 # process options
54 toolcontext.process_options(args)
55 var arguments = toolcontext.option_context.rest
56
57 # build model
58 var model = new Model
59 var mbuilder = new ModelBuilder(model, toolcontext)
60 var mmodules = mbuilder.parse_full(arguments)
61
62 # process
63 if mmodules.is_empty then return
64 mbuilder.run_phases
65 toolcontext.run_global_phases(mmodules)