r4472: Automatic commit for debian_version_2_6_1-1
[hyperobject.git] / mop.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          mop.lisp
6 ;;;; Purpose:       Metaobject Protocol Interface
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; This metaclass as functions to classes to allow display
11 ;;;; in Text, HTML, and XML formats. This includes hyperlinking
12 ;;;; capability and sub-objects.
13 ;;;;
14 ;;;; $Id: mop.lisp,v 1.49 2003/04/14 17:10:54 kevin Exp $
15 ;;;;
16 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
17 ;;;;
18 ;;;; *************************************************************************
19  
20 (in-package :hyperobject)
21
22 (eval-when (:compile-toplevel :execute)
23   (declaim (optimize (speed 2) (safety 2) (compilation-speed 0) (debug 2))))
24
25 ;; Main class
26
27 (defclass hyperobject-class (standard-class)
28   ( ;; slots initialized in defclass
29    (user-name :initarg :user-name :type string :initform nil
30               :accessor user-name
31               :documentation "User name for class")
32    (default-print-slots :initarg :default-print-slots :type list :initform nil
33                         :accessor default-print-slots
34                         :documentation "Defaults slots for a view")
35    (description :initarg :description :initform nil
36                 :accessor description
37                 :documentation "Class description")
38    (version :initarg :version :initform nil
39             :accessor version
40             :documentation "Version number for class")
41    (sql-name :initarg :sql-name :initform nil)
42
43    ;;; The remainder of these fields are calculated one time
44    ;;; in finalize-inheritence.
45    
46    (subobjects :initform nil :accessor subobjects
47                :documentation
48                "List of fields that contain a list of subobjects objects.")
49    (hyperlinks :type list :initform nil :accessor hyperlinks
50                :documentation "List of fields that have hyperlinks")
51    (direct-rules :type list :initform nil :initarg :direct-rules
52                  :accessor direct-rules
53                  :documentation "List of rules to fire on slot changes.")
54    (class-id :type integer :initform nil
55              :accessor class-id
56              :documentation "Unique ID for the class")
57    (default-view :initform nil :initarg :default-view :accessor default-view
58                  :documentation "The default view for a class")
59
60    ;; SQL commands
61    (create-table-cmd :initform nil :reader create-table-cmd)
62    (create-indices-cmds :initform nil :reader create-index-cmds)
63    (drop-table-cmd :initform nil :reader drop-table-cmd)
64
65    (views :type list :initform nil :initarg :views :accessor views
66           :documentation "List of views")
67    (rules :type list :initform nil :initarg :rules :accessor rules
68           :documentation "List of rules")
69    )
70   (:documentation "Metaclass for Markup Language classes."))
71
72 (defclass subobject ()
73   ((name-class :type symbol :initform nil :initarg :name-class :reader name-class)
74    (name-slot :type symbol :initform nil :initarg :name-slot :reader name-slot)
75    (lookup :type symbol :initform nil :initarg :lookup :reader lookup)
76    (lookup-keys :type list :initform nil :initarg :lookup-keys
77                 :reader lookup-keys))
78   (:documentation "Contains subobject information"))
79
80
81 (defmethod print-object ((obj subobject) (s stream))
82   (print-unreadable-object (obj s :type t :identity t)
83     (format s "~S" (name obj))))
84
85 (defclass hyperlink ()
86   ((name :type symbol :initform nil :initarg :name :reader name)
87    (lookup :type function :initform nil :initarg :lookup :reader lookup)
88    (link-parameters :type list :initform nil :initarg :link-parameters
89                     :reader link-parameters)))
90
91 (defmethod print-object ((obj hyperlink) (s stream))
92   (print-unreadable-object (obj s :type t :identity t)
93     (format s "~S" (name obj))))
94
95 #+(or cmu scl sbcl)
96 (defmethod validate-superclass ((class hyperobject-class) (superclass standard-class))
97   t)
98
99 (defmethod finalize-inheritance :after ((cl hyperobject-class))
100   (init-hyperobject-class cl)
101   )
102
103 ;; Slot definitions
104 (defmethod direct-slot-definition-class ((cl hyperobject-class) 
105                                          #+allegro &rest
106                                          iargs)
107   (find-class 'hyperobject-dsd))
108
109
110                                         ; Slot definitions
111
112 (eval-when (:compile-toplevel :load-toplevel :execute)
113   (defmacro process-class-option (slot-name &optional required)
114     #+lispworks
115     `(defmethod clos:process-a-class-option ((class hyperobject-class)
116                                              (name (eql ,slot-name))
117                                              value)
118       (when (and ,required (null value))
119         (error "hyperobject class slot ~A must have a value" name))
120       (list name `',value))
121     #+(or allegro sbcl cmu scl)
122     (declare (ignore slot-name required))
123     )
124
125   (defmacro process-slot-option (slot-name)
126     #+lispworks
127     `(defmethod clos:process-a-slot-option ((class hyperobject-class)
128                                             (option (eql ,slot-name))
129                                             value
130                                             already-processed-options
131                                             slot)
132       (list* option `',value already-processed-options))
133     #-lispworks
134     (declare (ignore slot-name))
135     )
136   
137   (dolist (option *class-options*)
138     (eval `(process-class-option ,option)))
139   (dolist (option *slot-options*)
140     (eval `(process-slot-option ,option)))
141
142   (eval
143    `(defclass hyperobject-dsd (standard-direct-slot-definition)
144      (,@(mapcar #'(lambda (x)
145                     `(,(intern (symbol-name x))
146                       :initform nil))
147                 *slot-options-no-initarg*)
148       ,@(mapcar #'(lambda (x)
149                     `(,(intern (symbol-name x))
150                       :initarg
151                       ,(intern (symbol-name x) (symbol-name :keyword))
152                       :initform nil
153                       :accessor
154                       ,(intern (concatenate 'string
155                                             (symbol-name :dsd-)
156                                             (symbol-name x)))))
157                 *slot-options*))))
158   (eval
159    `(defclass hyperobject-esd (standard-effective-slot-definition)
160      (,@(mapcar #'(lambda (x)
161                     `(,(intern (symbol-name x))
162                       :initarg
163                       ,(intern (symbol-name x) (symbol-name :keyword))
164                       :initform nil
165                       :accessor
166                       ,(intern (concatenate 'string
167                                             (symbol-name :esd-)
168                                             (symbol-name x)))))
169                 (append *slot-options* *slot-options-no-initarg*)))))
170   ) ;; eval-when
171
172 (defun intern-in-keyword (obj)
173   (cond
174     ((null obj)
175      nil)
176     ((eq t obj)
177      t)
178     ((atom obj)
179      (intern (symbol-name obj) (find-package 'keyword)))
180     ((consp obj)
181      (cons (intern-in-keyword (car obj) ) (intern-in-keyword (cdr obj))))
182     (t
183      obj)))
184
185 (defun canonicalize-value-type (vt)
186   (typecase vt
187     (atom
188      (ensure-keyword vt))
189     (cons
190      (cons (ensure-keyword (car vt)) (cdr vt)))
191     (t
192      t)))
193
194 (defmethod compute-effective-slot-definition :around ((cl hyperobject-class)
195                                                       #-(or scl) name
196                                                       dsds)
197   #+allegro (declare (ignore name))
198   (let* ((dsd (car dsds))
199          (value-type (canonicalize-value-type (slot-value dsd 'value-type))))
200     (multiple-value-bind (sql-type length) (value-type-to-sql-type value-type)
201       (setf (slot-value dsd 'sql-type) sql-type)
202       (setf (slot-value dsd 'type) (value-type-to-lisp-type value-type))
203       (let ((ia (compute-effective-slot-definition-initargs cl #+lispworks name dsds)))
204         (apply
205          #'make-instance 'hyperobject-esd 
206          :value-type value-type
207          :sql-type sql-type
208          :length length
209          :print-formatter (slot-value dsd 'print-formatter)
210          :subobject (slot-value dsd 'subobject)
211          :hyperlink (slot-value dsd 'hyperlink)
212          :hyperlink-parameters (slot-value dsd 'hyperlink-parameters)
213          :description (slot-value dsd 'description)
214          :user-name (slot-value dsd 'user-name)
215          :index (slot-value dsd 'index)
216          :value-constraint (slot-value dsd 'value-constraint)
217          :null-allowed (slot-value dsd 'null-allowed)
218          ia)))))
219   
220 (defun value-type-to-lisp-type (value-type)
221   (case (if (atom value-type)
222             value-type
223             (car value-type))
224     ((:string :cdata :varchar :char)
225      'string)
226     (:character
227      'character)
228     (:fixnum
229      'fixnum)
230     (:boolean
231      'boolean)
232     (:integer
233      'integer)
234     ((:float :single-float)
235      'single-float)
236     (:double-float
237      'double-float)
238     (otherwise
239      t)))
240
241 (defun value-type-to-sql-type (value-type)
242   "Return two values, the sql type and field length."
243   (let ((type (if (atom value-type)
244                   value-type
245                   (car value-type)))
246         (length (when (consp value-type)
247                   (cadr value-type))))
248     (values
249      (case type
250        ((:string :cdata)
251         :string)
252        ((:fixnum :integer)
253         :integer)
254        (:boolean
255         :boolean)
256        ((:float :single-float)
257         :single-float)
258        (:double-float
259         :double-float)
260        (otherwise
261         :text))
262      length)))
263
264 ;;;; Class initialization function
265
266 ;; defines a slot-unbound method for class and slot-name, fills
267 ;; the slot by calling reader function with the slot values of
268 ;; the instance's reader-keys
269 (defmacro def-lazy-reader (class slot-name reader &rest reader-keys)
270   (let* ((the-slot-name (gensym))
271          (the-class (gensym))
272          (the-instance (gensym))
273          (keys '()))
274     (dolist (key reader-keys)
275       (push (list 'slot-value the-instance (list 'quote key)) keys))
276     (setq keys (nreverse keys))
277     `(defmethod slot-unbound (,the-class (,the-instance ,class)
278                               (,the-slot-name (eql ',slot-name)))
279       (declare (ignore ,the-class))
280       (setf (slot-value ,the-instance ,the-slot-name)
281        (,reader ,@keys)))))
282
283 #+lispworks
284 (defun intern-eql-specializer (slot)
285   `(eql ,slot))
286
287 #+(or sbcl cmu lispworks)
288 (defun ensure-lazy-reader (class-name slot-name reader &rest reader-keys)
289   (let ((keys nil)
290         (gf (ensure-generic-function 'slot-unbound)))
291     (dolist (key reader-keys)
292       (push (list 'slot-value 'the-instance (list 'quote key)) keys))
293     (setq keys (nreverse keys))
294     (multiple-value-bind (method-lambda init-args-values)
295         (make-method-lambda
296          gf
297          (class-prototype (generic-function-method-class gf))
298          #-lispworks
299          `(lambda (the-class the-instance the-slot-name)
300            (declare (ignore the-class))
301            (setf (slot-value the-instance the-slot-name) (,reader ,@keys)))
302          #+lispworks
303          '(the-class the-instance the-slot-name)
304          #+lispworks
305          nil
306          #+lispworks
307          `(setf (slot-value the-instance the-slot-name) (,reader ,@keys))
308          nil)
309       (add-method gf
310                   (apply
311                    #'make-instance (generic-function-method-class gf)
312                    ':specializers (list (class-of (find-class class-name))
313                                         (find-class class-name)
314                                         (intern-eql-specializer slot-name))
315                    ':lambda-list '(the-class the-instance the-slot-name)
316                    ':function (compile nil method-lambda)
317                    init-args-values)))))
318
319 (defun finalize-subobjects (cl)
320   "Process class subobjects slot"
321   (setf (subobjects cl)
322         (let ((subobjects '()))
323           (dolist (slot (class-slots cl))
324             (let-when (subobj-def (esd-subobject slot))
325                       (let ((subobject (make-instance 'subobject
326                                                       :name-class (class-name cl)
327                                                       :name-slot (slot-definition-name slot)
328                                                       :lookup (if (atom subobj-def)
329                                                                   subobj-def
330                                                                   (car subobj-def))
331                                                       :lookup-keys (if (atom subobj-def)
332                                                                        nil
333                                                                        (cdr subobj-def)))))
334                         (unless (eq (lookup subobject) t)
335                           #-(or sbcl cmu lispworks)
336                           (eval
337                            `(hyperobject::def-lazy-reader ,(name-class subobject)
338                              ,(name-slot subobject) ,(lookup subobject)
339                              ,@(lookup-keys subobject)))
340                           #+(or sbcl cmu lispworks)
341                           (apply #'ensure-lazy-reader 
342                                  (name-class subobject) (name-slot subobject) (lookup subobject) (lookup-keys subobject))
343                           )
344                         (push subobject subobjects))))
345           ;; sbcl/cmu reverse class-slots compared to the defclass form
346           ;; subobject is already reversed from the dolist/push loop, so re-reverse on cmu/sbcl
347           #+(or cmu sbcl) subobjects
348           #-(or cmu sbcl) (nreverse subobjects)
349           )))
350
351 (defun finalize-documentation (cl)
352   "Calculate class documentation slot"
353   (awhen (slot-value cl 'user-name)
354          (setf (slot-value cl 'user-name)
355                (etypecase (slot-value cl 'user-name)
356                  (cons (car it))
357                  ((or string symbol) it))))
358   (awhen (slot-value cl 'description)
359          (setf (slot-value cl 'description)
360                (etypecase (slot-value cl 'description)
361                  (cons (car it))
362                  ((or string symbol) it))))
363
364   (let ((*print-circle* nil))
365     (setf (documentation (class-name cl) 'class)
366           (format nil "Hyperobject~A~A~A~A"
367                   (aif (user-name cl)
368                        (format nil ": ~A" it ""))
369                   (aif (description cl)
370                        (format nil "~%Class description: ~A" it) "")
371                   (aif (subobjects cl)
372                        (format nil "~%Subobjects:~{ ~A~}" (mapcar #'name-slot it)) "")
373                   (aif (default-print-slots cl)
374                        (format nil "~%Default print slots:~{ ~A~}" it) "")
375                   ))))
376
377 (defun finalize-hyperlinks (cl)
378   (let ((hyperlinks '()))
379     (dolist (esd (class-slots cl))
380       (awhen (slot-value esd 'hyperlink)
381              (push
382               (make-instance 'hyperlink
383                              :name (slot-definition-name esd)
384                              :lookup it
385                              :link-parameters (slot-value esd 'hyperlink-parameters))
386               hyperlinks)))
387     ;; cmu/sbcl reverse class-slots compared to the defclass form
388     ;; hyperlinks is already reversed from the dolist/push loop, so re-reverse on sbcl/cmu
389     #-(or cmu sbcl) (setq hyperlinks (nreverse hyperlinks))
390     (setf (slot-value cl 'hyperlinks) hyperlinks)))
391
392 (defun init-hyperobject-class (cl)
393   "Initialize a hyperobject class. Calculates all class slots"
394   (finalize-subobjects cl)
395   (finalize-views cl)
396   (finalize-hyperlinks cl)
397   (finalize-sql cl)
398   (finalize-rules cl)
399   (finalize-documentation cl))
400
401
402 ;;;; *************************************************************************
403 ;;;;  Metaclass Slot Accessors
404 ;;;; *************************************************************************
405
406 (defun find-slot-by-name (cl name)
407   (find name (class-slots cl) :key #'slot-definition-name))
408
409 (defun hyperobject-class-user-name (obj)
410   (awhen (user-name (class-of obj))
411          (if (consp it)
412              (car it)
413              it)))
414
415 (defun hyperobject-class-subobjects (obj)
416   (subobjects (class-of obj)))
417
418 (defun hyperobject-class-hyperlinks (obj)
419   (hyperlinks (class-of obj)))
420
421 (defun hyperobject-class-slots (obj)
422   ;; cmucl/sbcl reverse class-slots
423   #+(or cmu sbcl) (reverse (class-slots (class-of obj)))
424   #-(or cmu sbcl) (class-slots (class-of obj)))
425