Support `:activate ((DESC . SPECIAL-INITARGS))' in attributes
[clinton/lisp-on-lines.git] / src / display.lisp
CommitLineData
e7c5f95a 1(in-package :lisp-on-lines)
2
b1c8f43b 3
e7c5f95a 4(defvar *display*)
b1c8f43b 5
6de8d300 6
e7c5f95a 7(define-layered-function display-using-description (description display object &rest args)
8 (:documentation
9 "Displays OBJECT via description using/in/with/on display"))
10
b7657b86 11
12
13(defun modify-layer-context (context &key activate deactivate)
14 (dolist (d deactivate)
15 (setf context (remove-layer (find-description d)
16 context)))
17 (dolist (d activate context)
3a420e7d 18 (setf context (adjoin-layer (find-description (if (consp d) (car d) d))
b7657b86 19 context))))
b7657b86 20
f56d6e7e 21(defun funcall-with-attribute-context (attribute thunk)
22 (funcall-with-layer-context
3a420e7d 23 (modify-layer-context (current-layer-context)
f56d6e7e 24 :activate (attribute-active-descriptions attribute)
25 :deactivate (attribute-inactive-descriptions attribute))
3a420e7d
CE
26 (lambda ()
27 (with-special-symbol-access
28 (contextl::funcall-with-special-initargs
29 (mappend (lambda (desc)
30 (when (consp desc)
31 (let ((description (find-description (car desc))))
32 (loop
33 :for (key val) :on (cdr desc) :by #'cddr
34 :collect (list (find key (description-attributes description)
35 :key #'attribute-keyword)
36 :value val)))))
37 (attribute-active-descriptions attribute))
38 (lambda ()
39 (without-special-symbol-access
40 (funcall thunk))))))))
b7657b86 41
f56d6e7e 42(defmacro with-attribute-context ((attribute) &body body)
43 `(funcall-with-attribute-context ,attribute (lambda () ,@body)))
44
45
b7657b86 46(defun display (display object &rest args &key deactivate activate &allow-other-keys)
47 (funcall-with-layer-context
48 (modify-layer-context (current-layer-context)
49 :activate activate
50 :deactivate deactivate)
51 (lambda ()
52 (apply #'display-using-description (description-of object) display object args))))
e7c5f95a 53
54(define-layered-method display-using-description
eeed4326 55 :around ((description standard-description-object) display object &rest args)
4358148e 56 (declare (ignorable args))
46440824 57#+nil (break "Entering DISPLAY for ~A on ~A using ~A" object display description)
b1c8f43b 58 (let ((*display* display))
59 (apply #'funcall-with-described-object
60 (lambda ()
61 (call-next-method))
62 object description args)))
b7657b86 63
64
65
eeed4326 66
4271ab0b 67(defun display/d (&rest args)
68 (apply #'display-using-description args))
69
e7c5f95a 70(define-layered-method display-using-description (description display object &rest args)
71 (error "No DISPLAY-USING-DESCRIPTION methods are specified for: ~% DESCRIPTION: ~A ~% DISPLAY: ~A ~% OBJECT: ~A ~% ARGS: ~S
72
73OMGWTF! If you didn't do this, it's a bug!" description display object args))
74
e7c5f95a 75(defmacro define-display (&body body)
4358148e 76 (loop with in-descriptionp = (eq (car body) :in-description)
77 with description = (if in-descriptionp (cadr body) 't)
78 for tail on (if in-descriptionp (cddr body) body)
e7c5f95a 79 until (listp (car tail))
80 collect (car tail) into qualifiers
81 finally
4358148e 82 (when (member :in-description qualifiers)
83 (error "Incorrect occurrence of :in-description in defdisplay. Must occur before qualifiers."))
e7c5f95a 84 (return
85 (destructuring-bind (description-spec &optional (display-spec (gensym)) (object-spec (gensym)))
86 (car tail)
b1c8f43b 87 `(define-layered-method
e7c5f95a 88 display-using-description
4358148e 89 :in-layer ,(if (eq t description)
90 t
91 (defining-description description))
e7c5f95a 92 ,@qualifiers
93 (,(if (listp description-spec)
94 (list (first description-spec)
95 (if (eq 'description (second description-spec))
96 'description
eeed4326 97 (contextl::defining-layer (defining-description (second description-spec))))))
e7c5f95a 98 ,display-spec
99 ,object-spec &rest args)
100 (declare (ignorable args))
101 ,@(cdr tail))))))
102
103
104
105