forked from scheme-requests-for-implementation/srfi-51
-
Notifications
You must be signed in to change notification settings - Fork 0
/
srfi-51-1.2.txt
357 lines (314 loc) · 13 KB
/
srfi-51-1.2.txt
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
Title
Handling rest list
Author
Joo ChurlSoo
Related SRFIs
The procedure and macros proposed in this SRFI make a strong combination with
RECEIVE (SRFI 8) and LET-VALUES (SRFI 11).
Abstract
This SRFI introduces the REST-VALUES procedure which has two modes of
operation:
1. it processes a rest list after checking its elements with default values or
predicate procedures,
2. it processes a rest list with default values without checking its elements;
the ARG-AND, ARG-ANDS, ARG-OR, and ARG-ORS macros check the rest arguments
that are returned by REST-VAULES that functions as the latter.
Rationale
When defining a procedure with a variable number of arguments, REST-VALUES
with or without ARG-AND (or ARG-ANDS or ARG-OR or ARG-ORS) reduces the clutter
of various conditionals and error conditions.
Specification
(REST-VALUES [<caller>] <rest-list> [<args-number-limit>] <default> ...)
* <caller> is a procedure that has <rest-list>
* <args-number-limit> should be an integer or #f or #t.
* 1. When the <args-number-limit> is missing or #t or a positive integer,
each <default> should be a list that contains default value(s), or a
pair whose car is a default value and whose cdr is a predicate
procedure.
2. When the <args-number-limit> is #f or a negative integer,
each <default> is any scheme expression.
1. (first mode of operation)
REST-VALUES checks whether each element of the <rest-list> is a member of
the corresponding <default> list, or satisfies the predicate procedure of
the corresponding <default> pair, and then returns the checked element(s).
If the element doesn't pass, REST-VALUES signals an error. When there are
no more elements in the <rest-list>, then REST-VALUES additionally returns
the car values of the remaining <default>s. On the other hand, when the
number of elements of the <rest-list> are more than the number of the
<default>s, the supernumerary elements are additionally returned if the
<args-number-limit> is missing or #t, or its value is not less than the
number of elements of the <rest-list>.
2. (second mode of operation)
This is the same as the first except that REST-VALUES does not check each
element of the <rest-list>, and it uses #f instead of #t, and an absolute
value instead of a simple value as the value of <args-number-limit>.
(ARG-AND [<caller>] <variable> <expr> ...)
(ARG-ANDS [COMMON <caller>] ([<caller>] <variable> <expr> ...) ...)
(ARG-OR [<caller>] <variable> <expr> ...)
(ARG-ORS [COMMON <caller>] ([<caller>] <variable> <expr> ...) ...)
* Each <variable> should be an argument of a procedure.
* The <caller> and <expr> are any scheme expressions, but the <expr>
should contain the corresponding <variable>.
ARG-AND and ARG-ANDS are the same as AND except that these signal an error in
case AND returns a false value.
ARG-OR and ARG-ORS are the same as OR except that these signal an error in
case OR returns a true value.
Examples
caller => <procedure caller>
rest-list => (x 1)
(rest-values rest-list 2 '(x y z)) => x 1
(rest-values rest-list -2 'y) => x 1
(rest-values caller rest-list 1 '(x y z))
=> error too many arguments (x 1) (<= (length (x 1)) 1) <procedure caller>
(rest-values caller rest-list 2 (list 'x 'y 'z) (cons "string" string?))
=> error incorrect argument 1 (<procedure string?> 1) <procedure caller>
(rest-values rest-list '(y z) `(100 . ,number?))
=> error unmatched argument x (member x (y z))
(rest-values rest-list #f 'y 100 "string")
=> x 1 "string"
(rest-values rest-list #t `(x y z) `(100 . ,number?) `("string" . ,string?))
=> x 1 "string"
(rest-values rest-list `(x y z) `(100 . ,number?) `("string" . ,string?))
=> x 1 "string"
caller => <procedure caller>
str => "string"
num => 10
a => 20
b => 30
(arg-and num (number? num) (< a num b))
=> error incorrect argument 10 num (< a num b)
(arg-and caller num (number? num) (< a num b))
=> error incorrect argument 10 num (< a num b) <procedure caller>
(arg-and 'caller num (number? num) (< a num b))
=> error incorrect argument 10 num (< a num b) caller
(arg-and `(caller ,str ,num) num (number? num) (< a num b))
=> error incorrect argument 10 num (< a num b) (caller "string" 10)
(arg-and "caller: bad argument" num (number? num) (< a num b))
=> error caller: bad argument 10 num (< a num b)
(arg-ands (str (string? str) (< (string-length str) 10))
("caller: bad argument" num (number? num) (< a num b)))
=> error caller: bad argument 10 num (< a num b)
(arg-ands ("caller: bad argument" str (string? str) (< (string-length str) 10))
(num (number? num) (< a num b)))
=> error incorrect argument 10 num (< a num b)
(arg-ands common 'caller
(str (string? str) (< (string-length str) 10))
(num (number? num) (< a num b)))
=> error incorrect argument 10 num (< a num b) caller
(arg-ands common `(caller ,str ,num)
(str (string? str) (< (string-length str) 10))
('caller num (number? num) (< a num b)))
=> error incorrect argument 10 num (< a num b) caller
(arg-ands common "caller: bad argument"
(str (string? str) (< (string-length str) 10))
("caller: incorrect argument" num (number? num) (< a num b)))
=> error caller: incorrect argument 10 num (< a num b)
(define (read-line . p-d)
(receive (p d) (rest-values p-d 2
(cons (current-input-port) input-port?)
(list 'trim 'concat 'split...))
...))
(define (read-line . p-d)
(receive (p d) (rest-values p-d -2 (current-input-port) 'trim)
(arg-ands (p (input-port? p))
(d (memq d '(trim concat split...))))
...))
(define (delete x ls . predicate)
(let ((pred (rest-values delete predicate 1 (list equal? eqv? eq?))))
...))
(define (delete x ls . predicate)
(let ((pred (rest-values delete predicate -1 equal?)))
(arg-ands common `(delete ,x ,@(cons ls predicate))
(ls (list? ls))
(pred (memq pred (list equal? eqv? eq?))))
...))
(define (substring str . start-end)
(let ((str-len (arg-and substring str (string? str) (string-length str))))
(receive (start end) (rest-values substring start-end -2 0 str-len)
(arg-ands common substring
(start (integer? start) (<= 0 start str-len))
(end (integer? end) (<= start end str-len)))
...)))
Implementation
ERROR (SRFI 23) and TAKE (SRFI 1) are used in implementation of this SRFI.
(define (rest-values rest-list . default-list)
(let* ((caller (if (procedure? rest-list) (list rest-list) '()))
(rest (if (null? caller)
rest-list
(if (null? default-list)
(error "too few arguments"
(cons rest-list default-list)
`(rest-values ,@(cons rest-list default-list)))
(car default-list))))
(rest-length (if (list? rest)
(length rest)
(error "incorrect rest list"
rest `(rest-values
,@(cons rest-list default-list)))))
(default (if (null? caller) default-list (cdr default-list)))
(number
(and (not (null? default))
(let ((d (car default)))
(or (and (number? d)
(or (and (> rest-length (abs d))
(apply error "too many arguments"
rest `(<= (length ,rest) ,(abs d))
caller))
(and (> (length (cdr default)) (abs d))
(error "too many defaults"
(cdr default)
`(rest-values
,@(cons rest-list default-list))))
d))
(and (eq? d #f) 'false)
(eq? d #t)))))
(default (if number (cdr default) default))
(default-length (length default)))
(if (or (and (number? number) (< number 0))
(eq? number 'false))
(apply values (if (> default-length rest-length)
(append rest (list-tail default rest-length))
rest))
(let ((number (min rest-length default-length)))
(for-each (lambda (r d)
(cond
((list? d)
(if (not (member r d))
(apply error "unmatched argument"
r `(member ,r ,d) caller)))
((pair? d)
(let ((p (cdr d)))
(if (procedure? p)
(if (not (p r))
(apply error "incorrect argument"
r `(,p ,r) caller))
(error "incorrect predicate"
p `(rest-values ,@(cons rest-list
default-list))))))
(else
(error "incorrect default"
d `(rest-values ,@(cons rest-list
default-list))))))
(take rest number) (take default number))
(apply values
(if (> default-length rest-length)
(append rest
(map (lambda (x)
(if (pair? x)
(car x)
(error "incorrect default"
x `(rest-values
,@(cons rest-list
default-list)))))
(list-tail default rest-length)))
rest))))))
(define-syntax arg-and
(syntax-rules()
((arg-and arg (a1 a2 ...) ...)
(and (or (symbol? 'arg)
(error "bad syntax" 'arg '(symbol? 'arg)
'(arg-and arg (a1 a2 ...) ...)))
(or (a1 a2 ...)
(error "incorrect argument" arg 'arg '(a1 a2 ...)))
...))
((arg-and caller arg (a1 a2 ...) ...)
(and (or (symbol? 'arg)
(error "bad syntax" 'arg '(symbol? 'arg)
'(arg-and caller arg (a1 a2 ...) ...)))
(or (a1 a2 ...)
(if (string? caller)
(error caller arg 'arg '(a1 a2 ...))
(error "incorrect argument" arg 'arg '(a1 a2 ...) caller)))
...))))
;; accessory macro for arg-ands
(define-syntax caller-arg-and
(syntax-rules()
((caller-arg-and caller arg (a1 a2 ...) ...)
(and (or (symbol? 'arg)
(error "bad syntax" 'arg '(symbol? 'arg)
'(caller-arg-and caller arg (a1 a2 ...) ...)))
(or (a1 a2 ...)
(if (string? caller)
(error caller arg 'arg '(a1 a2 ...))
(error "incorrect argument" arg 'arg '(a1 a2 ...) caller)))
...))
((caller-arg-and null caller arg (a1 a2 ...) ...)
(and (or (symbol? 'arg)
(error "bad syntax" 'arg '(symbol? 'arg)
'(caller-arg-and caller arg (a1 a2 ...) ...)))
(or (a1 a2 ...)
(if (string? caller)
(error caller arg 'arg '(a1 a2 ...))
(error "incorrect argument" arg 'arg '(a1 a2 ...) caller)))
...))))
(define-syntax arg-ands
(syntax-rules (common)
((arg-ands (a1 a2 ...) ...)
(and (arg-and a1 a2 ...) ...))
((arg-ands common caller (a1 a2 ...) ...)
(and (caller-arg-and caller a1 a2 ...) ...))))
(define-syntax arg-or
(syntax-rules()
((arg-or arg (a1 a2 ...) ...)
(or (and (not (symbol? 'arg))
(error "bad syntax" 'arg '(symbol? 'arg)
'(arg-or arg (a1 a2 ...) ...)))
(and (a1 a2 ...)
(error "incorrect argument" arg 'arg '(a1 a2 ...)))
...))
((arg-or caller arg (a1 a2 ...) ...)
(or (and (not (symbol? 'arg))
(error "bad syntax" 'arg '(symbol? 'arg)
'(arg-or caller arg (a1 a2 ...) ...)))
(and (a1 a2 ...)
(if (string? caller)
(error caller arg 'arg '(a1 a2 ...))
(error "incorrect argument" arg 'arg '(a1 a2 ...) caller)))
...))))
;; accessory macro for arg-ors
(define-syntax caller-arg-or
(syntax-rules()
((caller-arg-or caller arg (a1 a2 ...) ...)
(or (and (not (symbol? 'arg))
(error "bad syntax" 'arg '(symbol? 'arg)
'(caller-arg-or caller arg (a1 a2 ...) ...)))
(and (a1 a2 ...)
(if (string? caller)
(error caller arg 'arg '(a1 a2 ...))
(error "incorrect argument" arg 'arg '(a1 a2 ...) caller)))
...))
((caller-arg-or null caller arg (a1 a2 ...) ...)
(or (and (not (symbol? 'arg))
(error "bad syntax" 'arg '(symbol? 'arg)
'(caller-arg-or caller arg (a1 a2 ...) ...)))
(and (a1 a2 ...)
(if (string? caller)
(error caller arg 'arg '(a1 a2 ...))
(error "incorrect argument" arg 'arg '(a1 a2 ...) caller)))
...))))
(define-syntax arg-ors
(syntax-rules (common)
((arg-ors (a1 a2 ...) ...)
(or (arg-or a1 a2 ...) ...))
((arg-ors common caller (a1 a2 ...) ...)
(or (caller-arg-or caller a1 a2 ...) ...))))
Copyright
Copyright (C) Joo ChurlSoo (2004). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and
derivative works that comment on or otherwise explain it or assist in its
implementation may be prepared, copied, published and distributed, in whole or
in part, without restriction of any kind, provided that the above copyright
notice and this paragraph are included on all such copies and derivative works.
However, this document itself may not be modified in any way, such as by
removing the copyright notice or references to the Scheme Request For
Implementation process or editors, except as needed for the purpose of
developing SRFIs in which case the procedures for copyrights defined in the
SRFI process must be followed, or as required to translate it into languages
other than English.
The limited permissions granted above are perpetual and will not be revoked by
the authors or their successors or assigns.
This document and the information contained herein is provided on an "AS IS"
basis and THE AUTHOR AND THE SRFI EDITORS DISCLAIM ALL WARRANTIES, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.