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
|
#include "globals.h"
#include "../fileio/machdr.h"
#include "../fileio/wrfile.h"
#include "../util/masks.h"
#include "../util/util.h"
static int mcb_read;
static void mcb_wrfile();
void mcb(hdr, rsrcLength, dataLength, toread)
char *hdr;
unsigned long rsrcLength, dataLength;
int toread;
{
register int i;
int n;
char ftype[5], fauth[5];
mcb_read = toread;
for(i = 0; i < INFOBYTES; i++) {
info[i] = hdr[i];
}
n = hdr[I_NAMEOFF] & BYTEMASK;
if(n > F_NAMELEN) {
n = F_NAMELEN;
}
info[I_NAMEOFF] = n;
transname(hdr + I_NAMEOFF + 1, text, n);
if(hdr[I_LOCKOFF] & 1) {
hdr[I_FLAGOFF + 1] = PROTCT_MASK;
hdr[I_LOCKOFF] &= ~1;
}
write_it = 1;
if(list) {
transname(hdr + I_TYPEOFF, ftype, 4);
transname(hdr + I_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();
}
mcb_wrfile(dataLength);
if(verbose) {
(void)fprintf(stderr, ", Rsrc: ");
}
if(write_it) {
start_rsrc();
}
mcb_wrfile(rsrcLength);
if(write_it) {
end_file();
}
if(verbose) {
(void)fprintf(stderr, ".\n");
}
}
static void mcb_wrfile(ibytes)
unsigned long ibytes;
{
int n;
if(ibytes == 0) {
if(verbose) {
(void)fprintf(stderr, "empty");
}
return;
}
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);
}
mcb_read -= n;
n = ((n + 127) / 128) * 128 - n;
if(n > mcb_read) {
n = mcb_read;
}
mcb_read -= n;
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 {
n = ((ibytes + 127) / 128) * 128;
if(n > mcb_read) {
n = mcb_read;
}
mcb_read -= n;
while(n-- > 0) {
if(getc(infp) == EOF) {
(void)fprintf(stderr, "Premature EOF\n");
#ifdef SCAN
do_error("macunpack: Premature EOF");
#endif /* SCAN */
exit(1);
}
}
}
}
|