r4926: Auto commit for Debian build
[hyperobject.git] / views.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          views.lisp
6 ;;;; Purpose:       View methods for Hyperobjects
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: views.lisp,v 1.38 2003/05/14 06:38:24 kevin Exp $
11 ;;;;
12 ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg
13 ;;;; *************************************************************************
14  
15 (in-package :hyperobject)
16
17 (eval-when (:compile-toplevel :execute)
18   (declaim (optimize (speed 2) (safety 2) (compilation-speed 0) (debug 2))))
19
20
21 (defclass object-view ()
22   ((object-class-name :initform nil :initarg :object-class-name
23                       :accessor object-class-name
24                  :documentation "Name of class of object to be viewed.")
25    (object-class :initform nil :initarg :object-class
26                  :accessor object-class
27                  :documentation "Class of object to be viewed.")
28    (slots :initform nil :initarg :slots :accessor slots
29           :documentation "List of effective slots for object to be viewed.")
30    (name :initform nil :initarg :name :accessor name
31          :documentation "Name for this view.")
32    (category :initform nil :initarg :category :accessor category
33              :documentation "Category for view. Helpful when want to find a view corresponding to a particular category.")
34    (source-code :initform nil :initarg :source-code :accessor source-code 
35                 :documentation "Source code for generating view.")
36    (country-language :initform :en :initarg :country-language
37                      :documentation "Country's Language for this view.")
38    ;;
39    (file-start-str :type (or string null) :initform nil :initarg :file-start-str
40                    :accessor file-start-str)
41    (file-end-str :type (or string null) :initform nil :initarg :file-end-str
42                  :accessor file-end-str)
43    (list-start-str-or-func :type (or string function null) :initform nil
44                            :initarg :list-start-str-or-func
45                       :accessor list-start-str-or-func)
46    (list-start-indent :initform nil :initarg :list-start-indent
47                       :accessor list-start-indent)
48    (list-end-str-or-func :type (or string function null) :initform nil
49                          :initarg :list-end-str-or-func
50                     :accessor list-end-str-or-func)
51    (list-end-indent :initform nil :initarg :list-end-indent
52                     :accessor list-end-indent)
53    (obj-start-str-or-func :type (or string function null) :initform nil :initarg :obj-start-str-or-func
54                      :accessor obj-start-str-or-func)
55    (obj-start-indent :initform nil :initarg :obj-start-indent
56                      :accessor obj-start-indent)
57    (obj-end-str-or-func :type (or string function null) :initform nil :initarg :obj-end-str-or-func
58                    :accessor obj-end-str-or-func)
59    (obj-end-indent :initform nil :initarg :obj-end-indent
60                    :accessor obj-end-indent)
61    (obj-data-indent :initform nil :initarg :obj-data-indent
62                     :accessor obj-data-indent)
63    (obj-data-func :type (or function null) :initform nil
64                         :initarg :obj-data-func
65                         :accessor obj-data-func)
66    (obj-data-print-code :type (or function null) :initform nil
67                   :initarg :obj-data-print-code
68                   :accessor obj-data-print-code)
69    (obj-data-end-str :type (or string null) :initform nil
70                         :initarg :obj-data-end-str
71                         :accessor obj-data-end-str)
72    (link-slots :type list :initform nil
73                :documentation "List of slot names that have hyperlinks"
74                :accessor link-slots)
75    (link-page-name :type (or string null) :initform nil :initarg :link-page-name
76                    :accessor link-page-name)
77    (link-href-start :type (or string null) :initform nil :initarg :link-href-start
78                     :accessor link-href-start)
79    (link-href-end :type (or string null) :initform nil :initarg :link-href-end
80                   :accessor link-href-end)
81    (link-ampersand :type (or string null) :initform nil :initarg :link-ampersand
82                    :accessor link-ampersand))
83   (:default-initargs :link-page-name "disp-func1")
84   (:documentation "View class for a hyperobject"))
85
86
87 (defun get-category-view (obj category &optional slots)
88   "Find or make a category view for an object"
89   (let ((obj-class (class-of obj)))
90     (if (null category)
91         (default-view obj-class)
92         (aif (find category (views obj-class) :key #'category)
93              it
94              (let ((view
95                     (make-instance 'object-view
96                                    :object-class-name (class-name obj-class)
97                                    :object-class obj-class
98                                    :category category
99                                    :slots slots)))
100                (push view (views obj-class))
101                view)))))
102                              
103 ;;;; *************************************************************************
104 ;;;;  Metaclass Intialization
105 ;;;; *************************************************************************
106
107 (defun finalize-views (cl)
108   "Finalize all views that are given on a objects initialization"
109   (unless (default-print-slots cl)
110     (setf (default-print-slots cl)
111           (mapcar #'slot-definition-name (class-slots cl))))
112   (let ((views '()))
113     (dolist (view-def (views cl))
114       (push (make-object-view cl view-def) views))
115     (setf (views cl) (nreverse views)))
116   (cond
117     ((default-view cl)
118      (setf (default-view cl) (make-object-view cl (default-view cl))))
119     ((car (views cl))
120      (setf (default-view cl) (make-object-view cl (car (views cl)))))
121     (t
122      (setf (default-view cl) (make-object-view cl :default)))))
123
124 (defun make-object-view (cl view-def)
125   "Make an object view from a definition. Do nothing if a class is passed so that reinitialization will be a no-op"
126   (cond
127     ((typep view-def 'object-view)
128      view-def)
129     ((eq view-def :default)
130      (let* ((name (class-name cl))
131             (view (make-instance 'object-view :name "automatic"
132                                  :object-class-name name
133                                  :object-class cl
134                                  :category :compact-text)))
135        view))
136     ((consp view-def)
137      (eval `(make-instance ,view-def)))
138     (t
139      (error "Invalid parameter to make-object-view: ~S" view-def))))
140
141 (defmethod initialize-instance :after ((view object-view)
142                                        &rest initargs &key &allow-other-keys)
143   (initialize-view (object-class view) view))
144   
145 (defun initialize-view (obj-cl view)
146   "Calculate all view slots for a hyperobject class"
147   (cond
148     ((category view)
149      (initialize-view-by-category obj-cl view))
150     ((source-code view)
151      (initialize-view-by-source-code obj-cl view))
152     (t
153      (setf (category view) :compact-text)
154      (initialize-view-by-category obj-cl view))))
155
156 (defun initialize-view-by-source-code (obj-cl view)
157   "Initialize a view based upon a source code"
158   (let ((source-code (source-code view)))
159     (error "not implemented")
160     )
161   )
162
163
164 (defun write-ho-value (obj name type formatter cdata strm)
165   (declare (ignorable type))
166   (let* ((slot-data (slot-value obj name))
167          (fmt-data (if formatter
168                        (funcall formatter slot-data)
169                    slot-data))
170          (data (if cdata
171                    (kmrcl:xml-cdata fmt-data)
172                    fmt-data)))
173     (typecase data
174       (string
175        (write-string data strm))
176       (number
177        (write-string (write-to-string data) strm))
178       (t
179        (format strm "~A" data)))))
180
181 (defun ppfc-html (title name type formatter cdata print-func)
182   (vector-push-extend '(write-string "<span class=\"" s) print-func)
183   (vector-push-extend `(write-string ,title s) print-func)
184   (vector-push-extend '(write-string "\">" s) print-func)
185   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
186   (vector-push-extend '(write-string "</span>" s) print-func))
187
188 (defun ppfc-xml (tag name type formatter cdata print-func)
189   (vector-push-extend '(write-char #\< s) print-func)
190   (vector-push-extend `(write-string ,tag s) print-func)
191   (vector-push-extend '(write-char #\> s) print-func)
192   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
193   (vector-push-extend '(write-string "</" s) print-func)
194   (vector-push-extend `(write-string ,tag s) print-func)
195   (vector-push-extend '(write-char #\> s) print-func))
196
197 (defun ppfc-html-labels (label name type formatter cdata print-func)
198   (vector-push-extend '(write-string "<span class=\"label\">" s) print-func)
199   (vector-push-extend `(write-string ,label s) print-func)
200   (vector-push-extend '(write-string "</span> " s) print-func)
201   (ppfc-html label name type formatter cdata print-func))
202
203 (defun ppfc-xhtml-labels (label tag name type formatter cdata print-func)
204   (vector-push-extend '(write-string "<span class=\"label\">" s) print-func)
205   (vector-push-extend `(write-string ,label s) print-func)
206   (vector-push-extend '(write-string "</span> " s) print-func)
207   (ppfc-html tag name type formatter cdata print-func))
208
209 (defun ppfc-xml-labels (label tag name type formatter cdata print-func)
210   (vector-push-extend '(write-string "<label>" s) print-func)
211   (vector-push-extend `(write-string ,label s) print-func)
212   (vector-push-extend '(write-string "</label> " s) print-func)
213   (ppfc-xml tag name type formatter cdata print-func))
214
215 (defun ppfc-html-link (name type formatter cdata nlink print-func)
216   (declare (fixnum nlink))
217   (vector-push-extend '(write-char #\< s) print-func)
218   (vector-push-extend `(write-string (nth ,(+ nlink nlink) links) s) print-func) 
219   (vector-push-extend '(write-char #\> s) print-func)
220   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
221   (vector-push-extend '(write-string "</" s) print-func)
222   (vector-push-extend `(write-string (nth ,(+ nlink nlink 1) links) s) print-func) 
223   (vector-push-extend '(write-char #\> s) print-func))
224
225 (defun ppfc-html-link-labels (label name type formatter cdata nlink print-func)
226   (vector-push-extend '(write-string "<label>" s) print-func)
227   (vector-push-extend `(write-string ,label s) print-func)
228   (vector-push-extend '(write-string "</label> " s) print-func)
229   (ppfc-html-link name type formatter cdata nlink print-func))
230
231 (defun push-print-fun-code (category slot nlink print-func)
232   (let* ((formatter (esd-print-formatter slot))
233          (name (slot-definition-name slot))
234          (namestr-lower (string-downcase (symbol-name name)))
235          (xml-namestr (escape-xml-string namestr-lower))
236          (xml-tag (escape-xml-string namestr-lower))
237          (type (slot-value slot 'type))
238          (cdata (not (null
239                       (and (in category :xml :xhtml :xml-link :xhtml-link
240                                :xml-labels :ie-xml-labels
241                                :xhtml-link-labels :xml-link-labels :ie-xml-link
242                                :ie-xml-link-labels)
243                            (or formatter
244                                (lisp-type-is-a-string type))))))
245          (hyperlink (esd-hyperlink slot)))
246     
247     (case category
248       (:compact-text
249        (vector-push-extend
250         `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func))
251       (:compact-text-labels
252        (vector-push-extend `(write-string ,namestr-lower s) print-func)
253        (vector-push-extend '(write-char #\space s) print-func)
254        (vector-push-extend
255         `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func))
256       ((or :html :xhtml)
257        (ppfc-html namestr-lower name type formatter cdata print-func))
258       (:xml
259        (ppfc-xml xml-tag name type formatter cdata print-func))
260       (:html-labels
261        (ppfc-html-labels namestr-lower name type formatter cdata print-func))
262       (:xhtml-labels
263        (ppfc-xhtml-labels xml-namestr namestr-lower name type formatter cdata print-func))
264       (:xml-labels
265        (ppfc-xml-labels xml-namestr xml-tag name type formatter cdata print-func))
266       ((or :html-link :xhtml-link)
267        (if hyperlink
268            (ppfc-html-link name type formatter cdata nlink print-func)
269            (ppfc-html namestr-lower name type formatter cdata print-func)))
270       ((or :xml-link :ie-xml-link)
271        (if hyperlink
272            (ppfc-html-link name type formatter cdata nlink print-func)
273            (ppfc-xml xml-tag name type formatter cdata print-func)))
274       (:html-link-labels
275        (if hyperlink
276            (ppfc-html-labels namestr-lower name type formatter cdata print-func)))
277       (:xhtml-link-labels
278        (if hyperlink
279            (ppfc-html-link-labels xml-namestr name type formatter cdata nlink
280                                   print-func)
281            (ppfc-xhtml-labels xml-tag namestr-lower name type formatter cdata
282                               print-func)))
283       ((or :xml-link-labels :ie-xml-link-labels)
284        (if hyperlink
285            (ppfc-html-link-labels xml-namestr name type formatter cdata nlink
286                                   print-func)
287            (ppfc-xml-labels xml-tag namestr-lower name type formatter cdata
288                             print-func))))))
289
290
291 (defun view-has-links-p (view)
292   (in (category view) :html-link :xhtml-link :xml-link :ie-xml-link
293       :html-link-labels :xhtml-links-labels :xml-link-labels
294       :ie-xml-link-labels))
295
296 (defun initialize-view-by-category (obj-cl view)
297   "Initialize a view based upon a preset category"
298   (unless (in (category view) :compact-text :compact-text-labels
299               :html :html-labels :html-link-labels
300               :xhtml :xhtml-labels :xhtml-link-labels
301               :xml :xml-labels :xml-link :ie-xml-link
302               :xml-link-labels :ie-xml-link-labels)
303     (error "Unknown view category ~A" (category view)))
304   
305   (unless (slots view) (setf (slots view) (default-print-slots obj-cl)))
306
307   (let ((links '())
308         (print-func (make-array 10 :fill-pointer 0 :adjustable t)))
309
310     (do* ((slots (slots view) (cdr slots))
311           (slot-name (car slots) (car slots))
312           (slot (find-slot-by-name obj-cl slot-name)
313                 (find-slot-by-name obj-cl slot-name)))
314          ((null slots))
315       (unless slot
316         (error "Slot ~A is not found in class ~S" slot-name obj-cl))
317       
318       (push-print-fun-code (category view) slot (length links) print-func)
319       (when (> (length slots) 1)
320         (vector-push-extend '(write-char #\space s) print-func))
321
322       (when (and (view-has-links-p view) (esd-hyperlink slot))
323         (push (slot-definition-name slot) links)))
324
325     (when (plusp (length print-func))
326       (setf (obj-data-print-code view) `(lambda (x s links)
327                                          (declare (ignorable links))
328                                          ,@(map 'list #'identity print-func)))
329       (setf (obj-data-func view)
330             (compile nil (eval (obj-data-print-code view)))))
331     
332     (setf (link-slots view) (nreverse links)))
333
334   (finalize-view-by-category view)
335   view)
336
337 (defun finalize-view-by-category (view)
338   (case (category view)
339     ((or :compact-text :compact-text-labels)
340      (initialize-text-view view))
341     ((or :html :xhtml :html-labels :xhtml-labels)
342      (initialize-html-view view))
343     ((or :xml :xml-labels)
344      (initialize-xml-view view))
345     ((or :html-link :html-link-labels)
346      (initialize-html-view view)
347      (setf (link-href-start view) "a href=")
348      (setf (link-href-end view) "a")
349      (setf (link-ampersand view) "&"))
350     ((or :xhtml-link :xhtml-link-labels)
351      (initialize-html-view view)
352      (setf (link-href-start view) "a href=")
353      (setf (link-href-end view) "a")
354      (setf (link-ampersand view) "&amp;"))
355     ((or :xml-link :xml-link-labels)
356      (initialize-xml-view view)
357      (setf (link-href-start view)
358            "xmllink xlink:type=\"simple\" xlink:href=")
359      (setf (link-href-end view) "xmllink")
360      (setf (link-ampersand view) "&amp;"))
361     ((or :ie-xml-link :ie-xml-link-labels)
362      (initialize-xml-view view)
363      (setf (link-href-start view) "html:a href=")
364      (setf (link-href-end view) "html:a")
365      (setf (link-ampersand view) "&amp;"))))
366
367 #+ignore
368 (defun initialize-view-by-category (obj-cl view)
369   "Initialize a view based upon a preset category"
370   (let ((fmtstr nil)
371         (first-field t)
372         (value-func '())
373         (links '())
374         (category (category view)))
375
376     (unless (in category :compact-text :compact-text-labels
377                 :html :html-labels :html-link-labels
378                 :xhtml :xhtml-labels :xhtml-link-labels
379                 :xml :xml-labels :xml-link :ie-xml-link
380                 :xml-link-labels :ie-xml-link-labels)
381       (error "Unknown view category ~A" category))
382     
383     (unless (slots view)
384       (setf (slots view) (default-print-slots obj-cl)))
385     (dolist (slot-name (slots view))
386       (let ((slot (find-slot-by-name obj-cl slot-name)))
387         (unless slot
388           (error "Slot ~A is not found in class ~S" slot-name obj-cl))
389         (let* ((name (slot-definition-name slot))
390                (namestr-lower (string-downcase (symbol-name name)))
391                (xml-namestr (escape-xml-string namestr-lower))
392                (xml-tag (escape-xml-string namestr-lower))
393                (type (slot-value slot 'type))
394                (print-formatter (esd-print-formatter slot)))
395
396           (cond
397             (first-field
398              (setq fmtstr "")
399              (setq first-field nil))
400             (t
401              (string-append fmtstr " ")))
402
403           (let ((value-fmt
404                  (case type
405                    ((or :integer :fixnum)
406                     "~d")
407                    (:boolean
408                     "~a")
409                    (otherwise
410                     "~a"))))
411             (case category
412               (:compact-text
413                (string-append fmtstr value-fmt))
414               (:compact-text-labels
415                (string-append fmtstr namestr-lower " " value-fmt))
416               ((or :html :xhtml)
417                (string-append fmtstr (concatenate 'string "<span class=\"" namestr-lower "\">" value-fmt "</span>")))
418               (:xml
419                (string-append fmtstr (concatenate 'string "<" namestr-lower ">" value-fmt "</" namestr-lower ">")))
420               (:html-labels
421                (string-append fmtstr (concatenate 'string "<span class=\"label\">" namestr-lower "</span> <span class=\"" namestr-lower "\">" value-fmt "</span>")))
422               (:xhtml-labels
423                (string-append fmtstr (concatenate 'string "<span class=\"label\">" xml-namestr "</span> <span class=\"" namestr-lower "\">" value-fmt "</span>")))
424               (:xml-labels
425                (string-append fmtstr (concatenate 'string "<label>" xml-namestr "</label> <" xml-tag ">" value-fmt "</" xml-tag ">")))
426               ((or :html-link :xhtml-link)
427                (push name links)
428                (if (esd-hyperlink slot)
429                    (string-append fmtstr "<~~a>" value-fmt "</~~a>")
430                    (string-append fmtstr (concatenate 'string "<span class=\"" namestr-lower "\">" value-fmt "</span>"))))
431               ((or :xml-link :ie-xml-link)
432                (push name links)
433                (if (esd-hyperlink slot)
434                    (string-append fmtstr "<~~a>" value-fmt "</~~a>")
435                    (string-append fmtstr (concatenate 'string "<" xml-tag ">" value-fmt "</" xml-tag ">"))))
436               (:html-link-labels
437                (push name links)
438                (if (esd-hyperlink slot)
439                    (string-append fmtstr "<span class=\"label\">" namestr-lower "</span> <~~a>" value-fmt "</~~a>")
440                    (string-append fmtstr (concatenate 'string "<span class=\"label\">" namestr-lower "</span> <span class=\"" namestr-lower "\">" value-fmt "</span>"))))
441               (:xhtml-link-labels
442                (push name links)
443                (if (esd-hyperlink slot)
444                    (string-append fmtstr "<span class=\"label\">" xml-namestr "</span> <~~a>" value-fmt "</~~a>")
445                    (string-append fmtstr (concatenate 'string "<span class=\"label\">" xml-namestr "</span> <span class=\"" namestr-lower "\">" value-fmt "</span>"))))
446               ((or :xml-link-labels :ie-xml-link-labels)
447                (push name links)
448                (if (esd-hyperlink slot)
449                    (string-append fmtstr "<label>" xml-namestr "</label> <~~a>" value-fmt "</~~a>")
450                    (string-append fmtstr (concatenate 'string "<label>" xml-namestr "</label> <" xml-tag ">" value-fmt "</" xml-tag ">")))))
451             ) ;; let value-fmt
452             
453           (let ((func (if print-formatter
454                   `(,print-formatter (slot-value x (quote ,name)))
455                   `(slot-value x (quote ,name)))))
456             (when (and (in category :xml :xhtml :xml-link :xhtml-link
457                            :xml-labels :ie-xml-labels
458                            :xhtml-link-labels :xml-link-labels :ie-xml-link
459                            :ie-xml-link-labels)
460                        (or print-formatter
461                            (lisp-type-is-a-string type)))
462               (setq func `(kmrcl:xml-cdata ,func)))
463             (push func value-func))
464           )))
465           
466     (when value-func
467       (setq value-func
468             (compile nil (eval `(lambda (x) (values ,@(nreverse value-func)))))))
469
470     (setf (obj-data-fmtstr view) fmtstr)
471     (setf (obj-data-value-func view) value-func)
472     (setf (link-slots view) (nreverse links))
473     
474     (case category
475       ((or :compact-text :compact-text-labels)
476        (initialize-text-view view))
477       ((or :html :xhtml :html-labels :xhtml-labels)
478        (initialize-html-view view))
479       ((or :xml :xml-labels)
480        (initialize-xml-view view))
481       ((or :html-link :html-link-labels)
482        (initialize-html-view view)
483        (setf (link-href-start view) "a href=")
484        (setf (link-href-end view) "a")
485        (setf (link-ampersand view) "&"))
486       ((or :xhtml-link :xhtml-link-labels)
487        (initialize-html-view view)
488        (setf (link-href-start view) "a href=")
489        (setf (link-href-end view) "a")
490        (setf (link-ampersand view) "&amp;"))
491       ((or :xml-link :xml-link-labels)
492        (initialize-xml-view view)
493        (setf (link-href-start view)
494              "xmllink xlink:type=\"simple\" xlink:href=")
495        (setf (link-href-end view) "xmllink")
496        (setf (link-ampersand view) "&amp;"))
497       ((or :ie-xml-link :ie-xml-link-labels)
498        (initialize-xml-view view)
499        (setf (link-href-start view) "html:a href=")
500        (setf (link-href-end view) "html:a")
501        (setf (link-ampersand view) "&amp;"))))
502   view)
503
504
505 ;;;; *************************************************************************
506 ;;;;  View Data Format Section
507 ;;;; *************************************************************************
508
509 (defun class-name-of (obj)
510   (string-downcase (class-name (class-of obj))))
511
512 (defvar +newline-string+ (format nil "~%"))
513
514 (defun write-user-name-maybe-plural (obj nitems strm)
515   (write-string
516    (if (> nitems 1)
517        (hyperobject-class-user-name-plural obj)
518        (hyperobject-class-user-name obj))
519    strm))
520
521 (defun initialize-text-view (view)
522   (setf (list-start-str-or-func view)
523         (compile nil
524                  (eval '(lambda (obj nitems strm)
525                          (write-user-name-maybe-plural obj nitems strm)
526                          (write-char #\: strm)
527                          (write-char #\Newline strm)))))
528   (setf (list-start-indent view) t)
529   (setf (obj-data-indent view) t)
530   (setf (obj-data-end-str view) +newline-string+))
531
532 (defun html-list-start-func (obj nitems strm)
533   (write-string "<p><b>" strm)
534   (write-user-name-maybe-plural obj nitems strm)
535   (write-string ":</b></p><div class=\"" strm)
536   (write-string (class-name-of obj) strm)
537   (write-string "\"><ul>" strm)
538   (write-char #\newline strm))
539
540 (defun initialize-html-view (view)
541   (initialize-text-view view)
542   (setf (file-start-str view) (format nil "<html><body>~%"))
543   (setf (file-end-str view) (format nil "</body><html>~%"))
544   (setf (list-start-indent view) t)
545   (setf (list-start-str-or-func view) #'html-list-start-func)
546   (setf (list-end-str-or-func view) (format nil "</ul></div>~%"))
547   (setf (list-end-indent view) t)
548   (setf (obj-start-indent view) t)
549   (setf (obj-start-str-or-func view) "<li>")
550   (setf (obj-end-indent view)  t)
551   (setf (obj-end-str-or-func view)  (format nil "</li>~%"))
552   (setf (obj-data-indent view) t))
553
554 (defun initialize-xhtml-view (view)
555   (initialize-text-view view)
556   (setf (file-start-str view) (format nil "<html><body>~%"))
557   (setf (file-end-str view) (format nil "</body><html>~%"))
558   (setf (list-start-indent view) t)
559   (setf (list-start-str-or-func view) #'html-list-start-func)
560   (setf (list-end-str-or-func view) (format nil "</ul></div>~%"))
561   (setf (list-end-indent view) t)
562   (setf (obj-start-indent view) t)
563   (setf (obj-start-str-or-func view) "<li>")
564   (setf (obj-end-indent view)  t)
565   (setf (obj-end-str-or-func view) (format nil "</li>~%"))
566   (setf (obj-data-indent view) t))
567
568 (defun xmlformat-list-end-func (x strm)
569   (write-string "</" strm)
570   (write-string (class-name-of x) strm)
571   (write-string "list" strm)
572   (write-string ">" strm)
573   (write-char #\newline strm))
574
575 (defun xmlformat-list-start-func (x nitems strm)
576   (write-char #\< strm)
577   (write-string (class-name-of x) strm)
578   (write-string "list><title>" strm)
579   (write-user-name-maybe-plural x nitems strm)
580   (write-string ":</title>" strm)
581   (write-char #\newline strm))
582
583 (defun initialize-xml-view (view)
584   (initialize-text-view view)
585   (setf (file-start-str view) "") ; (std-xml-header)
586   (setf (list-start-indent view)  t)
587   (setf (list-start-str-or-func view) #'xmlformat-list-start-func)
588   (setf (list-end-indent view) t)
589   (setf (list-end-str-or-func view) #'xmlformat-list-end-func)
590   (setf (obj-start-str-or-func view) (format nil "<~(~a~)>" (object-class-name view)))
591   (setf (obj-start-indent view) t)
592   (setf (obj-end-str-or-func view) (format nil "</~(~a~)>~%" (object-class-name view)))
593   (setf (obj-end-indent view) nil)
594   (setf (obj-data-indent view) nil))
595
596
597 ;;; File Start and Ends
598
599 (defun fmt-file-start (view strm)
600   (awhen (file-start-str view)
601          (write-string it strm)))
602
603 (defun fmt-file-end (view strm)
604   (awhen (file-end-str view)
605          (write-string it strm)))
606
607 ;;; List Start and Ends
608
609 (defun fmt-list-start (obj view strm indent num-items)
610   (when (list-start-indent view)
611     (indent-spaces indent strm))
612   (awhen (list-start-str-or-func view)
613          (if (stringp it)
614              (write-string it strm)
615              (funcall it obj num-items strm))))
616
617 (defun fmt-list-end (obj view strm indent num-items)
618   (declare (ignore num-items))
619   (when (list-end-indent view)
620       (indent-spaces indent strm))
621   (awhen (list-end-str-or-func view)
622          (if (stringp it)
623              (write-string it strm)
624              (funcall it obj strm))))
625
626 ;;; Object Start and Ends
627
628 (defun fmt-obj-start (obj view strm indent)
629   (when (obj-start-indent view)
630     (indent-spaces indent strm))
631   (awhen (obj-start-str-or-func view)
632          (if (stringp it)
633              (write-string it strm)
634              (funcall it obj strm))))
635
636 (defun fmt-obj-end (obj view strm indent)
637   (when (obj-end-indent view)
638     (indent-spaces indent strm))
639   (awhen (obj-end-str-or-func view)
640          (if (stringp it)
641              (write-string it strm)
642              (funcall it obj strm))))
643   
644 ;;; Object Data 
645
646 (defun make-link-start (view fieldfunc fieldvalue refvars)
647   (format nil "~a\"~a?func=~a~akey=~a~a\"" 
648           (link-href-start view)
649           (make-url (link-page-name view))
650           fieldfunc 
651           (link-ampersand view) fieldvalue
652           (if refvars
653               (let ((varstr ""))
654                 (dolist (var refvars)
655                   (string-append
656                    varstr (link-ampersand view)
657                    (format nil "~a=~a" (car var) (cdr var))))
658                 varstr)
659               "")))
660
661 (defun make-link-end (obj view fieldname)
662   (declare (ignore obj fieldname))
663   (link-href-end view))
664
665 (defun fmt-obj-data (obj view strm indent refvars)
666   (when (obj-data-indent view)
667     (indent-spaces indent strm))
668   (if (link-slots view)
669       (fmt-obj-data-with-link obj view strm refvars)
670       (fmt-obj-data-plain obj view strm))
671   (awhen (obj-data-end-str view)
672          (write-string it strm)))
673
674 (defun fmt-obj-data-plain (obj view strm)
675   (awhen (obj-data-func view)
676          (funcall it obj strm nil)))
677
678 (defun fmt-obj-data-with-link (obj view strm refvars)
679   (let ((refvalues '()))
680     ;; make list of hyperlink link fields for printing to refstr template
681     (dolist (name (link-slots view))
682       (awhen (find name (hyperobject-class-hyperlinks obj) :key #'name)
683              (push (make-link-start view (lookup it) (slot-value obj name)
684                                     (append (link-parameters it) refvars))
685                    refvalues)
686              (push (make-link-end obj view name) refvalues)))
687     (funcall (obj-data-func view) obj strm (nreverse refvalues))))
688
689 (defun obj-data (obj view)
690   "Returns the objects data as a string. Used by common-graphics outline function"
691   (with-output-to-string (s) (fmt-obj-data-plain obj view s)))
692
693 ;;; Display method for objects
694
695
696 (defun load-all-subobjects (objs)
697   "Load all subobjects if they have not already been loaded."
698   (dolist (obj (mklist objs))
699     (dolist (subobj (hyperobject-class-subobjects obj))
700       (awhen (slot-value obj (name-slot subobj))
701              (load-all-subobjects it))))
702   objs)
703
704 (defun view-hyperobject (objs view category strm &optional (indent 0) filter
705                          subobjects refvars)
706   "Display a single or list of hyperobject-class instances and their subobjects"
707   (declare (fixnum indent))
708   (let-when (objlist (mklist objs))
709     (let ((nobjs (length objlist))
710           (*print-pretty* nil)
711           (*print-circle* nil)
712           (*print-escape* nil)
713           (*print-readably* nil)
714           (*print-length* nil)
715           (*print-level* nil))
716       (fmt-list-start (car objlist) view strm indent nobjs)
717       (dolist (obj objlist)
718         (unless (and filter (not (funcall filter obj)))
719           (fmt-obj-start obj view strm indent)
720           (fmt-obj-data obj view strm (1+ indent) refvars)
721           (when (and subobjects (hyperobject-class-subobjects obj))
722             (dolist (subobj (hyperobject-class-subobjects obj))
723               (aif (slot-value obj (name-slot subobj))
724                    (view-hyperobject it (get-category-view (car (mklist it)) category)
725                                      category strm (1+ indent) filter
726                                      subobjects refvars))))
727           (fmt-obj-end obj view strm indent)))
728       (fmt-list-end (car objlist) view strm indent nobjs)))
729   objs)
730
731
732 (defun view (objs &key (stream *standard-output*) category view
733              filter subobjects refvars file-wrapper)
734   "EXPORTED Function: prints hyperobject-class objects. Simplies call to view-hyperobject"
735   (let-when (objlist (mklist objs))
736     (when category
737       (setq view (get-category-view (car objlist) category)))
738     (unless view
739       (setq view (default-view (class-of (car objlist)))))
740     (when file-wrapper
741       (fmt-file-start view stream))
742     (view-hyperobject objlist view category stream 0 filter subobjects refvars)
743     (when file-wrapper
744       (fmt-file-end view stream)))
745   objs)
746
747
748 ;;; Misc formatting
749
750 (defun fmt-comma-integer (i)
751   (format nil "~:d" i))