r7061: initial property settings
[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$
15 ;;;;
16 ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg
17 ;;;; *************************************************************************
18  
19 (in-package #:hyperobject)
20
21 ;; Main class
22
23 (defclass hyperobject-class (standard-class)
24   ( ;; slots initialized in defclass
25    (user-name :initarg :user-name :type string :initform nil
26               :accessor user-name
27               :documentation "User name for class")
28    (user-name-plural :initarg :user-name-plural :type string :initform nil
29                      :accessor user-name-plural
30                      :documentation "Plural user name for class")
31    (default-print-slots :initarg :default-print-slots :type list :initform nil
32                         :accessor default-print-slots
33                         :documentation "Defaults slots for a view")
34    (description :initarg :description :initform nil
35                 :accessor description
36                 :documentation "Class description")
37    (version :initarg :version :initform nil
38             :accessor version
39             :documentation "Version number for class")
40    (closures :initarg :closures :initform nil
41              :accessor closures
42              :documentation "Closures to call on slot chnages")
43    (sql-name :initarg :sql-name :accessor sql-name :initform nil
44              :documentation "SQL Name for this class")
45    (guid :initarg :guid :accessor guid :initform nil
46          :documentation "ID string for this class")
47
48    ;;; The remainder of these fields are calculated one time
49    ;;; in finalize-inheritence.
50    
51    (subobjects :initform nil :accessor subobjects
52                :documentation
53                "List of fields that contain a list of subobjects objects.")
54    (hyperlinks :type list :initform nil :accessor hyperlinks
55                :documentation "List of fields that have hyperlinks")
56    (direct-rules :type list :initform nil :initarg :direct-rules
57                  :accessor direct-rules
58                  :documentation "List of rules to fire on slot changes.")
59    (direct-views :type list :initform nil :initarg :direct-views
60                  :accessor direct-views
61                  :documentation "List of views")
62    (class-id :type integer :initform nil
63              :accessor class-id
64              :documentation "Unique ID for the class")
65    (default-view :initform nil :initarg :default-view :accessor default-view
66                  :documentation "The default view for a class")
67
68    ;; SQL commands
69    (create-table-cmd :initform nil :reader create-table-cmd)
70    (create-indices-cmds :initform nil :reader create-index-cmds)
71    (drop-table-cmd :initform nil :reader drop-table-cmd)
72
73    (views :type list :initform nil :initarg :views :accessor views
74           :documentation "List of views")
75    (rules :type list :initform nil :initarg :rules :accessor rules
76           :documentation "List of rules")
77    )
78   (:documentation "Metaclass for Markup Language classes."))
79
80 (defclass subobject ()
81   ((name-class :type symbol :initarg :name-class :reader name-class)
82    (name-slot :type symbol :initarg :name-slot :reader name-slot)
83    (subobj-class :type symbol :initarg :subobj-class :reader subobj-class)
84    (lookup :type (or function symbol) :initarg :lookup :reader lookup)
85    (lookup-keys :type list :initarg :lookup-keys :reader lookup-keys))
86   (:documentation "subobject information")
87   (:default-initargs :name-class nil :name-slot nil :subobj-class nil
88                      :lookup nil :lookup-keys nil))
89
90
91 (defmethod print-object ((obj subobject) (s stream))
92   (print-unreadable-object (obj s :type t)
93     (format s "~S" (name-slot obj))))
94
95 (defclass hyperlink ()
96   ((name :type symbol :initform nil :initarg :name :reader name)
97    (lookup
98     ;; The type specifier seems to break sbcl
99     :type (or function symbol)
100     ;;    :type t
101     :initform nil :initarg :lookup :reader lookup)
102    (link-parameters :type list :initform nil :initarg :link-parameters
103                     :reader link-parameters)))
104
105 (defmethod print-object ((obj hyperlink) (s stream))
106   (print-unreadable-object (obj s :type t :identity t)
107     (format s "~S" (name obj))))
108
109 (defmethod validate-superclass ((class hyperobject-class) (superclass standard-class))
110   t)
111
112 (defmethod finalize-inheritance :after ((cl hyperobject-class))
113   ;; Work-around needed for OpenMCL
114   #+ignore
115   (unless (find-class (class-name cl))
116     (setf (find-class (class-name cl)) cl))
117   
118   (init-hyperobject-class cl)
119   )
120
121 (eval-when (:compile-toplevel :load-toplevel :execute)
122   (when (>= (length (generic-function-lambda-list
123                      (ensure-generic-function
124                       'compute-effective-slot-definition)))
125             3)
126     (pushnew :ho-normal-cesd cl:*features*))
127   
128     (when (>= (length (generic-function-lambda-list
129                        (ensure-generic-function
130                         'direct-slot-definition-class)))
131             3)
132       (pushnew :ho-normal-dsdc cl:*features*))
133     
134     (when (>= (length (generic-function-lambda-list
135                        (ensure-generic-function
136                         'effective-slot-definition-class)))
137               3)
138       (pushnew :ho-normal-esdc cl:*features*)))
139
140 ;; Slot definitions
141 (defmethod direct-slot-definition-class ((cl hyperobject-class)
142                                          #+ho-normal-dsdc &rest iargs)
143   (find-class 'hyperobject-dsd))
144
145 (defmethod effective-slot-definition-class ((cl hyperobject-class) 
146                                             #+ho-normal-esdc &rest iargs)
147   (find-class 'hyperobject-esd))
148
149
150 ;;; Slot definitions
151
152 (eval-when (:compile-toplevel :load-toplevel :execute)
153   (defmacro process-class-option (slot-name &optional required)
154     #+lispworks
155     `(defmethod clos:process-a-class-option ((class hyperobject-class)
156                                              (name (eql ,slot-name))
157                                              value)
158       (when (and ,required (null value))
159         (error "hyperobject class slot ~A must have a value" name))
160       (list name `',value))
161     #+(or allegro sbcl cmu scl openmcl)
162     (declare (ignore slot-name required))
163     )
164
165   (defmacro process-slot-option (slot-name)
166     #+lispworks
167     `(defmethod clos:process-a-slot-option ((class hyperobject-class)
168                                             (option (eql ,slot-name))
169                                             value
170                                             already-processed-options
171                                             slot)
172       (list* option `',value already-processed-options))
173     #-lispworks
174     (declare (ignore slot-name))
175     )
176   
177   (dolist (option *class-options*)
178     (eval `(process-class-option ,option)))
179   (dolist (option *slot-options*)
180     (eval `(process-slot-option ,option)))
181
182   (eval
183    `(defclass hyperobject-dsd (standard-direct-slot-definition)
184      (,@(mapcar #'(lambda (x)
185                     `(,(intern (symbol-name x))
186                       :initform nil))
187                 *slot-options-no-initarg*)
188       ,@(mapcar #'(lambda (x)
189                     `(,(intern (symbol-name x))
190                       :initarg
191                       ,(intern (symbol-name x) (symbol-name :keyword))
192                       :initform nil
193                       :accessor
194                       ,(intern (concatenate 'string
195                                             (symbol-name :dsd-)
196                                             (symbol-name x)))))
197                 *slot-options*))))
198   (eval
199    `(defclass hyperobject-esd (standard-effective-slot-definition)
200      (,@(mapcar #'(lambda (x)
201                     `(,(intern (symbol-name x))
202                       :initarg
203                       ,(intern (symbol-name x) (symbol-name :keyword))
204                       :initform nil
205                       :accessor
206                       ,(intern (concatenate 'string
207                                             (symbol-name :esd-)
208                                             (symbol-name x)))))
209                 (append *slot-options* *slot-options-no-initarg*)))))
210   ) ;; eval-when
211
212 (defun intern-in-keyword (obj)
213   (cond
214     ((null obj)
215      nil)
216     ((eq t obj)
217      t)
218     ((atom obj)
219      (intern (symbol-name obj) (find-package 'keyword)))
220     ((consp obj)
221      (cons (intern-in-keyword (car obj) ) (intern-in-keyword (cdr obj))))
222     (t
223      obj)))
224
225 (defun canonicalize-value-type (vt)
226   (typecase vt
227     (atom
228      (ensure-keyword vt))
229     (cons
230      (list (ensure-keyword (car vt)) (cadr vt)))
231     (t
232      t)))
233
234 (defmethod compute-effective-slot-definition :around ((cl hyperobject-class)
235                                                       #+ho-normal-cesd name
236                                                       dsds)
237   (declare (ignore #+ho-normal-cesd name))
238   (let ((esd (call-next-method)))
239     (if (typep esd 'hyperobject-esd)
240         (compute-hyperobject-esd esd dsds)
241         esd)))
242
243 (defun compute-hyperobject-esd (esd dsds)
244   (let* ((dsd (car dsds))
245          (value-type (canonicalize-value-type (slot-value dsd 'value-type))))
246     (multiple-value-bind (sql-type sql-length) 
247         (value-type-to-sql-type value-type)
248       (setf (esd-sql-type esd) sql-type)
249       (setf (esd-sql-length esd) sql-length))
250     (setf (slot-value esd 'type) (value-type-to-lisp-type value-type))
251     (setf (esd-value-type esd) value-type)
252     (setf (esd-user-name esd)
253           (aif (dsd-user-name dsd)
254                it
255                (string-downcase (symbol-name (slot-definition-name dsd)))))
256     (setf (esd-sql-name esd)
257           (aif (dsd-sql-name dsd)
258                it
259                (lisp-name-to-sql-name (slot-definition-name dsd))))
260     (setf (esd-sql-name esd)
261           (aif (dsd-sql-name dsd)
262                it
263                (lisp-name-to-sql-name (slot-definition-name dsd))))
264     (dolist (name '(print-formatter subobject hyperlink hyperlink-parameters
265                     description value-constraint indexed null-allowed
266                     unique short-description void-text read-only-groups
267                     hidden-groups unit disable-predicate view-type
268                     list-of-values stored))
269       (setf (slot-value esd name) (slot-value dsd name)))
270     esd))
271
272 (defun lisp-name-to-sql-name (lisp)
273   "Convert a lisp name (atom or list, string or symbol) into a canonical
274 SQL name"
275   (unless (stringp lisp)
276     (setq lisp
277           (typecase lisp
278             (symbol (symbol-name lisp))
279             (t (write-to-string lisp)))))
280   (do* ((len (length lisp))
281         (sql (make-string len))
282         (i 0 (1+ i)))
283       ((= i len) (string-upcase sql))
284     (declare (fixnum i)
285              (simple-string sql))
286     (setf (schar sql i)
287           (let ((c (char lisp i)))
288             (case c
289               ((#\- #\$ #\+ #\#) #\_)
290               (otherwise c))))))
291
292 #+ho-normal-cesd
293 (setq cl:*features* (delete :ho-normal-cesd cl:*features*))
294 #+ho-normal-dsdc
295 (setq cl:*features* (delete :ho-normal-dsdc cl:*features*))
296 #+ho-normal-esdc
297 (setq cl:*features* (delete :ho-normal-esdc cl:*features*))
298
299 (defun lisp-type-is-a-string (type)
300   (or (eq type 'string)
301       (and (listp type) (some #'(lambda (x) (eq x 'string)) type))))
302
303 (defun base-value-type (value-type)
304   (if (atom value-type)
305       value-type
306     (car value-type)))
307
308 (defun value-type-to-lisp-type (value-type)
309   (case (base-value-type value-type)
310     ((:string :cdata :varchar :char)
311      '(or null string))
312     (:character
313      '(or null character))
314     (:fixnum
315      '(or null fixnum))
316     (:boolean
317      '(or null boolean))
318     ((:integer :long-integer)
319      '(or null integer))
320     ((:float :single-float)
321      '(or null single-float))
322     (:double-float
323      '(or null double-float))
324     (otherwise
325      t)))
326
327 (defun value-type-to-sql-type (value-type)
328   "Return two values, the sql type and field length."
329   (let ((type (base-value-type value-type))
330         (length (when (consp value-type)
331                   (cadr value-type))))
332     (values
333      (case type
334        ((:char :character)
335         :char)
336        (:varchar
337         :varchar)
338        ((:fixnum :integer)
339         :integer)
340        (:long-integer
341         :long-integer)
342        (:boolean
343         :boolean)
344        ((:float :single-float)
345         :single-float)
346        (:double-float
347         :double-float)
348        (otherwise
349         :text))
350      length)))
351
352 ;;;; Class initialization function
353
354 ;; One entry for each class with lazy readers defined.  The value is a plist mapping
355 ;; slot-name to a lazy reader, each of which is a list of a function and slot-names.
356 (defvar *lazy-readers* (make-hash-table))
357
358 (defmethod slot-unbound ((class hyperobject-class) instance slot-name)
359   (let ((lazy-reader
360          (loop for super in (class-precedence-list class)
361                as lazy-reader = (getf (gethash super *lazy-readers*) slot-name)
362                when lazy-reader return it)))
363     (if lazy-reader
364         (setf (slot-value instance slot-name)
365               (if (atom lazy-reader)
366                   (make-instance lazy-reader)
367                   (apply (car lazy-reader)
368                          (loop for arg-slot-name in (cdr lazy-reader)
369                                collect (slot-value instance arg-slot-name)))))
370         ;; No lazy reader -- defer to regular slot-unbound handling.
371         (call-next-method))))
372
373 ;; The reader is a function and the reader-keys are slot names.  The slot is lazily set to
374 ;; the result of applying the function to the slot-values of those slots, and that value
375 ;; is also returned.
376 (defun ensure-lazy-reader (cl class-name slot-name subobj-class reader 
377                            &rest reader-keys)
378   (setf (getf (gethash cl *lazy-readers*) slot-name)
379     (aif subobj-class
380          it
381          (list* reader (copy-list reader-keys)))))
382
383 (defun remove-lazy-reader (class-name slot-name)
384   (setf (getf (gethash (find-class class-name) *lazy-readers*) slot-name)
385     nil))
386
387
388 (defun finalize-subobjects (cl)
389   "Process class subobjects slot"
390   (setf (subobjects cl)
391         (let ((subobjects '()))
392           (dolist (slot (class-slots cl))
393             (let-when
394              (subobj-def (esd-subobject slot))
395              (let ((subobject
396                     (make-instance 'subobject
397                                    :name-class (class-name cl)
398                                    :name-slot (slot-definition-name slot)
399                                    :subobj-class (when (atom subobj-def)
400                                                    subobj-def)
401                                    :lookup (when (listp subobj-def)
402                                              (car subobj-def))
403                                    :lookup-keys (when (listp subobj-def)
404                                                   (cdr subobj-def)))))
405                (unless (eq (lookup subobject) t)
406                  (apply #'ensure-lazy-reader
407                         cl
408                         (name-class subobject) (name-slot subobject)
409                         (subobj-class subobject)
410                         (lookup subobject) (lookup-keys subobject))
411                  (push subobject subobjects)))))
412           ;; sbcl/cmu reverse class-slots compared to the defclass form
413           ;; so re-reverse on cmu/sbcl
414           #+(or cmu sbcl) subobjects
415           #-(or cmu sbcl) (nreverse subobjects)
416           )))
417
418 (defun finalize-class-slots (cl)
419   "Make sure all class slots have an expected value"
420   (unless (user-name cl)
421     (setf (user-name cl) (format nil "~:(~A~)" (class-name cl))))
422   
423   (setf (user-name-plural cl)
424         (if (and (consp (user-name cl)) (cadr (user-name cl)))
425             (cadr (user-name cl))
426             (format nil "~A~P" (if (consp (user-name cl))
427                                    (car (user-name cl))
428                                    (user-name cl))
429                     2)))
430
431   (dolist (name '(user-name description version guid sql-name))
432     (awhen (slot-value cl name)
433            (setf (slot-value cl name)
434              (if (listp it)
435                  (car it)
436                it))))
437   
438   (unless (sql-name cl)
439     (setf (sql-name cl) (lisp-name-to-sql-name (class-name cl))))
440   )
441
442 (defun finalize-documentation (cl)
443   "Calculate class documentation slot"
444   (let ((*print-circle* nil))
445     (setf (documentation (class-name cl) 'class)
446           (format nil "Hyperobject~A~A~A~A"
447                   (aif (user-name cl)
448                        (format nil ": ~A" it ""))
449                   (aif (description cl)
450                        (format nil "~%Class description: ~A" it) "")
451                   (aif (subobjects cl)
452                        (format nil "~%Subobjects:~{ ~A~}" (mapcar #'name-slot it)) "")
453                   (aif (default-print-slots cl)
454                        (format nil "~%Default print slots:~{ ~A~}" it) "")
455                   ))))
456
457 (defun finalize-hyperlinks (cl)
458   (let ((hyperlinks '()))
459     (dolist (esd (class-slots cl))
460       (awhen (slot-value esd 'hyperlink)
461              (push
462               (make-instance 'hyperlink
463                              :name (slot-definition-name esd)
464                              :lookup it
465                              :link-parameters (slot-value esd 'hyperlink-parameters))
466               hyperlinks)))
467     ;; cmu/sbcl reverse class-slots compared to the defclass form
468     ;; hyperlinks is already reversed from the dolist/push loop, so re-reverse on sbcl/cmu
469     #-(or cmu sbcl) (setq hyperlinks (nreverse hyperlinks))
470     (setf (slot-value cl 'hyperlinks) hyperlinks)))
471
472 (defun init-hyperobject-class (cl)
473   "Initialize a hyperobject class. Calculates all class slots"
474   (finalize-subobjects cl)
475   (finalize-views cl)
476   (finalize-hyperlinks cl)
477   (finalize-sql cl)
478   (finalize-rules cl)
479   (finalize-class-slots cl)
480   (finalize-documentation cl))
481
482
483 ;;;; *************************************************************************
484 ;;;;  Metaclass Slot Accessors
485 ;;;; *************************************************************************
486
487 (defun find-slot-by-name (cl name)
488   (find name (class-slots cl) :key #'slot-definition-name))
489
490 (defun hyperobject-class-user-name (obj)
491   (user-name (class-of obj)))
492
493 (defun hyperobject-class-user-name-plural (obj)
494   (user-name-plural (class-of obj)))
495
496 (defun hyperobject-class-subobjects (obj)
497   (subobjects (class-of obj)))
498
499 (defun hyperobject-class-hyperlinks (obj)
500   (hyperlinks (class-of obj)))
501
502 (defun hyperobject-class-slots (obj)
503   ;; cmucl/sbcl reverse class-slots
504   #+(or cmu sbcl) (reverse (class-slots (class-of obj)))
505   #-(or cmu sbcl) (class-slots (class-of obj)))
506
507 (defun all-subobjects (obj)
508   "Returns a list of all subobjects in an object"
509   (let ((so-list '()))
510     (dolist (subobj-obj (subobjects (class-of obj)) (nreverse so-list))
511       (dolist (so (funcall (name-slot subobj-obj) obj))
512         (push so so-list)))))