mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-23 10:31:02 +00:00
a207eb6bd2
GitOrigin-RevId: 6cb8d8cec6ca7d0edb055e139f6e8b05512aa4ec
113 lines
2.2 KiB
C
113 lines
2.2 KiB
C
#include "defs.h"
|
|
#include "mac_from_unix_data.h"
|
|
|
|
#include <Quickdraw.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
static unsigned short *gFromUnixData;
|
|
|
|
static void print_uerr(const unsigned char *start, const unsigned char *end) {
|
|
const unsigned char *ptr;
|
|
int lineno = 1, colno = 0;
|
|
for (ptr = start; ptr != end; ptr++) {
|
|
colno++;
|
|
if (*ptr == '\r') {
|
|
lineno++;
|
|
colno = 0;
|
|
}
|
|
}
|
|
fprintf(stderr, "## Error: line %d, column %d: invalid character\n", lineno,
|
|
colno);
|
|
}
|
|
|
|
int mac_from_unix(unsigned char **outptr, unsigned char *outend,
|
|
const unsigned char **inptr, const unsigned char *inend) {
|
|
unsigned char *op = *outptr;
|
|
const unsigned char *ip = *inptr, *curpos;
|
|
const unsigned short *table;
|
|
unsigned entry, value, state, c, last, curvalue;
|
|
|
|
table = gFromUnixData;
|
|
if (table == NULL) {
|
|
print_err("table not loaded");
|
|
return 1;
|
|
}
|
|
last = 0;
|
|
while (ip < inend && op < outend) {
|
|
c = *ip;
|
|
if (c < 128) {
|
|
if (c == '\n') {
|
|
c = '\r';
|
|
}
|
|
if (op == outend) {
|
|
break;
|
|
}
|
|
*op = c;
|
|
last = c;
|
|
ip++;
|
|
op++;
|
|
} else {
|
|
// Find the longest matching Unicode character.
|
|
state = table[last] & 0xff00;
|
|
if (state != 0) {
|
|
// Continue from previous character.
|
|
op--;
|
|
curpos = ip;
|
|
curvalue = last;
|
|
} else {
|
|
// Continue from current character.
|
|
curpos = NULL;
|
|
curvalue = 0;
|
|
}
|
|
do {
|
|
entry = table[*ip++];
|
|
state = entry & 0xff00;
|
|
value = entry & 0xff;
|
|
if (value != 0) {
|
|
curpos = ip;
|
|
curvalue = value;
|
|
}
|
|
} while (state != 0 && ip < inend);
|
|
if (curvalue == 0) {
|
|
print_uerr(*outptr, op);
|
|
*outptr = op;
|
|
*inptr = ip;
|
|
return 1;
|
|
}
|
|
ip = curpos;
|
|
*op++ = curvalue;
|
|
}
|
|
}
|
|
*outptr = op;
|
|
*inptr = ip;
|
|
return 0;
|
|
}
|
|
|
|
int mac_from_unix_init(void) {
|
|
Ptr ptr, src, dest;
|
|
OSErr err;
|
|
|
|
if (gFromUnixData != NULL) {
|
|
return 0;
|
|
}
|
|
ptr = NewPtr(FROM_UNIX_DATALEN);
|
|
err = MemError();
|
|
if (err != 0) {
|
|
print_errcode(err, "out of memory");
|
|
return 1;
|
|
}
|
|
src = (void *)kFromUnixData;
|
|
dest = ptr;
|
|
UnpackBits(&src, &dest, FROM_UNIX_DATALEN);
|
|
gFromUnixData = (void *)ptr;
|
|
return 0;
|
|
}
|
|
|
|
void mac_from_unix_term(void) {
|
|
if (gFromUnixData != NULL) {
|
|
DisposePtr((void *)gFromUnixData);
|
|
gFromUnixData = NULL;
|
|
}
|
|
}
|