da8454a5969ea34cc7300a0fd55bbae4b02b463d
[nit.git] / src / nitsmells.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 import metrics_base
16 import mclasses_metrics
17 import semantize
18
19 import codesmells_metrics
20
21 # Create a tool context to handle options and paths
22 var toolcontext = new ToolContext
23 toolcontext.tooldescription = "Usage: nitsmells [OPTION]... <file.nit>...\n Computes code smells on Nit programs."
24 # We do not add other options, so process them now!
25 toolcontext.process_options(args)
26 # Get arguments
27 var arguments = toolcontext.option_context.rest
28 # We need a model to collect stufs
29 var model = new Model
30 # An a model builder to parse files
31 var modelbuilder = new ModelBuilder(model, toolcontext)
32 # Here we load an process all modules passed on the command line
33 var mmodules = modelbuilder.parse_full(arguments)
34 modelbuilder.run_phases
35 print "*** CODE SMELLS METRICS ***"
36 toolcontext.run_global_phases(mmodules)