-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeclaration
More file actions
executable file
·392 lines (348 loc) · 9.68 KB
/
declaration
File metadata and controls
executable file
·392 lines (348 loc) · 9.68 KB
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#!/bin/bash
# @parseArger-begin
# @parseArger-help "parseArger declaration string for options" --option "help" --short-option "h"
# @parseArger-version "0.1" --option "version" --short-option "v"
# @parseArger-verbose --option "verbose" --level "0" --quiet-option "quiet"
# @parseArger-declarations
# @parseArger pos arg-name "positional argument name"
# @parseArger pos description "positional argument description"
# @parseArger opt repeat-min "minimum repeatition forces repeat" --default-value "1"
# @parseArger opt repeat-max "maximum repeatition forces repeat"
# @parseArger opt one-of "accepted values" --repeat
# @parseArger opt default-value "value" --short d --repeat
# @parseArger opt short "short form" --short s
# @parseArger opt alias "option alias" --repeat
# @parseArger opt empty-value "value for empty option"
# @parseArger opt complete "bash built-in completely function" --repeat
# @parseArger opt complete-custom "completely custom dynamic suggestion" --repeat
# @parseArger flag repeat "repeatable" --short r
# @parseArger flag empty "use option as flag"
# @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=();
_optional_positionals=();
_arg_arg_name="";
_arg_description="";
# OPTIONALS ARGUMENTS
_arg_repeat_min="1"
_arg_repeat_max=
_arg_one_of=()
_arg_default_value=()
_arg_short=
_arg_alias=()
_arg_empty_value=
_arg_complete=()
_arg_complete_custom=()
# FLAGS
_arg_repeat="off"
_arg_empty="off"
_verbose_level="0";
print_help()
{
_triggerSCHelp=1;
if [[ "$_helpHasBeenPrinted" == "1" ]]; then
_helpHasBeenPrinted=0;
echo -e "parseArger declaration string for options:"
echo -e " arg-name: positional argument name"
echo -e " description: positional argument description"
echo -e " --repeat-min <repeat-min>: minimum repeatition forces repeat [default: ' 1 ']"
echo -e " --repeat-max <repeat-max>: maximum repeatition forces repeat"
echo -e " --one-of <one-of>: accepted values, repeatable"
echo -e " -d, --default-value <default-value>: value, repeatable"
echo -e " -s, --short <short>: short form"
echo -e " --alias <alias>: option alias, repeatable"
echo -e " --empty-value <empty-value>: value for empty option"
echo -e " --complete <complete>: bash built-in completely function, repeatable"
echo -e " --complete-custom <complete-custom>: completely custom dynamic suggestion, repeatable"
echo -e " -r|--repeat|--no-repeat: repeatable"
echo -e " --empty|--no-empty: use option as flag"
echo -e "Usage :
$0 <arg-name> <description> [--repeat-min <value>] [--repeat-max <value>] [--one-of <value>] [--default-value <value>] [--short <value>] [--alias <value>] [--empty-value <value>] [--complete <value>] [--complete-custom <value>] [--[no-]repeat] [--[no-]empty]";
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
--repeat-min)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_repeat_min="$2"
shift
;;
--repeat-min=*)
_arg_repeat_min="${_key##--repeat-min=}"
;;
--repeat-max)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_repeat_max="$2"
shift
;;
--repeat-max=*)
_arg_repeat_max="${_key##--repeat-max=}"
;;
--one-of)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_one_of+=("$2")
shift
;;
--one-of=*)
_arg_one_of+=("${_key##--one-of=}")
;;
-d|--default-value)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_default_value+=("$2")
shift
;;
--default-value=*)
_arg_default_value+=("${_key##--default-value=}")
;;
-d*)
_arg_default_value+=("${_key##-d}")
;;
-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}"
;;
--alias)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_alias+=("$2")
shift
;;
--alias=*)
_arg_alias+=("${_key##--alias=}")
;;
--empty-value)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_empty_value="$2"
shift
;;
--empty-value=*)
_arg_empty_value="${_key##--empty-value=}"
;;
--complete)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_complete+=("$2")
shift
;;
--complete=*)
_arg_complete+=("${_key##--complete=}")
;;
--complete-custom)
test $# -lt 2 && die "Missing value for the option: '$_key'" 1
_arg_complete_custom+=("$2")
shift
;;
--complete-custom=*)
_arg_complete_custom+=("${_key##--complete-custom=}")
;;
-r|--repeat)
_arg_repeat="on"
;;
--no-repeat)
_arg_repeat="off"
;;
--empty)
_arg_empty="on"
;;
--no-empty)
_arg_empty="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
;;
--quiet)
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 "\trepeat-min: ${_arg_repeat_min}";
echo -e "\trepeat-max: ${_arg_repeat_max}";
echo -e "\tone-of: ${_arg_one_of[*]}";
echo -e "\tdefault-value: ${_arg_default_value[*]}";
echo -e "\tshort: ${_arg_short}";
echo -e "\talias: ${_arg_alias[*]}";
echo -e "\tempty-value: ${_arg_empty_value}";
echo -e "\tcomplete: ${_arg_complete[*]}";
echo -e "\tcomplete-custom: ${_arg_complete_custom[*]}";
echo -e "\trepeat: ${_arg_repeat}";
echo -e "\tempty: ${_arg_empty}";
}
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
outStr="# @parse"
outStr+="Arger nested $_arg_arg_name \"${_arg_description}\""
if [ "$_arg_short" != "" ]; then
outStr+=" --short $_arg_short"
fi
if [ "${#_arg_default_value[@]}" -gt "0" ]; then
if [ "$_arg_repeat" != "off" ]; then
for dfv in "${_arg_default_value[@]}"; do
outStr+=" --default-value \"$dfv\""
done
else
outStr+=" --default-value \"${_arg_default_value[0]}\""
fi
fi
if [ "$_arg_repeat" != "off" ] || [ "$_arg_repeat_min" != "1" ] || [ "$_arg_repeat_max" != "" ]; then
outStr+=" --repeat"
fi
if [ "$_arg_repeat_min" != "1" ]; then
outStr+=" --repeat-min $_arg_repeat_min"
fi
if [ "$_arg_repeat_max" != "" ]; then
outStr+=" --repeat-max $_arg_repeat_max"
fi
if [ "${#_arg_alias[@]}" -gt 0 ]; then
for ali in "${_arg_alias[@]}"; do
outStr+=" --alias $ali"
done
fi
if [ "${#_arg_complete[@]}" != "off" ]; then
for _c in "${_arg_complete[@]}"; do
outStr+=" --complete \"$_c\"";
done
fi
if [ "${#_arg_complete_custom[@]}" != "off" ]; then
for _c in "${_arg_complete_custom[@]}"; do
outStr+=" --complete-custom \"$_c\"";
done
fi
if [ "${#_arg_one_of[@]}" -gt 0 ]; then
for _oof in "${_arg_one_of[@]}"; do
outStr+=" --one-of \"$_oof\"";
done
fi
echo "$outStr";