File: lzc.c

package info (click to toggle)
macutils 2.0b3-17
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,256 kB
  • sloc: ansic: 12,737; makefile: 661
file content (197 lines) | stat: -rwxr-xr-x 4,425 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
#include <string.h>
#include "macunpack.h"
#ifdef LZC
#include "globals.h"
#include "lzc.h"
#include "../util/util.h"
#include "../fileio/machdr.h"
#include "../fileio/wrfile.h"
#include "../util/masks.h"

extern void de_compress();
extern void core_compress();
extern void mcb();

static void lzc_zivm();
static void lzc_wrfile();
static void lzc_zivu();

void lzc(ohdr)
char *ohdr;
{
    core_compress((char *)NULL);
    if(!strncmp(ohdr + I_TYPEOFF, "ZIVM", 4)) {
	lzc_zivm(ohdr);
    } else {
	lzc_zivu(ohdr);
    }
}

static void lzc_zivm(ohdr)
char *ohdr;
{
    char hdr[HEADERBYTES];
    unsigned long dataLength, rsrcLength, dataCLength, rsrcCLength;
    char ftype[5], fauth[5];

    if(fread(hdr, 1, HEADERBYTES, infp) != HEADERBYTES) {
	(void)fprintf(stderr, "Can't read file header\n");
#ifdef SCAN
	do_error("macunpack: Can't read file header");
#endif /* SCAN */
	exit(1);
    }
    if(strncmp(hdr, MAGIC1, 4)) {
	(void)fprintf(stderr, "Magic header mismatch\n");
#ifdef SCAN
	do_error("macunpack: Magic header mismatch");
#endif /* SCAN */
	exit(1);
    }
    dataLength = get4(hdr + C_DLENOFF);
    dataCLength = get4(hdr + C_DLENOFFC);
    rsrcLength = get4(hdr + C_RLENOFF);
    rsrcCLength = get4(hdr + C_RLENOFFC);

    write_it = 1;
    if(list) {
	copy(info, ohdr, INFOBYTES);
	copy(info + I_TYPEOFF, hdr + C_TYPEOFF, 4);
	copy(info + I_AUTHOFF, hdr + C_AUTHOFF, 4);
	copy(info + I_DLENOFF, hdr + C_DLENOFF, 4);
	copy(info + I_RLENOFF, hdr + C_RLENOFF, 4);
	copy(info + I_CTIMOFF, hdr + C_CTIMOFF, 4);
	copy(info + I_MTIMOFF, hdr + C_MTIMOFF, 4);
	copy(info + I_FLAGOFF, hdr + C_FLAGOFF, 8);

	transname(ohdr + I_NAMEOFF + 1, text, (int)ohdr[I_NAMEOFF]);
	transname(hdr + C_TYPEOFF, ftype, 4);
	transname(hdr + C_AUTHOFF, fauth, 4);
	do_indent(indent);
	(void)fprintf(stderr,
		"name=\"%s\", type=%4.4s, author=%4.4s, data=%ld, rsrc=%ld",
		text, ftype, fauth, (long)dataLength, (long)rsrcLength);
	if(info_only) {
	    write_it = 0;
	}
	if(query) {
	    write_it = do_query();
	} else {
	    (void)fputc('\n', stderr);
	}
    }

    if(write_it) {
	define_name(text);
    }
    if(write_it) {
	start_info(info, rsrcLength, dataLength);
    }
    if(verbose) {
	(void)fprintf(stderr, "\tData: ");
    }
    if(write_it) {
	start_data();
    }
    lzc_wrfile(dataLength, dataCLength);
    if(verbose) {
	(void)fprintf(stderr, ", Rsrc: ");
    }
    if(write_it) {
	start_rsrc();
    }
    lzc_wrfile(rsrcLength, rsrcCLength);
    if(write_it) {
	end_file();
    }
    if(verbose) {
	(void)fprintf(stderr, ".\n");
    }
}

static void lzc_wrfile(obytes, ibytes)
unsigned long obytes, ibytes;
{
    int n, nbits;
    char subheader[3];

    if(ibytes == 0) {
	if(verbose) {
	    (void)fprintf(stderr, "empty");
	}
	return;
    }
    if(ibytes == obytes) {
	if(verbose) {
	    (void)fprintf(stderr, "No compression");
	}
	if(write_it) {
	    n = fread(out_buffer, 1, (int)ibytes, infp);
	    if(n != ibytes) {
		(void)fprintf(stderr, "Premature EOF\n");
#ifdef SCAN
		do_error("macunpack: Premature EOF");
#endif /* SCAN */
		exit(1);
	    }
	} else {
	    n = ibytes;
	    while(n-- > 0) {
		if(getc(infp) == EOF) {
		    (void)fprintf(stderr, "Premature EOF\n");
#ifdef SCAN
		    do_error("macunpack: Premature EOF");
#endif /* SCAN */
		    exit(1);
		}
	    }
	}
    } else {
	if(fread(subheader, 1, 3, infp) != 3) {
	    (void)fprintf(stderr, "Premature EOF\n");
#ifdef SCAN
	    do_error("macunpack: Premature EOF");
#endif /* SCAN */
	    exit(1);
	}
	if(strncmp(subheader, MAGIC2, 2)) {
	    (void)fprintf(stderr, "Magic subheader mismatch\n");
#ifdef SCAN
	    do_error("macunpack: Magic subheader mismatch");
#endif /* SCAN */
	    exit(1);
	}
	nbits = subheader[2] & 0x7f;
	if(verbose) {
	    (void)fprintf(stderr, "LZC(%d) compressed (%4.1f%%)",
		    nbits, 100.0 * ibytes / obytes);
	}
	if(write_it) {
	    de_compress(ibytes - 3, nbits);
	} else {
	    n = ibytes - 3;
	    while(n-- > 0) {
		if(getc(infp) == EOF) {
		    (void)fprintf(stderr, "Premature EOF\n");
#ifdef SCAN
		    do_error("macunpack: Premature EOF");
#endif /* SCAN */
		    exit(1);
		}
	    }
	}
    }
}

static void lzc_zivu(ohdr)
char *ohdr;
{
    (void)fprintf(stderr,
	    "\tMacCompress(Unix) not yet implemented, copied as MacBinary\n");
    mcb(ohdr, (unsigned long)in_rsrc_size, (unsigned long)in_data_size,
	in_ds + in_rs);
}
#else /* LZC */
int lzc; /* keep lint and some compilers happy */
#endif /* LZC */