-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpoorjson.sh
66 lines (60 loc) · 1.84 KB
/
poorjson.sh
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
#!/bin/sh
# A POSIX compatible JSON parser within 60 lines of code (without comments)
# Usage example:
# $ echo '{ "key1" : { "key2": {}, "key3": [null, true, false, "value"]}}' | ./poorjson.sh '"key1"' '"key3"' 3
# $ "value"
# shellcheck disable=SC2015
__JNUM='\(-\?\(0\|[1-9][0-9]*\)\(\.[0-9]\+\)\?\([eE][+-]\?[0-9]\+\)\?\)'
__JSTR='\("\([^[:cntrl:]"]\|\\["\\\/bfnrt]\|u[0-9]{4}\)*"\)'
_TOKEN="" _TMP="" __JTOK="$__JSTR\|$__JNUM\|true\|false\|null\|[][}{,:]"
_is_match() { [ "$1" = "$2" ] || [ "$1" = \* ] || [ "$1" = . ]; }
_eof_error() { echo "Unexpected EOF after \"$_TOKEN\""; exit 1; }
_token_error() { echo "Unexpected token \"$_TOKEN\""; exit 1; }
_jread() {
read -r _TOKEN || _eof_error
[ "$1" = . ] && echo "$_TOKEN"
}
_jarr() {
if _is_match "$1" 0; then _jval "$@"; else _jval; fi || {
[ "$_TOKEN" = ']' ] && return || _token_error
}
while :; do
_jread "$1";
case $_TOKEN in "]") return 0;;
",") [ "$1" -ge 0 ] 2>/dev/null && _TMP=$(( $1 - 1)) && shift && set -- "$_TMP" "$@";;
*) _token_error;;
esac
if _is_match "$1" 0; then _jval "$@"; else _jval; fi || _token_error
done
}
_jobj() {
_jread "$1"; [ "$_TOKEN" = "}" ] && return 0
while :; do
_TMP=$_TOKEN
case $_TMP in '"'*'"')
_jread "$1"
[ "$_TOKEN" = ":" ] || _token_error
if _is_match "$1" "$_TMP"; then _jval "$@"; else _jval; fi || _token_error
_jread "$1"
[ "$_TOKEN" = "}" ] && return 0
[ "$_TOKEN" != "," ] && _token_error
_jread "$1"
continue
;;
esac
_token_error
done
}
_jval() {
[ "$#" -eq 0 ] || [ "$*" = . ] || shift
_jread "$1"
case $_TOKEN in '{') _jobj "$@";;
"[") _jarr "$@";;
true|false|null|-*|[0-9]*|'"'*'"') [ "$1" = \* ] && echo "$_TOKEN"; :;;
*) return 1;;
esac
}
sed -e "s/\($__JTOK\)/\n\1\n/g" | sed -e "/^\s*$/d;/$__JTOK/!{q255};" | { _jval "" "$@" . && ! read -r; } || {
echo "JSON string invalid."
exit 1
}