aboutsummaryrefslogtreecommitdiff
path: root/skribe/src/stklos/writer.stk
blob: 2b0f91c88098a7022bf74733dd268570867173b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
;;;;
;;;; writer.stk	-- Skribe Writer Stuff
;;;; 
;;;; Copyright � 2003-2004 Erick Gallesio - I3S-CNRS/ESSI <eg@essi.fr>
;;;; 
;;;; 
;;;; This program is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
;;;; the Free Software Foundation; either version 2 of the License, or
;;;; (at your option) any later version.
;;;; 
;;;; This program is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;;; GNU General Public License for more details.
;;;; 
;;;; You should have received a copy of the GNU General Public License
;;;; along with this program; if not, write to the Free Software
;;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
;;;; USA.
;;;; 
;;;;           Author: Erick Gallesio [eg@essi.fr]
;;;;    Creation date: 15-Sep-2003 22:21 (eg)
;;;; Last file update:  4-Mar-2004 10:48 (eg)
;;;;


(define-module SKRIBE-WRITER-MODULE
  (import SKRIBE-DEBUG-MODULE SKRIBE-ENGINE-MODULE SKRIBE-OUTPUT-MODULE)
  (export invoke markup-writer markup-writer-get markup-writer-get*
	  lookup-markup-writer copy-markup-writer)

;;;; ======================================================================
;;;;
;;;; 				INVOKE
;;;;
;;;; ======================================================================
(define (invoke proc node e)
  (with-debug 5 'invoke
     (debug-item "e=" (engine-ident e))
     (debug-item "node=" node " " (if (markup? node) (markup-markup node) ""))

     (if (string? proc)
	 (display proc)
	 (if (procedure? proc)
	     (proc node e)))))


;;;; ======================================================================
;;;;
;;;; 				LOOKUP-MARKUP-WRITER
;;;;
;;;; ======================================================================
(define (lookup-markup-writer node e)
  (let ((writers (slot-ref e 'writers))
	(delegate (slot-ref e 'delegate)))
    (let Loop ((w* writers))
      (cond
	((pair? w*)
	   (let ((pred (slot-ref (car w*) 'pred)))
	     (if (pred node e)
		 (car w*)
		 (loop (cdr w*)))))
	((engine? delegate)
	   (lookup-markup-writer node delegate))
	(else
	   #f)))))

;;;; ======================================================================
;;;;
;;;; 				MAKE-WRITER-PREDICATE
;;;;
;;;; ======================================================================
(define (make-writer-predicate markup predicate class)
  (let* ((t1 (if (symbol? markup)
		 (lambda (n e) (is-markup? n markup))
		 (lambda (n e) #t)))
	 (t2 (if class
		 (lambda (n e)
		   (and (t1 n e) (equal? (markup-class n) class)))
		 t1)))
    (if predicate
	(cond
	  ((not (procedure? predicate))
	     (skribe-error 'markup-writer
			   "Illegal predicate (procedure expected)"
			   predicate))
	  ((not (eq? (%procedure-arity predicate) 2))
	     (skribe-error 'markup-writer
			   "Illegal predicate arity (2 arguments expected)"
			   predicate))
	  (else
	     (lambda (n e)
	       (and (t2 n e) (predicate n e)))))
	t2)))

;;;; ======================================================================
;;;;
;;;; 				MARKUP-WRITER
;;;;
;;;; ======================================================================
(define (markup-writer markup :optional engine
		       :key (predicate #f) (class #f) (options '())
		            (validate #f)
		            (before #f) (action 'unspecified) (after #f))
  (let ((e (or engine (default-engine))))
    (cond
      ((and (not (symbol? markup)) (not (eq? markup #t)))
       (skribe-error 'markup-writer "Illegal markup" markup))
      ((not (engine? e))
          (skribe-error 'markup-writer "Illegal engine" e))
      ((and (not predicate)
	    (not class)
	    (null? options)
	    (not before)
	    (eq? action 'unspecified)
	    (not after))
         (skribe-error 'markup-writer "Illegal writer" markup))
      (else
       (let ((m  (make-writer-predicate markup predicate class))
	     (ac (if (eq? action 'unspecified)
		     (lambda (n e) (output (markup-body n) e))
		     action)))
	 (engine-add-writer! e markup m predicate
			     options before ac after class validate))))))


;;;; ======================================================================
;;;;
;;;; 				MARKUP-WRITER-GET
;;;;
;;;; ======================================================================
(define (markup-writer-get markup :optional engine :key (class #f) (pred #f))
  (let ((e (or engine (default-engine))))
    (cond
      ((not (symbol? markup))
         (skribe-error 'markup-writer-get "Illegal symbol" markup))
      ((not (engine? e))
         (skribe-error 'markup-writer-get "Illegal engine" e))
      (else
       (let liip ((e e))
	 (let loop ((w* (slot-ref e 'writers)))
	   (cond
	     ((pair? w*)
	        (if (and (eq? (writer-ident (car w*)) markup)
			 (equal? (writer-class (car w*)) class)
			 (or (unspecified? pred)
			     (eq? (slot-ref (car w*) 'upred) pred)))
		    (car w*)
		    (loop (cdr w*))))
	     ((engine? (slot-ref e 'delegate))
	        (liip (slot-ref e 'delegate)))
	     (else
	        #f))))))))

;;;; ======================================================================
;;;;
;;;; 				MARKUP-WRITER-GET*
;;;;
;;;; ======================================================================

;; Finds all writers that matches MARKUP with optional CLASS attribute.

(define (markup-writer-get* markup #!optional engine #!key (class #f))
  (let ((e (or engine (default-engine))))
    (cond
      ((not (symbol? markup))
       (skribe-error 'markup-writer "Illegal symbol" markup))
      ((not (engine? e))
       (skribe-error 'markup-writer "Illegal engine" e))
      (else
       (let liip ((e e)
		  (res '()))
	 (let loop ((w* (slot-ref e 'writers))
		    (res res))
	   (cond
	     ((pair? w*)
	      (if (and (eq? (slot-ref (car w*) 'ident) markup)
		       (equal? (slot-ref (car w*) 'class) class))
		  (loop (cdr w*) (cons (car w*) res))
		  (loop (cdr w*) res)))
	     ((engine? (slot-ref e 'delegate))
	      (liip (slot-ref e 'delegate) res))
	     (else
	      (reverse! res)))))))))

;;; ======================================================================
;;;;
;;;; 				COPY-MARKUP-WRITER
;;;;
;;;; ======================================================================
(define (copy-markup-writer markup old-engine :optional new-engine
			      :key (predicate 'unspecified) 
			           (class 'unspecified) 
				   (options 'unspecified)
			           (validate 'unspecified) 
				   (before 'unspecified) 
				   (action 'unspecified) 
				   (after 'unspecified))
    (let ((old        (markup-writer-get markup old-engine))
	  (new-engine (or new-engine old-engine)))
      (markup-writer markup new-engine
	 :pred      (if (unspecified? predicate) (slot-ref old 'pred) predicate)
	 :class     (if (unspecified? class)     (slot-ref old 'class) class)
	 :options   (if (unspecified? options)   (slot-ref old 'options) options)
	 :validate  (if (unspecified? validate)  (slot-ref old 'validate) validate)
	 :before    (if (unspecified? before)    (slot-ref old 'before) before)
	 :action    (if (unspecified? action)    (slot-ref old 'action) action)
	 :after     (if (unspecified? after)     (slot-ref old 'after) after))))

)