summaryrefslogtreecommitdiff
path: root/src/eightbit.c
blob: da1cd4bafe25483377f8544af04045766eb128c6 (plain)
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/* stateless 8bit encoding support => no support for CP1255, 1258 or TCVN
 * functions in this file have an identical API to the encoding functions
 * in UnicodeLib. see unicode/encoding.h for documentation. */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "internal.h"

#ifndef __riscos__
#define DIR_SEP "/"
#else
#define DIR_SEP "."
#endif

struct table_entry {
	const char *canon;
	const char *filename;
};

/* Table should be ordered by enc_num */
static const struct table_entry mapping_table[] = {
	{ "US-ASCII", 0 },
	{ "HP-ROMAN8", "HPR8" },
	{ "MACINTOSH", "Apple" DIR_SEP "Roman"},
	{ "IBM437", "Microsoft" DIR_SEP "CP437" },
	{ "IBM775", "Microsoft" DIR_SEP "CP775" },
	{ "IBM850", "Microsoft" DIR_SEP "CP850" },
	{ "IBM852", "Microsoft" DIR_SEP "CP852" },
	{ "IBM855", "Microsoft" DIR_SEP "CP855" },
	{ "IBM857", "Microsoft" DIR_SEP "CP857" },
	{ "IBM860", "Microsoft" DIR_SEP "CP860" },
	{ "IBM861", "Microsoft" DIR_SEP "CP861" },
	{ "IBM862", "Microsoft" DIR_SEP "CP862" },
	{ "IBM863", "Microsoft" DIR_SEP "CP863" },
	{ "IBM864", "Microsoft" DIR_SEP "CP864" },
	{ "IBM865", "Microsoft" DIR_SEP "CP865" },
	{ "IBM866", "Microsoft" DIR_SEP "CP866" },
	{ "IBM869", "Microsoft" DIR_SEP "CP869" },
	{ "KOI8-R", "KOI8-R" },
	{ "KOI8-U", "KOI8-U" },
	{ "IBM00858", "Microsoft" DIR_SEP "CP858" },
	{ "WINDOWS-1250", "Microsoft" DIR_SEP "CP1250" },
	{ "WINDOWS-1251", "Microsoft" DIR_SEP "CP1251" },
	{ "WINDOWS-1252", "Microsoft" DIR_SEP "CP1252" },
	{ "WINDOWS-1253", "Microsoft" DIR_SEP "CP1253" },
	{ "WINDOWS-1254", "Microsoft" DIR_SEP "CP1254" },
	{ "WINDOWS-1256", "Microsoft" DIR_SEP "CP1256" },
	{ "WINDOWS-1257", "Microsoft" DIR_SEP "CP1257" },
	{ "CP737", "Microsoft" DIR_SEP "CP737" },
	{ "CP853", "Microsoft" DIR_SEP "CP853" },
	{ "CP856", "Microsoft" DIR_SEP "CP856" },
	{ "CP874", "Microsoft" DIR_SEP "CP874" },
	{ "CP922", "Microsoft" DIR_SEP "CP922" },
	{ "CP1046", "Microsoft" DIR_SEP "CP1046" },
	{ "CP1124", "Microsoft" DIR_SEP "CP1124" },
	{ "CP1125", "Microsoft" DIR_SEP "CP1125" },
	{ "CP1129", "Microsoft" DIR_SEP "CP1129" },
	{ "CP1133", "Microsoft" DIR_SEP "CP1133" },
	{ "CP1161", "Microsoft" DIR_SEP "CP1161" },
	{ "CP1162", "Microsoft" DIR_SEP "CP1162" },
	{ "CP1163", "Microsoft" DIR_SEP "CP1163" },
	{ "GEORGIAN-ACADEMY", "GeorgA" },
	{ "GEORGIAN-PS", "GeorgPS" },
	{ "KOI8-RU", "KOI8-RU" },
	{ "KOI8-T", "KOI8-T" },
	{ "MACARABIC", "Apple" DIR_SEP "Arabic" },
	{ "MACCROATIAN", "Apple" DIR_SEP "Croatian" },
	{ "MACGREEK", "Apple" DIR_SEP "Greek" },
	{ "MACHEBREW", "Apple" DIR_SEP "Hebrew" },
	{ "MACICELAND", "Apple" DIR_SEP "Iceland" },
	{ "MACROMANIA", "Apple" DIR_SEP" Romania" },
	{ "MACTHAI", "Apple" DIR_SEP "Thai" },
	{ "MACTURKISH", "Apple" DIR_SEP "Turkish" },
	{ "MULELAO-1", "Mulelao" },
	{ "MACCYRILLIC", "Apple" DIR_SEP "Cyrillic" },
	{ "MACUKRAINE", "Apple" DIR_SEP "Ukrainian" },
	{ "MACCENTRALEUROPE", "Apple" DIR_SEP "CentEuro" },
};

#define TABLE_SIZE (sizeof(mapping_table) / sizeof(mapping_table[0]))

static const char *get_table_path(const char *table);

/**
 * Look up an encoding number, based on its name
 *
 * \param name  The encoding name
 * \return The encoding number, or 0 if not found
 */
int iconv_eightbit_number_from_name(const char *name)
{
	struct canon *c;
	int i;

	if (!name)
		return 0;

	c = alias_canonicalise(name);
	if (!c)
		return 0;

	LOG(("searching for: %s", name));

	for (i = 0; i != TABLE_SIZE; i++) {
		if (strcasecmp(mapping_table[i].canon, c->name) == 0) {
			LOG(("found: %d", c->mib_enum | (1<<30)));
			return c->mib_enum | (1<<30);
		}
	}

	return 0;
}

/**
 * Read an 8bit encoded string
 *
 * \param e  The encoding context
 * \param callback  Callback function to handle generated UCS characters
 * \param s  The input string
 * \param n  The length (in bytes) of the input
 * \param handle  Callback private data pointer
 * \return The number of characters processed
 */
unsigned iconv_eightbit_read(struct encoding_context *e,
		int (*callback)(void *handle, UCS4 c), const char *s,
		unsigned int n, void *handle)
{
	UCS4 c;
	unsigned int pos;

	if (!e || !callback || !s)
		return 0;

	for (pos = 0; pos != n; pos++) {

		c = ((unsigned char *) s)[pos];

		LOG(("read: %d (%d)", c, pos));

		if (c < 0x80) {
			/* ASCII */
			if (callback(handle, c)) {
				/* Used character, so update pos */
				pos++;
				break;
			}
		}
		else if (c < 0x100 && e->intab) {
			LOG(("maps to: %x", e->intab[c - 0x80]));
			/* Look up in mapping table */
			if (e->intab[c - 0x80] != 0xffff) {
				if (callback(handle, e->intab[c - 0x80])) {
					pos++;
					break;
				}
			}
			else {
				/* character not defined in this encoding */
				if (callback(handle, 0xfffd)) {
					pos++;
					break;
				}
			}
		} else {
			/* character not defined in this encoding */
			if (callback(handle, 0xfffd)) {
				pos++;
				break;
			}
		}
	}

	return pos;
}

/**
 * Write a UCS character in an 8bit encoding
 *
 * \param e  The encoding context
 * \param c  The UCS4 character
 * \param buf  Indirect pointer to output buffer
 * \param bufsize  Pointer to size of output buffer
 * \return 1 on success, 0 if bufsize is too small, -1 if unrepresentable.
 */
int iconv_eightbit_write(struct encoding_context *e, UCS4 c,
		char **buf, int *bufsize)
{
	int i;

	/* sanity check input */
	if (!e || !bufsize || !buf || !*buf)
		return 0;

	/* buffer full */
	if (--*bufsize < 0)
		return 0;

	if (c < 0x0080)
		/* ASCII */
		*(*buf)++ = (char)c;
	else {
		/* Perform reverse table lookup */
		for (i = 0; i != 0x80; i++) {
			if (e->outtab && e->outtab[i] == c) {
				*(*buf)++ = (char)(i+0x80);
				break;
			}
		}
		if (i == 0x80) {
			/* Nothing was written => fixup bufsize */
			++*bufsize;
			return -1;
		}
	}

	LOG(("written: %d", *(*buf-1)));

	return 1;
}

/**
 * Load an 8bit encoding
 *
 * \param enc_num  The encoding number to load
 * \return Pointer to lookup table for encoding, or NULL on error
 */
unsigned short *iconv_eightbit_new(int enc_num)
{
	const char *filename = NULL;
	const char *name;
	FILE *fp;
	unsigned int len;
	int i;
	unsigned short *ret;

	name = mibenum_to_name(enc_num);
	if (!name)
		return NULL;

	/* Lookup filename in table */
	for (i = 0; i != TABLE_SIZE; i++)
		if (strcasecmp(mapping_table[i].canon, name) == 0) {
			if (mapping_table[i].filename == 0)
				return NULL;

			filename = get_table_path(mapping_table[i].filename);

			break;
		}

	LOG(("opening: %s", filename));

	/* Open */
	fp = fopen(filename, "rb");
	if (!fp) {
		return NULL;
	}

	/* Get extent */
	fseek(fp, 0, SEEK_END);
	len = (unsigned int)ftell(fp);
	fseek(fp, 0, SEEK_SET);

	/* Unexpected length => give up */
	if (len != 256) {
		fclose(fp);
		return NULL;
	}

	/* Create buffer */
	ret = calloc(128, sizeof(short));
	if (!ret) {
		fclose(fp);
		return NULL;
	}

	fread(ret, 128, sizeof(short), fp);

	fclose(fp);

	return ret;
}

/**
 * Delete any 8bit encodings used by a context
 *
 * \param e  The encoding context
 */
void iconv_eightbit_delete(struct encoding_context *e)
{
	if (!e)
		return;

	if (e->intab)
		free(e->intab);
	if (e->outtab)
		free(e->outtab);
}

const char *get_table_path(const char *table)
{
	const char *ucpath;
	int plen;
	static char path[4096];

	/* Get !Unicode resource path */
#ifdef __riscos__
	ucpath = "Unicode:";
#else
	ucpath = getenv("UNICODE_DIR");
#endif

	if (ucpath == NULL)
		return NULL;

	strncpy(path, ucpath, sizeof(path));
	plen = strlen(ucpath);
#ifndef __riscos__
	if (path[plen - 1] != '/') {
		strncat(path, "/", sizeof(path) - plen - 1);
		plen += 1;
	}
#endif

	strncat(path, "Encodings" DIR_SEP, sizeof(path) - plen - 1);

	strncat(path, table, sizeof(path) - plen - 1);
	path[sizeof(path) - 1] = '\0';

	return path;
}