update NOTICE
[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 # Generate API documentation in HTML format from nit source code.
17 module nitdoc
18
19 import modelbuilder
20 import doc
21
22 redef class ToolContext
23 var docphase: Phase = new NitdocPhase(self, null)
24 end
25
26 private class NitdocPhase
27 super Phase
28 redef fun process_mainmodule(mainmodule, mmodules)
29 do
30 # generate doc
31 var nitdoc = new Nitdoc(toolcontext, mainmodule.model, mainmodule)
32 nitdoc.generate
33 end
34 end
35
36 # process options
37 var toolcontext = new ToolContext
38 toolcontext.process_options(args)
39 var arguments = toolcontext.option_context.rest
40
41 # build model
42 var model = new Model
43 var mbuilder = new ModelBuilder(model, toolcontext)
44 var mmodules = mbuilder.parse_full(arguments)
45
46 if mmodules.is_empty then return
47 mbuilder.run_phases
48 toolcontext.run_global_phases(mmodules)