1 @node Gray Streams examples
2 @subsection Gray Streams examples
8 Below are two classes of stream that can be conveniently defined as
9 wrappers for Common Lisp streams. These are meant to serve as
10 examples of minimal implementations of the protocols that must be
11 followed when defining Gray streams. Realistic uses of the Gray
12 Streams API would implement the various methods that can do I/O in
13 batches, such as @codew{stream-read-line}, @codew{stream-write-string},
14 @codew{stream-read-sequence}, and @codew{stream-write-sequence}.
18 * Character counting input stream::
19 * Output prefixing character stream::
22 @node Character counting input stream
23 @subsubsection Character counting input stream
25 It is occasionally handy for programs that process input files to
26 count the number of characters and lines seen so far, and the number
27 of characters seen on the current line, so that useful messages may be
28 reported in case of parsing errors, etc. Here is a character input
29 stream class that keeps track of these counts. Note that all
30 character input streams must implement @codew{stream-read-char} and
31 @codew{stream-unread-char}.
35 (defclass wrapped-stream (fundamental-stream)
36 ((stream :initarg :stream :reader stream-of)))
40 (defmethod stream-element-type ((stream wrapped-stream))
41 (stream-element-type (stream-of stream)))
45 (defmethod close ((stream wrapped-stream) &key abort)
46 (close (stream-of stream) :abort abort))
50 (defclass wrapped-character-input-stream
51 (wrapped-stream fundamental-character-input-stream)
56 (defmethod stream-read-char ((stream wrapped-character-input-stream))
57 (read-char (stream-of stream) nil :eof))
61 (defmethod stream-unread-char ((stream wrapped-character-input-stream)
63 (unread-char char (stream-of stream)))
67 (defclass counting-character-input-stream
68 (wrapped-character-input-stream)
69 ((char-count :initform 1 :accessor char-count-of)
70 (line-count :initform 1 :accessor line-count-of)
71 (col-count :initform 1 :accessor col-count-of)
72 (prev-col-count :initform 1 :accessor prev-col-count-of)))
76 (defmethod stream-read-char ((stream counting-character-input-stream))
77 (with-accessors ((inner-stream stream-of) (chars char-count-of)
78 (lines line-count-of) (cols col-count-of)
79 (prev prev-col-count-of)) stream
80 (let ((char (call-next-method)))
81 (cond ((eql char :eof)
83 ((char= char #\Newline)
96 (defmethod stream-unread-char ((stream counting-character-input-stream)
98 (with-accessors ((inner-stream stream-of) (chars char-count-of)
99 (lines line-count-of) (cols col-count-of)
100 (prev prev-col-count-of)) stream
101 (cond ((char= char #\Newline)
113 The default methods for @codew{stream-read-char-no-hang},
114 @codew{stream-peek-char}, @codew{stream-listen},
115 @codew{stream-clear-input}, @codew{stream-read-line}, and
116 @codew{stream-read-sequence} should be sufficient (though the last two
117 will probably be slower than methods that forwarded directly).
119 Here's a sample use of this class:
123 (with-input-from-string (input "1 2
125 (let ((counted-stream (make-instance 'counting-character-input-stream
127 (loop for thing = (read counted-stream) while thing
128 unless (numberp thing) do
129 (error "Non-number ~S (line ~D, column ~D)" thing
130 (line-count-of counted-stream)
131 (- (col-count-of counted-stream)
132 (length (format nil "~S" thing))))
140 Non-number :FOO (line 2, column 5)
141 [Condition of type SIMPLE-ERROR]
145 @node Output prefixing character stream
146 @subsubsection Output prefixing character stream
148 One use for a wrapped output stream might be to prefix each line of
149 text with a timestamp, e.g., for a logging stream. Here's a simple
150 stream that does this, though without any fancy line-wrapping. Note
151 that all character output stream classes must implement
152 @codew{stream-write-char} and @codew{stream-line-column}.
156 (defclass wrapped-stream (fundamental-stream)
157 ((stream :initarg :stream :reader stream-of)))
161 (defmethod stream-element-type ((stream wrapped-stream))
162 (stream-element-type (stream-of stream)))
166 (defmethod close ((stream wrapped-stream) &key abort)
167 (close (stream-of stream) :abort abort))
171 (defclass wrapped-character-output-stream
172 (wrapped-stream fundamental-character-output-stream)
173 ((col-index :initform 0 :accessor col-index-of)))
177 (defmethod stream-line-column ((stream wrapped-character-output-stream))
178 (col-index-of stream))
182 (defmethod stream-write-char ((stream wrapped-character-output-stream)
184 (with-accessors ((inner-stream stream-of) (cols col-index-of)) stream
185 (write-char char inner-stream)
186 (if (char= char #\Newline)
192 (defclass prefixed-character-output-stream
193 (wrapped-character-output-stream)
194 ((prefix :initarg :prefix :reader prefix-of)))
198 (defgeneric write-prefix (prefix stream)
199 (:method ((prefix string) stream) (write-string prefix stream))
200 (:method ((prefix function) stream) (funcall prefix stream)))
204 (defmethod stream-write-char ((stream prefixed-character-output-stream)
206 (with-accessors ((inner-stream stream-of) (cols col-index-of)
207 (prefix prefix-of)) stream
209 (write-prefix prefix inner-stream))
214 As with the example input stream, this implements only the minimal
215 protocol. A production implementation should also provide methods for
216 at least @codew{stream-write-line}, @codew{stream-write-sequence}.
218 And here's a sample use of this class:
222 (flet ((format-timestamp (stream)
223 (apply #'format stream "[~2@@*~2,' D:~1@@*~2,'0D:~0@@*~2,'0D] "
224 (multiple-value-list (get-decoded-time)))))
225 (let ((output (make-instance 'prefixed-character-output-stream
226 :stream *standard-output*
227 :prefix #'format-timestamp)))
228 (loop for string in '("abc" "def" "ghi") do
229 (write-line string output)