-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmisc.lisp
697 lines (617 loc) · 25.4 KB
/
misc.lisp
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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
;;;; misc.lisp --- miscellaneous utility functions
;;;;
;;;; Copyright (C) 2020 GrammaTech, Inc.
;;;;
;;;; This code is licensed under the MIT license. See the LICENSE.txt
;;;; file in the project root for license terms.
;;;;
;;;; This project is sponsored by the Office of Naval Research, One
;;;; Liberty Center, 875 N. Randolph Street, Arlington, VA 22203 under
;;;; contract # N68335-17-C-0700. The content of the information does
;;;; not necessarily reflect the position or policy of the Government
;;;; and no official endorsement should be inferred.
(uiop/package:define-package :gt/misc
(:use :common-lisp :alexandria
:metabang-bind
:closer-mop
:iterate
:named-readtables
:curry-compose-reader-macros)
(:import-from :functional-trees :copy)
(:import-from :serapeum :mapconcat :drop-while :take-while :plist-keys
:trim-whitespace :op :take-until :drop-until)
(:import-from :uiop/utility :with-muffled-conditions)
(:import-from :uiop/image :quit :*lisp-interaction*)
#+sbcl
(:import-from :sb-introspect :function-lambda-list)
(:shadowing-import-from
:closer-mop
:standard-method :standard-class :standard-generic-function
:defmethod :defgeneric)
(:export ;; compilation and introspection
:*uninteresting-conditions*
:with-muffled-conditions
:with-quiet-compilation
:without-compiler-notes
:arglist
;; macros and macro-related functions
:if-let*
:multiple-value-or
:symbol-cat
:symbol-cat-in-package
;; plists
:plist-get
:plist-drop-if
:plist-drop
:plist-merge
;; alists
:aget
:areplace
:adrop
:alist-filter
:getter
:counts
;; probability and statistics
:position-extremum
:position-extremum-rand
:random-bool
:random-elt-with-decay
:proportional-pick
:uniform-probability
:normalize-probabilities
:cumulative-distribution
:un-cumulative-distribution
:random-pick
:random-subseq
:random-sample-with-replacement
:random-sample-without-replacement
;; string replacement
:apply-replacements
:replace-all
;; lists
:repeatedly
:indexed
:transpose
:interleave
:drop-until
:take-until
:pad
:chunks
:cartesian
:cartesian-without-duplicates
:binary-search
:levenshtein-distance
:tails
:pairs
:mapcar-improper-list
:extendable-string
:time-as-string
;; hash tables
:make-thread-safe-hash-table
:random-hash-table-key
;; lisp image
:quit
:*lisp-interaction*
;; Copying
:define-default-copy))
(in-package :gt/misc)
(in-readtable :curry-compose-reader-macros)
;;;; Compilation and introspection
(defvar *uninteresting-conditions* nil
"Additional uninteresting conditions for `with-quiet-compilation' to stifle.")
(defmacro with-quiet-compilation (&body body)
`(let ((*load-verbose* nil)
(*compile-verbose* nil)
(*load-print* nil)
(*compile-print* nil)
(uiop/lisp-build:*uninteresting-conditions*
(append *uninteresting-conditions*
uiop/lisp-build:*usual-uninteresting-conditions*)))
,@body))
(defmacro without-compiler-notes (&body body)
"Suppress compiler notes from BODY"
#+sbcl
`(locally (declare (sb-ext:muffle-conditions sb-ext:compiler-note))
,@body)
#-sbcl
`(progn ,@body))
(defun arglist (fname)
"Return the argument list of FNAME."
;; Taken from swank/backend:arglist.
#+sbcl
(function-lambda-list fname)
;; NOTE: The following is similar, but may return 0 for nil args.
;; (sb-kernel:%simple-fun-arglist fname)
#+ecl
(multiple-value-bind (arglist foundp)
(ext:function-lambda-list name)
(if foundp arglist :not-available))
#+ccl
(multiple-value-bind (arglist binding) (let ((*break-on-signals* nil))
(ccl:arglist fname))
(if binding
arglist
:not-available))
#-(or ecl sbcl ccl)
(error "Only ECL, SBCL, and CCL."))
;;;; Macros and macro-related functions
(defmacro if-let* (bindings &body (then-form &optional else-form))
"Creates new bindings, and conditionally executes THEN-FORM or ELSE-FORM.
BINDINGS must be either single binding of the form:
(variable initial-form)
or a list of bindings of the form:
((variable-1 initial-form-1)
(variable-2 initial-form-2)
...
(variable-n initial-form-n))
Each INITIAL-FORM is executed in turn, and the variable bound to the
corresponding value. INITIAL-FORM expressions can refer to variables
previously bound by the IF-LET*.
Execution of IF-LET* transitions to ELSE-FORM immediately if any
INITIAL-FORM evaluates to NIL. No bindings are present if ELSE-FORM
is evaluated. If all INITIAL-FORMs evaluate to true, then THEN-BODY
is executed."
;; NOTE: Largely adapted form Alexandria's `when-let*'.
(with-gensyms (if-block)
(if (null bindings)
then-form
(let ((binding-list (if (and (consp bindings) (symbolp (car bindings)))
(list bindings)
bindings)))
(labels ((bind (bindings body)
(if bindings
`((let (,(car bindings))
(when ,(caar bindings)
,@(bind (cdr bindings) body))))
`((return-from ,if-block ,body)))))
`(block ,if-block
(let (,(car binding-list))
(when ,(caar binding-list)
,@(bind (cdr binding-list) then-form)))
,else-form))))))
(defmacro multiple-value-or (&body forms)
"Evaluates FORM arguments one at time, until the first value returned
by one of the forms is true. It then returns all the values returned
by evaluating that form. If none of the forms return a true first
value, we return the values returned by the last form."
(with-gensyms (values)
`(let ((,values (multiple-value-list ,(first forms))))
(if (car ,values)
(values-list ,values)
,(if (rest forms)
`(multiple-value-or ,@(rest forms))
`(values-list ,values))))))
(defun symbol-cat (&rest symbols)
"Return a symbol concatenation of SYMBOLS."
(intern (string-upcase (mapconcat #'symbol-name symbols "-"))))
(defun symbol-cat-in-package (package &rest symbols)
"Return a symbol concatenation of SYMBOLS in PACKAGE."
(intern (string-upcase (mapconcat #'symbol-name symbols "-"))
package))
;;;; plist functions
(defun plist-get (item list &key (test #'eql))
(declare (optimize (speed 3)))
(loop for (element . rest) on list by #'cddr
unless (consp rest) do (error "Not a valid plist: ~a" list)
when (funcall test item element)
return (car rest)))
(defun plist-drop-if (predicate list)
(declare (optimize (speed 3)))
(loop for (element . rest) on list by #'cddr
unless (consp rest) do (error "Not a valid plist: ~a" list)
unless (funcall predicate element)
nconc (list element (car rest))))
(defun plist-drop (item list &key (test #'eql))
(plist-drop-if {funcall test item} list))
(defun plist-merge (plist-1 plist-2)
"Merge arguments into a single plist with unique keys, prefer PLIST-1 items."
(append plist-1 (plist-drop-if {member _ (plist-keys plist-1)} plist-2)))
;;;; alist functions
(defun aget (item list &key (test #'eql))
"Get KEY from association list LIST."
(cdr (assoc item list :test test)))
(define-compiler-macro aget (&whole whole item list &key (test '#'eql test-p))
(if (constantp item)
(if test-p
`(cdr (assoc ,item ,list :test ,test))
`(cdr (assoc ,item ,list)))
whole))
(define-setf-expander aget (item list &key (test ''eql) &environment env)
(multiple-value-bind (dummies vals stores store-form access-form)
(get-setf-expansion list env)
(declare (ignorable stores store-form))
(let ((store (gensym))
(cons-sym (gensym)))
(values dummies
vals
`(,store)
`(let ((,cons-sym (assoc ,item ,access-form :test ,test)))
(if ,cons-sym
(setf (cdr ,cons-sym) ,store)
(prog1 ,store
(setf ,access-form (acons ,item ,store ,access-form)))))
`(aget ,item ,access-form :test ,test)))))
(defun areplace (key val alist &key (test #'eql))
"Replace the value of KEY in the association list ALIST with VAL."
(cons (cons key val) (remove key alist :key #'car :test test)))
(defun adrop (drop-keys alist)
"Remove all keys in DROP-KEYS from alist."
(remove-if [{member _ drop-keys} #'car] alist))
(defun alist-filter (keep-keys alist)
"Remove all keys from ALIST except those in KEEP-KEYS."
(remove-if-not [{member _ keep-keys} #'car] alist))
(defun getter (key)
"Return a function which gets KEY from an association list."
(lambda (it) (aget key it)))
(defun counts (list &key (test #'eql) key frac &aux totals)
"Return an alist keyed by the unique elements of list holding their counts.
Keyword argument FRAC will return fractions instead of raw counts."
(mapc (lambda (el)
(if-let (place (assoc el totals :key key :test test))
(incf (cdr place))
(push (cons el 1) totals)))
list)
(if frac
(let ((total (reduce #'+ (mapcar #'cdr totals))))
(mapcar (lambda-bind ((obj . cnt)) (cons obj (/ cnt total))) totals))
totals))
;;;; Probablity and statistics functions
(defun proportional-pick (list key)
(let ((raw (reduce (lambda (acc el) (cons (+ el (car acc)) acc))
(mapcar key list) :initial-value '(0))))
(position-if {<= (random (first raw))} (cdr (reverse raw)))))
(defun position-extremum (list predicate key)
"Returns the position in LIST of the element maximizing KEY."
(car (extremum (indexed list) predicate :key [key #'second])))
(defun position-extremum-rand (list predicate key)
"Randomly returns one of position in LIST maximizing KEY."
(declare (ignorable predicate))
(warn "`position-extremum-rand' not finished: doesn't use all parameters")
(let ((scores (mapcar key list)))
(random-elt (mapcar #'car (remove-if-not [{= (apply #'max scores)} #'second]
(indexed scores))))))
(defun random-bool (&optional bias)
(> (or bias 0.5) (random 1.0)))
(defun uniform-probability (list)
(mapcar {cons _ (/ 1.0 (length list))} list))
(defun normalize-probabilities (alist)
"Normalize ALIST so sum of second elements is equal to 1."
(let ((total-prob (reduce #'+ (mapcar #'cdr alist))))
(mapcar (lambda-bind ((key . prob)) (cons key (/ prob total-prob))) alist)))
(defun cumulative-distribution (alist)
"Cumulative distribution function.
Return an updated version of ALIST in which the cdr of each element is
transformed from an instant to a cumulative probability."
(nreverse
(reduce (lambda-bind (acc (value . prob)) (acons value (+ (cdar acc) prob) acc))
(cdr alist) :initial-value (list (car alist)))))
(defun un-cumulative-distribution (alist)
"Undo the `cumulative-distribution' function."
(let ((last 0))
(mapcar (lambda-bind ((value . prob))
(prog1 (cons value (- prob last)) (setf last prob)))
alist)))
(defun random-pick (cdf)
(car (find-if {<= (random 1.0)} cdf :key #'cdr)))
(defun random-elt-with-decay (orig-list decay-rate)
(if (null orig-list)
nil
(labels ((pick-from (list)
(if (null list)
(pick-from orig-list)
(if (< (random 1.0) decay-rate)
(car list)
(pick-from (cdr list))))))
(pick-from orig-list))))
(defun random-subseq (list &optional (size (1+ (if (null list) 0
(random (length list))))))
(if (null list)
nil
(subseq (shuffle list) 0 size)))
(declaim (inline random-sample-with-replacement))
(defun random-sample-with-replacement
(range size &aux (result (make-array size :element-type 'fixnum)))
"Return a random sample of SIZE numbers in RANGE with replacement."
(declare (optimize speed))
(declare (type fixnum size))
(declare (type fixnum range))
(dotimes (n size (coerce result 'list))
(setf (aref result n) (random range))))
(declaim (inline random-sample-without-replacement))
(defun random-sample-without-replacement (range size)
(declare (optimize speed))
(declare (type fixnum size))
(declare (type fixnum range))
"Return a random sample of SIZE numbers in RANGE without replacement."
(cond
((> size range)
(error "Can't sample ~a numbers from [0,~a] without replacement"
size range))
((= size range)
(let ((result (make-array size :element-type 'fixnum)))
(dotimes (n range (coerce result 'list))
(setf (aref result n) n))))
(t
;; TODO: For faster collection implement a skip-list which
;; increments the value being stored as it passes might be
;; a better data structure.
(labels ((sorted-insert (list value)
(declare (type fixnum value))
(cond
((null list) (cons value nil))
((< value (the fixnum (car list))) (cons value list))
(t (cons (car list) (sorted-insert (cdr list) (1+ value)))))))
(let (sorted)
(dotimes (n size sorted)
(setf sorted (sorted-insert sorted (random (- range n))))))))))
;;;; String replacement functions
;; From the Common Lisp Cookbook
(defgeneric replace-all (string part replacement &key test)
(:documentation "Returns a new string in which all the
occurences of the part is replaced with replacement."))
(defmethod replace-all ((string string) (part string)
(replacement string) &key (test #'char=))
(with-output-to-string (out)
(loop :with part-length := (length part)
:for old-pos := 0 :then (+ pos part-length)
:for pos := (search part string
:start2 old-pos
:test test)
:do (write-string string out
:start old-pos
:end (or pos (length string)))
:when pos :do (write-string replacement out)
:while pos)))
;; Specialization to base strings, which are more space
;; efficient
(defmethod replace-all ((string base-string) (part base-string)
(replacement base-string) &key (test #'char=))
(coerce
(with-output-to-string (out)
(loop :with part-length := (length part)
:for old-pos := 0 :then (+ pos part-length)
:for pos := (search part string
:start2 old-pos
:test test)
:do (write-string string out
:start old-pos
:end (or pos (length string)))
:when pos :do (write-string replacement out)
:while pos))
'base-string))
(defun apply-replacements (list str)
(if (null list)
str
(let ((new-str
;; If (caar list) is null then `replace-all' can fall
;; into an infinite loop.
(if (and (caar list) (cdar list))
(replace-all str (caar list) (cdar list))
str)))
(apply-replacements (cdr list) new-str))))
;;;; General list-related utilities
(defmacro repeatedly (times &rest body)
(let ((ignored (gensym)))
`(loop :for ,ignored :below ,times :collect ,@body)))
(defun indexed (list)
(loop :for element :in list :as i :from 0 :collect (list i element)))
(defun transpose (matrix)
"Simple matrix transposition."
(apply #'map 'list #'list matrix))
(defun interleave (list sep &optional rest)
(cond
((cdr list) (interleave (cdr list) sep (cons sep (cons (car list) rest))))
(list (reverse (cons (car list) rest)))
(t nil)))
(defun pad (list n &optional (elem nil))
"Pad LIST to a length of N with ELEM"
(if (>= (length list) n)
list
(append list (make-list (- n (length list))
:initial-element elem))))
(defun chunks (list size &optional include-remainder-p)
"Return subsequent chunks of LIST of size SIZE."
(loop :for i :to (if include-remainder-p
(length list)
(- (length list) size))
:by size :collect (subseq list i (min (+ i size) (length list)))))
(defun cartesian (lists)
"Cartesian product of a set of lists."
(cartesian-without-duplicates lists :test (constantly nil)))
(defun cartesian-without-duplicates (lists &key (test #'eql))
"Cartesian product of a set of lists, without sets containing duplicates."
(labels ((cartesian-nil-duplicates (lists)
(if (car lists)
(mappend (lambda (inner)
(mapcar (lambda (outer)
(if (not (member outer inner :test test))
(cons outer inner)
nil))
(car lists)))
(cartesian-nil-duplicates (cdr lists)))
(list nil))))
(remove-if [{> (length lists)} #'length] (cartesian-nil-duplicates lists))))
(defun binary-search (value array &key (low 0)
(high (1- (length array)))
(test (lambda (v)
(cond ((< v value) -1)
((> v value) 1)
(t 0)))))
"Perform a binary search for VALUE on a sorted ARRAY.
Optional keyword parameters:
LOW: Lower bound
HIGH: Higher bound
TEST: Test for the binary search algorithm taking on arg.
Return -1 if arg is less than value, 1 if arg is greater than value,
and 0 otherwise."
(if (< high low)
nil
(let ((middle (floor (/ (+ low high) 2))))
(cond ((< 0 (funcall test (aref array middle)))
(binary-search value array :low low
:high (1- middle)
:test test))
((> 0 (funcall test (aref array middle)))
(binary-search value array :low (1+ middle)
:high high
:test test))
(t middle)))))
;; scheme implementation given at
;; http://en.wikipedia.org/wiki/Levenshtein_distance
(defun levenshtein-distance (s1 s2 &key (test #'char=) (key #'identity))
(let* ((width (1+ (length s1)))
(height (1+ (length s2)))
(d (make-array (list height width))))
(dotimes (x width)
(setf (aref d 0 x) x))
(dotimes (y height)
(setf (aref d y 0) y))
(dotimes (x (length s1))
(dotimes (y (length s2))
(setf (aref d (1+ y) (1+ x))
(min (1+ (aref d y (1+ x)))
(1+ (aref d (1+ y) x))
(+ (aref d y x)
(if (funcall test
(funcall key (aref s1 x))
(funcall key (aref s2 y)))
0
1))))))
(aref d (1- height) (1- width))))
(defun tails (lst)
"Return all final segments of the LST, longest first.
For example (tails '(a b c)) => ('(a b c) '(b c) '(c))
"
(when lst (cons lst (tails (cdr lst)))))
(defun pairs (lst)
"Return all pairs of elements in LST.
For example (pairs '(a b c)) => ('(a . b) '(a . c) '(b . c))
"
(iter (for (a . rest) in (tails lst))
(appending (iter (for b in rest)
(collecting (cons a b))))))
(defun mapcar-improper-list (fn list)
"Apply FN to the elements of a possibly improper list LIST,
including the final non-nil tail element, if any. Return a fresh
list composed of the value returned by each application. Does
not work on circular lists."
(let* ((head (list nil))
(tail head))
(iter (while (consp list))
(setf tail (setf (cdr tail)
(list (funcall fn (pop list))))))
(when list
(setf (cdr tail) (funcall fn list)))
(cdr head)))
;;; Hash-table related functions
(defun make-thread-safe-hash-table (&rest args)
"Create a thread safe hash table with the given ARGS"
#+(or sbcl ecl)
(apply #'make-hash-table :synchronized t args)
#+ccl
(apply #'make-hash-table :shared :lock-free args)
#-(or ccl sbcl ecl)
(error "unsupported implementation for thread-safe hashtables"))
(defun find-hash-table-element (hash-tbl n)
(maphash
(lambda (k v)
(declare (ignore v))
(when (= n 0) (return-from find-hash-table-element k))
(decf n))
hash-tbl))
(defun random-hash-table-key (hash-tbl)
"Return a random key in a hash table"
(let ((size (hash-table-count hash-tbl)))
(unless (zerop size)
(find-hash-table-element hash-tbl (random size)))))
(defun extendable-string (s)
"Given an initial string (may be empty), return an extendable (adjustable)
string initialized to passed contents."
(make-array (length s)
:element-type 'character
:initial-contents s
:fill-pointer (length s)
:adjustable t))
(defmacro time-as-string (form)
"Returns values which result from evaluation of form, with 1 additional value:
the timing info as obtained from the TIME macro (as a string)."
(with-gensyms (sym xstr)
`(let ((,xstr (extendable-string "")))
(with-output-to-string (,sym ,xstr)
(let* ((*trace-output* ,sym))
(multiple-value-call #'values (time ,form)
(progn (finish-output ,sym) (trim-whitespace ,xstr))))))))
;;; Copying
(defun copy-key-pair (obj initarg slot-name value suppliedp)
(cond
(suppliedp `(,initarg ,value))
((slot-boundp obj slot-name)
`(,initarg ,(slot-value obj slot-name)))))
;;; TODO: add test for this.
(defmacro define-default-copy (class-name (&key around-method)
&body body
&aux (obj-var (format-symbol t "OBJ"))
(keywords-var (format-symbol t "KEYWORD-ARGS")))
"Define a default copy method for CLASS-NAME which either sets or copies the
direct slots of an object of type CLASS-NAME. BODY is inserted after the slots
on the new object have been set. The variables OBJ, COPY, and KEYWORD-ARGS are
available in BODY .
:AROUND-METHOD -- generates an :around specialized method. This is useful for
classes which inherit from other classes that have copy
methods or are to be inherited from."
(labels ((supplied-var (slot-name)
(format-symbol t "~a-SUPPLIED-P" slot-name))
(generate-parameter (slot-name)
`(,slot-name nil ,(supplied-var slot-name)))
(generate-setter (slot-name)
`(cond
(,(supplied-var slot-name)
(setf (slot-value copy ',slot-name) ,slot-name))
((slot-boundp ,obj-var ',slot-name)
(setf (slot-value copy ',slot-name)
(slot-value ,obj-var ',slot-name)))))
(generate-base-method (class-name slot-names initargs)
`(defmethod copy ((,obj-var ,class-name)
&rest ,keywords-var
&key ,@(mapcar #'generate-parameter slot-names)
&allow-other-keys)
(declare (ignorable ,keywords-var))
(let ((copy
(apply
#'make-instance ',class-name
(mappend
#'identity
(remove
nil
(mapcar
(op (copy-key-pair ,obj-var _ _ _ _))
',initargs
',slot-names
,(cons 'list slot-names)
,(cons 'list (mapcar #'supplied-var
slot-names))))))))
,@body
copy)))
(generate-around-method (class-name slot-names)
`(defmethod copy :around
((,obj-var ,class-name)
&rest ,keywords-var
&key ,@(mapcar #'generate-parameter slot-names)
&allow-other-keys)
(declare (ignorable ,keywords-var))
(let ((copy (call-next-method)))
,@(mapcar #'generate-setter slot-names)
,@body
copy))))
(let* ((class (find-class class-name))
(slots (class-direct-slots class))
(initargs (mapcar (op (car (slot-definition-initargs _))) slots))
(slot-names
(mapcar (lambda (slot initarg)
(when initarg
(slot-definition-name slot)))
slots initargs)))
(if around-method
(generate-around-method class-name (remove nil slot-names))
(generate-base-method
class-name (remove nil slot-names) (remove nil initargs))))))