forked from dmacvicar/qemacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jistoqe.c
182 lines (162 loc) · 5.25 KB
/
jistoqe.c
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
/*
* Convert Unicode JIS tables to QEmacs format
*
* Copyright (c) 2002 Fabrice Bellard.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "cutils.h"
#define getline my_getline /* prevent name clash */
static char *getline(char *buf, int buf_size, FILE *f, int strip_comments)
{
for (;;) {
char *str;
int len;
str = fgets(buf, buf_size, f);
if (!str)
return NULL;
len = strlen(buf);
if (len > 0 && buf[len - 1] == '\n') {
buf[len - 1] = '\0';
}
if (buf[0] == 26) {
/* handle obsolete DOS ctrl-Z marker */
return NULL;
}
if (strip_comments && (buf[0] == '\0' || buf[0] == '#'))
continue;
return str;
}
}
/* handle jis208 or jis212 table */
static void handle_jis(FILE **fp, const char *name, const char *filename)
{
int c1, c2, b1, b2, b1_max, b2_max, i, j, nb, n;
int table[94*94];
int table_b2_max[94];
char line[1024];
const char *p;
int is_jis208;
if (!strcmp(name, "JIS0208")) {
is_jis208 = 1;
name = "jis208";
} else
if (!strcmp(name, "JIS0212")) {
is_jis208 = 0;
name = "jis212";
} else {
fprintf(stderr, "%s: unsupported JIS file\n", filename);
return;
}
memset(table, 0, sizeof(table));
memset(table_b2_max, 0, sizeof(table_b2_max));
b1_max = 0;
b2_max = 0;
nb = 0;
for (;;) {
if (!getline(line, sizeof(line), *fp, 1))
break;
p = line;
if (is_jis208)
c1 = strtol(p, (char **)&p, 0);
c1 = strtol(p, (char **)&p, 0);
c2 = strtol(p, (char **)&p, 0);
b1 = (c1 >> 8) & 0xff;
b2 = (c1) & 0xff;
/* compress the code */
b1 = b1 - 0x21;
b2 = b2 - 0x21;
if (b1 > b1_max)
b1_max = b1;
if (b2 > b2_max)
b2_max = b2;
if (b2 > table_b2_max[b1])
table_b2_max[b1] = b2;
table[b1 * 94 + b2] = c2;
nb++;
}
printf("/* max row = %d. The following rows are excluded:\n ", b1_max);
n = 0;
for (i = 0; i <= b1_max; i++) {
if (table_b2_max[i] == 0) {
printf(" %d", i);
} else {
n++;
}
}
printf(", density=%d%% */\n", nb * 100 / (n * (b2_max + 1)));
printf("static unsigned short const table_%s[%d] = {\n",
name, n * (b2_max + 1));
n = 0;
for (i = 0; i <= b1_max; i++) {
if (table_b2_max[i] != 0) {
for (j = 0; j <= b2_max; j++) {
if ((n & 7) == 0)
printf(" ");
printf(" 0x%04x,", table[i * 94 + j]);
if ((n++ & 7) == 7)
printf("\n");
}
}
}
if ((n & 7) != 0)
printf("\n");
printf("};\n\n");
}
int main(int argc, char **argv)
{
int i;
const char *filename;
char name[256];
FILE *f;
printf("/* This file was generated automatically by jistoqe */\n");
printf("\n" "/*"
"\n" " * JIS Tables for QEmacs"
"\n" " * Copyright (c) 2002 Fabrice Bellard."
"\n" " *"
"\n" " * This library is free software; you can redistribute it and/or"
"\n" " * modify it under the terms of the GNU Lesser General Public"
"\n" " * License as published by the Free Software Foundation; either"
"\n" " * version 2 of the License, or (at your option) any later version."
"\n" " *"
"\n" " * This library is distributed in the hope that it will be useful,"
"\n" " * but WITHOUT ANY WARRANTY; without even the implied warranty of"
"\n" " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU"
"\n" " * Lesser General Public License for more details."
"\n" " *"
"\n" " * You should have received a copy of the GNU Lesser General Public"
"\n" " * License along with this library; if not, write to the Free Software"
"\n" " * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
"\n" " */"
"\n" ""
"\n");
for (i = 1; i < argc; i++) {
filename = argv[i];
pstrcpy(name, sizeof(name), get_basename(filename));
strip_extension(name);
f = fopen(filename, "r");
if (!f) {
perror(filename);
exit(1);
}
handle_jis(&f, name, filename);
fclose(f);
}
return 0;
}