1 /* zip.c -- compress files to the gzip or pkzip format
3 Copyright (C) 1997-1999, 2006-2007, 2009-2022 Free Software Foundation, Inc.
4 Copyright (C) 1992-1993 Jean-loup Gailly
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
26 off_t header_bytes
; /* number of bytes in gzip header */
28 /* Speed options for the general purpose bit flag. */
29 enum { SLOW
= 2, FAST
= 4 };
31 /* ===========================================================================
33 * IN assertions: the input and output buffers are cleared.
34 * The variables time_stamp and save_orig_name are initialized.
37 int in
, out
; /* input and output file descriptors */
39 uch flags
= 0; /* general purpose bit flags */
40 ush attr
= 0; /* ascii/binary flag */
41 ush deflate_flags
= 0; /* pkzip -es, -en or -ex equivalent */
48 /* Write the header to the gzip file. See algorithm.doc for the format */
51 put_byte(GZIP_MAGIC
[0]); /* magic header */
52 put_byte(GZIP_MAGIC
[1]);
53 put_byte(DEFLATED
); /* compression method */
58 put_byte(flags
); /* general flags */
59 if (time_stamp
.tv_nsec
< 0)
61 else if (0 < time_stamp
.tv_sec
&& time_stamp
.tv_sec
<= 0xffffffff)
62 stamp
= time_stamp
.tv_sec
;
65 /* It's intended that timestamp 0 generates this warning,
66 since gzip format reserves 0 for something else. */
67 warning ("file timestamp out of range for gzip format");
72 /* Write deflated file to zip file */
76 ct_init(&attr
, &method
);
78 deflate_flags
|= FAST
;
80 deflate_flags
|= SLOW
;
82 put_byte((uch
)deflate_flags
); /* extra flags */
83 put_byte(OS_CODE
); /* OS identifier */
86 char *p
= gzip_base_name (ifname
); /* Don't save the directory part. */
91 header_bytes
= (off_t
)outcnt
;
94 dfltcc_deflate (level
);
101 * (but not on MSDOS -- diet in TSR mode reports an incorrect file size)
103 if (ifile_size
!= -1L && bytes_in
!= ifile_size
) {
104 fprintf(stderr
, "%s: %s: file size changed while zipping\n",
105 program_name
, ifname
);
109 /* Write the crc and uncompressed size */
110 put_long (getcrc ());
111 put_long((ulg
)bytes_in
);
119 /* ===========================================================================
120 * Read a new buffer from the current input file, perform end-of-line
121 * translation, and update the crc and input file size.
122 * IN assertion: size >= 2 (for end-of-line translation)
124 int file_read(buf
, size
)
130 Assert(insize
== 0, "inbuf not empty");
132 len
= read_buffer (ifd
, buf
, size
);
133 if (len
== 0) return (int)len
;
134 if (len
== (unsigned)-1) {
138 updcrc ((uch
*) buf
, len
);
139 bytes_in
+= (off_t
)len
;