]> git.ipfire.org Git - thirdparty/git.git/blame - generate-cmdlist.sh
generate-cmdlist.sh: replace "grep' invocation with a shell version
[thirdparty/git.git] / generate-cmdlist.sh
CommitLineData
82aec45b
ES
1#!/bin/sh
2
f318d739
NTND
3die () {
4 echo "$@" >&2
5 exit 1
6}
7
8command_list () {
e88842ee
ÆAB
9 while read cmd rest
10 do
11 case "$cmd" in
12 "#"* | '')
13 # Ignore comments and allow empty lines
14 continue
15 ;;
16 *)
17 case "$exclude_programs" in
18 *":$cmd:"*)
19 ;;
20 *)
21 echo "$cmd $rest"
22 ;;
23 esac
24 esac
25 done <"$1"
f318d739
NTND
26}
27
f318d739
NTND
28category_list () {
29 command_list "$1" |
e88842ee 30 cut -d' ' -f2- |
0f05f225 31 tr ' ' '\012' |
48bcd823
ÆAB
32 grep -v '^$' |
33 LC_ALL=C sort -u
f318d739
NTND
34}
35
f318d739
NTND
36define_categories () {
37 echo
38 echo "/* Command categories */"
39 bit=0
40 category_list "$1" |
41 while read cat
42 do
43 echo "#define CAT_$cat (1UL << $bit)"
44 bit=$(($bit+1))
45 done
46 test "$bit" -gt 32 && die "Urgh.. too many categories?"
47}
48
3c777767
NTND
49define_category_names () {
50 echo
51 echo "/* Category names */"
52 echo "static const char *category_names[] = {"
53 bit=0
54 category_list "$1" |
55 while read cat
56 do
57 echo " \"$cat\", /* (1UL << $bit) */"
58 bit=$(($bit+1))
59 done
60 echo " NULL"
61 echo "};"
62}
63
f318d739
NTND
64print_command_list () {
65 echo "static struct cmdname_help command_list[] = {"
66
67 command_list "$1" |
68 while read cmd rest
69 do
3ebeb1d6
JK
70 synopsis=
71 while read line
72 do
73 case "$line" in
74 "$cmd - "*)
75 synopsis=${line#$cmd - }
76 break
77 ;;
78 esac
79 done <"Documentation/$cmd.txt"
80
81 printf '\t{ "%s", N_("%s"), 0' "$cmd" "$synopsis"
8d5be8b4 82 printf " | CAT_%s" $rest
f318d739
NTND
83 echo " },"
84 done
85 echo "};"
86}
87
e88842ee 88exclude_programs=:
724d6356
JS
89while test "--exclude-program" = "$1"
90do
91 shift
e88842ee 92 exclude_programs="$exclude_programs$1:"
724d6356
JS
93 shift
94done
95
7513595a 96echo "/* Automatically generated by generate-cmdlist.sh */
82aec45b 97struct cmdname_help {
f318d739
NTND
98 const char *name;
99 const char *help;
cfb22a02 100 uint32_t category;
82aec45b 101};
f318d739 102"
60f487ac
NTND
103define_categories "$1"
104echo
3c777767
NTND
105define_category_names "$1"
106echo
60f487ac 107print_command_list "$1"