File: simple-streams.lisp

package info (click to toggle)
cmucl 21a-4
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 50,060 kB
  • sloc: lisp: 375,822; ansic: 30,304; asm: 2,977; sh: 1,372; makefile: 355; csh: 31
file content (569 lines) | stat: -rw-r--r-- 19,810 bytes parent folder | download | duplicates (4)
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
;;;; -*- lisp -*-

(require :simple-streams)

(defpackage simple-streams-tests
  (:use #:common-lisp #:stream #:lisp-unit))


(in-package #:simple-streams-tests)

(defparameter *dumb-string*
  "This file was created by simple-stream-tests.lisp. Nothing to see here, move along.")

(defparameter *test-path*
  (merge-pathnames (make-pathname :name :unspecific :type :unspecific
                                  :version :unspecific)
                   *load-truename*)
  "Directory for temporary test files.")

(defparameter *test-file*
  (merge-pathnames #p"test-data.tmp" *test-path*))

(defparameter *echo-server* "127.0.0.1")

(eval-when (:load-toplevel)
  (ensure-directories-exist *test-path* :verbose t))

;;; Non-destructive functional analog of REMF
(defun remove-key (key list)
  (loop for (current-key val . rest) on list by #'cddr
        until (eql current-key key)
        collect current-key into result
        collect val into result
        finally (return (nconc result rest))))

(defun create-test-file (&key (filename *test-file*) (content *dumb-string*))
  (with-open-file (s filename :direction :output
		     :external-format :latin-1
                     :if-does-not-exist :create
                     :if-exists :supersede)
    (write-sequence content s)))

(defun remove-test-file (&key (filename *test-file*))
  (delete-file filename))

(defmacro with-test-file ((stream file &rest open-arguments
                                  &key (delete-afterwards t)
                                  initial-content
                                  &allow-other-keys)
                          &body body)
  (setq open-arguments (remove-key :delete-afterwards open-arguments))
  (setq open-arguments (remove-key :initial-content open-arguments))
  (if initial-content
      (let ((create-file-stream (gensym)))
        `(progn
           (with-open-file (,create-file-stream ,file :direction :output
						:external-format :latin-1
                                                :if-exists :supersede
                                                :if-does-not-exist :create)
             (write-sequence ,initial-content ,create-file-stream))
           (unwind-protect
                (with-open-file (,stream ,file ,@open-arguments
					 :external-format :latin-1)
                  (progn ,@body))
             ,(when delete-afterwards `(ignore-errors (delete-file ,file))))))
      `(unwind-protect
            (with-open-file (,stream ,file ,@open-arguments
				     :external-format :latin-1)
              (progn ,@body))
         ,(when delete-afterwards `(ignore-errors (delete-file ,file))))))

(define-test create-file-1
  ;; Create a file-simple-stream, write data.
  (assert-eql
   t
   (prog1
       (with-open-stream (s (make-instance 'file-simple-stream
					   :filename *test-file*
					   :direction :output
					   :external-format :latin-1
					   :if-exists :overwrite
					   :if-does-not-exist :create))
	 (string= (write-string *dumb-string* s) *dumb-string*))
     (delete-file *test-file*))))

(define-test create-file-2
  ;; Create a file-simple-stream via :class argument to open, write data.
  (assert-eql
   t
   (with-test-file (s *test-file* :class 'file-simple-stream
				  :direction :output :if-exists :overwrite
				  :if-does-not-exist :create)
     (string= (write-string *dumb-string* s) *dumb-string*))))

(define-test create-read-file-1
  ;; Via file-simple-stream objects, write and then re-read data.
  (assert-eql
   t
   (let ((result t))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :output :if-exists :overwrite
				    :if-does-not-exist :create :delete-afterwards nil)
       (write-line *dumb-string* s)
       (setf result (and result (string= (write-string *dumb-string* s)
					 *dumb-string*))))

     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       ;; Check first line
       (multiple-value-bind (string missing-newline-p)
	   (read-line s)
	 (setf result (and result (string= string *dumb-string*)
			   (not missing-newline-p))))
       ;; Check second line
       (multiple-value-bind (string missing-newline-p)
	   (read-line s)
	 (setf result (and result (string= string *dumb-string*)
			   missing-newline-p))))
     result)))

(define-test create-read-mapped-file-1
  ;; Read data via a mapped-file-simple-stream object.
  (assert-eql
   t
   (let ((result t))
     (with-test-file (s *test-file* :class 'mapped-file-simple-stream
				    :direction :input :if-does-not-exist :error
				    :initial-content *dumb-string*)
       (setf result (and result (string= (read-line s) *dumb-string*))))
     result)))

#+(or)
(define-test write-read-inet
    ;; Open a socket-simple-stream to the echo service and test if we
    ;; get it echoed back.  Obviously fails if the echo service isn't
    ;; enabled.
  (assert-eql
   t
   (with-open-stream (s (make-instance 'socket-simple-stream
				       :remote-host *echo-server*
				       :remote-port 7
				       :direction :io))
     (string= (prog1
		  (write-line "Got it!" s)
		(finish-output s))
	      (read-line s)))))

(define-test write-read-large-sc-1
  ;; Do write and read with more data than the buffer will hold
  ;; (single-channel simple-stream)
  (assert-eql
   t
   (let* ((stream (make-instance 'file-simple-stream
				 :filename *test-file* :direction :output
				 :external-format :latin-1
				 :if-exists :overwrite
				 :if-does-not-exist :create))
	  (content (make-string (1+ (device-buffer-length stream))
				:initial-element #\x)))
     (with-open-stream (s stream)
       (write-string content s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (string= content (read-line s))))))

(define-test write-read-large-sc-2
  (assert-eql
   t
   (let* ((stream (make-instance 'file-simple-stream
				 :filename *test-file* :direction :output
				 :external-format :latin-1
				 :if-exists :overwrite
				 :if-does-not-exist :create))
	  (length (1+ (* 3 (device-buffer-length stream))))
	  (content (make-string length)))
     (dotimes (i (length content))
       (setf (aref content i) (code-char (random 256))))
     (with-open-stream (s stream)
       (write-string content s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (let ((seq (make-string length)))
	 #+nil (read-sequence seq s)
	 #-nil (dotimes (i length)
		 (setf (char seq i) (read-char s)))
	 (string= content seq))))))

(define-test write-read-large-sc-read-seq-2
  (assert-eql
   t
   (let* ((stream (make-instance 'file-simple-stream
				 :filename *test-file* :direction :output
				 :external-format :latin-1
				 :if-exists :overwrite
				 :if-does-not-exist :create))
	  (length (1+ (* 3 (device-buffer-length stream))))
	  (content (make-string length)))
     (dotimes (i (length content))
       (setf (aref content i) (code-char (random 256))))
     (with-open-stream (s stream)
       (write-string content s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (let ((seq (make-string length)))
	 (read-sequence seq s)
	 (string= content seq))))))

(define-test write-read-large-sc-3
  (assert-eql
   t
   (let* ((stream (make-instance 'file-simple-stream
				 :filename *test-file* :direction :output
				 :external-format :latin-1
				 :if-exists :overwrite
				 :if-does-not-exist :create))
	  (length (1+ (* 3 (device-buffer-length stream))))
	  (content (make-array length :element-type '(unsigned-byte 8))))
     (dotimes (i (length content))
       (setf (aref content i) (random 256)))
     (with-open-stream (s stream)
       (write-sequence content s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (let ((seq (make-array length :element-type '(unsigned-byte 8))))
	 #+nil (read-sequence seq s)
	 #-nil (dotimes (i length)
		 (setf (aref seq i) (read-byte s)))
	 (equalp content seq))))))

(define-test write-read-large-sc-read-seq-3
  (assert-eql
   t
   (let* ((stream (make-instance 'file-simple-stream
				 :filename *test-file* :direction :output
				 :external-format :latin-1
				 :if-exists :overwrite
				 :if-does-not-exist :create))
	  (length (1+ (* 3 (device-buffer-length stream))))
	  (content (make-array length :element-type '(unsigned-byte 8))))
     (dotimes (i (length content))
       (setf (aref content i) (random 256)))
     (with-open-stream (s stream)
       (write-sequence content s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (let ((seq (make-array length :element-type '(unsigned-byte 8))))
	 (read-sequence seq s)
	 (equalp content seq))))))

#+(or)
(define-test write-read-large-dc-1
  ;; Do write and read with more data than the buffer will hold
  ;; (dual-channel simple-stream; we only have socket streams atm)
  (assert-eql
   t
   (let* ((stream (make-instance 'socket-simple-stream
                                 :remote-host *echo-server*
                                 :remote-port 7
                                 :direction :io))
          (content (make-string (1+ (device-buffer-length stream))
                                :initial-element #\x)))
     (with-open-stream (s stream)
       (string= (prog1 (write-line content s) (finish-output s))
                (read-line s))))))


(define-test file-position-1
  ;; Test reading of file-position
  (assert-eql
   0
   (with-test-file (s *test-file* :class 'file-simple-stream :direction :input
				  :initial-content *dumb-string*)
     (file-position s))))

(define-test file-position-2
  ;; Test reading of file-position
  (assert-eql
   1
   (with-test-file (s *test-file* :class 'file-simple-stream :direction :input
				  :initial-content *dumb-string*)
     (read-byte s)
     (file-position s))))

(define-test file-position-3
  ;; Test reading of file-position in the presence of unsaved data
  (assert-eql
   1
   (with-test-file (s *test-file* :class 'file-simple-stream
				  :direction :output :if-exists :supersede
				  :if-does-not-exist :create)
     (write-byte 50 s)
     (file-position s))))

(define-test file-position-4
  ;; Test reading of file-position in the presence of unsaved data and
  ;; filled buffer
  (assert-eql
   2
   (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				  :if-exists :overwrite :if-does-not-exist :create
				  :initial-content *dumb-string*)
     (read-byte s)			; fill buffer
     (write-byte 50 s)			; advance file-position
     (file-position s))))

(define-test file-position-5
  ;; Test file position when opening with :if-exists :append
  (assert-eql
   t
   (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				  :if-exists :append :if-does-not-exist :create
				  :initial-content *dumb-string*)
     (= (file-length s) (file-position s)))))

(define-test write-read-unflushed-sc-1
  ;; Write something into a single-channel stream and read it back
  ;; without explicitly flushing the buffer in-between
  (assert-eql
   #\x
   (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				  :if-does-not-exist :create :if-exists :supersede)
     (write-char #\x s)
     (file-position s :start)
     (read-char s))))

(define-test write-read-unflushed-sc-2
  ;; Write something into a single-channel stream, try to read back too much
  (assert-eql
   t
   (handler-case
       (with-test-file (s *test-file* :class 'file-simple-stream
				      :direction :io :if-does-not-exist :create
				      :if-exists :supersede)
	 (write-char #\x s)
	 (file-position s :start)
	 (read-char s)
	 (read-char s)
	 nil)
     (end-of-file () t))))

(define-test write-read-unflushed-sc-3
  ;; Test writing in a buffer filled with previous file contents
  (assert-eql
   t
   (let ((result t))
     (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				    :if-exists :overwrite :if-does-not-exist :create
				    :initial-content *dumb-string*)
       (setq result (and result (char= (read-char s) (schar *dumb-string* 0))))
       (setq result (and result (= (file-position s) 1)))
       (let ((pos (file-position s)))
	 (write-char #\x s)
	 (file-position s pos)
	 (setq result (and result (char= (read-char s) #\x)))))
     result)))

(define-test write-read-unflushed-sc-4
  ;; Test flushing of buffers
  (assert-equal
   '("XooX" T)
   (progn
     (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				    :if-exists :overwrite :if-does-not-exist :create
				    :initial-content "Foo"
				    :delete-afterwards nil)
       (read-char s)			; Fill the buffer.
       (file-position s :start)		; Change existing data.
       (write-char #\X s)
       (file-position s :end)		; Extend file.
       (write-char #\X s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (multiple-value-list (read-line s))))))

(define-test write-read-append-sc-1
  ;; Test writing in the middle of a stream opened in append mode
  (assert-equal
   '("XooX" T)
   (progn
     (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				    :if-exists :append :if-does-not-exist :create
				    :initial-content "Foo"
				    :delete-afterwards nil)
       (file-position s :start)		; Jump to beginning.
       (write-char #\X s)
       (file-position s :end)		; Extend file.
       (write-char #\X s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error)
       (multiple-value-list (read-line s))))))

(define-test write-read-mixed-sc-1
  ;; Test read/write-sequence of types string and (unsigned-byte 8)
  (assert-eql
   t
   (let ((uvector (make-array '(10) :element-type '(unsigned-byte 8)
				    :initial-element 64))
	 (svector (make-array '(10) :element-type '(signed-byte 8)
				    :initial-element -1))
	 (result-uvector (make-array '(10) :element-type '(unsigned-byte 8)
					   :initial-element 0))
	 (result-svector (make-array '(10) :element-type '(signed-byte 8)
					   :initial-element 0))
	 (result-string (make-string (length *dumb-string*)
				     :initial-element #\Space)))
     (with-test-file (s *test-file* :class 'file-simple-stream :direction :io
				    :if-exists :overwrite :if-does-not-exist :create
				    :delete-afterwards nil)
       (write-sequence svector s)
       (write-sequence uvector s)
       (write-sequence *dumb-string* s))
     (with-test-file (s *test-file* :class 'file-simple-stream
				    :direction :input :if-does-not-exist :error
				    :delete-afterwards nil)
       (read-sequence result-svector s)
       (read-sequence result-uvector s)
       (read-sequence result-string s))
     (and (string= *dumb-string* result-string)
	  (equalp uvector result-uvector)
	  (equalp svector result-svector)))))

(define-test create-read-mapped-file-read-seq-1
  ;; Read data via a mapped-file-simple-stream object using
  ;; read-sequence.
  (assert-eql
   t
   (let ((result t))
     (with-test-file (s *test-file* :class 'mapped-file-simple-stream
				    :direction :input :if-does-not-exist :error
				    :initial-content *dumb-string*)
       (let ((seq (make-string (length *dumb-string*))))
	 (read-sequence seq s)
	 (setf result (and result (string= seq *dumb-string*)))))
     result)))

(define-test create-read-mapped-file-read-seq-2
  ;; Read data via a mapped-file-simple-stream object using
  ;; read-sequence.
  (assert-eql
   t
   (let ((result t))
     (with-test-file (s *test-file* :class 'mapped-file-simple-stream
				    :direction :input :if-does-not-exist :error
				    :initial-content *dumb-string*)
       (let ((seq (make-string (+ 10 (length *dumb-string*)))))
	 (read-sequence seq s)
	 (setf result (and result
			   (string= seq *dumb-string*
				    :end1 (length *dumb-string*))))))
     result)))


;;; From Lynn Quam, cmucl-imp, 2004-12-04: After doing a READ-VECTOR,
;;; FILE-POSITION returns the wrong value.

(lisp-unit:define-test file-position-6
  ;; Test the file-position is right.
  (assert-equal
   '(100 100 100 100)
   (with-open-file (st1 "/etc/passwd" :class 'stream:file-simple-stream)
     (with-open-file (st2 "/etc/passwd" :element-type '(unsigned-byte 8))
       (let* ((buf1 (make-array 100 :element-type '(unsigned-byte 8)))
	      (buf2 (make-array 100 :element-type '(unsigned-byte 8)))
	      (n1 (stream:read-vector buf1 st1))
	      (n2 (read-sequence buf2 st2)))
	 (list n1 (file-position st1) 
	       n2 (file-position st2)))))))

;;; From Madhu, cmucl-imp, 2006-12-16
(define-test file-position-7
  (assert-equal
   '(0 t)
   (with-open-file (st1 "/etc/passwd" :mapped t :class 'stream:file-simple-stream)
     (let* ((posn1 (file-position st1))
	    (line1 (read-line st1))
	    (posn2 (file-position st1)))
       (list posn1 (= posn2 (1+ (length line1))))))))

(define-test file-position-8
  (assert-equal
   '(0 1)
   (with-open-file (st1 "/etc/passwd" :mapped t :class 'stream:file-simple-stream)
     (let* ((posn1 (file-position st1))
	    (c1 (read-char st1))
	    (posn2 (file-position st1)))
       (list posn1 posn2)))))

;;; Some specific tests for full unicode support.
#+unicode
(define-test unicode-read-1
  ;; Tests if reading unicode surrogates works
  (assert-eql
   t
   (let ((string (map 'string #'code-char '(#xd800 #xdc00))))
     (with-open-file (s *test-file*
			:direction :output
			:if-exists :supersede
			:if-does-not-exist :create
			:external-format :utf8)
       (write-string string s))
     (with-open-file (s *test-file* :class 'file-simple-stream
				    :direction :input
				    :if-does-not-exist :error
				    :external-format :utf8)
       (let ((seq (read-line s)))
	 (string= string seq))))))

#+unicode
(define-test unicode-read-large-1
  ;; Tests if reading unicode surrogates works
  (assert-eql
   t
   (let ((string (concatenate 'string
			      (map 'string #'code-char '(#xd800 #xdc00))
			      (make-string 5000 :initial-element #\X))))
     (with-open-file (s *test-file*
			:direction :output
			:if-exists :supersede
			:if-does-not-exist :create
			:external-format :utf8)
       (write-string string s))
     (with-open-file (s *test-file* :class 'file-simple-stream
				    :direction :input
				    :if-does-not-exist :error
				    :external-format :utf8)
       (let ((seq (read-line s)))
	 (string= string seq))))))

#+unicode
(define-test unicode-write-1
  ;; Tests if writing unicode surrogates work
  (assert-eql
   t
   (let ((string (map 'string #'code-char '(#xd800 #xdc00))))
     (with-open-file (s *test-file*
			:class 'file-simple-stream
			:direction :output
			:if-exists :supersede
			:if-does-not-exist :create
			:external-format :utf8)
       (write-string string s))
     (with-open-file (s *test-file*
			:direction :input
			:if-does-not-exist :error
			:external-format :utf8)
       (let ((seq (read-line s)))
	 (string= string seq))))))

#+unicode
(define-test unicode-write-large-1
  ;; Tests if writing unicode surrogates work
  (assert-eql
   t
   (let ((string (concatenate 'string
			      (map 'string #'code-char '(#xd800 #xdc00))
			      (make-string 5000 :initial-element #\X))))
     (with-open-file (s *test-file*
			:class 'file-simple-stream
			:direction :output
			:if-exists :supersede
			:if-does-not-exist :create
			:external-format :utf8)
       (write-string string s))
     (with-open-file (s *test-file*
			:direction :input
			:if-does-not-exist :error
			:external-format :utf8)
       (let ((seq (read-line s)))
	 (string= string seq))))))