2009-09-29 20:47:05 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package zlib
|
|
|
|
|
|
|
|
import (
|
2009-12-15 16:33:31 -07:00
|
|
|
"compress/flate"
|
|
|
|
"hash"
|
|
|
|
"hash/adler32"
|
|
|
|
"io"
|
|
|
|
"os"
|
2009-09-29 20:47:05 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// These constants are copied from the flate package, so that code that imports
|
|
|
|
// "compress/zlib" does not also have to import "compress/flate".
|
|
|
|
const (
|
2009-12-15 16:33:31 -07:00
|
|
|
NoCompression = flate.NoCompression
|
|
|
|
BestSpeed = flate.BestSpeed
|
|
|
|
BestCompression = flate.BestCompression
|
|
|
|
DefaultCompression = flate.DefaultCompression
|
2009-09-29 20:47:05 -06:00
|
|
|
)
|
|
|
|
|
2011-04-15 16:32:03 -06:00
|
|
|
// A Writer takes data written to it and writes the compressed
|
|
|
|
// form of that data to an underlying writer (see NewWriter).
|
|
|
|
type Writer struct {
|
2010-05-07 15:32:34 -06:00
|
|
|
w io.Writer
|
2011-04-15 16:32:03 -06:00
|
|
|
compressor *flate.Writer
|
2010-05-07 15:32:34 -06:00
|
|
|
digest hash.Hash32
|
|
|
|
err os.Error
|
|
|
|
scratch [4]byte
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
|
|
|
|
2010-05-07 15:32:34 -06:00
|
|
|
// NewWriter calls NewWriterLevel with the default compression level.
|
2011-04-15 16:32:03 -06:00
|
|
|
func NewWriter(w io.Writer) (*Writer, os.Error) {
|
2010-05-07 15:32:34 -06:00
|
|
|
return NewWriterLevel(w, DefaultCompression)
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
|
|
|
|
2011-04-15 16:32:03 -06:00
|
|
|
// NewWriterLevel calls NewWriterDict with no dictionary.
|
|
|
|
func NewWriterLevel(w io.Writer, level int) (*Writer, os.Error) {
|
|
|
|
return NewWriterDict(w, level, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewWriterDict creates a new io.WriteCloser that satisfies writes by compressing data written to w.
|
2009-09-29 20:47:05 -06:00
|
|
|
// It is the caller's responsibility to call Close on the WriteCloser when done.
|
|
|
|
// level is the compression level, which can be DefaultCompression, NoCompression,
|
|
|
|
// or any integer value between BestSpeed and BestCompression (inclusive).
|
2011-04-15 16:32:03 -06:00
|
|
|
// dict is the preset dictionary to compress with, or nil to use no dictionary.
|
|
|
|
func NewWriterDict(w io.Writer, level int, dict []byte) (*Writer, os.Error) {
|
|
|
|
z := new(Writer)
|
2009-09-29 20:47:05 -06:00
|
|
|
// ZLIB has a two-byte header (as documented in RFC 1950).
|
|
|
|
// The first four bits is the CINFO (compression info), which is 7 for the default deflate window size.
|
|
|
|
// The next four bits is the CM (compression method), which is 8 for deflate.
|
2009-12-15 16:33:31 -07:00
|
|
|
z.scratch[0] = 0x78
|
2009-09-29 20:47:05 -06:00
|
|
|
// The next two bits is the FLEVEL (compression level). The four values are:
|
|
|
|
// 0=fastest, 1=fast, 2=default, 3=best.
|
2011-04-15 16:32:03 -06:00
|
|
|
// The next bit, FDICT, is set if a dictionary is given.
|
2009-09-29 20:47:05 -06:00
|
|
|
// The final five FCHECK bits form a mod-31 checksum.
|
|
|
|
switch level {
|
|
|
|
case 0, 1:
|
2011-04-15 16:32:03 -06:00
|
|
|
z.scratch[1] = 0 << 6
|
2009-09-29 20:47:05 -06:00
|
|
|
case 2, 3, 4, 5:
|
2011-04-15 16:32:03 -06:00
|
|
|
z.scratch[1] = 1 << 6
|
2009-09-29 20:47:05 -06:00
|
|
|
case 6, -1:
|
2011-04-15 16:32:03 -06:00
|
|
|
z.scratch[1] = 2 << 6
|
2009-09-29 20:47:05 -06:00
|
|
|
case 7, 8, 9:
|
2011-04-15 16:32:03 -06:00
|
|
|
z.scratch[1] = 3 << 6
|
2009-09-29 20:47:05 -06:00
|
|
|
default:
|
2009-11-09 13:07:39 -07:00
|
|
|
return nil, os.NewError("level out of range")
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
2011-04-15 16:32:03 -06:00
|
|
|
if dict != nil {
|
|
|
|
z.scratch[1] |= 1 << 5
|
|
|
|
}
|
|
|
|
z.scratch[1] += uint8(31 - (uint16(z.scratch[0])<<8+uint16(z.scratch[1]))%31)
|
2009-12-15 16:33:31 -07:00
|
|
|
_, err := w.Write(z.scratch[0:2])
|
2009-09-29 20:47:05 -06:00
|
|
|
if err != nil {
|
2009-11-09 13:07:39 -07:00
|
|
|
return nil, err
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
2011-04-15 16:32:03 -06:00
|
|
|
if dict != nil {
|
|
|
|
// The next four bytes are the Adler-32 checksum of the dictionary.
|
|
|
|
checksum := adler32.Checksum(dict)
|
|
|
|
z.scratch[0] = uint8(checksum >> 24)
|
|
|
|
z.scratch[1] = uint8(checksum >> 16)
|
|
|
|
z.scratch[2] = uint8(checksum >> 8)
|
|
|
|
z.scratch[3] = uint8(checksum >> 0)
|
|
|
|
_, err = w.Write(z.scratch[0:4])
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2009-12-15 16:33:31 -07:00
|
|
|
z.w = w
|
2011-05-11 15:00:19 -06:00
|
|
|
z.compressor = flate.NewWriterDict(w, level, dict)
|
2009-12-15 16:33:31 -07:00
|
|
|
z.digest = adler32.New()
|
|
|
|
return z, nil
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
|
|
|
|
2011-04-15 16:32:03 -06:00
|
|
|
func (z *Writer) Write(p []byte) (n int, err os.Error) {
|
2009-09-29 20:47:05 -06:00
|
|
|
if z.err != nil {
|
2009-11-09 13:07:39 -07:00
|
|
|
return 0, z.err
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
|
|
|
if len(p) == 0 {
|
2009-11-09 13:07:39 -07:00
|
|
|
return 0, nil
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
2010-05-07 15:32:34 -06:00
|
|
|
n, err = z.compressor.Write(p)
|
2009-09-29 20:47:05 -06:00
|
|
|
if err != nil {
|
2009-12-15 16:33:31 -07:00
|
|
|
z.err = err
|
|
|
|
return
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
2009-12-15 16:33:31 -07:00
|
|
|
z.digest.Write(p)
|
|
|
|
return
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
|
|
|
|
2011-04-15 16:32:03 -06:00
|
|
|
// Flush flushes the underlying compressor.
|
|
|
|
func (z *Writer) Flush() os.Error {
|
|
|
|
if z.err != nil {
|
|
|
|
return z.err
|
|
|
|
}
|
|
|
|
z.err = z.compressor.Flush()
|
|
|
|
return z.err
|
|
|
|
}
|
|
|
|
|
2010-05-07 15:32:34 -06:00
|
|
|
// Calling Close does not close the wrapped io.Writer originally passed to NewWriter.
|
2011-04-15 16:32:03 -06:00
|
|
|
func (z *Writer) Close() os.Error {
|
2009-09-29 20:47:05 -06:00
|
|
|
if z.err != nil {
|
2009-11-09 13:07:39 -07:00
|
|
|
return z.err
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
2010-05-07 15:32:34 -06:00
|
|
|
z.err = z.compressor.Close()
|
2009-09-29 20:47:05 -06:00
|
|
|
if z.err != nil {
|
2009-11-09 13:07:39 -07:00
|
|
|
return z.err
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|
2009-12-15 16:33:31 -07:00
|
|
|
checksum := z.digest.Sum32()
|
2009-09-29 20:47:05 -06:00
|
|
|
// ZLIB (RFC 1950) is big-endian, unlike GZIP (RFC 1952).
|
2009-12-15 16:33:31 -07:00
|
|
|
z.scratch[0] = uint8(checksum >> 24)
|
|
|
|
z.scratch[1] = uint8(checksum >> 16)
|
|
|
|
z.scratch[2] = uint8(checksum >> 8)
|
|
|
|
z.scratch[3] = uint8(checksum >> 0)
|
|
|
|
_, z.err = z.w.Write(z.scratch[0:4])
|
|
|
|
return z.err
|
2009-09-29 20:47:05 -06:00
|
|
|
}
|