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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
|
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
-- Copyright (C) 2007-2010, 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 macros
namespace BOOT
-- HyperTeX Utilities for generating basic Command pages
$bcParseOnly := true
-- List of issued hypertex lines
$htLineList := nil
-- pointer to the page we are currently defining
$curPage := nil
-- List of currently active window named
$activePageList := nil
--%
htpDestroyPage(pageName) ==
pageName in $activePageList =>
setDynamicBinding(pageName, nil)
$activePageList := NREMOVE($activePageList, pageName)
htpName htPage ==
-- a symbol whose value is the page
htPage.0
htpSetName(htPage, val) ==
htPage.0 := val
htpDomainConditions htPage ==
-- List of Domain conditions
htPage.1
htpSetDomainConditions(htPage, val) ==
htPage.1 := val
htpDomainVariableAlist htPage ==
-- alist of pattern variables and conditions
htPage.2
htpSetDomainVariableAlist(htPage, val) ==
htPage.2 := val
htpDomainPvarSubstList htPage ==
-- alist of user pattern variables to system vars
htPage.3
htpSetDomainPvarSubstList(htPage, val) ==
htPage.3 := val
htpRadioButtonAlist htPage ==
-- alist of radio button group names and labels
htPage.4
htpButtonValue(htPage, groupName) ==
for buttonName in LASSOC(groupName, htpRadioButtonAlist htPage) repeat
(stripSpaces htpLabelInputString(htPage, buttonName)) = '"t" =>
return buttonName
htpSetRadioButtonAlist(htPage, val) ==
htPage.4 := val
htpInputAreaAlist htPage ==
-- Alist of input-area labels, and default values
htPage.5
htpSetInputAreaAlist(htPage, val) ==
htPage.5 := val
htpAddInputAreaProp(htPage, label, prop) ==
htPage.5 := [[label, nil, nil, nil, :prop], :htPage.5]
htpPropertyList htPage ==
-- Association list of user-defined properties
htPage.6
htpProperty(htPage, propName) ==
LASSOC(propName, htPage.6)
htpSetProperty(htPage, propName, val) ==
pair := assoc(propName, htPage.6)
pair => pair.rest := val
htPage.6 := [[propName, :val], :htPage.6]
htpLabelInputString(htPage, label) ==
-- value user typed as input string on page
props := LASSOC(label, htpInputAreaAlist htPage)
props and string? (s := props.0) =>
s = '"" => s
trimString s
nil
htpLabelFilteredInputString(htPage, label) ==
-- value user typed as input string on page
props := LASSOC(label, htpInputAreaAlist htPage)
props =>
#props > 5 and props.6 =>
FUNCALL(SYMBOL_-FUNCTION props.6, props.0)
replacePercentByDollar props.0
nil
replacePercentByDollar s == fn(s,0,MAXINDEX s) where
fn(s,i,n) ==
i > n => '""
(m := charPosition(char "%",s,i)) > n => SUBSTRING(s,i,nil)
strconc(SUBSTRING(s,i,m - i),'"$",fn(s,m + 1,n))
htpSetLabelInputString(htPage, label, val) ==
-- value user typed as input string on page
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.0 := STRINGIMAGE val
nil
htpLabelSpadValue(htPage, label) ==
-- Scratchpad value of parsed and evaled inputString, as (type . value)
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.1
nil
htpSetLabelSpadValue(htPage, label, val) ==
-- value user typed as input string on page
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.1 := val
nil
htpLabelErrorMsg(htPage, label) ==
-- error message associated with input area
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.2
nil
htpSetLabelErrorMsg(htPage, label, val) ==
-- error message associated with input area
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.2 := val
nil
htpLabelType(htPage, label) ==
-- either 'string or 'button
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.3
nil
htpLabelDefault(htPage, label) ==
-- default value for the input area
msg := htpLabelInputString(htPage, label) =>
msg = '"t" => 1
msg = '"nil" => 0
msg
props := LASSOC(label, htpInputAreaAlist htPage)
props =>
props.4
nil
htpLabelSpadType(htPage, label) ==
-- pattern variable for target domain for input area
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.5
nil
htpLabelFilter(htPage, label) ==
-- string to string mapping applied to input area strings before parsing
props := LASSOC(label, htpInputAreaAlist htPage)
props => props.6
nil
htpPageDescription htPage ==
-- a list of all the commands issued to create the basic-command page
htPage.7
htpSetPageDescription(htPage, pageDescription) ==
htPage.7 := pageDescription
iht line ==
-- issue a single hyperteTeX line, or a group of lines
$newPage => nil
cons? line =>
$htLineList := NCONC(nreverse mapStringize COPY_-LIST line, $htLineList)
$htLineList := [basicStringize line, :$htLineList]
bcIssueHt line ==
cons? line => htMakePage1 line
iht line
mapStringize l ==
atom l => l
l.first := basicStringize first l
l.rest := mapStringize rest l
l
basicStringize s ==
string? s =>
s = '"\$" => '"\%"
s = '"{\em $}" => '"{\em \%}"
s
s = '_$ => '"\%"
PRINC_-TO_-STRING s
stringize s ==
string? s => s
PRINC_-TO_-STRING s
--htInitPageNoHeading(propList) ==
-----------------------> replaced by htInitPageNoScroll
-- start defining a hyperTeX page
-- $curPage := htpMakeEmptyPage(propList)
-- if $saturn then $saturnPage := htpMakeEmptyPage(propList)
-- $newPage := true
-- $htLineList := nil
-- $curPage
htQuote s ==
-- wrap quotes around a piece of hyperTeX
iht '"_""
iht s
iht '"_""
htProcessToggleButtons buttons ==
iht '"\newline\indent{5}\beginitems "
for [message, info, defaultValue, buttonName] in buttons repeat
if null LASSOC(buttonName, htpInputAreaAlist $curPage) then
setUpDefault(buttonName, ['button, defaultValue])
iht ['"\item{\em\inputbox[", htpLabelDefault($curPage, buttonName), '"]{",
buttonName, '"}{\htbmfile{pick}}{\htbmfile{unpick}}\space{}"]
bcIssueHt message
iht '"\space{}}"
bcIssueHt info
iht '"\enditems\indent{0} "
htProcessBcButtons buttons ==
for [defaultValue, buttonName] in buttons repeat
if null LASSOC(buttonName, htpInputAreaAlist $curPage) then
setUpDefault(buttonName, ['button, defaultValue])
k := htpLabelDefault($curPage,buttonName)
k = 0 => iht ['"\off{",buttonName,'"}"]
k = 1 => iht ['"\on{", buttonName,'"}"]
iht ['"\inputbox[", htpLabelDefault($curPage, buttonName), '"]{",
buttonName, '"}{\htbmfile{pick}}{\htbmfile{unpick}}"]
bcSadFaces() ==
'"\space{1}{\em\htbitmap{error}\htbitmap{error}\htbitmap{error}}"
htLispLinks(links,:option) ==
[links,options] := beforeAfter('options,links)
indent := LASSOC('indent,options) or 5
iht '"\newline\indent{"
iht stringize indent
iht '"}\beginitems"
for [message, info, func, :value] in links repeat
iht '"\item["
call := (IFCAR option => '"\lispmemolink"; '"\lispdownlink")
htMakeButton(call,message, mkCurryFun(func, value))
iht ['"]\space{}"]
bcIssueHt info
iht '"\enditems\indent{0} "
htLispMemoLinks(links) == htLispLinks(links,true)
beforeAfter(x,u) == [[y for [y,:r] in tails u while x ~= y],r]
mkCurryFun(fun, val) ==
name := GENTEMP()
code :=
['DEFUN, name, '(arg), ['APPLY, MKQ fun, ['CONS, 'arg, MKQ val]]]
eval code
name
htRadioButtons [groupName, :buttons] ==
htpSetRadioButtonAlist($curPage, [[groupName, :buttonNames buttons],
: htpRadioButtonAlist $curPage])
boxesName := GENTEMP()
iht ['"\newline\indent{5}\radioboxes{", boxesName,
'"}{\htbmfile{pick}}{\htbmfile{unpick}}\beginitems "]
defaultValue := '"1"
for [message, info, buttonName] in buttons repeat
if null LASSOC(buttonName, htpInputAreaAlist $curPage) then
setUpDefault(buttonName, ['button, defaultValue])
defaultValue := '"0"
iht ['"\item{\em\radiobox[", htpLabelDefault($curPage, buttonName), '"]{",
buttonName, '"}{",boxesName, '"}\space{}"]
bcIssueHt message
iht '"\space{}}"
bcIssueHt info
iht '"\enditems\indent{0} "
htBcRadioButtons [groupName, :buttons] ==
htpSetRadioButtonAlist($curPage, [[groupName, :buttonNames buttons],
: htpRadioButtonAlist $curPage])
boxesName := GENTEMP()
iht ['"\radioboxes{", boxesName,
'"}{\htbmfile{pick}}{\htbmfile{unpick}} "]
defaultValue := '"1"
for [message, info, buttonName] in buttons repeat
if null LASSOC(buttonName, htpInputAreaAlist $curPage) then
setUpDefault(buttonName, ['button, defaultValue])
defaultValue := '"0"
iht ['"{\em\radiobox[", htpLabelDefault($curPage, buttonName), '"]{",
buttonName, '"}{",boxesName, '"}"]
bcIssueHt message
iht '"\space{}}"
bcIssueHt info
buttonNames buttons ==
[buttonName for [.,., buttonName] in buttons]
htInputStrings strings ==
iht '"\newline\indent{5}\beginitems "
for [mess1, mess2, numChars, default, stringName, spadType, :filter]
in strings repeat
if null LASSOC(stringName, htpInputAreaAlist $curPage) then
setUpDefault(stringName, ['string, default, spadType, filter])
if htpLabelErrorMsg($curPage, stringName) then
iht ['"\centerline{{\em ", htpLabelErrorMsg($curPage, stringName), '"}}"]
mess2 := strconc(mess2, bcSadFaces())
htpSetLabelErrorMsg($curPage, stringName, nil)
iht '"\item "
bcIssueHt mess1
iht ['"\inputstring{", stringName, '"}{",
numChars, '"}{", htpLabelDefault($curPage,stringName), '"} "]
bcIssueHt mess2
iht '"\enditems\indent{0}\newline "
htProcessDomainConditions condList ==
htpSetDomainConditions($curPage, renamePatternVariables condList)
htpSetDomainVariableAlist($curPage, computeDomainVariableAlist())
renamePatternVariables condList ==
htpSetDomainPvarSubstList($curPage,
renamePatternVariables1(condList, nil, $PatternVariableList))
substFromAlist(condList, htpDomainPvarSubstList $curPage)
renamePatternVariables1(condList, substList, patVars) ==
null condList => substList
[cond, :restConds] := condList
cond is ['isDomain, pv, pattern] or cond is ['ofCategory, pv, pattern]
or cond is ['Satisfies, pv, cond] =>
if pv = $EmptyMode then nsubst := substList
else nsubst := [[pv, :first patVars], :substList]
renamePatternVariables1(restConds, nsubst, rest patVars)
substList
substFromAlist(l, substAlist) ==
for [pvar, :replace] in substAlist repeat
l := substitute(replace, pvar, l)
l
computeDomainVariableAlist() ==
[[pvar, :pvarCondList pvar] for [., :pvar] in
htpDomainPvarSubstList $curPage]
pvarCondList pvar ==
nreverse pvarCondList1([pvar], nil, htpDomainConditions $curPage)
pvarCondList1(pvarList, activeConds, condList) ==
null condList => activeConds
[cond, : restConds] := condList
cond is [., pv, pattern] and pv in pvarList =>
pvarCondList1(nconc(pvarList, pvarsOfPattern pattern),
[cond, :activeConds], restConds)
pvarCondList1(pvarList, activeConds, restConds)
pvarsOfPattern pattern ==
null LISTP pattern => nil
[pvar for pvar in rest pattern | pvar in $PatternVariableList]
htMakeTemplates(templateList, numLabels) ==
templateList := [templateParts template for template in templateList]
[[substLabel(i, template) for template in templateList]
for i in 1..numLabels] where substLabel(i, template) ==
cons? template =>
INTERN strconc(first template, PRINC_-TO_-STRING i, rest template)
template
templateParts template ==
null string? template => template
i := SEARCH('"%l", template)
null i => template
[SUBSEQ(template, 0, i), : SUBSEQ(template, i+2)]
htMakeDoneButton(message, func) ==
bcHt '"\newline\vspace{1}\centerline{"
if message = '"Continue" then
bchtMakeButton('"\lispdownlink", "\ContinueBitmap", func)
else
bchtMakeButton('"\lispdownlink",strconc('"\box{", message, '"}"), func)
bcHt '"} "
htProcessDoneButton [label , func] ==
iht '"\newline\vspace{1}\centerline{"
if label = '"Continue" then
htMakeButton('"\lispdownlink", "\ContinueBitmap", func)
else if label = '"Push to enter names" then
htMakeButton('"\lispdownlink",'"\ControlBitmap{ClickToSet}", func)
else
htMakeButton('"\lispdownlink", strconc('"\box{", label, '"}"), func)
iht '"} "
bchtMakeButton(htCommand, message, func) ==
bcHt [htCommand, '"{", message,
'"}{(|htDoneButton| '|", func, '"| (PROGN "]
for [id, ., ., ., type, :.] in htpInputAreaAlist $curPage repeat
bcHt ['"(|htpSetLabelInputString| ", htpName $curPage, '"'|", id, '"| "]
if type = 'string then
bcHt ['"_"\stringvalue{", id, '"}_""]
else
bcHt ['"_"\boxvalue{", id, '"}_""]
bcHt '") "
bcHt [htpName $curPage, '"))} "]
htProcessDoitButton [label, command, func] ==
fun := mkCurryFun(func, [command])
iht '"\newline\vspace{1}\centerline{"
htMakeButton('"\lispcommand", strconc('"\box{", label, '"}"), fun)
iht '"} "
iht '"\vspace{2}{Select \ \UpButton{} \ to go back one page.}"
iht '"\newline{Select \ \ExitButton{QuitPage} \ to remove this window.}"
htMakeDoitButton(label, command) ==
-- use bitmap button if just plain old "Do It"
if label = '"Do It" then
bcHt '"\newline\vspace{1}\centerline{\lispcommand{\DoItBitmap}{(|doDoitButton| "
else
bcHt ['"\newline\vspace{1}\centerline{\lispcommand{\box{", label,
'"}}{(|doDoitButton| "]
bcHt htpName $curPage
bcHt ['" _"", htEscapeString command, '"_""]
bcHt '")}}"
bcHt '"\vspace{2}{Select \ \UpButton{} \ to go back one page.}"
bcHt '"\newline{Select \ \ExitButton{QuitPage} \ to remove this window.}"
doDoitButton(htPage, command) ==
executeInterpreterCommand command
executeInterpreterCommand command ==
PRINC command
TERPRI()
ncSetCurrentLine(command)
CATCH($SpadReaderTag, parseAndInterpret command)
not $leanMode and printPrompt "andFlush"
typeCheckInputAreas htPage ==
-- This needs to be severly beefed up
inputAlist := nil
errorCondition := false
for entry in htpInputAreaAlist htPage
| entry is [stringName, ., ., ., 'string, ., spadType, filter] repeat
condList :=
LASSOC(LASSOC(spadType,htpDomainPvarSubstList htPage),
htpDomainVariableAlist htPage)
string := htpLabelFilteredInputString(htPage, stringName)
$bcParseOnly =>
null ncParseFromString string =>
htpSetLabelErrorMsg(htPage, '"Syntax Error", '"Syntax Error")
nil
val := checkCondition(htpLabelInputString(htPage, stringName),
string, condList)
string? val =>
errorCondition := true
htpSetLabelErrorMsg(htPage, stringName, val)
htpSetLabelSpadValue(htPage, stringName, val)
errorCondition
checkCondition(s1, string, condList) ==
condList is [['Satisfies, pvar, pred]] =>
val := FUNCALL(pred, string)
string? val => val
['(String), :wrap s1]
condList isnt [['isDomain, pvar, pattern]] =>
systemError '"currently invalid domain condition"
pattern is '(String) => ['(String), :wrap s1]
val := parseAndEval string
string? val =>
val = '"Syntax Error " => '"Error: Syntax Error "
condErrorMsg pattern
[type, : data] := val
newType := CATCH($SpadReaderTag, resolveTM(type, pattern))
null newType =>
condErrorMsg pattern
coerceInt(val, newType)
condErrorMsg type ==
typeString := form2String type
if cons? typeString then typeString := apply(function strconc, typeString)
strconc('"Error: Could not make your input into a ", typeString)
parseAndEval string ==
$InteractiveMode :fluid := true
$SPAD: fluid := true
$e:fluid := $InteractiveFrame
$QuietCommand:local := true
parseAndEval1 string
parseAndEval1 string ==
syntaxError := false
pform :=
v := applyWithOutputToString('ncParseFromString, [string])
first v => first v
syntaxError := true
rest v
syntaxError =>
'"Syntax Error "
pform =>
val := applyWithOutputToString('processInteractive, [pform, nil])
first val => first val
'"Type Analysis Error"
nil
makeSpadCommand(:l) ==
opForm := strconc(first l, '"(")
lastArg := last l
l := rest l
argList := nil
for arg in l while arg ~= lastArg repeat
argList := [strconc(arg, '", "), :argList]
argList := nreverse [lastArg, :argList]
strconc(opForm, apply(function strconc, argList), '")")
htMakeInputList stringList ==
-- makes an input form for constructing a list
lastArg := last stringList
argList := nil
for arg in stringList while arg ~= lastArg repeat
argList := [strconc(arg, '", "), :argList]
argList := nreverse [lastArg, :argList]
bracketString apply(function strconc, argList)
-- predefined filter strings
bracketString string == strconc('"[",string,'"]")
quoteString string == strconc('"_"", string, '"_"")
$funnyQuote := char 127
$funnyBacks := char 128
htEscapeString str ==
str := SUBSTITUTE($funnyQuote, char '_", str)
SUBSTITUTE($funnyBacks, char '_\, str)
unescapeStringsInForm form ==
string? form =>
str := NSUBSTITUTE(char '_", $funnyQuote, form)
NSUBSTITUTE(char '_\, $funnyBacks, str)
cons? form =>
unescapeStringsInForm first form
unescapeStringsInForm rest form
form
form
|