forked from franzinc/aserve
-
Notifications
You must be signed in to change notification settings - Fork 1
/
macs.cl
325 lines (261 loc) · 8.61 KB
/
macs.cl
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
;; -*- mode: common-lisp; package: net.aserve -*-
;;
;; macs.cl
;;
;; See the file LICENSE for the full license governing this code.
;;
;;
;; Description:
;; useful internal macros
;;- This code in this file obeys the Lisp Coding Standard found in
;;- http://www.franz.com/~jkf/coding_standards.html
;;-
;; macros used by iserve
(in-package :net.aserve)
(eval-when (:compile-toplevel) (declaim (optimize (speed 3))))
;; add features based on the capabilities of the host lisp
#+(version>= 6 1) (pushnew :io-timeout *features*) ; support i/o timeouts
;; Note for people using this code in non-Allegro lisps.
;;
;; The if* macro used in this code can be found at:
;;
;; http://www.franz.com/~jkf/ifstar.txt
;;
;; macros to speed up some common character operations
(defmacro find-it (ch buff start end)
;; return position of ch in buff from [start end}
;;
(let ((pos (gensym)))
`(do ((,pos ,start (1+ ,pos)))
((>= ,pos ,end))
(if* (eq (schar ,buff ,pos) ,ch)
then (return ,pos)))))
(defmacro find-it-rev (ch buff start end)
;; return position of ch in buff from [start end}
;; searching backwards
;;
(let ((pos (gensym)))
`(do ((,pos (1- ,end) (1- ,pos)))
((< ,pos ,start))
(if* (eq (schar ,buff ,pos) ,ch)
then (return ,pos)))))
(defmacro buffer-substr (buff start end)
;; return a string holding the chars in buff from [start end }
;;
(let ((res (gensym))
(i (gensym))
(pos (gensym)))
`(let ((,res (make-string (- ,end ,start))))
(do ((,i 0 (1+ ,i))
(,pos ,start (1+ ,pos)))
((>= ,pos ,end))
(setf (schar ,res ,i) (schar ,buff ,pos)))
,res)))
(defmacro buffer-match (buff start str)
;; return t if the buffer buff contains the same string as str
(let ((pos (gensym))
(i (gensym))
(len (gensym)))
`(do ((,pos ,start (1+ ,pos))
(,i 0 (1+ ,i))
(,len (length ,str)))
((>= ,i ,len) t)
(if* (not (eq (schar ,buff ,pos) (schar ,str ,i)))
then (return nil)))))
(defmacro buffer-match-ci (buff start str)
;; return t if the buffer buff contains the same string as str
;; case insensitive version where str contains each char doubled
(let ((pos (gensym))
(i (gensym))
(len (gensym))
(xchar (gensym)))
`(do ((,pos ,start (1+ ,pos))
(,i 0 (+ 2 ,i))
(,len (length ,str)))
((>= ,i ,len) t)
(let ((,xchar (schar ,buff ,pos)))
(if* (not (or (eq ,xchar (schar ,str ,i))
(eq ,xchar (schar ,str (1+ ,i)))))
then (return nil))))))
(defmacro rational-read-sequence (&rest args)
;; acl's read-sequence was changed to conform to the
;; bogus ansi definition where the whole buffer was filled up.
;; even for socket stream.
;; rational-read-sequence does read-sequence the right way.
#-(version>= 6 0 pre-final 9)
`(read-sequence ,@args)
#+(version>= 6 0 pre-final 9)
`(read-sequence ,@args :partial-fill t))
;;;; response macros
;---- unsigned byte 8 array macros:
(defmacro ausb8 (vec index)
; like aref but it declares the type
`(aref (the (simple-array (unsigned-byte 8) 1) ,vec) ,index))
(defmacro copy-usb8 (from-vector from-start
to-vector to-start
count)
;; copy count bytes from from-vector[start] to to-vector[start].
;; vectors are usb8
(let ((from (gensym))
(to (gensym))
(i (gensym)))
`(do ((,from ,from-start (1+ ,from))
(,to ,to-start (1+ ,to))
(,i ,count (1- ,i)))
((<= ,i 0))
(setf (ausb8 ,to-vector ,to)
(ausb8 ,from-vector ,from)))))
(defmacro copy-usb8-up (from-vector from-start
to-vector to-start
count)
;; copy count bytes from from-vector[start] to to-vector[start],
;; going from the top down. this is designed to be used if we are
;; copying upward in place so we have to copy from the top down
;;
;; vectors are usb8
(let ((from (gensym))
(to (gensym))
(i (gensym)))
`(do* ((,i ,count (1- ,i))
(,from (+ ,from-start ,i -1) (1- ,from))
(,to (+ ,to-start ,i -1) (1- ,to)))
((<= ,i 0))
(setf (ausb8 ,to-vector ,to)
(ausb8 ,from-vector ,from)))))
;-------------
(defmacro dlogmess (&rest args)
;; for now we just disable completely the log messages.
;; in the future we'll turn on and off the log messages
;; at runtime with a switch.
(declare (ignore args))
nil)
;---------------
; acl 6.1 and newer support timeouts on read/write for hiper streams
; Thus we can avoid using global timeouts in certain cases.
;
; with-timeout-local: use with-timeout if that all we've got
; else use read-write timeouts
;
#-(version>= 6 1)
(defmacro with-timeout-local ((time &rest actions) &body body)
;; same as with-timeout
`(mp:with-timeout (,time ,@actions) ,@body)) ; ok w-t
#+(version>= 6 1)
(defmacro with-timeout-local ((time &rest actions) &body body)
(declare (ignore time))
(let ((g-blocktag (gensym)))
`(block ,g-blocktag
(handler-bind ((socket-error
#'(lambda (c)
(if* (member (stream-error-identifier c)
'(:read-timeout :write-timeout)
:test #'eq)
then ; must handle this
(return-from ,g-blocktag
(progn ,@actions))))))
,@body))))
;;;;;;;;;;;;;; SMP-aware macros
;;
;; We cater to three slightly different states:
;;
;; #+smp
;; (smp-case (t form) ...)
;; The compile and execute environments support SMP;
;; 9.0 with smp.
;;
;; #+(and smp-macros (not smp))
;; (smp-case (:macros form) ...)
;; Compile environment recognizes the SMP macros, but compiles
;; for non-SMP lisp;
;; >=8.2 but not smp
;; 8.1 with smp patches.
;;
;; #-smp-macros
;; (smp-case (nil form) ...)
;; Compile environment does not recognize SMP macros;
;; 8.1 without smp patches.
;;
(defmacro smp-case (&rest clauses)
(let* ((key
#+smp t
#+(and smp-macros (not smp)) :macros
#-smp-macros nil
)
(clause (dolist (c clauses)
(if* (not (and (consp c)
(consp (cdr c))
(null (cddr c))))
then (error "smp-case clause ~s is badly formed" c))
(let ((c-key (car c)))
(if* (or (eq c-key key)
(and (consp c-key)
(member key c-key)))
then (return c))))))
(if* (not clause)
then (error "smp-case is missing clause for ~s" key))
(second clause)))
(defmacro check-smp-consistency ()
(smp-case
(nil (if* (featurep :smp)
then (error "This file was compiled to run in a non-smp acl")))
(:macros (if* (featurep :smp)
then (error "This file was compiled to run in a non-smp acl")
elseif (not (featurep :smp-macros))
then (error "This file requires the smp-macros patch")))
(t (if* (not (featurep :smp))
then (error "This file was compiled to run in an smp acl")))))
(defmacro atomic-incf (var)
(smp-case
(t `(incf-atomic ,var))
(:macros `(with-locked-object (nil :non-smp :without-scheduling) (incf ,var)))
(nil `(si:without-scheduling (incf ,var))))
)
(defmacro atomic-decf (var)
(smp-case
(t `(decf-atomic ,var))
(:macros `(with-locked-object (nil :non-smp :without-scheduling) (decf ,var)))
(nil `(si:without-scheduling (decf ,var)))))
(defmacro with-locked-server ((s) &body body)
(smp-case
((t :macros) `(with-locked-object (,s :non-smp :without-scheduling) ,@body))
(nil `(si:without-scheduling ,s ,@body))))
(defmacro defvar-mp (v &rest rest)
(smp-case
((t :macros) `(defvar-nonbindable ,v ,@rest))
(nil `(defvar ,v ,@rest))))
(defmacro atomically-fast (&body body)
(smp-case
((t :macros) `(excl::.atomically (excl::fast ,@body)))
(nil `(excl::atomically (excl::fast ,@body)))))
(defmacro atomic-setf-max (place val)
(smp-case
(nil (let ((newvar (gensym)))
`(let ((,newvar ,val))
(without-interrupts
(if* (< ,place ,newvar) then (setf ,place ,newvar) t)))))
((t :macros) (let ((newvar (gensym)) (oldvar (gensym)))
`(let ((,newvar ,val) ,oldvar)
(loop
(setq ,oldvar ,place)
(cond ((not (< ,oldvar ,newvar)) (return nil))
((atomic-conditional-setf ,place ,newvar ,oldvar)
(return t)))))))))
;;;;;; end of smp-aware macro definitions
(define-condition allegroserve-error (error)
(;; what was being attempted with the error occured
(action :initarg :action :reader allegroserve-error-action
:initform "unspecified")
;; describing the result that is considered an error
(result :initarg :result :reader allegroserve-error-result
:initform "unspecified")
; a keyword unique to each error
(identifier :initarg :identifier :reader allegroserve-error-identifier
:initform nil))
(:report
(lambda (con stream)
(with-slots (action result identifier) con
(format stream
"~@<~a resulted in error ~s : ~a.~:@>"
action
identifier
result)))))