Merge: doc: fixed some typos and other misc. corrections
[nit.git] / misc / jenkins / listnit.sh
1 #!/bin/sh
2 # This file is part of NIT ( http://www.nitlanguage.org ).
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # This program list git-registered nit files that correspond to real compilable modules.
17 # Real modules exclude basic tests and broken files.
18 # Note: `make full` is required in order to build potential generated dependencies.
19 #
20 # With the flag `-I`, the list of required -I options is also generated.
21 # Thus, it allows to use the command as arguments of tools.
22 #
23 # nitmetrics `./listnit.sh -I`
24
25 # Filepaths of modules to exclude (regular expression)
26 exclude="parser_abs.nit\|nitcc_lexer0"
27
28 # Directories needed for explicit -I options.
29 includedirs="src contrib/tnitter/src/ contrib/benitlux/src/ examples/ contrib/wiringPi/lib/ contrib/opportunity/src/"
30
31 # Flag -I
32 incl=""
33 if test "$1" = "-I"; then
34 incl=true
35 shift
36 fi
37
38 # Get the relative directory to the root of the workdir
39 p=`git rev-parse --show-cdup`
40
41 # List files
42 git ls-files "${p}src/**.nit" "${p}lib/**.nit" "${p}contrib/**.nit" "${p}examples/**.nit" | \
43 grep -v "$exclude" | tee listnit.out
44
45 # List -I if needed
46 if test -n "$incl"; then
47 for i in $includedirs; do
48 echo "-I $p$i"
49 done
50 fi