-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkmap.c
244 lines (227 loc) · 6.87 KB
/
kmap.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
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
/*
* Kmap file based input method handling for QEmacs.
*
* Copyright (c) 2000 Fabrice Bellard.
* Copyright (c) 2002-2008 Charlie Gordon.
*
* 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 "qe.h"
#ifdef CONFIG_MMAP
#include <sys/mman.h>
#endif
/* XXX: use an edit buffer to access the kmap !!!! */
/* parse the internal compressed input method format */
static int kmap_input(int *match_buf, int match_buf_size,
int *match_len_ptr, const u8 *data,
const unsigned int *buf, int len)
{
const u8 *p, *p1, *match_extra;
int c, flag, i, l, l1, match_len, match_char, match_count, match_real_len;
int match_olen;
int nb_prefixes, last_outputc, match, prefix_len, trailing_space, olen;
p = data;
nb_prefixes = p[0] & 0x7f;
trailing_space = p[0] & 0x80;
p++;
prefix_len = 0;
if (nb_prefixes > 0) {
p1 = p;
for (i = 0; i < nb_prefixes; i++) {
if (buf[0] == p1[0])
goto prefix_match;
p1 += 4;
}
return INPUTMETHOD_NOMATCH;
prefix_match:
p += nb_prefixes * 4 + (p1[1] << 16) + (p1[2] << 8) + p1[3];
prefix_len = 1;
}
match_len = 0;
match_real_len = 0;
match_char = 0;
match_count = 0;
last_outputc = 0;
match_olen = 0;
match_extra = NULL;
for (;;) {
match = 1;
olen = 1;
l1 = prefix_len; /* length of input pattern */
for (;;) {
/* c = 0x00 end of table
* c = 0x01..0x1d delta unicode
* c = 0x1e unicode output mapping follows
* c = 0x1f unicode input char follows.
* c = 0x20..0x7f input character
* c = 0x80 unused
* c = 0x81 unused
* c = 0x82..0x9d extra unicode outputs follow
* c = 0x9e first unicode output mapping follows
* c = 0x9f last unicode input char follows and delta==1.
* c = 0xa0..0xff last input character and delta==1
*/
c = *p++;
flag = c & 0x80;
c &= 0x7f;
if (c == 0) {
/* end of table / unused */
goto the_end;
} else
if (c < 0x1e) {
if (flag) {
/* extra output glyphs */
olen = c;
} else {
/* delta */
last_outputc += c;
}
break;
} else
if (c == 0x1e) {
/* explicit output */
last_outputc = (p[0] << 8) | p[1];
p += 2;
if (flag)
continue;
else
break;
} else
if (c == 0x1f) {
/* unicode value */
c = (p[0] << 8) | p[1];
p += 2;
}
if (l1 < len && c != (int)buf[l1])
match = 0;
l1++;
if (flag) {
/* delta = 1 */
last_outputc++;
break;
}
}
if (trailing_space) {
if (l1 < len && ' ' != buf[l1])
match = 0;
l1++;
}
if (match) {
l = l1;
if (l > len)
l = len;
if (l == match_len) {
match_count++;
} else
if (l > match_len) {
match_len = l;
match_real_len = l1;
match_char = last_outputc;
match_count = 1;
match_olen = olen;
match_extra = p;
}
}
p += (olen - 1) << 1;
}
the_end:
if (match_len == 0) {
return INPUTMETHOD_NOMATCH;
} else
if (match_count > 1 || match_real_len > len) {
return INPUTMETHOD_MORECHARS;
} else {
*match_len_ptr = match_len;
if (match_buf_size > 0) {
match_buf[0] = match_char;
p = match_extra;
for (i = 1; i < match_olen && i < match_buf_size; i++, p += 2) {
match_buf[i] = (p[0] << 8) + p[1];
}
}
return match_olen;
}
}
#ifdef CONFIG_MMAP
static void *input_method_map;
static size_t input_method_size;
#endif
static void *input_method_ptr;
int load_input_methods(void)
{
char buf[MAX_FILENAME_SIZE];
ssize_t file_size;
int fd, offset;
const unsigned char *file_ptr = NULL, *p;
InputMethod *m;
if (find_resource_file(buf, sizeof(buf), "kmaps") < 0)
return -1;
fd = open(buf, O_RDONLY);
if (fd < 0)
return -1;
file_size = lseek(fd, 0, SEEK_END);
if (file_size <= 0)
goto fail;
lseek(fd, 0, SEEK_SET);
#ifdef CONFIG_MMAP
input_method_map = mmap(NULL, file_size, PROT_READ, MAP_SHARED, fd, 0);
if (input_method_map != (void*)MAP_FAILED) {
file_ptr = input_method_map;
input_method_size = file_size;
}
#endif
if (!file_ptr) {
file_ptr = input_method_ptr = qe_malloc_array(char, file_size);
if (input_method_ptr == NULL
|| read(fd, input_method_ptr, file_size) != file_size) {
goto fail;
}
}
if (memcmp(file_ptr, "kmap", 4) != 0)
goto fail;
p = file_ptr + 4;
for (;;) {
offset = (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
p += 4;
if (offset == 0)
break;
/* Should add validation tests */
m = qe_mallocz(InputMethod);
if (m) {
m->data = file_ptr + offset;
m->input_match = kmap_input;
m->name = (const char*)p;
register_input_method(m);
}
p += strlen((const char *)p) + 1;
}
return 0;
fail:
unload_input_methods();
close(fd);
return -1;
}
void unload_input_methods(void)
{
/* Should unregister input methods, but this is only called upon exit */
#ifdef CONFIG_MMAP
if (input_method_map && input_method_map != (void*)MAP_FAILED) {
munmap(input_method_map, input_method_size);
input_method_map = NULL;
input_method_size = 0;
}
#endif
qe_free(&input_method_ptr);
}