70819fd276faa89a894cb03156d4e386fd4db58a
[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.46 2003/05/22 20:40:03 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-printer :type (or string function null) :initform nil
44                            :initarg :list-start-printer
45                       :accessor list-start-printer)
46    (list-start-indent :initform nil :initarg :list-start-indent
47                       :accessor list-start-indent)
48    (list-end-printer :type (or string function null) :initform nil
49                          :initarg :list-end-printer
50                     :accessor list-end-printer)
51    (list-end-indent :initform nil :initarg :list-end-indent
52                     :accessor list-end-indent)
53    (obj-start-printer :type (or string function null) :initform nil :initarg :obj-start-printer
54                      :accessor obj-start-printer)
55    (obj-start-indent :initform nil :initarg :obj-start-indent
56                      :accessor obj-start-indent)
57    (obj-end-printer :type (or string function null) :initform nil :initarg :obj-end-printer
58                    :accessor obj-end-printer)
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-printer :type (or function null) :initform nil
64                         :initarg :obj-data-printer
65                         :accessor obj-data-printer)
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 (defmacro write-simple (v s)
164   `(typecase ,v
165     (string
166      (write-string ,v ,s))
167     #+allegro
168     (fixnum
169      (excl::print-fixnum ,s 10 ,v)) 
170     (symbol
171      (write-string (symbol-name ,v) ,s))
172     (t
173      (write-string (write-to-string ,v) ,s))))
174
175 (defun write-ho-value (obj name type formatter cdata strm)
176   (declare (ignorable type))
177   (let* ((slot-data (slot-value obj name))
178          (fmt-data (if formatter
179                        (funcall formatter slot-data)
180                    slot-data))
181          (data (if cdata
182                    (kmrcl:xml-cdata fmt-data)
183                    fmt-data)))
184     (write-simple data strm)))
185
186
187 (defun ppfc-html (title name type formatter cdata print-func)
188   (vector-push-extend '(write-string "<span class=\"" s) print-func)
189   (vector-push-extend `(write-string ,title s) print-func)
190   (vector-push-extend '(write-string "\">" s) print-func)
191   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
192   (vector-push-extend '(write-string "</span>" s) print-func))
193
194 (defun ppfc-xml (tag name type formatter cdata print-func)
195   (vector-push-extend '(write-char #\< s) print-func)
196   (vector-push-extend `(write-string ,tag s) print-func)
197   (vector-push-extend '(write-char #\> s) print-func)
198   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
199   (vector-push-extend '(write-string "</" s) print-func)
200   (vector-push-extend `(write-string ,tag s) print-func)
201   (vector-push-extend '(write-char #\> s) print-func))
202
203 (defun ppfc-html-labels (label 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 label name type formatter cdata print-func))
208
209 (defun ppfc-xhtml-labels (label tag name type formatter cdata print-func)
210   (vector-push-extend '(write-string "<span class=\"label\">" s) print-func)
211   (vector-push-extend `(write-string ,label s) print-func)
212   (vector-push-extend '(write-string "</span> " s) print-func)
213   (ppfc-html tag name type formatter cdata print-func))
214
215 (defun ppfc-xml-labels (label tag name type formatter cdata print-func)
216   (vector-push-extend '(write-string "<label>" s) print-func)
217   (vector-push-extend `(write-string ,label s) print-func)
218   (vector-push-extend '(write-string "</label> " s) print-func)
219   (ppfc-xml tag name type formatter cdata print-func))
220
221 (defun ppfc-html-link (name type formatter cdata nlink print-func)
222   (declare (fixnum nlink))
223   (vector-push-extend '(write-char #\< s) print-func)
224   (vector-push-extend `(write-string (nth ,(+ nlink nlink) links) s) print-func) 
225   (vector-push-extend '(write-char #\> s) print-func)
226   (vector-push-extend `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func)
227   (vector-push-extend '(write-string "</" s) print-func)
228   (vector-push-extend `(write-string (nth ,(+ nlink nlink 1) links) s) print-func) 
229   (vector-push-extend '(write-char #\> s) print-func))
230
231 (defun ppfc-html-link-labels (label name type formatter cdata nlink print-func)
232   (vector-push-extend '(write-string "<label>" s) print-func)
233   (vector-push-extend `(write-string ,label s) print-func)
234   (vector-push-extend '(write-string "</label> " s) print-func)
235   (ppfc-html-link name type formatter cdata nlink print-func))
236
237 (defun push-print-fun-code (category slot nlink print-func)
238   (let* ((formatter (esd-print-formatter slot))
239          (name (slot-definition-name slot))
240          (namestr-lower (string-downcase (symbol-name name)))
241          (xml-namestr (escape-xml-string namestr-lower))
242          (xml-tag (escape-xml-string namestr-lower))
243          (type (slot-value slot 'type))
244          (cdata (not (null
245                       (and (in category :xml :xhtml :xml-link :xhtml-link
246                                :xml-labels :ie-xml-labels
247                                :xhtml-link-labels :xml-link-labels :ie-xml-link
248                                :ie-xml-link-labels)
249                            (or formatter
250                                (lisp-type-is-a-string type))))))
251          (hyperlink (esd-hyperlink slot)))
252     
253     (case category
254       (:compact-text
255        (vector-push-extend
256         `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func))
257       (:compact-text-labels
258        (vector-push-extend `(write-string ,namestr-lower s) print-func)
259        (vector-push-extend '(write-char #\space s) print-func)
260        (vector-push-extend
261         `(write-ho-value x ',name ',type ',formatter ,cdata s) print-func))
262       ((or :html :xhtml)
263        (ppfc-html namestr-lower name type formatter cdata print-func))
264       (:xml
265        (ppfc-xml xml-tag name type formatter cdata print-func))
266       (:html-labels
267        (ppfc-html-labels namestr-lower name type formatter cdata print-func))
268       (:xhtml-labels
269        (ppfc-xhtml-labels xml-namestr namestr-lower name type formatter cdata print-func))
270       (:xml-labels
271        (ppfc-xml-labels xml-namestr xml-tag name type formatter cdata print-func))
272       ((or :html-link :xhtml-link)
273        (if hyperlink
274            (ppfc-html-link name type formatter cdata nlink print-func)
275            (ppfc-html namestr-lower name type formatter cdata print-func)))
276       ((or :xml-link :ie-xml-link)
277        (if hyperlink
278            (ppfc-html-link name type formatter cdata nlink print-func)
279            (ppfc-xml xml-tag name type formatter cdata print-func)))
280       (:html-link-labels
281        (if hyperlink
282            (ppfc-html-link-labels namestr-lower name type formatter cdata nlink
283                                   print-func)
284            (ppfc-html-labels namestr-lower name type formatter cdata print-func)))
285       (:xhtml-link-labels
286        (if hyperlink
287            (ppfc-html-link-labels xml-namestr name type formatter cdata nlink
288                                   print-func)
289            (ppfc-xhtml-labels xml-tag namestr-lower name type formatter cdata
290                               print-func)))
291       ((or :xml-link-labels :ie-xml-link-labels)
292        (if hyperlink
293            (ppfc-html-link-labels xml-namestr name type formatter cdata nlink
294                                   print-func)
295            (ppfc-xml-labels xml-tag namestr-lower name type formatter cdata
296                             print-func))))))
297
298
299 (defun view-has-links-p (view)
300   (in (category view) :html-link :xhtml-link :xml-link :ie-xml-link
301       :html-link-labels :xhtml-link-labels :xml-link-labels
302       :ie-xml-link-labels))
303
304 (defun initialize-view-by-category (obj-cl view)
305   "Initialize a view based upon a preset category"
306   (unless (in (category view) :compact-text :compact-text-labels
307               :html :html-labels :html-link-labels
308               :xhtml :xhtml-labels :xhtml-link-labels
309               :xhtml-link :html-link
310               :xml :xml-labels :xml-link :ie-xml-link
311               :xml-link-labels :ie-xml-link-labels)
312     (error "Unknown view category ~A" (category view)))
313   
314   (unless (slots view) (setf (slots view) (default-print-slots obj-cl)))
315
316   (let ((links '())
317         (print-func (make-array 10 :fill-pointer 0 :adjustable t)))
318
319     (do* ((slots (slots view) (cdr slots))
320           (slot-name (car slots) (car slots))
321           (slot (find-slot-by-name obj-cl slot-name)
322                 (find-slot-by-name obj-cl slot-name)))
323          ((null slots))
324       (unless slot
325         (error "Slot ~A is not found in class ~S" slot-name obj-cl))
326       
327       (push-print-fun-code (category view) slot (length links) print-func)
328       (when (> (length slots) 1)
329         (vector-push-extend '(write-char #\space s) print-func))
330
331       (when (and (view-has-links-p view) (esd-hyperlink slot))
332         (push (slot-definition-name slot) links)))
333
334     (when (plusp (length print-func))
335       (setf (obj-data-print-code view) `(lambda (x s links)
336                                          (declare (ignorable links))
337                                          ,@(map 'list #'identity print-func)))
338       (setf (obj-data-printer view)
339             (compile nil (eval (obj-data-print-code view)))))
340     
341     (setf (link-slots view) (nreverse links)))
342
343   (finalize-view-by-category view)
344   view)
345
346 (defun finalize-view-by-category (view)
347   (case (category view)
348     ((or :compact-text :compact-text-labels)
349      (initialize-text-view view))
350     ((or :html :xhtml :html-labels :xhtml-labels)
351      (initialize-html-view view))
352     ((or :xml :xml-labels)
353      (initialize-xml-view view))
354     ((or :html-link :html-link-labels)
355      (initialize-html-view view)
356      (setf (link-href-start view) "a href=")
357      (setf (link-href-end view) "a")
358      (setf (link-ampersand view) "&"))
359     ((or :xhtml-link :xhtml-link-labels)
360      (initialize-html-view view)
361      (setf (link-href-start view) "a href=")
362      (setf (link-href-end view) "a")
363      (setf (link-ampersand view) "&amp;"))
364     ((or :xml-link :xml-link-labels)
365      (initialize-xml-view view)
366      (setf (link-href-start view)
367            "xmllink xlink:type=\"simple\" xlink:href=")
368      (setf (link-href-end view) "xmllink")
369      (setf (link-ampersand view) "&amp;"))
370     ((or :ie-xml-link :ie-xml-link-labels)
371      (initialize-xml-view view)
372      (setf (link-href-start view) "html:a href=")
373      (setf (link-href-end view) "html:a")
374      (setf (link-ampersand view) "&amp;"))))
375
376
377 ;;;; *************************************************************************
378 ;;;;  View Data Format Section
379 ;;;; *************************************************************************
380
381 (defun class-name-of (obj)
382   (string-downcase (class-name (class-of obj))))
383
384 (defvar +newline-string+ (format nil "~%"))
385
386 (defun write-user-name-maybe-plural (obj nitems strm)
387   (write-string
388    (if (> nitems 1)
389        (hyperobject-class-user-name-plural obj)
390        (hyperobject-class-user-name obj))
391    strm))
392
393 (defun initialize-text-view (view)
394   (setf (list-start-printer view)
395         (compile nil
396                  (eval '(lambda (obj nitems strm)
397                          (write-user-name-maybe-plural obj nitems strm)
398                          (write-char #\: strm)
399                          (write-char #\Newline strm)))))
400   (setf (list-start-indent view) t)
401   (setf (obj-data-indent view) t)
402   (setf (obj-data-end-str view) +newline-string+))
403
404 (defun html-list-start-func (obj nitems strm)
405   (write-string "<p><b>" strm)
406   (write-user-name-maybe-plural obj nitems strm)
407   (write-string ":</b></p><div class=\"" strm)
408   (write-string (class-name-of obj) strm)
409   (write-string "\"><ul>" strm)
410   (write-char #\newline strm))
411
412 (defun initialize-html-view (view)
413   (initialize-text-view view)
414   (setf (file-start-str view) (format nil "<html><body>~%"))
415   (setf (file-end-str view) (format nil "</body><html>~%"))
416   (setf (list-start-indent view) t)
417   (setf (list-start-printer view) #'html-list-start-func)
418   (setf (list-end-printer view) (format nil "</ul></div>~%"))
419   (setf (list-end-indent view) t)
420   (setf (obj-start-indent view) t)
421   (setf (obj-start-printer view) "<li>")
422   (setf (obj-end-indent view)  t)
423   (setf (obj-end-printer view)  (format nil "</li>~%"))
424   (setf (obj-data-indent view) nil))
425
426 (defun initialize-xhtml-view (view)
427   (initialize-text-view view)
428   (setf (file-start-str view) (format nil "<html><body>~%"))
429   (setf (file-end-str view) (format nil "</body><html>~%"))
430   (setf (list-start-indent view) t)
431   (setf (list-start-printer view) #'html-list-start-func)
432   (setf (list-end-printer view) (format nil "</ul></div>~%"))
433   (setf (list-end-indent view) t)
434   (setf (obj-start-indent view) t)
435   (setf (obj-start-printer view) "<li>")
436   (setf (obj-end-indent view)  t)
437   (setf (obj-end-printer view) (format nil "</li>~%"))
438   (setf (obj-data-indent view) nil))
439
440 (defun xmlformat-list-end-func (x strm)
441   (write-string "</" strm)
442   (write-string (class-name-of x) strm)
443   (write-string "list" strm)
444   (write-string ">" strm)
445   (write-char #\newline strm))
446
447 (defun xmlformat-list-start-func (x nitems strm)
448   (write-char #\< strm)
449   (write-string (class-name-of x) strm)
450   (write-string "list><title>" strm)
451   (write-user-name-maybe-plural x nitems strm)
452   (write-string ":</title>" strm)
453   (write-char #\newline strm))
454
455 (defun initialize-xml-view (view)
456   (initialize-text-view view)
457   (setf (file-start-str view) "") ; (std-xml-header)
458   (setf (list-start-indent view)  t)
459   (setf (list-start-printer view) #'xmlformat-list-start-func)
460   (setf (list-end-indent view) t)
461   (setf (list-end-printer view) #'xmlformat-list-end-func)
462   (setf (obj-start-printer view) (format nil "<~(~a~)>" (object-class-name view)))
463   (setf (obj-start-indent view) t)
464   (setf (obj-end-printer view) (format nil "</~(~a~)>~%" (object-class-name view)))
465   (setf (obj-end-indent view) nil)
466   (setf (obj-data-indent view) nil))
467
468
469 ;;; File Start and Ends
470
471 (defun fmt-file-start (view strm)
472   (awhen (file-start-str view)
473          (write-string it strm)))
474
475 (defun fmt-file-end (view strm)
476   (awhen (file-end-str view)
477          (write-string it strm)))
478
479 ;;; List Start and Ends
480
481 (defun fmt-list-start (obj view strm indent num-items)
482   (when (list-start-indent view)
483     (indent-spaces indent strm))
484   (awhen (list-start-printer view)
485          (if (stringp it)
486              (write-string it strm)
487              (funcall it obj num-items strm))))
488
489 (defun fmt-list-end (obj view strm indent num-items)
490   (declare (ignore num-items))
491   (when (list-end-indent view)
492       (indent-spaces indent strm))
493   (awhen (list-end-printer view)
494          (if (stringp it)
495              (write-string it strm)
496              (funcall it obj strm))))
497
498 ;;; Object Start and Ends
499
500 (defun fmt-obj-start (obj view strm indent)
501   (when (obj-start-indent view)
502     (indent-spaces indent strm))
503   (awhen (obj-start-printer view)
504          (if (stringp it)
505              (write-string it strm)
506              (funcall it obj strm))))
507
508 (defun fmt-obj-end (obj view strm indent)
509   (when (obj-end-indent view)
510     (indent-spaces indent strm))
511   (awhen (obj-end-printer view)
512          (if (stringp it)
513              (write-string it strm)
514              (funcall it obj strm))))
515   
516 ;;; Object Data 
517
518
519 (defun make-link-start (view fieldfunc fieldvalue refvars)
520   (with-output-to-string (s)
521     (write-string (link-href-start view) s)
522     (write-char #\" s)
523     (write-string (make-url (link-page-name view)) s)
524     (write-string "?func=" s)
525     (write-simple fieldfunc s)
526     (write-string (link-ampersand view) s)
527     (write-string "key=" s)
528     (write-simple fieldvalue s)
529     (dolist (var refvars)
530       (write-string (link-ampersand view) s)
531       (write-simple (car var) s)
532       (write-char #\= s)
533       (write-simple (cdr var) s))
534     (write-char #\" s)))
535   
536 (defun make-link-end (obj view fieldname)
537   (declare (ignore obj fieldname))
538   (link-href-end view))
539
540 (defun fmt-obj-data (obj view strm indent refvars)
541   (when (obj-data-indent view)
542     (indent-spaces indent strm))
543   (if (link-slots view)
544       (fmt-obj-data-with-link obj view strm refvars)
545       (fmt-obj-data-plain obj view strm))
546   (awhen (obj-data-end-str view)
547          (write-string it strm)))
548
549 (defun fmt-obj-data-plain (obj view strm)
550   (awhen (obj-data-printer view)
551          (funcall it obj strm nil)))
552
553 (defun fmt-obj-data-with-link (obj view strm refvars)
554   (let ((refvalues '()))
555     ;; make list of hyperlink link fields for printing to refstr template
556     (dolist (name (link-slots view))
557       (awhen (find name (hyperobject-class-hyperlinks obj) :key #'name)
558              (push (make-link-start view (lookup it) (slot-value obj name)
559                                     (append (link-parameters it) refvars))
560                    refvalues)
561              (push (make-link-end obj view name) refvalues)))
562     (funcall (obj-data-printer view) obj strm (nreverse refvalues))))
563
564 (defun obj-data (obj view)
565   "Returns the objects data as a string. Used by common-graphics outline function"
566   (with-output-to-string (s) (fmt-obj-data-plain obj view s)))
567
568 ;;; Display method for objects
569
570
571 (defun load-all-subobjects (objs)
572   "Load all subobjects if they have not already been loaded."
573   (dolist (obj (mklist objs))
574     (dolist (subobj (hyperobject-class-subobjects obj))
575       (awhen (slot-value obj (name-slot subobj))
576              (load-all-subobjects it))))
577   objs)
578
579 (defun view-hyperobject (objs view category strm &optional (indent 0) filter
580                          subobjects refvars)
581   "Display a single or list of hyperobject-class instances and their subobjects"
582   (declare (fixnum indent))
583   (let-when (objlist (mklist objs))
584     (let ((nobjs (length objlist))
585           (*print-pretty* nil)
586           (*print-circle* nil)
587           (*print-escape* nil)
588           (*print-readably* nil)
589           (*print-length* nil)
590           (*print-level* nil))
591       (fmt-list-start (car objlist) view strm indent nobjs)
592       (dolist (obj objlist)
593         (unless (and filter (not (funcall filter obj)))
594           (fmt-obj-start obj view strm indent)
595           (fmt-obj-data obj view strm (1+ indent) refvars)
596           (when (and subobjects (hyperobject-class-subobjects obj))
597             (dolist (subobj (hyperobject-class-subobjects obj))
598               (aif (slot-value obj (name-slot subobj))
599                    (view-hyperobject it (get-category-view (car (mklist it)) category)
600                                      category strm (1+ indent) filter
601                                      subobjects refvars))))
602           (fmt-obj-end obj view strm indent)))
603       (fmt-list-end (car objlist) view strm indent nobjs)))
604   objs)
605
606
607 (defun view (objs &key (stream *standard-output*) category view
608              filter subobjects refvars file-wrapper)
609   "EXPORTED Function: prints hyperobject-class objects. Simplies call to view-hyperobject"
610   (let-when (objlist (mklist objs))
611     (when category
612       (setq view (get-category-view (car objlist) category)))
613     (unless view
614       (setq view (default-view (class-of (car objlist)))))
615     (when file-wrapper
616       (fmt-file-start view stream))
617     (view-hyperobject objlist view category stream 0 filter subobjects refvars)
618     (when file-wrapper
619       (fmt-file-end view stream)))
620   objs)
621
622
623 ;;; Misc formatting
624
625 (defun fmt-comma-integer (i)
626   (format nil "~:d" i))