blob: 1f3983daaa477fb3e3b53ede0af5f0cf71f27554 (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# Eggshell Compiler entry point
#
# Copyright (C) 2016 Patrick "P. J." McDermott
#
# This file is part of the Eggshell Compiler.
#
# The Eggshell Compiler is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# The Eggshell Compiler is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the Eggshell Compiler. If not, see
# <http://www.gnu.org/licenses/>.
set -u
usage()
{
printf 'Usage: %s [-o <output>] <input>...\n' "${0}"
}
version()
{
cat <<EOF
eshtrans 0.1.0
Copyright (C) 2016 Patrick "P. J." McDermott
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
EOF
}
err()
{
local fmt="${1}"
shift 1
printf "eshtrans: Error: ${fmt}\n" "${@}"
}
main()
{
local opt=
local input=
local output=
output=''
unset OPTARG
while getopts 'V:o:' opt; do
case "${opt}" in
'V')
version
exit
;;
'o')
output="${OPTARG}"
;;
'?')
usage >&2
return 1
;;
esac
unset OPTARG
done
shift $(($OPTIND - 1))
if [ ${#} -eq 0 ]; then
err 'No input files'
return 1
fi
if [ "x${output}" = 'x' ]; then
for input in "${@}"; do
output="${input%.esh}.sh"
contents="$(cat "${input}"; printf '.')"
contents="${contents%.}"
sh_codegen "$(esh_parse "${input}" "${contents}")" \
>"${output}"
done
else
if [ ${#} -gt 1 ]; then
err 'Cannot specify -o with multiple input files'
return 1
fi
input="${1}"
if [ "x${output}" = 'x-' ]; then
contents="$(cat "${input}"; printf '.')"
contents="${contents%.}"
sh_codegen "$(esh_parse "${input}" "${contents}")"
else
contents="$(cat "${input}"; printf '.')"
contents="${contents%.}"
sh_codegen "$(esh_parse "${input}" "${contents}")" \
>"${output}"
fi
fi
}
|