-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser
executable file
·283 lines (247 loc) · 6.26 KB
/
parser
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#!/bin/bash
# @parseArger-begin
# @parseArger-help "parseArger parsing string for flags" --option "help" --short-option "h"
# @parseArger-version "0.1" --option "version" --short-option "v"
# @parseArger-verbose --option "verbose" --level "0"
# @parseArger-declarations
# @parseArger pos arg-name "positional argument name"
# @parseArger pos description "positional argument description"
# @parseArger opt short "short form" --short s
# @parseArger opt no-name "value for the negation"
# @parseArger opt alias "flag alias" --repeat
# @parseArger opt no-alias "flag negation alias" --repeat
# @parseArger flag on "on by default"
# @parseArger-declarations-end
# @parseArger-utils
_helpHasBeenPrinted=1;
_SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)";
# @parseArger-utils-end
# @parseArger-parsing
die()
{
local _ret="${2:-1}"
test "${_PRINT_HELP:-no}" = yes && print_help >&2
log "$1" -3 >&2
exit "${_ret}"
}
begins_with_short_option()
{
local first_option all_short_options=''
first_option="${1:0:1}"
test "$all_short_options" = "${all_short_options/$first_option/}" && return 1 || return 0
}
# POSITIONALS ARGUMENTS
_positionals=();
_arg_arg_name="";
_arg_description="";
# OPTIONALS ARGUMENTS
_arg_short=
_arg_no_name=
_arg_alias=()
_arg_no_alias=()
# FLAGS
_arg_on="off"
_verbose_level="0";
print_help()
{
_triggerSCHelp=1;
if [[ "$_helpHasBeenPrinted" == "1" ]]; then
_helpHasBeenPrinted=0;
echo -e "parseArger parsing string for flags:"
echo -e " arg-name: positional argument name"
echo -e " description: positional argument description"
echo -e " -s, --short <short>: short form"
echo -e " --no-name <no-name>: value for the negation"
echo -e " --alias <alias>: flag alias, repeatable"
echo -e " --no-alias <no-alias>: flag negation alias, repeatable"
echo -e " --on|--no-on: on by default"
echo -e "Usage :
$0 <arg-name> <description> [--short <value>] [--no-name <value>] [--alias <value>] [--no-alias <value>] [--[no-]on]";
fi
}
log() {
local _arg_msg="${1}";
local _arg_level="${2:0}";
if [ "${_arg_level}" -le "${_verbose_level}" ]; then
case "$_arg_level" in
-3)
_arg_COLOR="\033[0;31m";
;;
-2)
_arg_COLOR="\033[0;33m";
;;
-1)
_arg_COLOR="\033[1;33m";
;;
1)
_arg_COLOR="\033[0;32m";
;;
2)
_arg_COLOR="\033[1;36m";
;;
3)
_arg_COLOR="\033[0;36m";
;;
*)
_arg_COLOR="\033[0m";
;;
esac
echo -e "${_arg_COLOR}${_arg_msg}\033[0m";
fi
}
parse_commandline()
{
_positionals_count=0
while test $# -gt 0
do
_key="$1"
case "$_key" in
-s|--short)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_short="$2"
shift
;;
--short=*)
_arg_short="${_key##--short=}"
;;
-s*)
_arg_short="${_key##-s}"
;;
--no-name)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_no_name="$2"
shift
;;
--no-name=*)
_arg_no_name="${_key##--no-name=}"
;;
--alias)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_alias+=("$2")
shift
;;
--alias=*)
_arg_alias+=("${_key##--alias=}")
;;
--no-alias)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_no_alias+=("$2")
shift
;;
--no-alias=*)
_arg_no_alias+=("${_key##--no-alias=}")
;;
--on)
_arg_on="on"
;;
--no-on)
_arg_on="off"
;;
-h|--help)
print_help;
exit 0;
;;
-h*)
print_help;
exit 0;
;;
-v|--version)
print_version;
exit 0;
;;
-v*)
print_version;
exit 0;
;;
--verbose)
if [ $# -lt 2 ];then
_verbose_level="$((_verbose_level + 1))";
else
_verbose_level="$2";
shift;
fi
;;
*)
_last_positional="$1"
_positionals+=("$_last_positional")
_positionals_count=$((_positionals_count + 1))
;;
esac
shift
done
}
handle_passed_args_count()
{
local _required_args_string="arg-name description"
if [ "${_positionals_count}" -gt 2 ] && [ "$_helpHasBeenPrinted" == "1" ];then
_PRINT_HELP=yes die "FATAL ERROR: There were spurious positional arguments --- we expect at most 2 (namely: $_required_args_string), but got ${_positionals_count} (the last one was: '${_last_positional}').\n\t${_positionals[*]}" 1
fi
if [ "${_positionals_count}" -lt 2 ] && [ "$_helpHasBeenPrinted" == "1" ];then
_PRINT_HELP=yes die "FATAL ERROR: Not enough positional arguments - we require at least 2 (namely: $_required_args_string), but got only ${_positionals_count}.
${_positionals[*]}" 1;
fi
}
assign_positional_args()
{
local _positional_name _shift_for=$1;
_positional_names="_arg_arg_name _arg_description ";
shift "$_shift_for"
for _positional_name in ${_positional_names};do
test $# -gt 0 || break;
eval "if [ \"\$_one_of${_positional_name}\" != \"\" ];then [[ \"\${_one_of${_positional_name}[*]}\" =~ \"\${1}\" ]];fi" || die "${_positional_name} must be one of: $(eval "echo \"\${_one_of${_positional_name}[*]}\"")" 1;
eval "$_positional_name=\${1}" || die "Error during argument parsing, possibly an ParseArger bug." 1;
shift;
done
}
print_debug()
{
print_help
# shellcheck disable=SC2145
echo "DEBUG: $0 $@";
echo -e "\targ-name: ${_arg_arg_name}";
echo -e "\tdescription: ${_arg_description}";
echo -e "\tshort: ${_arg_short}";
echo -e "\tno-name: ${_arg_no_name}";
echo -e "\talias: ${_arg_alias[*]}";
echo -e "\tno-alias: ${_arg_no_alias[*]}";
echo -e "\ton: ${_arg_on}";
}
print_version()
{
echo "0.1";
}
on_interrupt() {
die Process aborted! 130;
}
parse_commandline "$@";
handle_passed_args_count;
assign_positional_args 1 "${_positionals[@]}";
trap on_interrupt INT;
# @parseArger-parsing-end
# print_debug "$@"
# @parseArger-end
if [ "$_arg_no_name" == "" ]; then
_arg_no_name="no-${_arg_arg_name}";
fi
optParser="--${_arg_arg_name}";
if [ "${#_arg_alias[@]}" -gt 0 ]; then
for ali in "${_arg_alias[@]}"; do
optParser="${optParser}|--${ali}";
done
fi
if [ "$_arg_short" != "" ]; then
optParser="-${_arg_short}|${optParser}";
fi
optParser="${optParser})
_arg_${_arg_arg_name//-/_}=\"on\"
;;";
optParser="${optParser}
--${_arg_no_name}";
if [ "${#_arg_no_alias[@]}" -gt 0 ]; then
for n_ali in "${_arg_no_alias[@]}"; do
optParser="${optParser}|--${n_ali}";
done
fi
echo -e "${optParser})
_arg_${_arg_arg_name//-/_}=\"off\"
;;";