5 # Copyright 2015 6WIND S.A.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
11 # * Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
13 # * Redistributions in binary form must reproduce the above copyright
14 # notice, this list of conditions and the following disclaimer in
15 # the documentation and/or other materials provided with the
17 # * Neither the name of 6WIND S.A. nor the names of its
18 # contributors may be used to endorse or promote products derived
19 # from this software without specific prior written permission.
21 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 # Do some basic checks in MAINTAINERS file
37 # Get files matching paths with wildcards and / meaning recursing
38 files () # <path> [<path> ...]
50 if ! echo "$1" | grep -q '/[[:space:]]*$' ; then
51 # filter out deeper directories
52 sed "/\(\/[^/]*\)\{$(($(echo "$1" | grep -o / | wc -l) + 1))\}/d"
61 # Get all files matching F: and X: fields
62 parse_fx () # <index file>
66 # parse each line excepted underlining
67 for line in $( (sed '/^-\+$/d' $1 ; echo) | sed 's,^$,§,') ; do
68 if echo "$line" | grep -q '^§$' ; then
69 # empty line delimit end of section
70 whitelist=$(files $flines)
71 blacklist=$(files $xlines)
72 match=$(aminusb "$whitelist" "$blacklist")
73 if [ -n "$whitelist" ] ; then
75 maintainers=$(echo "$maintainers" | sed -r 's,.*<(.*)>.*,\1,')
76 maintainers=$(printf "$maintainers" | sed -e 's,^,<,' -e 's,$,>,')
79 if [ -n "$match" ] ; then
86 elif echo "$line" | grep -q '^[A-Z]: ' ; then
88 maintainers=$(add_line_to_if "$line" "$maintainers" 'M: ')
89 # file matching pattern
90 flines=$(add_line_to_if "$line" "$flines" 'F: ')
91 # file exclusion pattern
92 xlines=$(add_line_to_if "$line" "$xlines" 'X: ')
93 else # assume it is a title
99 # Check patterns in F: and X:
100 check_fx () # <index file>
104 for line in $(sed -n 's,^[FX]: ,,p' $1 | tr '*' '#') ; do
105 line=$(printf "$line" | tr '#' '*')
106 match=$(files "$line")
107 if [ -z "$match" ] ; then
113 # Add a line to a set of lines if it begins with right pattern
114 add_line_to_if () # <new line> <lines> <head pattern>
118 echo "$1" | sed -rn "s,^$3(.*),\1,p"
123 # Subtract two sets of lines
124 aminusb () # <lines a> <lines b>
126 printf "$1\n$2\n$2" | sort | uniq -u | sed '/^$/d'
130 parsed=$(parse_fx MAINTAINERS)
131 echo "$parsed" | grep -c '^#'
132 printf 'with maintainer: '
133 echo "$parsed" | grep -c '^#.*@'
134 printf 'maintainers: '
135 grep '^M:.*<' MAINTAINERS | sort -u | wc -l
139 echo '# orphan areas'
141 echo "$parsed" | sed -rn 's,^#([^@]*)$,\1,p' | uniq
145 echo '# files not listed'
148 listed=$(echo "$parsed" | sed '/^#/d' | sort -u)
149 aminusb "$all" "$listed"
153 echo '# wrong patterns'
157 # TODO: check overlaps