r4920: 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.33 2003/05/14 04:28:09 kevin Exp $
11 ;;;;
12 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15  
16 (in-package :hyperobject)
17
18 (eval-when (:compile-toplevel :execute)
19   (declaim (optimize (speed 2) (safety 2) (compilation-speed 0) (debug 2))))
20
21
22 (defclass object-view ()
23   ((object-class-name :initform nil :initarg :object-class-name
24                       :accessor object-class-name
25                  :documentation "Name of class of object to be viewed.")
26    (object-class :initform nil :initarg :object-class
27                  :accessor object-class
28                  :documentation "Class of object to be viewed.")
29    (slots :initform nil :initarg :slots :accessor slots
30           :documentation "List of effective slots for object to be viewed.")
31    (name :initform nil :initarg :name :accessor name
32          :documentation "Name for this view.")
33    (category :initform nil :initarg :category :accessor category
34              :documentation "Category for view. Helpful when want to find a view corresponding to a particular category.")
35    (source-code :initform nil :initarg :source-code :accessor source-code 
36                 :documentation "Source code for generating view.")
37    (country-language :initform :en :initarg :country-language
38                      :documentation "Country's Language for this view.")
39    ;;
40    (file-start-str :type (or string null) :initform nil :initarg :file-start-str
41                    :accessor file-start-str)
42    (file-end-str :type (or string null) :initform nil :initarg :file-end-str
43                  :accessor file-end-str)
44    (list-start-str-or-func :type (or string function null) :initform nil
45                            :initarg :list-start-str-or-func
46                       :accessor list-start-str-or-func)
47    (list-start-indent :initform nil :initarg :list-start-indent
48                       :accessor list-start-indent)
49    (list-end-str-or-func :type (or string function null) :initform nil
50                          :initarg :list-end-str-or-func
51                     :accessor list-end-str-or-func)
52    (list-end-indent :initform nil :initarg :list-end-indent
53                     :accessor list-end-indent)
54    (obj-start-str-or-func :type (or string function null) :initform nil :initarg :obj-start-str-or-func
55                      :accessor obj-start-str-or-func)
56    (obj-start-indent :initform nil :initarg :obj-start-indent
57                      :accessor obj-start-indent)
58    (obj-end-str-or-func :type (or string function null) :initform nil :initarg :obj-end-str-or-func
59                    :accessor obj-end-str-or-func)
60    (obj-end-indent :initform nil :initarg :obj-end-indent
61                    :accessor obj-end-indent)
62    (obj-data-indent :initform nil :initarg :obj-data-indent
63                     :accessor obj-data-indent)
64    (obj-data-func :type (or function null) :initform nil
65                         :initarg :obj-data-func
66                         :accessor obj-data-func)
67    (obj-data-print-code :type (or function null) :initform nil
68                   :initarg :obj-data-print-code
69                   :accessor obj-data-print-code)
70    (obj-data-end-str :type (or string null) :initform nil
71                         :initarg :obj-data-end-str
72                         :accessor obj-data-end-str)
73    (link-slots :type list :initform nil
74                :documentation "List of slot names that have hyperlinks"
75                :accessor link-slots)
76    (link-page-name :type (or string null) :initform nil :initarg :link-page-name
77                    :accessor link-page-name)
78    (link-href-start :type (or string null) :initform nil :initarg :link-href-start
79                     :accessor link-href-start)
80    (link-href-end :type (or string null) :initform nil :initarg :link-href-end
81                   :accessor link-href-end)
82    (link-ampersand :type (or string null) :initform nil :initarg :link-ampersand
83                    :accessor link-ampersand))
84   (:default-initargs :link-page-name "disp-func1")
85   (:documentation "View class for a hyperobject"))
86
87
88 (defun get-category-view (obj category &optional slots)
89   "Find or make a category view for an object"
90   (let ((obj-class (class-of obj)))
91     (if (null category)
92         (default-view obj-class)
93         (aif (find category (views obj-class) :key #'category)
94              it
95              (let ((view
96                     (make-instance 'object-view
97                                    :object-class-name (class-name obj-class)
98                                    :object-class obj-class
99                                    :category category
100                                    :slots slots)))
101                (push view (views obj-class))
102                view)))))
103                              
104 ;;;; *************************************************************************
105 ;;;;  Metaclass Intialization
106 ;;;; *************************************************************************
107
108 (defun finalize-views (cl)
109   "Finalize all views that are given on a objects initialization"
110   (unless (default-print-slots cl)
111     (setf (default-print-slots cl)
112           (mapcar #'slot-definition-name (class-slots cl))))
113   (let ((views '()))
114     (dolist (view-def (views cl))
115       (push (make-object-view cl view-def) views))
116     (setf (views cl) (nreverse views)))
117   (cond
118     ((default-view cl)
119      (setf (default-view cl) (make-object-view cl (default-view cl))))
120     ((car (views cl))
121      (setf (default-view cl) (make-object-view cl (car (views cl)))))
122     (t
123      (setf (default-view cl) (make-object-view cl :default)))))
124
125 (defun make-object-view (cl view-def)
126   "Make an object view from a definition. Do nothing if a class is passed so that reinitialization will be a no-op"
127   (cond
128     ((typep view-def 'object-view)
129      view-def)
130     ((eq view-def :default)
131      (let* ((name (class-name cl))
132             (view (make-instance 'object-view :name "automatic"
133                                  :object-class-name name
134                                  :object-class cl
135                                  :category :compact-text)))
136        view))
137     ((consp view-def)
138      (eval `(make-instance ,view-def)))
139     (t
140      (error "Invalid parameter to make-object-view: ~S" view-def))))
141
142 (defmethod initialize-instance :after ((view object-view)
143                                        &rest initargs &key &allow-other-keys)
144   (initialize-view (object-class view) view))
145   
146 (defun initialize-view (obj-cl view)
147   "Calculate all view slots for a hyperobject class"
148   (cond
149     ((category view)
150      (initialize-view-by-category obj-cl view))
151     ((source-code view)
152      (initialize-view-by-source-code obj-cl view))
153     (t
154      (setf (category view) :compact-text)
155      (initialize-view-by-category obj-cl view))))
156
157 (defun initialize-view-by-source-code (obj-cl view)
158   "Initialize a view based upon a source code"
159   (let ((source-code (source-code view)))
160     (error "not implemented")
161     )
162   )
163
164
165 (defun write-ho-value (obj name type formatter cdata strm)
166   (declare (ignorable type))
167   (let* ((slot-data (slot-value obj name))
168          (fmt-data (if formatter
169                        (funcall formatter slot-data)
170                    slot-data))
171          (data (if cdata
172                    (kmrcl:xml-cdata fmt-data)
173                    fmt-data)))
174     (typecase data
175       (string
176        (write-string data strm))
177       (number
178        (write-string (write-to-string data) strm))
179       (t
180        (format strm "~A" data)))))
181
182 (defun ppfc-html (title name type formatter cdata print-func)
183   (vector-push-extend '(write-string "<span class=\"" s) print-func)
184   (vector-push-extend `(write-string ,title s) print-func)
185   (vector-push-extend '(write-string "\">" s) print-func)
186   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
187   (vector-push-extend '(write-string "</span>" s) print-func))
188
189 (defun ppfc-xml (tag name type formatter cdata print-func)
190   (vector-push-extend '(write-char #\< s) print-func)
191   (vector-push-extend `(write-string ,tag s) print-func)
192   (vector-push-extend '(write-char #\> s) print-func)
193   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
194   (vector-push-extend '(write-string "</" s) print-func)
195   (vector-push-extend `(write-string ,tag s) print-func)
196   (vector-push-extend '(write-char #\> s) print-func))
197
198 (defun ppfc-html-labels (label name type formatter cdata print-func)
199   (vector-push-extend '(write-string "<span class=\"label\">" s) print-func)
200   (vector-push-extend `(write-string ,label s) print-func)
201   (vector-push-extend '(write-string "</span> " s) print-func)
202   (ppfc-html label name type formatter cdata print-func))
203
204 (defun ppfc-xhtml-labels (label tag name type formatter cdata print-func)
205   (vector-push-extend '(write-string "<span class=\"label\">" s) print-func)
206   (vector-push-extend `(write-string ,label s) print-func)
207   (vector-push-extend '(write-string "</span> " s) print-func)
208   (ppfc-html tag name type formatter cdata print-func))
209
210 (defun ppfc-xml-labels (label tag name type formatter cdata print-func)
211   (vector-push-extend '(write-string "<label>" s) print-func)
212   (vector-push-extend `(write-string ,label s) print-func)
213   (vector-push-extend '(write-string "</label> " s) print-func)
214   (ppfc-xml tag name type formatter cdata print-func))
215
216 (defun ppfc-html-link (name type formatter cdata nlink print-func)
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     (setf (obj-data-print-code view) `(lambda (x s links)
326                                        (declare (ignorable links))
327                                        ,@(map 'list #'identity print-func)))
328     
329     (setf (obj-data-func view)
330           (when print-func (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 initialize-text-view (view)
515   (setf (list-start-str-or-func view)
516         (compile nil
517                  #'(lambda (obj nitems strm)
518                      (format strm "~a~P:~%"
519                              (hyperobject-class-user-name obj) nitems))))
520   (setf (list-start-indent view) t)
521   (setf (obj-data-indent view) t)
522   (setf (obj-data-end-str view) +newline-string+))
523
524 (defun html-list-start-func (obj nitems strm)
525   (format strm "<p><b>~a~p:</b></p><div class=\""
526           (hyperobject-class-user-name obj) nitems)
527   (write-string (class-name-of obj) strm)
528   (write-string "\"><ul>" strm)
529   (write-char #\newline strm))
530
531 (defun initialize-html-view (view)
532   (initialize-text-view view)
533   (setf (file-start-str view) (format nil "<html><body>~%"))
534   (setf (file-end-str view) (format nil "</body><html>~%"))
535   (setf (list-start-indent view) t)
536   (setf (list-start-str-or-func view) #'html-list-start-func)
537   (setf (list-end-str-or-func view) (format nil "</ul></div>~%"))
538   (setf (list-end-indent view) t)
539   (setf (obj-start-indent view) t)
540   (setf (obj-start-str-or-func view) "<li>")
541   (setf (obj-end-indent view)  t)
542   (setf (obj-end-str-or-func view)  (format nil "</li>~%"))
543   (setf (obj-data-indent view) t))
544
545 (defun initialize-xhtml-view (view)
546   (initialize-text-view view)
547   (setf (file-start-str view) (format nil "<html><body>~%"))
548   (setf (file-end-str view) (format nil "</body><html>~%"))
549   (setf (list-start-indent view) t)
550   (setf (list-start-str-or-func view) #'html-list-start-func)
551   (setf (list-end-str-or-func view) (format nil "</ul></div>~%"))
552   (setf (list-end-indent view) t)
553   (setf (obj-start-indent view) t)
554   (setf (obj-start-str-or-func view) "<li>")
555   (setf (obj-end-indent view)  t)
556   (setf (obj-end-str-or-func view) (format nil "</li>~%"))
557   (setf (obj-data-indent view) t))
558
559 (defun xmlformat-list-end-func (x strm)
560   (write-string "</" strm)
561   (write-string (class-name-of x) strm)
562   (write-string "list" strm)
563   (write-string ">" strm)
564   (write-char #\newline strm))
565
566 (defun xmlformat-list-start-func (x nitems strm)
567   (write-char #\< strm)
568   (write-string (class-name-of x) strm)
569   (write-string "list><title>" strm)
570   (format strm "~A~P:</title> ~%"
571           (hyperobject-class-user-name x) nitems))
572
573 (defun initialize-xml-view (view)
574   (initialize-text-view view)
575   (setf (file-start-str view) "") ; (std-xml-header)
576   (setf (list-start-indent view)  t)
577   (setf (list-start-str-or-func view) #'xmlformat-list-start-func)
578   (setf (list-end-indent view) t)
579   (setf (list-end-str-or-func view) #'xmlformat-list-end-func)
580   (setf (obj-start-str-or-func view) (format nil "<~(~a~)>" (object-class-name view)))
581   (setf (obj-start-indent view) t)
582   (setf (obj-end-str-or-func view) (format nil "</~(~a~)>~%" (object-class-name view)))
583   (setf (obj-end-indent view) nil)
584   (setf (obj-data-indent view) nil))
585
586
587 ;;; File Start and Ends
588
589 (defun fmt-file-start (view strm)
590   (awhen (file-start-str view)
591          (write-string it strm)))
592
593 (defun fmt-file-end (view strm)
594   (awhen (file-end-str view)
595          (write-string it strm)))
596
597 ;;; List Start and Ends
598
599 (defun fmt-list-start (obj view strm indent num-items)
600   (when (list-start-indent view)
601     (indent-spaces indent strm))
602   (awhen (list-start-str-or-func view)
603          (if (stringp it)
604              (write-string it strm)
605              (funcall it obj num-items strm))))
606
607 (defun fmt-list-end (obj view strm indent num-items)
608   (declare (ignore num-items))
609   (when (list-end-indent view)
610       (indent-spaces indent strm))
611   (awhen (list-end-str-or-func view)
612          (if (stringp it)
613              (write-string it strm)
614              (funcall it obj strm))))
615
616 ;;; Object Start and Ends
617
618 (defun fmt-obj-start (obj view strm indent)
619   (when (obj-start-indent view)
620     (indent-spaces indent strm))
621   (awhen (obj-start-str-or-func view)
622          (if (stringp it)
623              (write-string it strm)
624              (funcall it obj strm))))
625
626 (defun fmt-obj-end (obj view strm indent)
627   (when (obj-end-indent view)
628     (indent-spaces indent strm))
629   (awhen (obj-end-str-or-func view)
630          (if (stringp it)
631              (write-string it strm)
632              (funcall it obj strm))))
633   
634 ;;; Object Data 
635
636 (defun make-link-start (view fieldfunc fieldvalue refvars)
637   (format nil "~a\"~a?func=~a~akey=~a~a\"" 
638           (link-href-start view)
639           (make-url (link-page-name view))
640           fieldfunc 
641           (link-ampersand view) fieldvalue
642           (if refvars
643               (let ((varstr ""))
644                 (dolist (var refvars)
645                   (string-append
646                    varstr (link-ampersand view)
647                    (format nil "~a=~a" (car var) (cadr var))))
648                 varstr)
649               "")))
650
651 (defun make-link-end (obj view fieldname)
652   (declare (ignore obj fieldname))
653   (link-href-end view))
654
655 (defun fmt-obj-data (obj view strm indent refvars)
656   (when (obj-data-indent view)
657     (indent-spaces indent strm))
658   (if (link-slots view)
659       (fmt-obj-data-with-link obj view strm refvars)
660       (fmt-obj-data-plain obj view strm))
661   (awhen (obj-data-end-str view)
662          (write-string it strm)))
663
664 (defun fmt-obj-data-plain (obj view strm)
665   (awhen (obj-data-func view)
666          (funcall it obj strm nil)))
667
668 (defun fmt-obj-data-with-link (obj view strm refvars)
669   (let ((refvalues '()))
670     ;; make list of hyperlink link fields for printing to refstr template
671     (dolist (name (link-slots view))
672       (awhen (find name (hyperobject-class-hyperlinks obj) :key #'name)
673              (push (make-link-start view (lookup it) (slot-value obj name)
674                                     (append (link-parameters it) refvars))
675                    refvalues)
676              (push (make-link-end obj view name) refvalues)))
677     (funcall (obj-data-func view) obj strm (nreverse refvalues))))
678
679 (defun obj-data (obj view)
680   "Returns the objects data as a string. Used by common-graphics outline function"
681   (with-output-to-string (s) (fmt-obj-data-plain obj view s)))
682
683 ;;; Display method for objects
684
685
686 (defun load-all-subobjects (objs)
687   "Load all subobjects if they have not already been loaded."
688   (dolist (obj (mklist objs))
689     (dolist (subobj (hyperobject-class-subobjects obj))
690       (awhen (slot-value obj (name-slot subobj))
691              (load-all-subobjects it))))
692   objs)
693
694 (defun view-hyperobject (objs view category strm &optional (indent 0) filter
695                          subobjects refvars)
696   "Display a single or list of hyperobject-class instances and their subobjects"
697   (let-when (objlist (mklist objs))
698     (let ((nobjs (length objlist))
699           (*print-pretty* nil)
700           (*print-circle* nil)
701           (*print-escape* nil)
702           (*print-readably* nil)
703           (*print-length* nil)
704           (*print-level* nil))
705       (fmt-list-start (car objlist) view strm indent nobjs)
706       (dolist (obj objlist)
707         (unless (and filter (not (funcall filter obj)))
708           (fmt-obj-start obj view strm indent)
709           (fmt-obj-data obj view strm (1+ indent) refvars)
710           (when (and subobjects (hyperobject-class-subobjects obj))
711             (dolist (subobj (hyperobject-class-subobjects obj))
712               (aif (slot-value obj (name-slot subobj))
713                    (view-hyperobject it (get-category-view (car (mklist it)) category)
714                                      category strm (1+ indent) filter
715                                      subobjects refvars))))
716           (fmt-obj-end obj view strm indent)))
717       (fmt-list-end (car objlist) view strm indent nobjs)))
718   objs)
719
720
721 (defun view (objs &key (stream *standard-output*) category view
722              filter subobjects refvars file-wrapper)
723   "EXPORTED Function: prints hyperobject-class objects. Simplies call to view-hyperobject"
724   (let-when (objlist (mklist objs))
725     (when category
726       (setq view (get-category-view (car objlist) category)))
727     (unless view
728       (setq view (default-view (class-of (car objlist)))))
729     (when file-wrapper
730       (fmt-file-start view stream))
731     (view-hyperobject objlist view category stream 0 filter subobjects refvars)
732     (when file-wrapper
733       (fmt-file-end view stream)))
734   objs)
735
736
737 ;;; Misc formatting
738
739 (defun fmt-comma-integer (i)
740   (format nil "~:d" i))