nitls: reuse the entity sorter for all output
[nit.git] / src / nitls.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 Jean Privat <jean@pryen.org>
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 # Simple tool to list Nit source files
18 module nitls
19
20 import modelbuilder
21 intrude import loader
22 import ordered_tree
23 import console
24
25 class ProjTree
26 super OrderedTree[Object]
27
28 var opt_paths = false
29 var tc: ToolContext
30
31 redef fun display(o)
32 do
33 if o isa MGroup then
34 if opt_paths then
35 return o.filepath.as(not null)
36 else
37 var d = ""
38 if o.mdoc != null then
39 if tc.opt_no_color.value then
40 d = ": {o.mdoc.content.first}"
41 else
42 d = ": {o.mdoc.content.first.green}"
43 end
44 end
45 if tc.opt_no_color.value then
46 return "{o.name}{d} ({o.filepath.to_s})"
47 else
48 return "{o.name}{d} ({o.filepath.yellow})"
49 end
50 end
51 else if o isa ModulePath then
52 if opt_paths then
53 return o.filepath
54 else
55 var d = ""
56 var dd = ""
57 if o.mmodule != null and o.mmodule.mdoc != null then
58 if tc.opt_no_color.value then
59 d = ": {o.mmodule.mdoc.content.first}"
60 else
61 d = ": {o.mmodule.mdoc.content.first.green}"
62 end
63 end
64 if o.mmodule != null and not o.mmodule.in_importation.direct_greaters.is_empty then
65 var ms = new Array[String]
66 for m in o.mmodule.in_importation.direct_greaters do
67 if m.mgroup.mproject == o.mmodule.mgroup.mproject then
68 ms.add m.name
69 else
70 ms.add m.full_name
71 end
72 end
73 if tc.opt_no_color.value then
74 dd = " ({ms.join(" ")})"
75 else
76 dd = " ({ms.join(" ")})".light_gray
77 end
78 end
79 if tc.opt_no_color.value then
80 return "{o.name.bold}{d} ({o.filepath.to_s}){dd}"
81 else
82 return "{o.name.bold}{d} ({o.filepath.yellow}){dd}"
83 end
84 end
85 else
86 abort
87 end
88 end
89 end
90
91 class AlphaEntityComparator
92 super Comparator
93 fun nameof(a: COMPARED): String
94 do
95 if a isa MGroup then
96 return a.name
97 else if a isa ModulePath then
98 return a.name
99 else
100 abort
101 end
102 end
103 redef fun compare(a,b)
104 do
105 return nameof(a) <=> nameof(b)
106 end
107 end
108
109 var tc = new ToolContext
110
111 var opt_keep = new OptionBool("Ignore errors and files that are not a Nit source file", "-k", "--keep")
112 var opt_recursive = new OptionBool("Process directories recussively", "-r", "--recursive")
113 var opt_tree = new OptionBool("List source files in their groups and projects", "-t", "--tree")
114 var opt_source = new OptionBool("List source files", "-s", "--source")
115 var opt_project = new OptionBool("List projects paths (default)", "-P", "--project")
116 var opt_depends = new OptionBool("List dependencies of given modules", "-d", "--depends")
117 var opt_make = new OptionBool("List dependencies suitable for a rule in a Makefile. Alias for -d, -p and -s", "-M")
118 var opt_paths = new OptionBool("List only path (instead of name + path)", "-p", "--path")
119
120 tc.option_context.add_option(opt_keep, opt_recursive, opt_tree, opt_source, opt_project, opt_depends, opt_paths, opt_make)
121 tc.tooldescription = "Usage: nitls [OPTION]... <file.nit|directory>...\nLists the projects and/or paths of Nit sources files."
122 tc.accept_no_arguments = true
123 tc.process_options(args)
124
125 if opt_make.value then
126 opt_depends.value = true
127 opt_paths.value = true
128 opt_source.value = true
129 end
130
131 var sum = opt_tree.value.to_i + opt_source.value.to_i + opt_project.value.to_i
132 if sum > 1 then
133 print "Error: options --tree, --source, and --project are exclusives."
134 print tc.tooldescription
135 exit 1
136 end
137
138 tc.keep_going = opt_keep.value
139
140 var model = new Model
141 var mb = new ModelBuilder(model, tc)
142
143 if tc.option_context.rest.is_empty then tc.option_context.rest.add "."
144 var files
145 if opt_recursive.value then
146 files = new Array[String]
147 for d in tc.option_context.rest do
148 var pipe = new IProcess("find", d, "-name", "*.nit")
149 while not pipe.eof do
150 var l = pipe.read_line
151 if l == "" then break # last line
152 l = l.substring(0,l.length-1) # strip last oef
153 files.add l
154 end
155 pipe.close
156 pipe.wait
157 if pipe.status != 0 and not opt_keep.value then exit 1
158 end
159 else
160 files = tc.option_context.rest
161 end
162
163 for a in files do
164 var mp = mb.identify_file(a)
165 tc.check_errors
166 if mp != null and not opt_paths.value then
167 var mm = mb.load_module(mp.filepath)
168 if mm != null and opt_depends.value then
169 mb.build_module_importation(mm)
170 end
171 tc.check_errors
172 end
173 end
174
175 if sum == 0 then opt_project.value = true
176
177 var ot = new ProjTree(tc)
178 var sorter = new AlphaEntityComparator
179 if opt_tree.value then
180 ot.opt_paths = opt_paths.value
181 for p in model.mprojects do
182 for g in p.mgroups do
183 var pa = g.parent
184 if g.is_interesting then
185 ot.add(pa, g)
186 pa = g
187 end
188 for mp in g.module_paths do
189 ot.add(pa, mp)
190 end
191 end
192 end
193 ot.sort_with(sorter)
194 ot.write_to(stdout)
195 end
196
197 if opt_source.value then
198 var list = new Array[ModulePath]
199 for p in model.mprojects do
200 for g in p.mgroups do
201 for mp in g.module_paths do
202 list.add mp
203 end
204 end
205 end
206 sorter.sort(list)
207 for mp in list do
208 if opt_paths.value then
209 print mp.filepath
210 else
211 print "{mp.mgroup.full_name}/{ot.display(mp)}"
212 end
213 end
214 end
215
216 if opt_project.value then
217 var list = new Array[MGroup]
218 for p in model.mprojects do
219 list.add p.root.as(not null)
220 end
221 sorter.sort(list)
222 for g in list do
223 var path = g.filepath.as(not null)
224 if opt_paths.value then
225 print path
226 else
227 var d = ""
228 var md = g.mdoc_or_fallback
229 if md != null then
230 if tc.opt_no_color.value then
231 d = ": {md.content.first}"
232 else
233 d = ": {md.content.first.green}"
234 end
235 end
236 if tc.opt_no_color.value then
237 print "{g.name}{d} ({path})"
238 else
239 print "{g.name}{d} ({path.yellow})"
240 end
241 end
242 end
243 end