summaryrefslogtreecommitdiff
path: root/common.sh
blob: 93f885106f213511bd8d1a81651b4262fd938482 (plain)
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
if type gettext &>/dev/null; then
	_() { gettext "$@"; }
else
	_() { echo "$@"; }
fi

print() {
	printf -- "$(_ "$1")\n" "${@:2}"
}

flag() {
	if [[ -z "$_flag_indent" ]]; then
		local str=$(emacsclient --help |
		            sed -rn '/^-.*\s\s/{ s/(\s\s)\S.*/\1/p; q; }' |
		            expand)
		declare -gi _flag_indent=${#str}
	fi
	printf -- "%- ${_flag_indent}s%s\n" "$1" "$(print "${@:2}")"
}

error() {
	printf -- "%s: %s\n" "$0" "$(print "$@")" >&2
}

emacs_quote() {
	declare -a args=("$@")
	args=("${args[@]//\\/\\\\}") # \ -> \\
	args=("${args[@]//\"/\\\"}") # " -> \"
	printf -- '"%s" ' "${args[@]}" # wrap them in quotes, return
}

bash_quote() {
	printf -- '%q ' "$@"
}

version() {
	print '%s (Emacs utils) %s, %s' \
	      "${0##*/}" 0.9 "$(emacsclient --version)"
}

# Sets the global variables:
# - emacs_getopt_o
# - emacs_getopt_l
# - emacs_getopt_1
# - emacs_getopt_2
emacs_getopt_init() {
	declare ifs="$IFS"

	declare -a a_flags
	IFS=$'\n' a_flags=($(
		LC_ALL=C emacsclient --help |
		grep ^- |
		sed -e 's/\s\s.*//' -e 's/, /\n/g' |
		sed -e 's/[ =].*/:/' -e 's/^-*//' |
		grep -vEx 'e|eval'))

	declare -a a_flags_o a_flags_l a_flags_1 a_flags_2
	IFS=$'\n' a_flags_o=($(printf '%s\n' "${a_flags[@]}"|grep -v '^.[^:]'))
	IFS=$'\n' a_flags_l=($(printf '%s\n' "${a_flags[@]}"|grep    '^.[^:]'))
	IFS=$'\n' a_flags_1=($(printf '%s\n' "${a_flags[@]}"|sed -rn -e 's/^(.)$/-\1/p'  -e 's/^([^-].*[^:])$/--\1/p'))
	IFS=$'\n' a_flags_2=($(printf '%s\n' "${a_flags[@]}"|sed -rn -e 's/^(.):$/-\1/p' -e 's/^([^-].*):$/--\1/p'))

	printf -v emacs_getopt_o -- '%s' "${a_flags_o[@]}"
	IFS=',' emacs_getopt_l=${a_flags_l[*]}
	IFS='|' emacs_getopt_2="^(${a_flags_2[*]})\$"

	IFS=$ifs
}

# Sets the global variable:
# - args
emacs_getopt() {
	declare o="$1"
	declare l="$2"
	shift 2
	emacs_getopt_init
	args="$(getopt -a \
	               -n "$0" \
	               -o "${emacs_getopt_o}${o}" \
	               -l "${emacs_getopt_l}${l:+,$l}" \
	               -- "$@")"
}

emacs_usage() {
	emacsclient --help | grep -E '^(\s|-)'
}