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
|
;;;
;;; Copyright (c) 2007 Zachary Beane, 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.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
;;; 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 AUTHOR 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.
;;;
(in-package #:salza2)
(defun make-input ()
(make-array 65536 :element-type 'octet))
(defun make-chains ()
(make-array 65536
:element-type '(unsigned-byte 16)
:initial-element 0))
(defun make-hashes ()
(make-array +hashes-size+
:element-type '(unsigned-byte 16)
:initial-element 0))
(defun error-missing-callback (&rest args)
(declare (ignore args))
(error "No callback given for compression"))
;;; FIXME: MERGE-INPUT is pretty ugly. It's the product of incremental
;;; evolution and experimentation. It should be cleaned up.
;;;
;;; Its basic purpose is to use octets from INPUT to fill up 32k-octet
;;; halves of the 64k-octet OUTPUT buffer. Whenever a half fills up,
;;; the COMPRESS-FUN is invoked to compress that half. At the end, a
;;; partial half may remain uncompressed to be either filled by a
;;; future call to MERGE-INPUT or to get flushed out by a call to
;;; FINAL-COMPRESS.
(defun merge-input (input start count output offset compress-fun)
"Merge COUNT octets from START of INPUT into OUTPUT at OFFSET;
on reaching 32k boundaries within OUTPUT, call the COMPRESS-FUN
with OUTPUT, a starting offset, and the count of pending data."
(declare (type octet-vector input output))
(let ((i start)
(j (+ start (min count (- +input-limit+ (mod offset +input-limit+)))))
(result (logand +buffer-size-mask+ (+ offset count))))
(dotimes (k (ceiling (+ (logand offset +input-limit-mask+) count)
+input-limit+))
(when (plusp k)
(funcall compress-fun
output
(logxor offset #x8000)
+input-limit+))
(replace output input :start1 offset :start2 i :end2 j)
(setf offset (logand +input-limit+ (+ offset +input-limit+)))
(setf i j
j (min (+ start count) (+ j +input-limit+))))
(when (zerop (logand result +input-limit-mask+))
(funcall compress-fun output (logxor offset #x8000) +input-limit+))
result))
(defun reinitialize-bitstream-funs (compressor bitstream)
(setf (literal-fun compressor)
(make-huffman-writer *fixed-huffman-codes* bitstream)
(length-fun compressor)
(make-huffman-writer *length-codes* bitstream)
(distance-fun compressor)
(make-huffman-writer *distance-codes* bitstream)
(compress-fun compressor)
(make-compress-fun compressor)))
;;; Class & protocol
(defclass deflate-compressor ()
((input
:initarg :input
:accessor input)
(chains
:initarg :chains
:accessor chains)
(hashes
:initarg :hashes
:accessor hashes)
(start
:initarg :start
:accessor start)
(end
:initarg :end
:accessor end)
(counter
:initarg :counter
:accessor counter)
(octet-buffer
:initarg :octet-buffer
:accessor octet-buffer)
(bitstream
:initarg :bitstream
:accessor bitstream)
(literal-fun
:initarg :literal-fun
:accessor literal-fun)
(length-fun
:initarg :length-fun
:accessor length-fun)
(distance-fun
:initarg :distance-fun
:accessor distance-fun)
(byte-fun
:initarg :byte-fun
:accessor byte-fun)
(compress-fun
:initarg :compress-fun
:accessor compress-fun))
(:default-initargs
:input (make-input)
:chains (make-chains)
:hashes (make-hashes)
:start 0
:end 0
:counter 0
:bitstream (make-instance 'bitstream)
:octet-buffer (make-octet-vector 1)))
;;; Public protocol GFs
(defgeneric start-data-format (compressor)
(:documentation "Add any needed prologue data to the output bitstream."))
(defgeneric compress-octet (octet compressor)
(:documentation "Add OCTET to the compressed data of COMPRESSOR."))
(defgeneric compress-octet-vector (vector compressor &key start end)
(:documentation "Add the octets of VECTOR to the compressed
data of COMPRESSOR."))
(defgeneric process-input (compressor input start count)
(:documentation "Map over pending octets in INPUT and perform
any needed processing. Called before the data is compressed. A
subclass might use this to compute a checksum of all input
data."))
(defgeneric finish-data-format (compressor)
(:documentation "Add any needed epilogue data to the output bitstream."))
(defgeneric finish-compression (compressor)
(:documentation "Finish the data format and flush all pending
data in the bitstream."))
;;; Internal GFs
(defgeneric final-compress (compressor)
(:documentation "Perform the final compression on pending input
data in COMPRESSOR."))
(defgeneric make-compress-fun (compressor)
(:documentation "Create a callback suitable for passing to
MERGE-INPUT for performing incremental compression of the next
32k octets of input."))
;;; Methods
(defmethod initialize-instance :after ((compressor deflate-compressor)
&rest initargs
&key
literal-fun length-fun distance-fun
compress-fun
callback)
(declare (ignore initargs))
(let ((bitstream (bitstream compressor)))
(setf (callback bitstream)
(or callback #'error-missing-callback))
(setf (literal-fun compressor)
(or literal-fun (make-huffman-writer *fixed-huffman-codes*
bitstream)))
(setf (length-fun compressor)
(or length-fun (make-huffman-writer *length-codes*
bitstream)))
(setf (distance-fun compressor)
(or distance-fun (make-huffman-writer *distance-codes*
bitstream)))
(setf (compress-fun compressor)
(or compress-fun (make-compress-fun compressor)))
(start-data-format compressor)))
;;; A few methods defer to the bitstream
(defmethod (setf callback) (new-fun (compressor deflate-compressor))
(let ((bitstream (bitstream compressor)))
(prog1
(setf (callback bitstream) new-fun)
(reinitialize-bitstream-funs compressor bitstream))))
(defmethod write-bits (code size (compressor deflate-compressor))
(write-bits code size (bitstream compressor)))
(defmethod write-octet (octet (compressor deflate-compressor))
(write-octet octet (bitstream compressor)))
(defmethod write-octet-vector (vector (compressor deflate-compressor)
&key (start 0) end)
(write-octet-vector vector (bitstream compressor)
:start start
:end end))
(defmethod start-data-format ((compressor deflate-compressor))
(let ((bitstream (bitstream compressor)))
(write-bits +final-block+ 1 bitstream)
(write-bits +fixed-tables+ 2 bitstream)))
(defmethod compress-octet (octet compressor)
(let ((vector (octet-buffer compressor)))
(setf (aref vector 0) octet)
(compress-octet-vector vector compressor)))
(defmethod compress-octet-vector (vector compressor &key (start 0) end)
(let* ((closure (compress-fun compressor))
(end (or end (length vector)))
(count (- end start)))
(let ((end
(merge-input vector start count
(input compressor)
(end compressor)
closure)))
(setf (end compressor) end
(start compressor) (logand #x8000 end)
(counter compressor) (logand #x7FFF end)))))
(defmethod process-input ((compressor deflate-compressor) input start count)
(update-chains input (hashes compressor) (chains compressor) start count))
(defmethod finish-data-format ((compressor deflate-compressor))
(funcall (literal-fun compressor) 256))
(defmethod finish-compression ((compressor deflate-compressor))
(final-compress compressor)
(finish-data-format compressor)
(flush (bitstream compressor)))
(defmethod final-compress ((compressor deflate-compressor))
(let ((input (input compressor))
(chains (chains compressor))
(start (start compressor))
(end (end compressor))
(counter (counter compressor))
(literal-fun (literal-fun compressor))
(length-fun (length-fun compressor))
(distance-fun (distance-fun compressor)))
(process-input compressor input start counter)
(compress input chains start end
literal-fun
length-fun
distance-fun)))
(defmethod make-compress-fun ((compressor deflate-compressor))
(let ((literal-fun (literal-fun compressor))
(length-fun (length-fun compressor))
(distance-fun (distance-fun compressor)))
(lambda (input start count)
(process-input compressor input start count)
(let ((end (+ start count)))
(compress input (chains compressor) start (logand #xFFFF end)
literal-fun
length-fun
distance-fun)))))
(defmethod reset ((compressor deflate-compressor))
(fill (chains compressor) 0)
(fill (input compressor) 0)
(fill (hashes compressor) 0)
(setf (start compressor) 0
(end compressor) 0
(counter compressor) 0)
(reset (bitstream compressor))
(start-data-format compressor))
(defmacro with-compressor ((var class
&rest initargs
&key &allow-other-keys)
&body body)
`(let ((,var (make-instance ,class ,@initargs)))
(multiple-value-prog1
(progn ,@body)
(finish-compression ,var))))
|