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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
-- Copyright (C) 2007-2009, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
-- met:
--
-- - Redistributions of source code must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
--
-- - Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in
-- the documentation and/or other materials provided with the
-- distribution.
--
-- - Neither the name of The Numerical Algorithms Group Ltd. nor the
-- names of its contributors may be used to endorse or promote products
-- derived from this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-- OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import incl
import i_-toplev
import unlisp
namespace BOOT
ncParseAndInterpretString s ==
processInteractive(packageTran parseFromString s, nil)
ncParseFromString s ==
zeroOneTran packageTran CATCH($SpadReaderTag, parseFromString s)
ncINTERPFILE(file, echo) ==
savedEcho := $EchoLines
savedReadingFile := $ReadingFile
$EchoLines: fluid := echo
$ReadingFile: fluid := true
result := SpadInterpretFile file
$EchoLines := savedEcho
$ReadingFile := savedReadingFile
result
ncGetFunction(op, dom, sig) ==
applyInPackage(function getNCfunction,_
[rePackageTran(op, '"boot"),_
rePackageTran(dom, '"boot"),_
rePackageTran(sig, '"boot")],_
'"BOOT")
applyInPackage(fun, args, package) ==
savedPackage := _*PACKAGE_*
SETQ(_*PACKAGE_*, FIND_-PACKAGE package)
result := apply(fun, args)
SETQ(_*PACKAGE_*, savedPackage)
result
ncSetCurrentLine l ==
setCurrentLine l
--% INTERPRETER TOP LEVEL
spad() ==
-- starts the interpreter but does not read in profiles, etc.
$inLispVM : local := nil
setOutputAlgebra "%initialize%"
runspad()
'EndOfSpad
runspad() ==
mode:='restart
while mode='restart repeat
resetStackLimits()
CATCH($quitTag, CATCH('coerceFailure,
mode:=CATCH($intTopLevel, ncTopLevel())))
ncTopLevel() ==
-- Top-level read-parse-eval-print loop for the interpreter. Uses
-- the Bill Burge's parser.
IN_-STREAM: fluid := $InputStream
_*EOF_*: fluid := NIL
$InteractiveMode :fluid := true
$NEWSPAD: fluid := true
$SPAD: fluid := true
$e:fluid := $InteractiveFrame
ncIntLoop()
ncIntLoop() ==
$InputStream : local := MAKE_-SYNONYM_-STREAM "*STANDARD-INPUT*"
$OutputStream : local := MAKE_-SYNONYM_-STREAM "*STANDARD-OUTPUT*"
intloop()
intloop () ==
mode := $intRestart
while mode = $intRestart repeat
resetStackLimits()
mode := CATCH($intTopLevel, SpadInterpretStream(1, nil, true))
++ If the interpreter is spwan by the session manager, then
++ each successful connection also creates its own frame.
++ In particular, the only time we get to do anything in the `initial'
++ frame is when we get the first connection. In that case, we would
++ be asked by the session manager to create a frame. The client is
++ not aware of that, It is therefore confusing to display a prompt,
++ because all this horse-threading happens behind the client's back.
printFirstPrompt?() ==
$interpreterFrameName ~= "initial" or
getOptionValue '"role" ~= '"server"
SpadInterpretStream(str, source, interactive?) ==
pile? := not interactive?
$libQuiet : local := not interactive?
$newcompErrorCount: local := 0 -- SMW Feb 2/90.
-- Used in highComplete, ncHardError etc.
$okToExecuteMachineCode: local := true -- set false on error
$inclAssertions: local := ["AIX", "CommonLisp"] -- Jan 28/90
$lastPos : local := $nopos ------------>!!!
$erMsgToss : local := false --------------->!!!
$ncMsgList : local := nil
$systemCommandFunction : local := function InterpExecuteSpadSystemCommand
$shoeReadLineFunction : local := function serverReadLine
$promptMsg : local := 'S2CTP023
interactive? =>
not $leanMode and printFirstPrompt?() and printPrompt()
intloopReadConsole('"", str)
[]
intloopInclude (source,0)
[]
-----------------------------------------------------------------
intloopReadConsole(b, n)==
a:= serverReadLine $InputStream
not STRINGP a => leaveScratchpad()
#a=0 =>
not $leanMode and printPrompt()
intloopReadConsole('"", n)
pfx := stripSpaces intloopPrefix?('")fi",a)
pfx and ((pfx = '")fi") or (pfx = '")fin")) => []
b = '"" and (d := intloopPrefix?('")", a)) =>
setCurrentLine d
c := ncloopCommand(d,n)
not $leanMode and printPrompt()
intloopReadConsole('"", c)
a:=CONCAT(b,a)
ncloopEscaped a => intloopReadConsole(SUBSEQ(a, 0, (LENGTH a) - 1),n)
c := intloopProcessString(a, n)
not $leanMode and printPrompt()
intloopReadConsole('"", c)
intloopPrefix?(prefix,whole) ==
#prefix > #whole => false
good := true
leading := true
spaces := 0
i := 0
len := #prefix
wlen := #whole
for j in 0.. while (good and i < len and j < wlen) repeat
good := (prefix.i = whole.j) or (leading and (whole.j = char " "))
if prefix.i = whole.j then i := i+1
if (whole.j = char " ") and leading then
spaces := spaces + 1
else leading := false
spaces = wlen => nil
if good then SUBSTRING(whole,spaces,nil) else good
intloopProcess(n,interactive,s)==
StreamNull s => n
[lines,ptree]:=first s
pfAbSynOp?(ptree,"command")=>
if interactive then setCurrentLine tokPart ptree
FUNCALL($systemCommandFunction, tokPart ptree)
intloopProcess(n ,interactive ,rest s)
intloopProcess(intloopSpadProcess(n,lines,ptree,interactive)
,interactive ,rest s)
intloopEchoParse s==
[dq,stream]:=first s
[lines,rest]:=ncloopDQlines(dq,$lines)
setCurrentLine(mkLineList(lines))
if $EchoLines then ncloopPrintLines lines
$lines:=rest
cons([[lines,npParse dqToList dq]],rest s)
intloopInclude0(st, name, n) ==
$lines:local:=incStream(st,name)
intloopProcess(n,false,
next(function intloopEchoParse,
next(function insertpile,
next(function lineoftoks,$lines))))
intloopInclude(name, n) ==
WITH_-OPEN_-FILE(st name, intloopInclude0(st, name, n))
intloopInclude1(name,n) ==
a:=ncloopIncFileName name
a => intloopInclude(a,n)
n
intloopProcessString(s,n) ==
setCurrentLine s
intloopProcess(n,true,
next(function ncloopParse,
next(function lineoftoks,incString s)))
$pfMacros := []
intloopSpadProcess(stepNo,lines,ptree,interactive?)==
$stepNo:local := stepNo
$currentCarrier := cc := ['carrier]
ncPutQ(cc, 'stepNumber, stepNo)
ncPutQ(cc, 'messages, $ncMsgList)
ncPutQ(cc, 'lines, lines)
$ncMsgList := nil
result := CatchAsCan(flung, Catch("SpadCompileItem",
CATCH($intCoerceFailure, CATCH($SpadReaderTag,
interp(cc, ptree, interactive?))))) where
interp(cc, ptree, interactive?) ==
ncConversationPhase(function phParse, [cc, ptree])
ncConversationPhase(function phMacro, [cc])
ncConversationPhase(function phIntReportMsgs,[cc, interactive?])
ncConversationPhase(function phInterpret, [cc])
#ncEltQ(cc, 'messages) ~= 0 => ncError()
intSetNeedToSignalSessionManager()
$prevCarrier := $currentCarrier
result = 'ncEnd => stepNo
result = 'ncError => stepNo
result = 'ncEndItem => stepNo
stepNo+1
phInterpret carrier ==
-- Don't try evaluation if the data structure may have been corrupted.
not ncEltQ(carrier, "ok?") => "KO"
ptree := ncEltQ(carrier, 'ptree)
val := intInterpretPform(ptree)
ncPutQ(carrier, 'value, val)
--% phReportMsgs: carrier[lines,messages,..]-> carrier[lines,messages,..]
phIntReportMsgs(carrier, interactive?) ==
$erMsgToss => 'OK
lines := ncEltQ(carrier, 'lines)
msgs := ncEltQ(carrier, 'messages)
nerr := #msgs
ncPutQ(carrier, 'ok?, nerr = 0)
nerr = 0 => 'OK
processMsgList(msgs, lines)
intSayKeyedMsg ('S2CTP010,[nerr])
'OK
mkLineList lines ==
l := [rest line for line in lines | nonBlank rest line]
#l = 1 => first l
l
nonBlank str ==
value := false
for i in 0..MAXINDEX str repeat
str.i ~= char " " =>
value := true
return value
value
ncloopCommand (line,n) ==
a:=ncloopPrefix?('")include",line)=>
ncloopInclude1( a,n)
FUNCALL($systemCommandFunction,line)
n
ncloopEscaped x==
esc :=false
done:=false
for i in (# x) - 1 .. 0 by -1 while not done repeat
done:=
x.i='" ".0 =>false
x.i='"__".0=>
esc:=true
true
true
esc
ncloopDQlines (dq,stream)==
StreamNull stream
a:= poGlobalLinePosn tokPosn second dq
b:= poGlobalLinePosn CAAR stream
streamChop (a-b+1,stream)
streamChop(n,s)==
if StreamNull s
then [nil,nil]
else if EQL(n,0)
then [nil,s]
else
[a,b]:= streamChop(n-1,cdr s)
line:=car s
c:=ncloopPrefix?('")command",rest line)
d:= cons(car line,if c then c else cdr line)
[cons(d,a),b]
ncloopPrintLines lines ==
for line in lines repeat WRITE_-LINE rest line
WRITE_-LINE '" "
ncloopIncFileName string==
fn := incFileName string
not fn =>
WRITE_-LINE (CONCAT(string, '" not found"))
[]
fn
ncloopParse s==
[dq,stream]:=first s
[lines,rest]:=ncloopDQlines(dq,stream)
cons([[lines,npParse dqToList dq]],rest s)
ncloopInclude0(st, name, n) ==
$lines:local := incStream(st, name)
ncloopProcess(n,false,
next(function ncloopEchoParse,
next(function insertpile,
next(function lineoftoks,$lines))))
ncloopInclude(name, n) ==
WITH_-OPEN_-FILE(st name, ncloopInclude0(st, name, n))
ncloopInclude1(name,n) ==
a:=ncloopIncFileName name
a => ncloopInclude(a,n)
n
incString s== incRenumber incLude(0,[s],0,['"strings"] ,[Top])
ncError() ==
THROW("SpadCompileItem",'ncError)
--% Compilation Carriers
-- This data structure is used to carry information between phases.
--% phParse: carrier[tokens,...] -> carrier[ptree, tokens,...]
--)line (defun pretty (x) (boottran::reallyprettyprint x))
--)line (defun packagetran (x) (boot::|packageTran|))
$ncmParse := NIL
phParse(carrier,ptree) ==
phBegin 'Parsing
if $ncmParse then
nothing
intSayKeyedMsg ('S2CTP003,[%pform ptree])
ncPutQ(carrier, 'ptree, ptree)
'OK
--% phMacro: carrier[ptree,...] -> carrier[ptree, ptreePremacro,...]
$ncmMacro := false
phMacro carrier ==
phBegin 'Macroing
ptree := ncEltQ(carrier, 'ptree)
ncPutQ(carrier, 'ptreePremacro, ptree)
ptree := macroExpanded ptree
if $ncmMacro then
intSayKeyedMsg ('S2CTP007,[%pform ptree] )
ncPutQ(carrier, 'ptree, ptree)
'OK
--% phReportMsgs: carrier[lines,messages,..]-> carrier[lines,messages,..]
phReportMsgs(carrier, interactive?) ==
$erMsgToss => 'OK
lines := ncEltQ(carrier, 'lines)
msgs := ncEltQ(carrier, 'messages)
nerr := #msgs
ncPutQ(carrier, 'ok?, nerr = 0)
interactive? and nerr = 0 => 'OK
processMsgList(msgs, lines)
intSayKeyedMsg ('S2CTP010,[nerr])
'OK
ncConversationPhase(fn, args) ==
carrier := first args
$ncMsgList: local := []
$convPhase: local := 'NoPhase
UNWIND_-PROTECT( APPLY(fn, args), wrapup(carrier) ) where
wrapup(carrier) ==
for m in $ncMsgList repeat
ncPutQ(carrier, 'messages, [m, :ncEltQ(carrier, 'messages)])
ncloopPrefix?(prefix,whole) ==
#prefix > #whole => false
good:=true
for i in 0..#prefix-1 for j in 0.. while good repeat
good:= prefix.i = whole.j
if good then SUBSTRING(whole,#prefix,nil) else good
$ncmPhase := NIL
phBegin id ==
$convPhase := id
if $ncmPhase then intSayKeyedMsg('S2CTP021,[id])
PullAndExecuteSpadSystemCommand stream ==
ExecuteSpadSystemCommand first stream
rest stream
ExecuteSpadSystemCommand string ==
FUNCALL($systemCommandFunction, string)
clearMacroTable() ==
$pfMacros := nil
getParserMacros() ==
$pfMacros
displayParserMacro m ==
m := ASSQ(m, $pfMacros)
null m => nil
pfPrintSrcLines third m
|