blob: dd690bba7687e212ce9f807050d6b84d5af02e81 (
plain) (
blame)
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
|
#!/bin/sh
set -eu
escape_name() {
printf '%s' "$1" |
sed 's|"|\\"|g' |
printf '(load "%s")\n' "$(cat -)"
}
IMPLEMENTATIONS='
abcl
allegro
clasp
clisp
clozure
cmucl
ecl
jscl
mkcl
sbcl
'
usage() {
cat <<-'EOF'
Usage:
cl [-e EXP] [-f FILE] [-p] [-M IMAGE] [-I IMPL] [-n] [-v] [FILE...] [-- LISP_OPTIONS]
cl -l
cl -h
EOF
}
help() {
cat <<-'EOF'
Options:
-e EXP an sexp to be evaluated (can be given more than once)
-E EXP an sexp to be executed as a script
-f FILE a file to be evaluated (can be given more than once)
-p print the value of the last given expression
-M IMAGE load the given Lisp image
-I IMPL use the given implementation (default: $LISP_CLI_IMPL)
-n skip loading the implementation's init file
-v verbose mode
-l list the known types of implementations
-h, --help show this message
FILE the file to be executed as a script
LISP_OPTIONS options to be forwarrded to the underlying Lisp command
Lauch the desired Lisp implementation, properly adapting the given
CLI options.
When the implementation is not explicited on the command line, and
the $LISP_CLI_IMPL environment variable in unset, implementations are
searched for alphabetically in $PATH, untill one is found, otherwise
an error is emitted.
The supported implementations are:
EOF
for i in $IMPLEMENTATIONS; do
printf -- '- %s\n' "$i"
done
cat <<-'EOF'
Examples:
Launch CLISP REPL, when $LISP_CLI_IMPL is set to 'clisp':
$ cl
Lauch SBCL REPL, with the given Lisp image loaded, skipping the
loading of the '.sbclrc' file:
$ cl -n -Isbcl sbcl.image
Run file1.lisp with ABCL:
$ cl -Iabcl file1.lisp
Process STDIN:
$ cat <<-EOS > process.lisp
EOS
$ cat f1.txt f2.txt | cl -p process.lisp
Print a value on all types of implementations:
$ for i in `cl -l`; do cl -I$i -pe 'call-arguments-list'; done
EOF
}
for flag in "$@"; do
case "$flag" in
--)
break
;;
--help)
usage
help
exit
;;
*)
;;
esac
done
SCRIPT="$(mkstemp)"
trap 'rm -f "$SCRIPT"' EXIT
NO_RC=false
LISP_CLI_RC="${XDG_CONFIG_HOME:-$HOME/.config}/lisp-cli/init.lisp"
VERBOSE=false
IMAGE=''
IMPL="${LISP_CLI_IMPL:-}"
INTERACTIVE=true
while getopts 'e:E:f:pM:I:nvlh' flag; do
case "$flag" in
e)
printf '%s\n' "$OPTARG" >> "$SCRIPT"
;;
E)
printf '%s\n' "$OPTARG" >> "$SCRIPT"
INTERACTIVE=false
;;
f)
escape_name "$OPTARG" >> "$SCRIPT"
;;
M)
IMAGE="$OPTARG"
;;
I)
IMPL="$OPTARG"
;;
n)
NO_RC=true
;;
v)
VERBOSE=true
;;
l)
for i in $IMPLEMENTATIONS; do
printf '%s\n' "$i"
done
exit
;;
h)
usage
help
exit
;;
*)
usage >&2
exit 2
;;
esac
done
shift $((OPTIND - 2))
if [ "$1" != '--' ]; then
shift
fi
PRESERVE_ARGS=false
for f in "$@"; do
if [ "$f" = '--' ]; then
PRESERVE_ARGS=true
shift
break
fi
INTERACTIVE=false
escape_name "$f" >> "$SCRIPT"
done
if [ "$PRESERVE_ARGS" = false ]; then
set --
fi
MAIN="$(mkstemp)"
trap 'rm -f "$MAIN"' EXIT
if [ "$NO_RC" = false ] && [ -e "$LISP_CLI_RC" ]; then
escape_name "$LISP_CLI_RC" > "$MAIN"
fi
if [ "$INTERACTIVE" = true ]; then
escape_name "$SCRIPT" >> "$MAIN"
else
cat <<-EOF >> "$MAIN"
(handler-case
(progn
(load "$SCRIPT"
:verbose nil
:print nil)
(uiop:quit 0))
(error (e)
(format *error-output* "~&~%error: ~a~%" e)
(uiop:quit 1)))
EOF
fi
if [ -z "$IMPL" ]; then
for i in $IMPLEMENTATIONS; do
if command -v "$i" > /dev/null; then
IMPL="$i"
break
fi
done
if [ -z "$IMPL" ]; then
printf "Could not find any implementation in \$PATH.\n" >&2
exit 2
fi
fi
case "$IMPL" in
abcl)
exit 4
;;
allegro)
exit 4
;;
clasp)
exit 4
;;
clisp)
set -- -ansi -i "$MAIN" "$@"
if [ -n "$IMAGE" ]; then
set -- -M "$IMAGE" "$@"
fi
if [ "$NO_RC" = true ]; then
set -- -norc "$@"
fi
if [ "$VERBOSE" = false ]; then
set -- -q -q "$@"
else
set -x
fi
clisp "$@"
;;
clozure)
set -- -l "$MAIN" "$@"
if [ -n "$IMAGE" ]; then
set -- -I "$IMAGE" "$@"
fi
if [ "$NO_RC" = true ]; then
set -- -n "$@"
fi
if [ "$VERBOSE" = false ]; then
set -- -Q "$@"
else
set -x
fi
ccl "$@"
;;
cmucl)
exit 4
;;
ecl)
exit 4
;;
jscl)
exit 4
;;
mkcl)
exit 4
;;
sbcl)
set -- --load "$MAIN" "$@"
if [ -n "$IMAGE" ]; then
# The '--core' "C runtime option" must appear before the
# other "Lisp options", such as '--load'.
set -- --core "$IMAGE" "$@"
fi
if [ "$NO_RC" = true ]; then
set -- --no-sysinit --no-userinit "$@"
fi
if [ "$VERBOSE" = false ]; then
set -- --noinform "$@"
else
set -x
fi
sbcl "$@"
;;
*)
printf 'Unsupported implementation: "%s".\n\n' "$IMPL" >&2
usage >&2
exit 2
;;
esac
|