Merge branch 'mmnitdoc' of https://github.com/Morriar/nit
[nit.git] / src / nitdbg_commons.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 Lucas Bajolet <lucas.bajolet@hotmail.com>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 module nitdbg_commons
18
19 import modelbuilder
20 import frontend
21 import transform
22
23 class InterpretCommons
24
25 var model: nullable Model
26 var modelbuilder: nullable ModelBuilder
27 var toolcontext: nullable ToolContext
28 var mainmodule: nullable MModule
29 var arguments: nullable Array[String]
30
31 init
32 do
33 end
34
35 fun launch
36 do
37 # Create a tool context to handle options and paths
38 toolcontext = new ToolContext
39 # Add an option "-o" to enable compatibilit with the tests.sh script
40 var opt = new OptionString("compatibility (does noting)", "-o")
41 toolcontext.option_context.add_option(opt)
42 # We do not add other options, so process them now!
43 toolcontext.process_options
44
45 # We need a model to collect stufs
46 model = new Model
47 # An a model builder to parse files
48 modelbuilder = new ModelBuilder(model.as(not null), toolcontext.as(not null))
49
50 arguments = toolcontext.option_context.rest
51 if arguments.is_empty or toolcontext.opt_help.value then
52 toolcontext.option_context.usage
53 exit(0)
54 end
55 var progname = arguments.first
56
57 # Here we load an process all modules passed on the command line
58 var mmodules = modelbuilder.parse([progname])
59 modelbuilder.run_phases
60
61 if toolcontext.opt_only_metamodel.value then exit(0)
62
63 # Here we launch the interpreter on the main module
64 assert mmodules.length == 1
65 mainmodule = mmodules.first
66 end
67
68 end