nokolexbor 0.3.3 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/nokolexbor/nl_attribute.c +201 -0
- data/ext/nokolexbor/nl_cdata.c +8 -0
- data/ext/nokolexbor/nl_comment.c +6 -0
- data/ext/nokolexbor/nl_document.c +53 -7
- data/ext/nokolexbor/nl_document_fragment.c +9 -0
- data/ext/nokolexbor/nl_error.c +21 -19
- data/ext/nokolexbor/nl_node.c +317 -48
- data/ext/nokolexbor/nl_node_set.c +56 -1
- data/ext/nokolexbor/nl_processing_instruction.c +6 -0
- data/ext/nokolexbor/nl_text.c +6 -0
- data/ext/nokolexbor/nokolexbor.c +1 -0
- data/ext/nokolexbor/nokolexbor.h +2 -0
- data/lib/nokolexbor/document.rb +52 -5
- data/lib/nokolexbor/document_fragment.rb +11 -0
- data/lib/nokolexbor/node.rb +370 -24
- data/lib/nokolexbor/node_set.rb +56 -0
- data/lib/nokolexbor/version.rb +1 -1
- data/lib/nokolexbor.rb +0 -1
- metadata +3 -25
- data/lib/nokolexbor/attribute.rb +0 -18
- data/vendor/lexbor/source/lexbor/encoding/base.h +0 -218
- data/vendor/lexbor/source/lexbor/encoding/big5.c +0 -42839
- data/vendor/lexbor/source/lexbor/encoding/config.cmake +0 -12
- data/vendor/lexbor/source/lexbor/encoding/const.h +0 -65
- data/vendor/lexbor/source/lexbor/encoding/decode.c +0 -3193
- data/vendor/lexbor/source/lexbor/encoding/decode.h +0 -370
- data/vendor/lexbor/source/lexbor/encoding/encode.c +0 -1931
- data/vendor/lexbor/source/lexbor/encoding/encode.h +0 -377
- data/vendor/lexbor/source/lexbor/encoding/encoding.c +0 -252
- data/vendor/lexbor/source/lexbor/encoding/encoding.h +0 -475
- data/vendor/lexbor/source/lexbor/encoding/euc_kr.c +0 -53883
- data/vendor/lexbor/source/lexbor/encoding/gb18030.c +0 -47905
- data/vendor/lexbor/source/lexbor/encoding/iso_2022_jp_katakana.c +0 -159
- data/vendor/lexbor/source/lexbor/encoding/jis0208.c +0 -22477
- data/vendor/lexbor/source/lexbor/encoding/jis0212.c +0 -15787
- data/vendor/lexbor/source/lexbor/encoding/multi.h +0 -53
- data/vendor/lexbor/source/lexbor/encoding/range.c +0 -71
- data/vendor/lexbor/source/lexbor/encoding/range.h +0 -34
- data/vendor/lexbor/source/lexbor/encoding/res.c +0 -222
- data/vendor/lexbor/source/lexbor/encoding/res.h +0 -34
- data/vendor/lexbor/source/lexbor/encoding/single.c +0 -13748
- data/vendor/lexbor/source/lexbor/encoding/single.h +0 -116
@@ -1,377 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (C) 2019 Alexander Borisov
|
3
|
-
*
|
4
|
-
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
-
*/
|
6
|
-
|
7
|
-
#ifndef LEXBOR_ENCODING_ENCODE_H
|
8
|
-
#define LEXBOR_ENCODING_ENCODE_H
|
9
|
-
|
10
|
-
#ifdef __cplusplus
|
11
|
-
extern "C" {
|
12
|
-
#endif
|
13
|
-
|
14
|
-
|
15
|
-
#include "lexbor/encoding/base.h"
|
16
|
-
|
17
|
-
|
18
|
-
LXB_API lxb_status_t
|
19
|
-
lxb_encoding_encode_default(lxb_encoding_encode_t *ctx,const lxb_codepoint_t **cp,
|
20
|
-
const lxb_codepoint_t *end);
|
21
|
-
|
22
|
-
LXB_API lxb_status_t
|
23
|
-
lxb_encoding_encode_auto(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
24
|
-
const lxb_codepoint_t *end);
|
25
|
-
|
26
|
-
LXB_API lxb_status_t
|
27
|
-
lxb_encoding_encode_undefined(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
28
|
-
const lxb_codepoint_t *end);
|
29
|
-
|
30
|
-
LXB_API lxb_status_t
|
31
|
-
lxb_encoding_encode_big5(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
32
|
-
const lxb_codepoint_t *end);
|
33
|
-
|
34
|
-
LXB_API lxb_status_t
|
35
|
-
lxb_encoding_encode_euc_jp(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
36
|
-
const lxb_codepoint_t *end);
|
37
|
-
|
38
|
-
LXB_API lxb_status_t
|
39
|
-
lxb_encoding_encode_euc_kr(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
40
|
-
const lxb_codepoint_t *end);
|
41
|
-
|
42
|
-
LXB_API lxb_status_t
|
43
|
-
lxb_encoding_encode_gbk(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
44
|
-
const lxb_codepoint_t *end);
|
45
|
-
|
46
|
-
LXB_API lxb_status_t
|
47
|
-
lxb_encoding_encode_ibm866(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
48
|
-
const lxb_codepoint_t *end);
|
49
|
-
|
50
|
-
LXB_API lxb_status_t
|
51
|
-
lxb_encoding_encode_iso_2022_jp(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
52
|
-
const lxb_codepoint_t *end);
|
53
|
-
|
54
|
-
LXB_API lxb_status_t
|
55
|
-
lxb_encoding_encode_iso_2022_jp_eof(lxb_encoding_encode_t *ctx);
|
56
|
-
|
57
|
-
LXB_API lxb_status_t
|
58
|
-
lxb_encoding_encode_iso_8859_10(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
59
|
-
const lxb_codepoint_t *end);
|
60
|
-
|
61
|
-
LXB_API lxb_status_t
|
62
|
-
lxb_encoding_encode_iso_8859_13(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
63
|
-
const lxb_codepoint_t *end);
|
64
|
-
|
65
|
-
LXB_API lxb_status_t
|
66
|
-
lxb_encoding_encode_iso_8859_14(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
67
|
-
const lxb_codepoint_t *end);
|
68
|
-
|
69
|
-
LXB_API lxb_status_t
|
70
|
-
lxb_encoding_encode_iso_8859_15(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
71
|
-
const lxb_codepoint_t *end);
|
72
|
-
|
73
|
-
LXB_API lxb_status_t
|
74
|
-
lxb_encoding_encode_iso_8859_16(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
75
|
-
const lxb_codepoint_t *end);
|
76
|
-
|
77
|
-
LXB_API lxb_status_t
|
78
|
-
lxb_encoding_encode_iso_8859_2(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
79
|
-
const lxb_codepoint_t *end);
|
80
|
-
|
81
|
-
LXB_API lxb_status_t
|
82
|
-
lxb_encoding_encode_iso_8859_3(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
83
|
-
const lxb_codepoint_t *end);
|
84
|
-
|
85
|
-
LXB_API lxb_status_t
|
86
|
-
lxb_encoding_encode_iso_8859_4(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
87
|
-
const lxb_codepoint_t *end);
|
88
|
-
|
89
|
-
LXB_API lxb_status_t
|
90
|
-
lxb_encoding_encode_iso_8859_5(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
91
|
-
const lxb_codepoint_t *end);
|
92
|
-
|
93
|
-
LXB_API lxb_status_t
|
94
|
-
lxb_encoding_encode_iso_8859_6(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
95
|
-
const lxb_codepoint_t *end);
|
96
|
-
|
97
|
-
LXB_API lxb_status_t
|
98
|
-
lxb_encoding_encode_iso_8859_7(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
99
|
-
const lxb_codepoint_t *end);
|
100
|
-
|
101
|
-
LXB_API lxb_status_t
|
102
|
-
lxb_encoding_encode_iso_8859_8(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
103
|
-
const lxb_codepoint_t *end);
|
104
|
-
|
105
|
-
LXB_API lxb_status_t
|
106
|
-
lxb_encoding_encode_iso_8859_8_i(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
107
|
-
const lxb_codepoint_t *end);
|
108
|
-
|
109
|
-
LXB_API lxb_status_t
|
110
|
-
lxb_encoding_encode_koi8_r(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
111
|
-
const lxb_codepoint_t *end);
|
112
|
-
|
113
|
-
LXB_API lxb_status_t
|
114
|
-
lxb_encoding_encode_koi8_u(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
115
|
-
const lxb_codepoint_t *end);
|
116
|
-
|
117
|
-
LXB_API lxb_status_t
|
118
|
-
lxb_encoding_encode_shift_jis(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
119
|
-
const lxb_codepoint_t *end);
|
120
|
-
|
121
|
-
LXB_API lxb_status_t
|
122
|
-
lxb_encoding_encode_utf_16be(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
123
|
-
const lxb_codepoint_t *end);
|
124
|
-
|
125
|
-
LXB_API lxb_status_t
|
126
|
-
lxb_encoding_encode_utf_16le(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
127
|
-
const lxb_codepoint_t *end);
|
128
|
-
|
129
|
-
LXB_API lxb_status_t
|
130
|
-
lxb_encoding_encode_utf_8(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
131
|
-
const lxb_codepoint_t *end);
|
132
|
-
|
133
|
-
LXB_API lxb_status_t
|
134
|
-
lxb_encoding_encode_gb18030(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
135
|
-
const lxb_codepoint_t *end);
|
136
|
-
|
137
|
-
LXB_API lxb_status_t
|
138
|
-
lxb_encoding_encode_macintosh(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
139
|
-
const lxb_codepoint_t *end);
|
140
|
-
|
141
|
-
LXB_API lxb_status_t
|
142
|
-
lxb_encoding_encode_replacement(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
143
|
-
const lxb_codepoint_t *end);
|
144
|
-
|
145
|
-
LXB_API lxb_status_t
|
146
|
-
lxb_encoding_encode_windows_1250(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
147
|
-
const lxb_codepoint_t *end);
|
148
|
-
|
149
|
-
LXB_API lxb_status_t
|
150
|
-
lxb_encoding_encode_windows_1251(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
151
|
-
const lxb_codepoint_t *end);
|
152
|
-
|
153
|
-
LXB_API lxb_status_t
|
154
|
-
lxb_encoding_encode_windows_1252(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
155
|
-
const lxb_codepoint_t *end);
|
156
|
-
|
157
|
-
LXB_API lxb_status_t
|
158
|
-
lxb_encoding_encode_windows_1253(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
159
|
-
const lxb_codepoint_t *end);
|
160
|
-
|
161
|
-
LXB_API lxb_status_t
|
162
|
-
lxb_encoding_encode_windows_1254(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
163
|
-
const lxb_codepoint_t *end);
|
164
|
-
|
165
|
-
LXB_API lxb_status_t
|
166
|
-
lxb_encoding_encode_windows_1255(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
167
|
-
const lxb_codepoint_t *end);
|
168
|
-
|
169
|
-
LXB_API lxb_status_t
|
170
|
-
lxb_encoding_encode_windows_1256(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
171
|
-
const lxb_codepoint_t *end);
|
172
|
-
|
173
|
-
LXB_API lxb_status_t
|
174
|
-
lxb_encoding_encode_windows_1257(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
175
|
-
const lxb_codepoint_t *end);
|
176
|
-
|
177
|
-
LXB_API lxb_status_t
|
178
|
-
lxb_encoding_encode_windows_1258(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
179
|
-
const lxb_codepoint_t *end);
|
180
|
-
|
181
|
-
LXB_API lxb_status_t
|
182
|
-
lxb_encoding_encode_windows_874(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
183
|
-
const lxb_codepoint_t *end);
|
184
|
-
|
185
|
-
LXB_API lxb_status_t
|
186
|
-
lxb_encoding_encode_x_mac_cyrillic(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
187
|
-
const lxb_codepoint_t *end);
|
188
|
-
|
189
|
-
LXB_API lxb_status_t
|
190
|
-
lxb_encoding_encode_x_user_defined(lxb_encoding_encode_t *ctx, const lxb_codepoint_t **cp,
|
191
|
-
const lxb_codepoint_t *end);
|
192
|
-
|
193
|
-
/*
|
194
|
-
* Single
|
195
|
-
*/
|
196
|
-
LXB_API int8_t
|
197
|
-
lxb_encoding_encode_default_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
198
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
199
|
-
|
200
|
-
LXB_API int8_t
|
201
|
-
lxb_encoding_encode_auto_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
202
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
203
|
-
|
204
|
-
LXB_API int8_t
|
205
|
-
lxb_encoding_encode_undefined_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
206
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
207
|
-
|
208
|
-
LXB_API int8_t
|
209
|
-
lxb_encoding_encode_big5_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
210
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
211
|
-
|
212
|
-
LXB_API int8_t
|
213
|
-
lxb_encoding_encode_euc_jp_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
214
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
215
|
-
|
216
|
-
LXB_API int8_t
|
217
|
-
lxb_encoding_encode_euc_kr_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
218
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
219
|
-
|
220
|
-
LXB_API int8_t
|
221
|
-
lxb_encoding_encode_gbk_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
222
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
223
|
-
|
224
|
-
LXB_API int8_t
|
225
|
-
lxb_encoding_encode_ibm866_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
226
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
227
|
-
|
228
|
-
LXB_API int8_t
|
229
|
-
lxb_encoding_encode_iso_2022_jp_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
230
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
231
|
-
|
232
|
-
LXB_API int8_t
|
233
|
-
lxb_encoding_encode_iso_2022_jp_eof_single(lxb_encoding_encode_t *ctx,
|
234
|
-
lxb_char_t **data, const lxb_char_t *end);
|
235
|
-
|
236
|
-
LXB_API int8_t
|
237
|
-
lxb_encoding_encode_iso_8859_10_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
238
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
239
|
-
|
240
|
-
LXB_API int8_t
|
241
|
-
lxb_encoding_encode_iso_8859_13_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
242
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
243
|
-
|
244
|
-
LXB_API int8_t
|
245
|
-
lxb_encoding_encode_iso_8859_14_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
246
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
247
|
-
|
248
|
-
LXB_API int8_t
|
249
|
-
lxb_encoding_encode_iso_8859_15_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
250
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
251
|
-
|
252
|
-
LXB_API int8_t
|
253
|
-
lxb_encoding_encode_iso_8859_16_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
254
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
255
|
-
|
256
|
-
LXB_API int8_t
|
257
|
-
lxb_encoding_encode_iso_8859_2_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
258
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
259
|
-
|
260
|
-
LXB_API int8_t
|
261
|
-
lxb_encoding_encode_iso_8859_3_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
262
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
263
|
-
|
264
|
-
LXB_API int8_t
|
265
|
-
lxb_encoding_encode_iso_8859_4_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
266
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
267
|
-
|
268
|
-
LXB_API int8_t
|
269
|
-
lxb_encoding_encode_iso_8859_5_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
270
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
271
|
-
|
272
|
-
LXB_API int8_t
|
273
|
-
lxb_encoding_encode_iso_8859_6_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
274
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
275
|
-
|
276
|
-
LXB_API int8_t
|
277
|
-
lxb_encoding_encode_iso_8859_7_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
278
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
279
|
-
|
280
|
-
LXB_API int8_t
|
281
|
-
lxb_encoding_encode_iso_8859_8_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
282
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
283
|
-
|
284
|
-
LXB_API int8_t
|
285
|
-
lxb_encoding_encode_iso_8859_8_i_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
286
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
287
|
-
|
288
|
-
LXB_API int8_t
|
289
|
-
lxb_encoding_encode_koi8_r_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
290
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
291
|
-
|
292
|
-
LXB_API int8_t
|
293
|
-
lxb_encoding_encode_koi8_u_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
294
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
295
|
-
|
296
|
-
LXB_API int8_t
|
297
|
-
lxb_encoding_encode_shift_jis_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
298
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
299
|
-
|
300
|
-
LXB_API int8_t
|
301
|
-
lxb_encoding_encode_utf_16be_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
302
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
303
|
-
|
304
|
-
LXB_API int8_t
|
305
|
-
lxb_encoding_encode_utf_16le_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
306
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
307
|
-
|
308
|
-
LXB_API int8_t
|
309
|
-
lxb_encoding_encode_utf_8_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
310
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
311
|
-
|
312
|
-
LXB_API int8_t
|
313
|
-
lxb_encoding_encode_gb18030_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
314
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
315
|
-
|
316
|
-
LXB_API int8_t
|
317
|
-
lxb_encoding_encode_macintosh_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
318
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
319
|
-
|
320
|
-
LXB_API int8_t
|
321
|
-
lxb_encoding_encode_replacement_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
322
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
323
|
-
|
324
|
-
LXB_API int8_t
|
325
|
-
lxb_encoding_encode_windows_1250_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
326
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
327
|
-
|
328
|
-
LXB_API int8_t
|
329
|
-
lxb_encoding_encode_windows_1251_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
330
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
331
|
-
|
332
|
-
LXB_API int8_t
|
333
|
-
lxb_encoding_encode_windows_1252_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
334
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
335
|
-
|
336
|
-
LXB_API int8_t
|
337
|
-
lxb_encoding_encode_windows_1253_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
338
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
339
|
-
|
340
|
-
LXB_API int8_t
|
341
|
-
lxb_encoding_encode_windows_1254_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
342
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
343
|
-
|
344
|
-
LXB_API int8_t
|
345
|
-
lxb_encoding_encode_windows_1255_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
346
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
347
|
-
|
348
|
-
LXB_API int8_t
|
349
|
-
lxb_encoding_encode_windows_1256_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
350
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
351
|
-
|
352
|
-
LXB_API int8_t
|
353
|
-
lxb_encoding_encode_windows_1257_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
354
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
355
|
-
|
356
|
-
LXB_API int8_t
|
357
|
-
lxb_encoding_encode_windows_1258_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
358
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
359
|
-
|
360
|
-
LXB_API int8_t
|
361
|
-
lxb_encoding_encode_windows_874_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
362
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
363
|
-
|
364
|
-
LXB_API int8_t
|
365
|
-
lxb_encoding_encode_x_mac_cyrillic_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
366
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
367
|
-
|
368
|
-
LXB_API int8_t
|
369
|
-
lxb_encoding_encode_x_user_defined_single(lxb_encoding_encode_t *ctx, lxb_char_t **data,
|
370
|
-
const lxb_char_t *end, lxb_codepoint_t cp);
|
371
|
-
|
372
|
-
|
373
|
-
#ifdef __cplusplus
|
374
|
-
} /* extern "C" */
|
375
|
-
#endif
|
376
|
-
|
377
|
-
#endif /* LEXBOR_ENCODING_ENCODE_H */
|
@@ -1,252 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (C) 2019 Alexander Borisov
|
3
|
-
*
|
4
|
-
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
-
*/
|
6
|
-
|
7
|
-
#include "lexbor/encoding/encoding.h"
|
8
|
-
|
9
|
-
|
10
|
-
const lxb_encoding_data_t *
|
11
|
-
lxb_encoding_data_by_pre_name(const lxb_char_t *name, size_t length)
|
12
|
-
{
|
13
|
-
const lxb_char_t *end;
|
14
|
-
const lexbor_shs_entry_t *entry;
|
15
|
-
|
16
|
-
if (length == 0) {
|
17
|
-
return NULL;
|
18
|
-
}
|
19
|
-
|
20
|
-
end = name + length;
|
21
|
-
|
22
|
-
/* Remove any leading */
|
23
|
-
do {
|
24
|
-
switch (*name) {
|
25
|
-
case 0x09: case 0x0A: case 0x0C: case 0x0D: case 0x20:
|
26
|
-
name++;
|
27
|
-
continue;
|
28
|
-
}
|
29
|
-
|
30
|
-
break;
|
31
|
-
}
|
32
|
-
while (name < end);
|
33
|
-
|
34
|
-
/* Remove any trailing */
|
35
|
-
while (name < end) {
|
36
|
-
switch (*(end - 1)) {
|
37
|
-
case 0x09: case 0x0A: case 0x0C: case 0x0D: case 0x20:
|
38
|
-
end--;
|
39
|
-
continue;
|
40
|
-
}
|
41
|
-
|
42
|
-
break;
|
43
|
-
}
|
44
|
-
|
45
|
-
if (name == end) {
|
46
|
-
return NULL;
|
47
|
-
}
|
48
|
-
|
49
|
-
entry = lexbor_shs_entry_get_lower_static(lxb_encoding_res_shs_entities,
|
50
|
-
name, (end - name));
|
51
|
-
if (entry == NULL) {
|
52
|
-
return NULL;
|
53
|
-
}
|
54
|
-
|
55
|
-
return entry->value;
|
56
|
-
}
|
57
|
-
|
58
|
-
/*
|
59
|
-
* No inline functions for ABI.
|
60
|
-
*/
|
61
|
-
lxb_status_t
|
62
|
-
lxb_encoding_encode_init_noi(lxb_encoding_encode_t *encode,
|
63
|
-
const lxb_encoding_data_t *encoding_data,
|
64
|
-
lxb_char_t *buffer_out, size_t buffer_length)
|
65
|
-
{
|
66
|
-
return lxb_encoding_encode_init(encode, encoding_data,
|
67
|
-
buffer_out, buffer_length);
|
68
|
-
}
|
69
|
-
|
70
|
-
lxb_status_t
|
71
|
-
lxb_encoding_encode_finish_noi(lxb_encoding_encode_t *encode)
|
72
|
-
{
|
73
|
-
return lxb_encoding_encode_finish(encode);
|
74
|
-
}
|
75
|
-
|
76
|
-
LXB_API lxb_char_t *
|
77
|
-
lxb_encoding_encode_buf_noi(lxb_encoding_encode_t *encode)
|
78
|
-
{
|
79
|
-
return lxb_encoding_encode_buf(encode);
|
80
|
-
}
|
81
|
-
|
82
|
-
void
|
83
|
-
lxb_encoding_encode_buf_set_noi(lxb_encoding_encode_t *encode,
|
84
|
-
lxb_char_t *buffer_out, size_t buffer_length)
|
85
|
-
{
|
86
|
-
lxb_encoding_encode_buf_set(encode, buffer_out, buffer_length);
|
87
|
-
}
|
88
|
-
|
89
|
-
void
|
90
|
-
lxb_encoding_encode_buf_used_set_noi(lxb_encoding_encode_t *encode,
|
91
|
-
size_t buffer_used)
|
92
|
-
{
|
93
|
-
lxb_encoding_encode_buf_used_set(encode, buffer_used);
|
94
|
-
}
|
95
|
-
|
96
|
-
size_t
|
97
|
-
lxb_encoding_encode_buf_used_noi(lxb_encoding_encode_t *encode)
|
98
|
-
{
|
99
|
-
return lxb_encoding_encode_buf_used(encode);
|
100
|
-
}
|
101
|
-
|
102
|
-
lxb_status_t
|
103
|
-
lxb_encoding_encode_replace_set_noi(lxb_encoding_encode_t *encode,
|
104
|
-
const lxb_char_t *replace, size_t length)
|
105
|
-
{
|
106
|
-
return lxb_encoding_encode_replace_set(encode, replace, length);
|
107
|
-
}
|
108
|
-
|
109
|
-
lxb_status_t
|
110
|
-
lxb_encoding_encode_buf_add_to_noi(lxb_encoding_encode_t *encode,
|
111
|
-
lxb_char_t *data, size_t length)
|
112
|
-
{
|
113
|
-
return lxb_encoding_encode_buf_add_to(encode, data, length);
|
114
|
-
}
|
115
|
-
|
116
|
-
lxb_status_t
|
117
|
-
lxb_encoding_decode_init_noi(lxb_encoding_decode_t *decode,
|
118
|
-
const lxb_encoding_data_t *encoding_data,
|
119
|
-
lxb_codepoint_t *buffer_out, size_t buffer_length)
|
120
|
-
{
|
121
|
-
return lxb_encoding_decode_init(decode, encoding_data,
|
122
|
-
buffer_out, buffer_length);
|
123
|
-
}
|
124
|
-
|
125
|
-
lxb_status_t
|
126
|
-
lxb_encoding_decode_finish_noi(lxb_encoding_decode_t *decode)
|
127
|
-
{
|
128
|
-
return lxb_encoding_decode_finish(decode);
|
129
|
-
}
|
130
|
-
|
131
|
-
lxb_codepoint_t *
|
132
|
-
lxb_encoding_decode_buf_noi(lxb_encoding_decode_t *decode)
|
133
|
-
{
|
134
|
-
return lxb_encoding_decode_buf(decode);
|
135
|
-
}
|
136
|
-
|
137
|
-
void
|
138
|
-
lxb_encoding_decode_buf_set_noi(lxb_encoding_decode_t *decode,
|
139
|
-
lxb_codepoint_t *buffer_out, size_t buffer_length)
|
140
|
-
{
|
141
|
-
lxb_encoding_decode_buf_set(decode, buffer_out, buffer_length);
|
142
|
-
}
|
143
|
-
|
144
|
-
void
|
145
|
-
lxb_encoding_decode_buf_used_set_noi(lxb_encoding_decode_t *decode,
|
146
|
-
size_t buffer_used)
|
147
|
-
{
|
148
|
-
lxb_encoding_decode_buf_used_set(decode, buffer_used);
|
149
|
-
}
|
150
|
-
|
151
|
-
size_t
|
152
|
-
lxb_encoding_decode_buf_used_noi(lxb_encoding_decode_t *decode)
|
153
|
-
{
|
154
|
-
return lxb_encoding_decode_buf_used(decode);
|
155
|
-
}
|
156
|
-
|
157
|
-
lxb_status_t
|
158
|
-
lxb_encoding_decode_replace_set_noi(lxb_encoding_decode_t *decode,
|
159
|
-
const lxb_codepoint_t *replace, size_t length)
|
160
|
-
{
|
161
|
-
return lxb_encoding_decode_replace_set(decode, replace, length);
|
162
|
-
}
|
163
|
-
|
164
|
-
lxb_status_t
|
165
|
-
lxb_encoding_decode_buf_add_to_noi(lxb_encoding_decode_t *decode,
|
166
|
-
const lxb_codepoint_t *data, size_t length)
|
167
|
-
{
|
168
|
-
return lxb_encoding_decode_buf_add_to(decode, data, length);
|
169
|
-
}
|
170
|
-
|
171
|
-
lxb_status_t
|
172
|
-
lxb_encoding_encode_init_single_noi(lxb_encoding_encode_t *encode,
|
173
|
-
const lxb_encoding_data_t *encoding_data)
|
174
|
-
{
|
175
|
-
return lxb_encoding_encode_init_single(encode, encoding_data);
|
176
|
-
}
|
177
|
-
|
178
|
-
int8_t
|
179
|
-
lxb_encoding_encode_finish_single_noi(lxb_encoding_encode_t *encode,
|
180
|
-
lxb_char_t **data, const lxb_char_t *end)
|
181
|
-
{
|
182
|
-
return lxb_encoding_encode_finish_single(encode, data, end);
|
183
|
-
}
|
184
|
-
|
185
|
-
lxb_status_t
|
186
|
-
lxb_encoding_decode_init_single_noi(lxb_encoding_decode_t *decode,
|
187
|
-
const lxb_encoding_data_t *encoding_data)
|
188
|
-
{
|
189
|
-
return lxb_encoding_decode_init_single(decode, encoding_data);
|
190
|
-
}
|
191
|
-
|
192
|
-
lxb_status_t
|
193
|
-
lxb_encoding_decode_finish_single_noi(lxb_encoding_decode_t *decode)
|
194
|
-
{
|
195
|
-
return lxb_encoding_decode_finish_single(decode);
|
196
|
-
}
|
197
|
-
|
198
|
-
const lxb_encoding_data_t *
|
199
|
-
lxb_encoding_data_by_name_noi(const lxb_char_t *name, size_t length)
|
200
|
-
{
|
201
|
-
return lxb_encoding_data_by_name(name, length);
|
202
|
-
}
|
203
|
-
|
204
|
-
const lxb_encoding_data_t *
|
205
|
-
lxb_encoding_data_noi(lxb_encoding_t encoding)
|
206
|
-
{
|
207
|
-
return lxb_encoding_data(encoding);
|
208
|
-
}
|
209
|
-
|
210
|
-
lxb_encoding_encode_f
|
211
|
-
lxb_encoding_encode_function_noi(lxb_encoding_t encoding)
|
212
|
-
{
|
213
|
-
return lxb_encoding_encode_function(encoding);
|
214
|
-
}
|
215
|
-
|
216
|
-
lxb_encoding_decode_f
|
217
|
-
lxb_encoding_decode_function_noi(lxb_encoding_t encoding)
|
218
|
-
{
|
219
|
-
return lxb_encoding_decode_function(encoding);
|
220
|
-
}
|
221
|
-
|
222
|
-
lxb_status_t
|
223
|
-
lxb_encoding_data_call_encode_noi(lxb_encoding_data_t *encoding_data, lxb_encoding_encode_t *ctx,
|
224
|
-
const lxb_codepoint_t **cp, const lxb_codepoint_t *end)
|
225
|
-
{
|
226
|
-
return lxb_encoding_data_call_encode(encoding_data, ctx, cp, end);
|
227
|
-
}
|
228
|
-
|
229
|
-
lxb_status_t
|
230
|
-
lxb_encoding_data_call_decode_noi(lxb_encoding_data_t *encoding_data, lxb_encoding_decode_t *ctx,
|
231
|
-
const lxb_char_t **data, const lxb_char_t *end)
|
232
|
-
{
|
233
|
-
return lxb_encoding_data_call_decode(encoding_data, ctx, data, end);
|
234
|
-
}
|
235
|
-
|
236
|
-
lxb_encoding_t
|
237
|
-
lxb_encoding_data_encoding_noi(lxb_encoding_data_t *data)
|
238
|
-
{
|
239
|
-
return lxb_encoding_data_encoding(data);
|
240
|
-
}
|
241
|
-
|
242
|
-
size_t
|
243
|
-
lxb_encoding_encode_t_sizeof(void)
|
244
|
-
{
|
245
|
-
return sizeof(lxb_encoding_encode_t);
|
246
|
-
}
|
247
|
-
|
248
|
-
size_t
|
249
|
-
lxb_encoding_decode_t_sizeof(void)
|
250
|
-
{
|
251
|
-
return sizeof(lxb_encoding_decode_t);
|
252
|
-
}
|