Changes from maxclaims branch (git).
[clinton/lisp-on-lines.git] / src / standard-descriptions / t.lisp
CommitLineData
4358148e 1(in-package :lisp-on-lines)
2
3(define-description T ()
bd9c9c31 4 ((label :label nil
5 :function (lambda (object)
6 (format nil "~@(~A~)"
7 (substitute #\Space #\-
8 (symbol-name
9 (class-name (class-of
10 object)))))))
11 (identity :label nil :function #'identity)
b1c8f43b 12 (type :label "Type" :function #'type-of)
6de8d300 13 (class :label "Class" :function #'class-of)
14 (active-attributes :label "Attributes"
15 :value nil
16 :activep nil
b7657b86 17 :keyword :attributes)
18 (attribute-delimiter :label "Attribute Delimiter"
19 :value "~%"
20 :activep nil
21 :keyword :delimter)
22 (active-descriptions :label "Active Descriptions"
23 :value nil
24 :activep nil
25 :keyword :activate)
26 (inactive-descriptions :label "Inactive Descriptions"
bd9c9c31 27 :value nil
28 :activep nil
29 :keyword :deactivate)
f4efa7ff 30 (label-formatter :value (lambda (label)
b1c8f43b 31 (generic-format *display* "~A:" label))
f4efa7ff 32 :activep nil)
33 (value-formatter :value (curry #'format nil "~A")
34 :activep nil)))
4358148e 35
36(define-layered-method description-of (any-lisp-object)
37 (find-description 't))
38
b7657b86 39(define-layered-function display-attribute (attribute)
40 (:method (attribute)
41 (display-using-description attribute *display* (attribute-object attribute))))
e8d4fa45 42
2548f054 43
b7657b86 44(define-layered-function display-attribute-label (attribute)
45 (:method (attribute)
f4efa7ff 46 (funcall (attribute-label-formatter attribute) (attribute-label attribute))))
47
e8d4fa45 48
b7657b86 49
2548f054 50
b7657b86 51(define-layered-function display-attribute-value (attribute)
52 (:method (attribute)
53 (flet ((disp (val &rest args)
54 (apply #'display *display* val
55 :activate (attribute-active-descriptions attribute)
56 :deactivate (attribute-inactive-descriptions attribute)
57 args)))
58
e8d4fa45 59 (let ((val (attribute-value attribute)))
2548f054 60 (if (and (not (slot-boundp attribute 'active-attributes))
61 (eql val (attribute-object attribute)))
b7657b86 62 (generic-format *display* (funcall (attribute-value-formatter attribute) val))
e8d4fa45 63 (with-active-descriptions (inline)
2548f054 64 (cond ((slot-value attribute 'value-formatter)
65 (generic-format *display* (funcall (attribute-value-formatter attribute) val)))
66 ((slot-boundp attribute 'active-attributes)
67 (disp val :attributes (slot-value attribute 'active-attributes)))
68 (t
69 (disp val)))))))))
e8d4fa45 70
71(define-layered-method display-using-description
72 ((attribute standard-attribute) display object &rest args)
73 (declare (ignore args))
74 (when (attribute-label attribute)
b7657b86 75 (display-attribute-label attribute))
76 (display-attribute-value attribute))
e8d4fa45 77
2548f054 78(define-layered-method display-attribute :around
79 ((attribute standard-attribute))
80 (funcall-with-layer-context
81 (modify-layer-context (current-layer-context)
82 :activate (attribute-active-descriptions attribute)
83 :deactivate (attribute-inactive-descriptions attribute))
84 (lambda ()
85 (call-next-method))))
86
87(define-layered-method display-attribute :before
88 ((attribute standard-attribute))
89)
90
4358148e 91(define-display ((description t))
b7657b86 92 (let ((attributes (attributes description)))
93 (display-attribute (first attributes))
f4efa7ff 94 (dolist (attribute (rest attributes) (values))
b7657b86 95 (generic-format *display*
96 (attribute-value
97 (find-attribute description 'attribute-delimiter)))
98 (display-attribute attribute))))
99
100
f4efa7ff 101(define-display :around ((description t) (display null) object)
102 (with-output-to-string (*standard-output*)
b1c8f43b 103 (call-next-layered-method description t object))
104)
b7657b86 105
4358148e 106
6de8d300 107
108