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
|
(defun sys:handle-bad-syntax (item)
(throwf 'eval-error "~s: bad clause syntax: ~s" 'handle item))
(defmacro usr:catch (:form form :env e try-form . catch-clauses)
(let ((catch-syms [mapcar car catch-clauses])
(sys-catch-clauses (mapcar (do mac-param-bind @1 (type args . body) @1
(tree-bind (args-ex . body-ex)
(sys:expand-params args body
e nil form)
(rlcp ^(,type (,(gensym) ,*args-ex) ,*body-ex)
@1)))
catch-clauses)))
^(sys:catch ,catch-syms ,try-form nil ,*sys-catch-clauses)))
(defmacro catch* (try-form . catch-clauses)
(let ((catch-syms [mapcar car catch-clauses]))
^(sys:catch ,catch-syms ,try-form nil ,*catch-clauses)))
(defmacro catch** (:env menv try-form . catch-clauses)
(let ((catch-syms [mapcar car catch-clauses])
sys-catch-clauses descs)
(each ((cl catch-clauses))
(mac-param-bind cl (type desc args . body) cl
(push ^(,type ,args ,*body) sys-catch-clauses)
(push desc descs)))
(sys:setq sys-catch-clauses (nreverse sys-catch-clauses))
(sys:setq descs (nreverse descs))
(let ((desc-expr (if [all descs (op constantp @1 menv)]
^'(,*[mapcar eval descs])
^(list ,*descs))))
^(sys:catch ,catch-syms ,try-form ,desc-expr ,*sys-catch-clauses))))
(defun sys:expand-handle (form try-form handle-clauses)
(let* ((oper (car form))
(exc-sym (gensym))
(exc-args (gensym))
(syms-fragments (collect-each ((hc handle-clauses))
(tree-case hc
((name arglist . body)
(unless (symbolp name)
(sys:handle-bad-syntax hc))
(list name ^(apply (lambda ,arglist ,*body)
,*(if (or (eq oper 'handle*)
(and (plusp sys:compat)
(<= 161 sys:compat)))
^(,exc-sym))
,exc-args)))
(else (sys:handle-bad-syntax else))))))
^(handler-bind (lambda (,exc-sym . ,exc-args)
(cond
,*(mapcar (aret ^((exception-subtype-p ,exc-sym ',@1) ,@2))
syms-fragments)))
,[mapcar car syms-fragments]
,try-form)))
(defmacro handle (:form form try-form . handle-clauses)
(sys:expand-handle form try-form handle-clauses))
(defmacro handle* (:form form try-form . handle-clauses)
(sys:expand-handle form try-form handle-clauses))
(defmacro ignwarn (. forms)
^(handler-bind (lambda (exc-sym . args) (throw 'continue)) (warning) ,*forms))
|