rsc.io/go@v0.0.0-20150416155037-e040fd465409/src/archive/zip/writer.go (about)

     1  // Copyright 2011 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package zip
     6  
     7  import (
     8  	"bufio"
     9  	"encoding/binary"
    10  	"errors"
    11  	"hash"
    12  	"hash/crc32"
    13  	"io"
    14  )
    15  
    16  // TODO(adg): support zip file comments
    17  // TODO(adg): support specifying deflate level
    18  
    19  // Writer implements a zip file writer.
    20  type Writer struct {
    21  	cw     *countWriter
    22  	dir    []*header
    23  	last   *fileWriter
    24  	closed bool
    25  }
    26  
    27  type header struct {
    28  	*FileHeader
    29  	offset uint64
    30  }
    31  
    32  // NewWriter returns a new Writer writing a zip file to w.
    33  func NewWriter(w io.Writer) *Writer {
    34  	return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}
    35  }
    36  
    37  // SetOffset sets the offset of the beginning of the zip data within the
    38  // underlying writer. It should be used when the zip data is appended to an
    39  // existing file, such as a binary executable.
    40  // It must be called before any data is written.
    41  func (w *Writer) SetOffset(n int64) {
    42  	if w.cw.count != 0 {
    43  		panic("zip: SetOffset called after data was written")
    44  	}
    45  	w.cw.count = n
    46  }
    47  
    48  // Flush flushes any buffered data to the underlying writer.
    49  // Calling Flush is not normally necessary; calling Close is sufficient.
    50  func (w *Writer) Flush() error {
    51  	return w.cw.w.(*bufio.Writer).Flush()
    52  }
    53  
    54  // Close finishes writing the zip file by writing the central directory.
    55  // It does not (and can not) close the underlying writer.
    56  func (w *Writer) Close() error {
    57  	if w.last != nil && !w.last.closed {
    58  		if err := w.last.close(); err != nil {
    59  			return err
    60  		}
    61  		w.last = nil
    62  	}
    63  	if w.closed {
    64  		return errors.New("zip: writer closed twice")
    65  	}
    66  	w.closed = true
    67  
    68  	// write central directory
    69  	start := w.cw.count
    70  	for _, h := range w.dir {
    71  		var buf [directoryHeaderLen]byte
    72  		b := writeBuf(buf[:])
    73  		b.uint32(uint32(directoryHeaderSignature))
    74  		b.uint16(h.CreatorVersion)
    75  		b.uint16(h.ReaderVersion)
    76  		b.uint16(h.Flags)
    77  		b.uint16(h.Method)
    78  		b.uint16(h.ModifiedTime)
    79  		b.uint16(h.ModifiedDate)
    80  		b.uint32(h.CRC32)
    81  		if h.isZip64() || h.offset > uint32max {
    82  			// the file needs a zip64 header. store maxint in both
    83  			// 32 bit size fields (and offset later) to signal that the
    84  			// zip64 extra header should be used.
    85  			b.uint32(uint32max) // compressed size
    86  			b.uint32(uint32max) // uncompressed size
    87  
    88  			// append a zip64 extra block to Extra
    89  			var buf [28]byte // 2x uint16 + 3x uint64
    90  			eb := writeBuf(buf[:])
    91  			eb.uint16(zip64ExtraId)
    92  			eb.uint16(24) // size = 3x uint64
    93  			eb.uint64(h.UncompressedSize64)
    94  			eb.uint64(h.CompressedSize64)
    95  			eb.uint64(h.offset)
    96  			h.Extra = append(h.Extra, buf[:]...)
    97  		} else {
    98  			b.uint32(h.CompressedSize)
    99  			b.uint32(h.UncompressedSize)
   100  		}
   101  		b.uint16(uint16(len(h.Name)))
   102  		b.uint16(uint16(len(h.Extra)))
   103  		b.uint16(uint16(len(h.Comment)))
   104  		b = b[4:] // skip disk number start and internal file attr (2x uint16)
   105  		b.uint32(h.ExternalAttrs)
   106  		if h.offset > uint32max {
   107  			b.uint32(uint32max)
   108  		} else {
   109  			b.uint32(uint32(h.offset))
   110  		}
   111  		if _, err := w.cw.Write(buf[:]); err != nil {
   112  			return err
   113  		}
   114  		if _, err := io.WriteString(w.cw, h.Name); err != nil {
   115  			return err
   116  		}
   117  		if _, err := w.cw.Write(h.Extra); err != nil {
   118  			return err
   119  		}
   120  		if _, err := io.WriteString(w.cw, h.Comment); err != nil {
   121  			return err
   122  		}
   123  	}
   124  	end := w.cw.count
   125  
   126  	records := uint64(len(w.dir))
   127  	size := uint64(end - start)
   128  	offset := uint64(start)
   129  
   130  	if records > uint16max || size > uint32max || offset > uint32max {
   131  		var buf [directory64EndLen + directory64LocLen]byte
   132  		b := writeBuf(buf[:])
   133  
   134  		// zip64 end of central directory record
   135  		b.uint32(directory64EndSignature)
   136  		b.uint64(directory64EndLen - 12) // length minus signature (uint32) and length fields (uint64)
   137  		b.uint16(zipVersion45)           // version made by
   138  		b.uint16(zipVersion45)           // version needed to extract
   139  		b.uint32(0)                      // number of this disk
   140  		b.uint32(0)                      // number of the disk with the start of the central directory
   141  		b.uint64(records)                // total number of entries in the central directory on this disk
   142  		b.uint64(records)                // total number of entries in the central directory
   143  		b.uint64(size)                   // size of the central directory
   144  		b.uint64(offset)                 // offset of start of central directory with respect to the starting disk number
   145  
   146  		// zip64 end of central directory locator
   147  		b.uint32(directory64LocSignature)
   148  		b.uint32(0)           // number of the disk with the start of the zip64 end of central directory
   149  		b.uint64(uint64(end)) // relative offset of the zip64 end of central directory record
   150  		b.uint32(1)           // total number of disks
   151  
   152  		if _, err := w.cw.Write(buf[:]); err != nil {
   153  			return err
   154  		}
   155  
   156  		// store max values in the regular end record to signal that
   157  		// that the zip64 values should be used instead
   158  		records = uint16max
   159  		size = uint32max
   160  		offset = uint32max
   161  	}
   162  
   163  	// write end record
   164  	var buf [directoryEndLen]byte
   165  	b := writeBuf(buf[:])
   166  	b.uint32(uint32(directoryEndSignature))
   167  	b = b[4:]                 // skip over disk number and first disk number (2x uint16)
   168  	b.uint16(uint16(records)) // number of entries this disk
   169  	b.uint16(uint16(records)) // number of entries total
   170  	b.uint32(uint32(size))    // size of directory
   171  	b.uint32(uint32(offset))  // start of directory
   172  	// skipped size of comment (always zero)
   173  	if _, err := w.cw.Write(buf[:]); err != nil {
   174  		return err
   175  	}
   176  
   177  	return w.cw.w.(*bufio.Writer).Flush()
   178  }
   179  
   180  // Create adds a file to the zip file using the provided name.
   181  // It returns a Writer to which the file contents should be written.
   182  // The name must be a relative path: it must not start with a drive
   183  // letter (e.g. C:) or leading slash, and only forward slashes are
   184  // allowed.
   185  // The file's contents must be written to the io.Writer before the next
   186  // call to Create, CreateHeader, or Close.
   187  func (w *Writer) Create(name string) (io.Writer, error) {
   188  	header := &FileHeader{
   189  		Name:   name,
   190  		Method: Deflate,
   191  	}
   192  	return w.CreateHeader(header)
   193  }
   194  
   195  // CreateHeader adds a file to the zip file using the provided FileHeader
   196  // for the file metadata.
   197  // It returns a Writer to which the file contents should be written.
   198  // The file's contents must be written to the io.Writer before the next
   199  // call to Create, CreateHeader, or Close.
   200  func (w *Writer) CreateHeader(fh *FileHeader) (io.Writer, error) {
   201  	if w.last != nil && !w.last.closed {
   202  		if err := w.last.close(); err != nil {
   203  			return nil, err
   204  		}
   205  	}
   206  
   207  	fh.Flags |= 0x8 // we will write a data descriptor
   208  
   209  	fh.CreatorVersion = fh.CreatorVersion&0xff00 | zipVersion20 // preserve compatibility byte
   210  	fh.ReaderVersion = zipVersion20
   211  
   212  	fw := &fileWriter{
   213  		zipw:      w.cw,
   214  		compCount: &countWriter{w: w.cw},
   215  		crc32:     crc32.NewIEEE(),
   216  	}
   217  	comp := compressor(fh.Method)
   218  	if comp == nil {
   219  		return nil, ErrAlgorithm
   220  	}
   221  	var err error
   222  	fw.comp, err = comp(fw.compCount)
   223  	if err != nil {
   224  		return nil, err
   225  	}
   226  	fw.rawCount = &countWriter{w: fw.comp}
   227  
   228  	h := &header{
   229  		FileHeader: fh,
   230  		offset:     uint64(w.cw.count),
   231  	}
   232  	w.dir = append(w.dir, h)
   233  	fw.header = h
   234  
   235  	if err := writeHeader(w.cw, fh); err != nil {
   236  		return nil, err
   237  	}
   238  
   239  	w.last = fw
   240  	return fw, nil
   241  }
   242  
   243  func writeHeader(w io.Writer, h *FileHeader) error {
   244  	var buf [fileHeaderLen]byte
   245  	b := writeBuf(buf[:])
   246  	b.uint32(uint32(fileHeaderSignature))
   247  	b.uint16(h.ReaderVersion)
   248  	b.uint16(h.Flags)
   249  	b.uint16(h.Method)
   250  	b.uint16(h.ModifiedTime)
   251  	b.uint16(h.ModifiedDate)
   252  	b.uint32(0) // since we are writing a data descriptor crc32,
   253  	b.uint32(0) // compressed size,
   254  	b.uint32(0) // and uncompressed size should be zero
   255  	b.uint16(uint16(len(h.Name)))
   256  	b.uint16(uint16(len(h.Extra)))
   257  	if _, err := w.Write(buf[:]); err != nil {
   258  		return err
   259  	}
   260  	if _, err := io.WriteString(w, h.Name); err != nil {
   261  		return err
   262  	}
   263  	_, err := w.Write(h.Extra)
   264  	return err
   265  }
   266  
   267  type fileWriter struct {
   268  	*header
   269  	zipw      io.Writer
   270  	rawCount  *countWriter
   271  	comp      io.WriteCloser
   272  	compCount *countWriter
   273  	crc32     hash.Hash32
   274  	closed    bool
   275  }
   276  
   277  func (w *fileWriter) Write(p []byte) (int, error) {
   278  	if w.closed {
   279  		return 0, errors.New("zip: write to closed file")
   280  	}
   281  	w.crc32.Write(p)
   282  	return w.rawCount.Write(p)
   283  }
   284  
   285  func (w *fileWriter) close() error {
   286  	if w.closed {
   287  		return errors.New("zip: file closed twice")
   288  	}
   289  	w.closed = true
   290  	if err := w.comp.Close(); err != nil {
   291  		return err
   292  	}
   293  
   294  	// update FileHeader
   295  	fh := w.header.FileHeader
   296  	fh.CRC32 = w.crc32.Sum32()
   297  	fh.CompressedSize64 = uint64(w.compCount.count)
   298  	fh.UncompressedSize64 = uint64(w.rawCount.count)
   299  
   300  	if fh.isZip64() {
   301  		fh.CompressedSize = uint32max
   302  		fh.UncompressedSize = uint32max
   303  		fh.ReaderVersion = zipVersion45 // requires 4.5 - File uses ZIP64 format extensions
   304  	} else {
   305  		fh.CompressedSize = uint32(fh.CompressedSize64)
   306  		fh.UncompressedSize = uint32(fh.UncompressedSize64)
   307  	}
   308  
   309  	// Write data descriptor. This is more complicated than one would
   310  	// think, see e.g. comments in zipfile.c:putextended() and
   311  	// http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7073588.
   312  	// The approach here is to write 8 byte sizes if needed without
   313  	// adding a zip64 extra in the local header (too late anyway).
   314  	var buf []byte
   315  	if fh.isZip64() {
   316  		buf = make([]byte, dataDescriptor64Len)
   317  	} else {
   318  		buf = make([]byte, dataDescriptorLen)
   319  	}
   320  	b := writeBuf(buf)
   321  	b.uint32(dataDescriptorSignature) // de-facto standard, required by OS X
   322  	b.uint32(fh.CRC32)
   323  	if fh.isZip64() {
   324  		b.uint64(fh.CompressedSize64)
   325  		b.uint64(fh.UncompressedSize64)
   326  	} else {
   327  		b.uint32(fh.CompressedSize)
   328  		b.uint32(fh.UncompressedSize)
   329  	}
   330  	_, err := w.zipw.Write(buf)
   331  	return err
   332  }
   333  
   334  type countWriter struct {
   335  	w     io.Writer
   336  	count int64
   337  }
   338  
   339  func (w *countWriter) Write(p []byte) (int, error) {
   340  	n, err := w.w.Write(p)
   341  	w.count += int64(n)
   342  	return n, err
   343  }
   344  
   345  type nopCloser struct {
   346  	io.Writer
   347  }
   348  
   349  func (w nopCloser) Close() error {
   350  	return nil
   351  }
   352  
   353  type writeBuf []byte
   354  
   355  func (b *writeBuf) uint16(v uint16) {
   356  	binary.LittleEndian.PutUint16(*b, v)
   357  	*b = (*b)[2:]
   358  }
   359  
   360  func (b *writeBuf) uint32(v uint32) {
   361  	binary.LittleEndian.PutUint32(*b, v)
   362  	*b = (*b)[4:]
   363  }
   364  
   365  func (b *writeBuf) uint64(v uint64) {
   366  	binary.LittleEndian.PutUint64(*b, v)
   367  	*b = (*b)[8:]
   368  }