File: csv.lisp

package info (click to toggle)
cl-csv 20140826-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 228 kB
  • ctags: 99
  • sloc: lisp: 1,233; makefile: 2
file content (627 lines) | stat: -rw-r--r-- 26,204 bytes parent folder | download
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
;; -*- lisp -*-
(in-package :cl-csv)
(cl-interpol:enable-interpol-syntax)

;;;; * Reading and Writing files in Comma-Seperated-Values format

;;;; Generating CSV files from lisp data

(defun white-space? (c)
  (member c '(#\newline #\tab #\space #\return)))

(define-condition csv-parse-error (error)
  ((format-control :accessor format-control :initarg :format-control :initform nil)
   (format-args :accessor format-args :initarg :format-args :initform nil))
  (:report (lambda (c s &aux (ctrl (format-control c)))
	     (typecase ctrl
               (condition
                (format s "CSV-PARSE-ERROR: internal-error ~A" ctrl))
               (string
                (apply #'format s ctrl (format-args c)))))))

(defun csv-parse-error (msg &rest args)
  (error 'csv-parse-error :format-control msg :format-args args))

(define-condition csv-data-read ()
  ((data :accessor data :initarg :data :initform nil)))

(defun csv-data-read ( data )
  (if *enable-signals*
      (restart-case
          (progn (signal 'csv-data-read :data data ) data)
        (filter (new-data) new-data))
      data))

(define-condition csv-row-read ()
  ((row :accessor row :initarg :row :initform nil)))

(defun csv-row-read ( row )
  (if *enable-signals*
      (restart-case
          (progn (signal 'csv-row-read :row row ) row)
        (filter (new-row) new-row))
      row))

;;;; Writing csvs

(defgeneric format-csv-value (val)
  (:documentation "Print values in ways that are most cross compatible with the csv format")
  (:method (val)
    (typecase val
      ((or float ratio) (format nil "~F" val))
      (string val)
      (null "")
      (t (princ-to-string val)))))

(defun %char-in (c to-check)
  (typecase to-check
    (character (char= c to-check))
    (string
     (iter (for c2 in-string to-check)
       (thereis (char= c c2))))))

(defun chars-in (chars-to-check value-to-look-through)
  "returns true if any of the chars-to-check is found in the value-to-look-through"
  (iter (for c1 in-string value-to-look-through)
    (thereis
     (iter (for to-check in (alexandria:ensure-list chars-to-check))
       (thereis (%char-in c1 to-check))))))

(defgeneric write-csv-value (val csv-stream
                             &key formatter quote separator escape always-quote)
  (:documentation "Writes val to csv-stream in a formatted fashion.

Keywords

formatter: used to format val. Defaults to format-csv-value.

quote: quoting character. Defaults to *quote*

escape: escaping character. Defaults to *quote-escape*

newline: newline character. Defaults to *write-newline*

always-quote: Defaults to *always-quote*")
  (:method (val csv-stream
            &key (formatter #'format-csv-value)
            (quote *quote*)
            (separator *separator*)
            (escape *quote-escape*)
            (always-quote *always-quote*)
            (newline *write-newline*)
            &aux
            (formatted-value (funcall formatter val))
            (should-quote (or always-quote
                              (chars-in (list quote separator newline)
                                        formatted-value))))
    (when should-quote
      (write-char quote csv-stream))
    (iter
      (for char in-sequence formatted-value)
      (if (char= quote char)
          (write-sequence escape csv-stream)
          (write-char char csv-stream)))
    (when should-quote
      (write-char quote csv-stream))))

(defmacro with-csv-output-stream ((name inp) &body body)
  (alexandria:with-unique-names (opened?)
    `(multiple-value-bind (,name ,opened?) (%out-stream ,inp)
      (flet ((body () ,@body))
        (unwind-protect (body)
          (when (and ,name ,opened?)
            (close ,name)))))))

(defun %out-stream (stream-or-string)
  "creates a stream from the given thing, trying to DWIM"
  (etypecase stream-or-string
    (null (make-string-output-stream))
    (stream stream-or-string)
    (pathname
     (values
      (open stream-or-string :direction :output :if-exists :supersede)
      t))))

(defun write-csv-row (items
                      &key
                      stream
                      ((:separator *separator*) *separator*)
                      ((:quote *quote*) *quote*)
                      ((:escape *quote-escape*) *quote-escape*)
                      ((:newline *write-newline*) *write-newline*)
                      ((:always-quote *always-quote*) *always-quote*))
"
Writes a list items to stream

rows-of-items: iterable

Keywords:

stream: stream to write to. Default: nil.

quote: quoting character. Defaults to *quote*

escape: escaping character. Defaults to *quote-escape*

newline: newline character. Defaults to *write-newline*

always-quote: Defaults to *always-quote*"
  (with-csv-output-stream (csv-stream stream)
    (iter (for item in (alexandria:ensure-list items))
      (unless (first-iteration-p)
        (write-char *separator* csv-stream))
      (write-csv-value item csv-stream))
    (write-sequence *write-newline* csv-stream)
    (unless stream
      (get-output-stream-string csv-stream))))

(defun write-csv (rows-of-items
                  &key
                  stream
                  ((:separator *separator*) *separator*)
                  ((:quote *quote*) *quote*)
                  ((:escape *quote-escape*) *quote-escape*)
                  ((:newline *write-newline*) *write-newline*)
                  ((:always-quote *always-quote*) *always-quote*))
  "Writes a csv to the given stream.

  rows-of-items: iterable

  Keywords:
    stream: stream to write to. Default: nil.
      nil - writes the rows to a string and returns it
      an open stream
      a pathname (overwrites if the file exists)
    quote: quoting character. Defaults to *quote*
    escape: escaping character. Defaults to *quote-escape*
    newline: newline character. Defaults to *write-newline*
    always-quote: Defaults to *always-quote*"
  (with-csv-output-stream (csv-stream stream)
    (iter (for row in rows-of-items)
      (write-csv-row row :stream csv-stream))
    (unless stream
      (get-output-stream-string csv-stream))))

;;;; Reading in CSV files

(defun %escape-seq? (s i escape llen elen)
  (declare (type (or simple-string character) escape)
           (type string s)
           (type fixnum i llen elen))
  (typecase escape
    (character (char= escape (schar s i)))
    (simple-string
     (when (<= (+ i elen) llen)
       (iter
         (declare (type fixnum eidx))
         (with eidx = 0)
         (always (char= (char escape eidx)
                        (char s (+ i eidx))))
         (incf eidx)
         (while (< eidx elen)))))))

(defvar *default-external-format* :default
  "the external format used for opening files")

(defun %in-stream (stream-or-string)
  (typecase stream-or-string
    (string (make-string-input-stream stream-or-string))
    (stream stream-or-string)
    (pathname (values (open stream-or-string :external-format *default-external-format*)
                      T))))

(defmacro with-csv-input-stream ((name inp) &body body)
  (alexandria:with-unique-names (opened?)
    `(multiple-value-bind (,name ,opened?) (%in-stream ,inp)
      (flet ((body () ,@body))
        (unwind-protect (body)
          (when (and ,name ,opened?)
            (close ,name)))))))

(defun read-csv-row
    (stream-or-string
     &key
     ((:separator *separator*) *separator*)
     ((:quote *quote*) *quote*)
     ((:escape *quote-escape*) *quote-escape*)
     ((:unquoted-empty-string-is-nil *unquoted-empty-string-is-nil*)
      *unquoted-empty-string-is-nil*)
     ((:quoted-empty-string-is-nil *quoted-empty-string-is-nil*)
      *quoted-empty-string-is-nil*)
     ((:trim-outer-whitespace *trim-outer-whitespace*)
      *trim-outer-whitespace*)
     ((:newline *read-newline*) *read-newline*)
     ((:escape-mode *escape-mode*) *escape-mode*)
     &aux
     (*separator* (etypecase *separator*
                    (string (if (= 1 (length *separator*))
                                (schar *separator* 0)
                                (error "Only single character *separator* are currently supported:~A"
                                       *separator*)))
                    (character *separator*)))
     (*read-newline* (etypecase *read-newline*
                       (string (if (= 1 (length *read-newline*))
                                   (schar *read-newline* 0)
                                   *read-newline*))
                       (character *read-newline*)))
     (current (make-array 20 :element-type 'character :adjustable t :fill-pointer 0))
     (state :waiting)
     (i -1)
     (c #\null)
     (elen (etypecase *quote-escape*
             (string (length *quote-escape*))
             (character 1)))
     items items-tail
     (nl-match -1)
     (nl-len (etypecase *read-newline*
               (string (length *read-newline*))
               (character 1)))
     (nl-len-1 (- nl-len 1))
     (use-read-line? (etypecase *read-newline*
                       (character (char= *read-newline* #\newline))
                       (string nil)))
     newline-matched?
     (line (unless use-read-line?
             (make-array *buffer-size* :element-type 'character )))
     (llen -1)
     read-line-got-a-newline?)
  "Read in a CSV by data-row (which due to quoted newlines may be more than one
                              line from the stream)
  "
  ;; giant state machine parser
  ;; states:
  ;;    waiting: we are between inputs, or have not started reading yet
  ;;    collecting: collecting unquoted data
  ;;    collecting-quoted: collecting quoted data
  ;;    waiting-on-next: done collecting quoted data, now waitin for a
  ;;        separator

  ;; this just ensures that a file opened here is closed here
  (with-csv-input-stream (in-stream stream-or-string)
    (csv-row-read
     (loop
       do (labels ((set-loop-vars ()
                     (when (and line (< i llen))
                       (setf c (schar line i))
                       (let ((new-idx (+ 1 nl-match)))
                         (declare (type fixnum new-idx))
                         (if (char= (etypecase *read-newline*
                                      (string (schar *read-newline* new-idx))
                                      (character *read-newline*))
                                    c)
                             (setf nl-match new-idx)
                             (setf nl-match -1))
                         (setf newline-matched?
                               (= nl-len-1 nl-match)))))
                       
                   (current-last-char ()
                     (elt current (- (fill-pointer current) 1)))

                   (store-char (char)
                     (typecase char
                       (character (vector-push-extend char current))
                       (string (iter (for c in-string char)
                                 (vector-push-extend c current)))))

                   (finish-item ()
                     ;; trim off unquoted whitespace at the end
                     (when (and (eql state :collecting) *trim-outer-whitespace*)
                       (iter (while (white-space? (current-last-char)))
                         (decf (fill-pointer current))))

                     ;; collect the result
                     (let ((v (cons
                               (if (and
                                    ;; got a zero length string?
                                    (zerop (length (string current)))
                                    ;; should we collect nil for zero length strings?
                                    (or (and (member state '(:waiting))
                                             *unquoted-empty-string-is-nil*)
                                        (and (member state '(:waiting-for-next))
                                             *quoted-empty-string-is-nil*)))
                                   (csv-data-read nil)
                                   (csv-data-read (copy-seq (string current))))
                               nil)))
                       (if items
                           (setf (cdr items-tail) v
                                 items-tail v)
                           (setf items v
                                 items-tail v)))
                     ;; go back to waiting for items
                     (setf state :waiting)
                     (setf (fill-pointer current) 0))

                   (skip-escape ()
                     (dotimes (j (- elen 1))
                       (next-char)))

                   (read-line-in ()
                     (handler-bind
                         ((end-of-file
                            (lambda (sig)
                              (ecase state
                                (:waiting
                                 ;; let the signal go through, we have not read anything and already EOF
                                 (when items
                                   (finish-item)
                                   (return items))
                                 )
                                (:waiting-for-next
                                 ;; finished reading before encountering the next separator
                                 (return items))
                                (:collecting
                                    ;; finished reading the file so must have finished this item
                                    (finish-item)
                                  (return items))
                                (:collecting-quoted
                                 (restart-case (csv-parse-error "End of file while collecting quoted item: ~A" sig)
                                   (finish-item ()
                                     (finish-item)
                                     (return items))))))
                            ))
                       ;; reset index, line and len for the next line of data
                       (setf i 0)  ;; we will increment immediately after this
                       (if use-read-line?
                           (multiple-value-bind (line-in didnt-get-a-newline?)
                               (read-line in-stream)
                             (setf line line-in
                                   read-line-got-a-newline? (not didnt-get-a-newline?)
                                   llen (length line)))
                           (setf llen
                                 (read-into-buffer-until
                                  line in-stream
                                  :nl *read-newline*
                                  :nl-match nl-match)))
                       (set-loop-vars)))

                   (read-line-if-needed ()
                     (cond
                       ;; if we dont have a line yet read one
                       ((minusp llen) (read-line-in))

                       ;; we made it to the end of our buffer, so start again
                       ((= i llen)
                        (ecase state
                          (:collecting-quoted
                           (when use-read-line?
                             (when read-line-got-a-newline?
                               (store-char *read-newline*))))
                          ((:waiting :collecting :waiting-for-next)
                           (when newline-matched?
                             (decf (fill-pointer current) nl-len))
                           (when (or newline-matched? use-read-line?)
                             (finish-item)
                             (return items))))
                        (read-line-in))))

                   (next-char ()
                     (incf i)
                     (read-line-if-needed)
                     (unless (zerop i)
                       (set-loop-vars)))
                   
                   (handle-character ()
                     (cond
                       ;; the next characters are an escape sequence, start skipping
                       ((and (or (member state '(:collecting :collecting-quoted)))
                             *quote-escape* ;; if this is null there is no escape
                             (%escape-seq? line i *quote-escape* llen elen))
                        ;; this skips to the last char so that our next loop
                        ;; will start at the next char
                        (skip-escape)
                        ;; TODO: *escape-mode* needs to happen on writing too
                        (ecase *escape-mode*
                          (:quote (store-char *quote*))
                          (:following
                           ;; we need to immediately go to the next char and store
                           ;; without processing
                           (next-char)
                           (store-char c))))

                       ;; the character is data separator, so gather the word unless
                       ;; it is quoted data
                       ((char= *separator* c)
                        (ecase state
                          (:collecting-quoted (store-char c))
                          ((:collecting :waiting :waiting-for-next)
                           (finish-item))))

                       ;; the character is a quote (and not an escape) so start an item
                       ;; finishing the item is the responsibility of separator/eol
                       ((and *quote* (char= *quote* c))
                        (ecase state
                          (:waiting (setf state :collecting-quoted))
                          (:collecting-quoted
                           ;; if we end up trying to read
                           (setf state :waiting-for-next))
                          (:collecting
                              (csv-parse-error "we are reading non quoted csv data and found a quote at ~D~%~A"
                                               i line))))

                       (t               ;; regular character
                        (ecase state
                          (:waiting
                           (unless (and *trim-outer-whitespace* (white-space? c))
                             (setf state :collecting)
                             (store-char c)))
                          (:waiting-for-next
                           (unless (and *trim-outer-whitespace* (white-space? c))
                             ;(adwutils:spy-break i c line)
                             (csv-parse-error
                              "We finished reading a quoted value and got more characters before a separator or EOL ~D~%~A"
                              i line)))
                          ((:collecting :collecting-quoted)
                           (store-char c)))))))
            (next-char)
            (handle-character))))))

(iterate:defmacro-clause (for var in-csv input
                              &optional skipping-header skip-first-p
                              separator separator
                              quote quote
                              escaped-quote escaped-quote)
  "in-csv driver for iterate"
  (alexandria:with-unique-names (stream opened? skip)
    `(progn
      (with ,skip = ,skip-first-p)
      ;; can't bind values in a `with`, so listify and destructure
      (with (,stream ,opened?) = (multiple-value-list
                                  (%in-stream ,input)))
      (with *separator* = (or ,separator *separator*))
      (with *quote* = (or ,quote *quote*))
      (with *quote-escape* = (or ,escaped-quote *quote-escape*))
      (finally-protected
       (when (and ,stream ,opened?)
         (close ,stream)))
      (handler-case
          (progn
            ;; optionally skip the first row
            (when (and ,skip (first-iteration-p)) (read-csv-row ,stream))
            (for ,var =
                 (restart-case (read-csv-row ,stream)
                   (continue ()
                     :report "skip reading this row and try again on the next"
                     (next-iteration))
                   (filter (new-row)
                     :report "supply a different row to use instead of this erroring csv-row"
                     new-row))))
        (end-of-file () (finish))))))

(iterate:defmacro-clause (sampling expr &optional into var size size)
  "resevoir sample the input"
  (let ((sample (or var iterate::*result-var*)))
    (alexandria:with-unique-names (i sample-size sigil buffer row)
      `(progn
        (with ,sample)
        (with ,sample-size = (or ,size 100))
        (with ,buffer = (make-array ,sample-size :initial-element ',sigil))
        (with ,i = 0)
        (if (< ,i ,sample-size)
            (setf (aref ,buffer ,i) ,expr)
            (let ((r (random ,i)))
              (when (< r ,sample-size)
                (setf (aref ,buffer r) ,expr))))
        (incf ,i)
        (finally
         ;; convert our sample to a list, but only if we actually took the sample
         (when (plusp ,i)
           (setf ,sample
                 (iter (for ,row in-vector ,buffer)
                   (until (eq ,row ',sigil))
                   (collect ,row)))))))))

(defun read-csv-sample (stream-or-string sample-size
                        &key
                        row-fn map-fn
                        skip-first-p
                        ((:separator *separator*) *separator*)
                        ((:quote *quote*) *quote*)
                        ((:escape *quote-escape*) *quote-escape*)
                        ((:unquoted-empty-string-is-nil *unquoted-empty-string-is-nil*)
                         *unquoted-empty-string-is-nil*)
                        ((:quoted-empty-string-is-nil *quoted-empty-string-is-nil*)
                         *quoted-empty-string-is-nil*)
                        ((:trim-outer-whitespace *trim-outer-whitespace*)
                         *trim-outer-whitespace*)
                        ((:newline *read-newline*) *read-newline*))

  (iter
    (for row in-csv stream-or-string skipping-header skip-first-p)
    (sampling row into sample size sample-size)
    (finally
     (return
       (iter (for row in sample)
         (when map-fn (setf row (funcall map-fn row)))
         (when row-fn (funcall row-fn sample))
         (collect row))))))

(defun read-csv (stream-or-string
                 &key row-fn map-fn sample skip-first-p
                 ((:separator *separator*) *separator*)
                 ((:quote *quote*) *quote*)
                 ((:escape *quote-escape*) *quote-escape*)
                 ((:unquoted-empty-string-is-nil *unquoted-empty-string-is-nil*)
                  *unquoted-empty-string-is-nil*)
                 ((:quoted-empty-string-is-nil *quoted-empty-string-is-nil*)
                  *quoted-empty-string-is-nil*)
                 ((:trim-outer-whitespace *trim-outer-whitespace*)
                  *trim-outer-whitespace*)
                 ((:newline *read-newline*) *read-newline*)
                 ((:escape-mode *escape-mode*) *escape-mode*))
  "Read in a CSV by data-row (which due to quoted newlines may be more than one
                              line from the stream)

row-fn: passing this parameter will cause this read to be streaming
           and results will be discarded after the row-fn is called
           with data

map-fn: used for manipulating the data by row during collection if
specified; (funcall map-fn data) is collected instead of data

sample: when a positive integer, only take that many samples from the input file

skip-first-p: when true, skips the first line in the csv


Keywords:

separator: character separating between data cells. Defaults to *separator*

quote: quoting character for text strings. Defaults to *quote*

escape: escape character. Defaults to *quote-escape*"

  (if sample
      (read-csv-sample stream-or-string sample
                       :row-fn row-fn :map-fn map-fn :skip-first-p skip-first-p)
      (iter
        (for data in-csv stream-or-string skipping-header skip-first-p)
        (if row-fn
            (funcall row-fn data)
            (collect (if map-fn (funcall map-fn data) data))))))

(defmacro do-csv ((row-var stream-or-pathname
                   &rest read-csv-keys)
                  &body body)
"row-var: a variable that is passed into _body_

stream-or-pathname: a stream or a pathname to read the CSV data from

read-csv-keys: keys and values passed to the _read-csv_ function

body: body of the macro"
  `(read-csv ,stream-or-pathname ,@read-csv-keys
    :row-fn #'(lambda (,row-var) ,@body)
    )
  )

;; Copyright (c) 2011 Russ Tyndall , Acceleration.net http://www.acceleration.net
;; Copyright (c) 2002-2006, Edward Marco Baringer
;; All rights reserved.
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are
;; met:
;;
;;  - Redistributions of source code must retain the above copyright
;;    notice, this list of conditions and the following disclaimer.
;;
;;  - Redistributions in binary form must reproduce the above copyright
;;    notice, this list of conditions and the following disclaimer in the
;;    documentation and/or other materials provided with the distribution.
;;
;;  - Neither the name of Edward Marco Baringer, nor BESE, nor the names
;;    of its contributors may be used to endorse or promote products
;;    derived from this software without specific prior written permission.
;;
;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
;; A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.