Mercurial > emacs
annotate src/coding.h @ 89838:dd77c0989865
(set_lface_from_font_name): If a font is specified for
a frame, generate a fontset from the font.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 04 Mar 2004 00:43:10 +0000 |
parents | b06a8c2162e5 |
children | 623a853556f1 |
rev | line source |
---|---|
17052 | 1 /* Header for coding system handler. |
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18181
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
89483 | 3 Licensed to the Free Software Foundation. |
4 Copyright (C) 2003 | |
88365 | 5 National Institute of Advanced Industrial Science and Technology (AIST) |
6 Registration Number H13PRO009 | |
17052 | 7 |
17071 | 8 This file is part of GNU Emacs. |
9 | |
10 GNU Emacs is free software; you can redistribute it and/or modify | |
11 it under the terms of the GNU General Public License as published by | |
12 the Free Software Foundation; either version 2, or (at your option) | |
13 any later version. | |
17052 | 14 |
17071 | 15 GNU Emacs is distributed in the hope that it will be useful, |
16 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 GNU General Public License for more details. | |
17052 | 19 |
17071 | 20 You should have received a copy of the GNU General Public License |
21 along with GNU Emacs; see the file COPYING. If not, write to | |
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 Boston, MA 02111-1307, USA. */ | |
17052 | 24 |
29571
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
25 #ifndef EMACS_CODING_H |
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
26 #define EMACS_CODING_H |
17052 | 27 |
88365 | 28 /* Index to arguments of Fdefine_coding_system_internal. */ |
17052 | 29 |
88365 | 30 enum define_coding_system_arg_index |
17052 | 31 { |
88365 | 32 coding_arg_name, |
33 coding_arg_mnemonic, | |
34 coding_arg_coding_type, | |
35 coding_arg_charset_list, | |
36 coding_arg_ascii_compatible_p, | |
37 coding_arg_decode_translation_table, | |
38 coding_arg_encode_translation_table, | |
39 coding_arg_post_read_conversion, | |
40 coding_arg_pre_write_conversion, | |
41 coding_arg_default_char, | |
89483 | 42 coding_arg_for_unibyte, |
88365 | 43 coding_arg_plist, |
44 coding_arg_eol_type, | |
45 coding_arg_max | |
46 }; | |
47 | |
48 enum define_coding_iso2022_arg_index | |
49 { | |
50 coding_arg_iso2022_initial = coding_arg_max, | |
51 coding_arg_iso2022_reg_usage, | |
52 coding_arg_iso2022_request, | |
53 coding_arg_iso2022_flags, | |
54 coding_arg_iso2022_max | |
55 }; | |
56 | |
57 enum define_coding_utf16_arg_index | |
58 { | |
59 coding_arg_utf16_bom = coding_arg_max, | |
60 coding_arg_utf16_endian, | |
61 coding_arg_utf16_max | |
17052 | 62 }; |
63 | |
88365 | 64 enum define_coding_ccl_arg_index |
65 { | |
89372
95c081cdbd5f
(enum define_coding_ccl_arg_index): Set the first
Kenichi Handa <handa@m17n.org>
parents:
89330
diff
changeset
|
66 coding_arg_ccl_decoder = coding_arg_max, |
88365 | 67 coding_arg_ccl_encoder, |
68 coding_arg_ccl_valids, | |
69 coding_arg_ccl_max | |
70 }; | |
17052 | 71 |
88365 | 72 extern Lisp_Object Vcoding_system_hash_table; |
73 | |
74 /* Enumeration of coding system type. */ | |
17052 | 75 |
88365 | 76 enum coding_system_type |
17052 | 77 { |
88365 | 78 coding_type_charset, |
79 coding_type_utf_8, | |
80 coding_type_utf_16, | |
81 coding_type_iso_2022, | |
82 coding_type_emacs_mule, | |
83 coding_type_sjis, | |
84 coding_type_ccl, | |
85 coding_type_raw_text, | |
86 coding_type_undecided, | |
87 coding_type_max | |
88 }; | |
89 | |
90 | |
91 /* Enumeration of end-of-line format type. */ | |
92 | |
93 enum end_of_line_type | |
94 { | |
95 eol_lf, /* Line-feed only, same as Emacs' internal | |
96 format. */ | |
97 eol_crlf, /* Sequence of carriage-return and | |
98 line-feed. */ | |
99 eol_cr, /* Carriage-return only. */ | |
100 eol_any, /* Accept any of above. Produce line-feed | |
101 only. */ | |
102 eol_undecided, /* This value is used to denote that the | |
103 eol-type is not yet undecided. */ | |
104 eol_type_max | |
17052 | 105 }; |
106 | |
88365 | 107 /* Enumeration of index to an attribute vector of a coding system. */ |
17052 | 108 |
88365 | 109 enum coding_attr_index |
110 { | |
111 coding_attr_base_name, | |
112 coding_attr_docstring, | |
113 coding_attr_mnemonic, | |
114 coding_attr_type, | |
115 coding_attr_charset_list, | |
116 coding_attr_ascii_compat, | |
117 coding_attr_decode_tbl, | |
118 coding_attr_encode_tbl, | |
89733
d001bbbe12ce
(enum coding_attr_index): New member coding_attr_trans_tbl.
Kenichi Handa <handa@m17n.org>
parents:
89685
diff
changeset
|
119 coding_attr_trans_tbl, |
88365 | 120 coding_attr_post_read, |
121 coding_attr_pre_write, | |
122 coding_attr_default_char, | |
89483 | 123 coding_attr_for_unibyte, |
88365 | 124 coding_attr_plist, |
17052 | 125 |
88365 | 126 coding_attr_category, |
127 coding_attr_safe_charsets, | |
17052 | 128 |
88365 | 129 /* The followings are extra attributes for each type. */ |
130 coding_attr_charset_valids, | |
17052 | 131 |
88365 | 132 coding_attr_ccl_decoder, |
133 coding_attr_ccl_encoder, | |
134 coding_attr_ccl_valids, | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
135 |
88365 | 136 coding_attr_iso_initial, |
137 coding_attr_iso_usage, | |
138 coding_attr_iso_request, | |
139 coding_attr_iso_flags, | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
140 |
88365 | 141 coding_attr_utf_16_bom, |
142 coding_attr_utf_16_endian, | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
143 |
88365 | 144 coding_attr_emacs_mule_full, |
145 | |
146 coding_attr_last_index | |
147 }; | |
148 | |
17052 | 149 |
88365 | 150 #define CODING_ATTR_BASE_NAME(attrs) AREF (attrs, coding_attr_base_name) |
151 #define CODING_ATTR_TYPE(attrs) AREF (attrs, coding_attr_type) | |
152 #define CODING_ATTR_CHARSET_LIST(attrs) AREF (attrs, coding_attr_charset_list) | |
153 #define CODING_ATTR_MNEMONIC(attrs) AREF (attrs, coding_attr_mnemonic) | |
154 #define CODING_ATTR_DOCSTRING(attrs) AREF (attrs, coding_attr_docstring) | |
155 #define CODING_ATTR_ASCII_COMPAT(attrs) AREF (attrs, coding_attr_ascii_compat) | |
156 #define CODING_ATTR_DECODE_TBL(attrs) AREF (attrs, coding_attr_decode_tbl) | |
157 #define CODING_ATTR_ENCODE_TBL(attrs) AREF (attrs, coding_attr_encode_tbl) | |
89733
d001bbbe12ce
(enum coding_attr_index): New member coding_attr_trans_tbl.
Kenichi Handa <handa@m17n.org>
parents:
89685
diff
changeset
|
158 #define CODING_ATTR_TRANS_TBL(attrs) AREF (attrs, coding_attr_trans_tbl) |
88365 | 159 #define CODING_ATTR_POST_READ(attrs) AREF (attrs, coding_attr_post_read) |
160 #define CODING_ATTR_PRE_WRITE(attrs) AREF (attrs, coding_attr_pre_write) | |
161 #define CODING_ATTR_DEFAULT_CHAR(attrs) AREF (attrs, coding_attr_default_char) | |
89483 | 162 #define CODING_ATTR_FOR_UNIBYTE(attrs) AREF (attrs, coding_attr_for_unibyte) |
88365 | 163 #define CODING_ATTR_FLUSHING(attrs) AREF (attrs, coding_attr_flushing) |
164 #define CODING_ATTR_PLIST(attrs) AREF (attrs, coding_attr_plist) | |
165 #define CODING_ATTR_CATEGORY(attrs) AREF (attrs, coding_attr_category) | |
166 #define CODING_ATTR_SAFE_CHARSETS(attrs)AREF (attrs, coding_attr_safe_charsets) | |
17052 | 167 |
88365 | 168 |
169 #define CODING_ID_ATTRS(id) \ | |
170 (AREF (HASH_VALUE (XHASH_TABLE (Vcoding_system_hash_table), id), 0)) | |
19284
dd1d7096f59d
(struct iso2022_spec): New member expected_charsets.
Kenichi Handa <handa@m17n.org>
parents:
19279
diff
changeset
|
171 |
88365 | 172 #define CODING_ID_ALIASES(id) \ |
173 (AREF (HASH_VALUE (XHASH_TABLE (Vcoding_system_hash_table), id), 1)) | |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
174 |
88365 | 175 #define CODING_ID_EOL_TYPE(id) \ |
176 (AREF (HASH_VALUE (XHASH_TABLE (Vcoding_system_hash_table), id), 2)) | |
177 | |
178 #define CODING_ID_NAME(id) \ | |
179 (HASH_KEY (XHASH_TABLE (Vcoding_system_hash_table), id)) | |
17052 | 180 |
88365 | 181 #define CODING_SYSTEM_SPEC(coding_system_symbol) \ |
182 (Fgethash (coding_system_symbol, Vcoding_system_hash_table, Qnil)) | |
183 | |
184 #define CODING_SYSTEM_ID(coding_system_symbol) \ | |
185 hash_lookup (XHASH_TABLE (Vcoding_system_hash_table), \ | |
186 coding_system_symbol, NULL) | |
187 | |
188 #define CODING_SYSTEM_P(coding_system_symbol) \ | |
189 (! NILP (CODING_SYSTEM_SPEC (coding_system_symbol))) | |
190 | |
89483 | 191 #define CHECK_CODING_SYSTEM(x) \ |
88365 | 192 do { \ |
193 if (!CODING_SYSTEM_P (x)) \ | |
89483 | 194 wrong_type_argument (Qcoding_system_p, (x)); \ |
88365 | 195 } while (0) |
196 | |
17052 | 197 |
88365 | 198 #define CHECK_CODING_SYSTEM_GET_SPEC(x, spec) \ |
199 do { \ | |
200 spec = CODING_SYSTEM_SPEC (x); \ | |
201 if (NILP (spec)) \ | |
202 x = wrong_type_argument (Qcoding_system_p, (x)); \ | |
203 } while (0) | |
204 | |
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
205 |
88365 | 206 #define CHECK_CODING_SYSTEM_GET_ID(x, id) \ |
207 do \ | |
208 { \ | |
209 id = CODING_SYSTEM_ID (x); \ | |
210 if (id < 0) \ | |
211 x = wrong_type_argument (Qcoding_system_p, (x)); \ | |
212 } while (0) | |
17052 | 213 |
214 | |
215 /*** GENERAL section ***/ | |
216 | |
88365 | 217 /* Enumeration of result code of code conversion. */ |
218 enum coding_result_code | |
17052 | 219 { |
88365 | 220 CODING_RESULT_SUCCESS, |
221 CODING_RESULT_INSUFFICIENT_SRC, | |
222 CODING_RESULT_INSUFFICIENT_DST, | |
223 CODING_RESULT_INCONSISTENT_EOL, | |
89685
8970a5ea5efc
(enum coding_result_code): Delete
Kenichi Handa <handa@m17n.org>
parents:
89666
diff
changeset
|
224 CODING_RESULT_INVALID_SRC, |
88365 | 225 CODING_RESULT_INTERRUPT, |
226 CODING_RESULT_INSUFFICIENT_MEM | |
17052 | 227 }; |
228 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
229 |
21031 | 230 /* Macros used for the member `mode' of the struct coding_system. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
231 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
232 /* If set, recover the original CR or LF of the already decoded text |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
233 when the decoding routine encounters an inconsistent eol format. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
234 #define CODING_MODE_INHIBIT_INCONSISTENT_EOL 0x01 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
235 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
236 /* If set, the decoding/encoding routines treat the current data as |
89172 | 237 the last block of the whole text to be converted, and do the |
238 appropriate finishing job. */ | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
239 #define CODING_MODE_LAST_BLOCK 0x02 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
240 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
241 /* If set, it means that the current source text is in a buffer which |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
242 enables selective display. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
243 #define CODING_MODE_SELECTIVE_DISPLAY 0x04 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
244 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
245 /* This flag is used by the decoding/encoding routines on the fly. If |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
246 set, it means that right-to-left text is being processed. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
247 #define CODING_MODE_DIRECTION 0x08 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
248 |
88365 | 249 #define CODING_MODE_FIXED_DESTINATION 0x10 |
250 | |
251 #define CODING_MODE_SAFE_ENCODING 0x20 | |
252 | |
253 /* Structure of the field `spec.iso_2022' in the structure | |
254 `coding_system'. */ | |
255 struct iso_2022_spec | |
256 { | |
88688 | 257 /* Bit-wise-or of CODING_ISO_FLAG_XXX. */ |
88365 | 258 unsigned flags; |
259 | |
260 /* The current graphic register invoked to each graphic plane. */ | |
261 int current_invocation[2]; | |
262 | |
263 /* The current charset designated to each graphic register. The | |
264 value -1 means that not charset is designated, -2 means that | |
265 there was an invalid designation previously. */ | |
266 int current_designation[4]; | |
267 | |
268 /* Set to 1 temporarily only when graphic register 2 or 3 is invoked | |
269 by single-shift while encoding. */ | |
270 int single_shifting; | |
271 | |
272 /* Set to 1 temporarily only when processing at beginning of line. */ | |
273 int bol; | |
274 }; | |
275 | |
276 struct ccl_spec; | |
277 | |
278 enum utf_16_bom_type | |
279 { | |
280 utf_16_detect_bom, | |
281 utf_16_without_bom, | |
282 utf_16_with_bom | |
283 }; | |
284 | |
285 enum utf_16_endian_type | |
286 { | |
287 utf_16_big_endian, | |
288 utf_16_little_endian | |
289 }; | |
290 | |
291 struct utf_16_spec | |
292 { | |
293 enum utf_16_bom_type bom; | |
294 enum utf_16_endian_type endian; | |
295 int surrogate; | |
296 }; | |
297 | |
89330
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
298 struct coding_detection_info |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
299 { |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
300 /* Values of these members are bitwise-OR of CATEGORY_MASK_XXXs. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
301 /* Which categories are already checked. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
302 int checked; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
303 /* Which categories are strongly found. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
304 int found; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
305 /* Which categories are rejected. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
306 int rejected; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
307 }; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
308 |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
309 |
17052 | 310 struct coding_system |
311 { | |
88365 | 312 /* ID number of the coding system. This is an index to |
313 Vcoding_system_hash_table. This value is set by | |
314 setup_coding_system. At the early stage of building time, this | |
315 value is -1 in the array coding_categories to indicate that no | |
316 coding-system of that category is yet defined. */ | |
317 int id; | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
318 |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
319 /* Flag bits of the coding system. The meaning of each bit is common |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
320 to all types of coding systems. */ |
88365 | 321 int common_flags; |
17052 | 322 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
323 /* Mode bits of the coding system. See the comments of the macros |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
324 CODING_MODE_XXX. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
325 unsigned int mode; |
17052 | 326 |
327 /* Detailed information specific to each type of coding system. */ | |
88365 | 328 union |
17052 | 329 { |
88365 | 330 struct iso_2022_spec iso_2022; |
331 struct ccl_spec *ccl; /* Defined in ccl.h. */ | |
332 struct utf_16_spec utf_16; | |
333 int emacs_mule_full_support; | |
17052 | 334 } spec; |
335 | |
88365 | 336 int max_charset_id; |
337 char *safe_charsets; | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
338 |
88365 | 339 /* The following two members specify how binary 8-bit code 128..255 |
340 are represented in source and destination text respectively. 1 | |
341 means they are represented by 2-byte sequence, 0 means they are | |
342 represented by 1-byte as is (see the comment in character.h). */ | |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
343 unsigned src_multibyte : 1; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
344 unsigned dst_multibyte : 1; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
345 |
21320
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
346 /* How may heading bytes we can skip for decoding. This is set to |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
347 -1 in setup_coding_system, and updated by detect_coding. So, |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
348 when this is equal to the byte length of the text being |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
349 converted, we can skip the actual conversion process. */ |
88365 | 350 int head_ascii; |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
351 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
352 /* The following members are set by encoding/decoding routine. */ |
88365 | 353 EMACS_INT produced, produced_char, consumed, consumed_char; |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
354 |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
355 /* Number of error source data found in a decoding routine. */ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
356 int errors; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
357 |
88365 | 358 /* Store the positions of error source data. */ |
359 EMACS_INT *error_positions; | |
20930
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
360 |
88365 | 361 /* Finish status of code conversion. */ |
362 enum coding_result_code result; | |
35530
cb627d09f8c3
(struct coding_system): New member suppress_error.
Kenichi Handa <handa@m17n.org>
parents:
34152
diff
changeset
|
363 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
364 /* The following members are all Lisp symbols. We don't have to |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
365 protect them from GC because the current garbage collection |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
366 doesn't relocate Lisp symbols. But, when it is changed, we must |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
367 find a way to protect them. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
368 |
88365 | 369 EMACS_INT src_pos, src_pos_byte, src_chars, src_bytes; |
370 Lisp_Object src_object; | |
89483 | 371 const unsigned char *source; |
17052 | 372 |
88365 | 373 EMACS_INT dst_pos, dst_pos_byte, dst_bytes; |
374 Lisp_Object dst_object; | |
375 unsigned char *destination; | |
376 | |
377 int chars_at_source; | |
378 | |
379 /* If an element is non-negative, it is a character code. | |
380 | |
381 If it is in the range -128..-1, it is a 8-bit character code | |
382 minus 256. | |
17052 | 383 |
88365 | 384 If it is less than -128, it specifies the start of an annotation |
385 chunk. The length of the chunk is -128 minus the value of the | |
386 element. The following elements are OFFSET, ANNOTATION-TYPE, and | |
387 a sequence of actual data for the annotation. OFFSET is a | |
388 character position offset from dst_pos or src_pos, | |
389 ANNOTATION-TYPE specfies the meaning of the annotation and how to | |
390 handle the following data.. */ | |
391 int *charbuf; | |
392 int charbuf_size, charbuf_used; | |
17052 | 393 |
88365 | 394 /* Set to 1 if charbuf contains an annotation. */ |
395 int annotated; | |
396 | |
397 unsigned char carryover[64]; | |
398 int carryover_bytes; | |
399 | |
400 int default_char; | |
401 | |
89330
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
402 int (*detector) P_ ((struct coding_system *, |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
403 struct coding_detection_info *)); |
88365 | 404 void (*decoder) P_ ((struct coding_system *)); |
405 int (*encoder) P_ ((struct coding_system *)); | |
17052 | 406 }; |
407 | |
88365 | 408 /* Meanings of bits in the member `common_flags' of the structure |
409 coding_system. The lowest 8 bits are reserved for various kind of | |
410 annotations (currently two of them are used). */ | |
411 #define CODING_ANNOTATION_MASK 0x00FF | |
412 #define CODING_ANNOTATE_COMPOSITION_MASK 0x0001 | |
413 #define CODING_ANNOTATE_DIRECTION_MASK 0x0002 | |
89330
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
414 #define CODING_ANNOTATE_CHARSET_MASK 0x0003 |
88365 | 415 #define CODING_FOR_UNIBYTE_MASK 0x0100 |
416 #define CODING_REQUIRE_FLUSHING_MASK 0x0200 | |
417 #define CODING_REQUIRE_DECODING_MASK 0x0400 | |
418 #define CODING_REQUIRE_ENCODING_MASK 0x0800 | |
419 #define CODING_REQUIRE_DETECTION_MASK 0x1000 | |
420 #define CODING_RESET_AT_BOL_MASK 0x2000 | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
421 |
88365 | 422 /* Return 1 if the coding context CODING requires annotaion |
423 handling. */ | |
424 #define CODING_REQUIRE_ANNOTATION(coding) \ | |
425 ((coding)->common_flags & CODING_ANNOTATION_MASK) | |
426 | |
427 /* Return 1 if the coding context CODING prefers decoding into unibyte. */ | |
428 #define CODING_FOR_UNIBYTE(coding) \ | |
429 ((coding)->common_flags & CODING_FOR_UNIBYTE_MASK) | |
430 | |
431 /* Return 1 if the coding context CODING requires specific code to be | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
432 attached at the tail of converted text. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
433 #define CODING_REQUIRE_FLUSHING(coding) \ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
434 ((coding)->common_flags & CODING_REQUIRE_FLUSHING_MASK) |
17052 | 435 |
88365 | 436 /* Return 1 if the coding context CODING requires code conversion on |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
437 decoding. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
438 #define CODING_REQUIRE_DECODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
439 ((coding)->dst_multibyte \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
440 || (coding)->common_flags & CODING_REQUIRE_DECODING_MASK) |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
441 |
88365 | 442 |
443 /* Return 1 if the coding context CODING requires code conversion on | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
444 encoding. */ |
88365 | 445 #define CODING_REQUIRE_ENCODING(coding) \ |
446 ((coding)->src_multibyte \ | |
447 || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK \ | |
448 || (coding)->mode & CODING_MODE_SELECTIVE_DISPLAY) | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
449 |
88365 | 450 |
451 /* Return 1 if the coding context CODING requires some kind of code | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
452 detection. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
453 #define CODING_REQUIRE_DETECTION(coding) \ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
454 ((coding)->common_flags & CODING_REQUIRE_DETECTION_MASK) |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
455 |
88365 | 456 /* Return 1 if the coding context CODING requires code conversion on |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
457 decoding or some kind of code detection. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
458 #define CODING_MAY_REQUIRE_DECODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
459 (CODING_REQUIRE_DECODING (coding) \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
460 || CODING_REQUIRE_DETECTION (coding)) |
17052 | 461 |
462 /* Macros to decode or encode a character of JISX0208 in SJIS. S1 and | |
463 S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding | |
464 system. C1 and C2 are the 1st and 2nd position codes of Emacs' | |
465 internal format. */ | |
466 | |
88365 | 467 #define SJIS_TO_JIS(code) \ |
468 do { \ | |
469 int s1, s2, j1, j2; \ | |
470 \ | |
471 s1 = (code) >> 8, s2 = (code) & 0xFF; \ | |
472 \ | |
473 if (s2 >= 0x9F) \ | |
474 (j1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \ | |
475 j2 = s2 - 0x7E); \ | |
476 else \ | |
477 (j1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \ | |
478 j2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F)); \ | |
479 (code) = (j1 << 8) | j2; \ | |
17052 | 480 } while (0) |
481 | |
89765
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
482 #define SJIS_TO_JIS2(code) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
483 do { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
484 int s1, s2, j1, j2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
485 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
486 s1 = (code) >> 8, s2 = (code) & 0xFF; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
487 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
488 if (s2 >= 0x9F) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
489 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
490 j1 = (s1 == 0xF0 ? 0x28 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
491 : s1 == 0xF1 ? 0x24 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
492 : s1 == 0xF2 ? 0x2C \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
493 : s1 == 0xF3 ? 0x2E \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
494 : 0x6E + (s1 - 0xF4) * 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
495 j2 = s2 - 0x7E; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
496 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
497 else \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
498 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
499 j1 = (s1 <= 0xF2 ? 0x21 + (s1 - 0xF0) * 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
500 : s1 <= 0xF4 ? 0x2D + (s1 - 0xF3) * 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
501 : 0x6F + (s1 - 0xF5) * 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
502 j2 = s2 - ((s2 >= 0x7F ? 0x20 : 0x1F)); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
503 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
504 (code) = (j1 << 8) | j2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
505 } while (0) |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
506 |
88365 | 507 |
508 #define JIS_TO_SJIS(code) \ | |
17052 | 509 do { \ |
88365 | 510 int s1, s2, j1, j2; \ |
511 \ | |
512 j1 = (code) >> 8, j2 = (code) & 0xFF; \ | |
513 if (j1 & 1) \ | |
514 (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x71 : 0xB1), \ | |
515 s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F)); \ | |
17052 | 516 else \ |
88365 | 517 (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x70 : 0xB0), \ |
518 s2 = j2 + 0x7E); \ | |
88498
1dd66ce3fc9c
(JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
519 (code) = (s1 << 8) | s2; \ |
17052 | 520 } while (0) |
521 | |
89765
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
522 #define JIS_TO_SJIS2(code) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
523 do { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
524 int s1, s2, j1, j2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
525 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
526 j1 = (code) >> 8, j2 = (code) & 0xFF; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
527 if (j1 & 1) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
528 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
529 s1 = (j1 <= 0x25 ? 0xF0 + (j1 - 0x21) / 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
530 : j1 <= 0x27 ? 0xF3 + (j1 - 0x2D) / 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
531 : 0xF5 + (j1 - 0x6F) / 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
532 s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
533 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
534 else \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
535 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
536 s1 = (j1 == 0x28 ? 0xF0 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
537 : j1 == 0x24 ? 0xF1 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
538 : j1 == 0x2C ? 0xF2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
539 : j1 == 0x2E ? 0xF3 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
540 : 0xF4 + (j1 - 0x6E) / 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
541 s2 = j2 + 0x7E; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
542 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
543 (code) = (s1 << 8) | s2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
544 } while (0) |
88365 | 545 |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
546 /* Encode the file name NAME using the specified coding system |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
547 for file names, if any. */ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
548 #define ENCODE_FILE(name) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
549 (! NILP (Vfile_name_coding_system) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
550 && XFASTINT (Vfile_name_coding_system) != 0 \ |
22342 | 551 ? code_convert_string_norecord (name, Vfile_name_coding_system, 1) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
552 : (! NILP (Vdefault_file_name_coding_system) \ |
22342 | 553 && XFASTINT (Vdefault_file_name_coding_system) != 0 \ |
554 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 1) \ | |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
555 : name)) |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
556 |
88365 | 557 |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
558 /* Decode the file name NAME using the specified coding system |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
559 for file names, if any. */ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
560 #define DECODE_FILE(name) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
561 (! NILP (Vfile_name_coding_system) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
562 && XFASTINT (Vfile_name_coding_system) != 0 \ |
22342 | 563 ? code_convert_string_norecord (name, Vfile_name_coding_system, 0) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
564 : (! NILP (Vdefault_file_name_coding_system) \ |
22342 | 565 && XFASTINT (Vdefault_file_name_coding_system) != 0 \ |
566 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 0) \ | |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
567 : name)) |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
568 |
88365 | 569 |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
570 #ifdef WINDOWSNT |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
571 /* Encode the string STR using the specified coding system |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
572 for w32 system functions, if any. */ |
88365 | 573 #define ENCODE_SYSTEM(str) \ |
574 (! NILP (Vlocale_coding_system) \ | |
575 && XFASTINT (Vlocale_coding_system) != 0 \ | |
576 ? code_convert_string_norecord (str, Vlocale_coding_system, 1) \ | |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
577 : str) |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
578 |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
579 /* Decode the string STR using the specified coding system |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
580 for w32 system functions, if any. */ |
88365 | 581 #define DECODE_SYSTEM(name) \ |
582 (! NILP (Vlocale_coding_system) \ | |
583 && XFASTINT (Vlocale_coding_system) != 0 \ | |
584 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \ | |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
585 : str) |
39574
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
586 |
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
587 #else /* WINDOWSNT */ |
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
588 |
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
589 #define ENCODE_SYSTEM(str) string_make_unibyte(str) |
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
590 #define DECODE_SYSTEM(name) name |
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
591 |
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
592 #endif /* !WINDOWSNT */ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
593 |
89506 | 594 /* Used by the gtk menu code. Note that this encodes utf-8, not |
595 utf-8-emacs, so it's not a no-op. */ | |
596 #define ENCODE_UTF_8(str) code_convert_string_norecord (str, Qutf_8, 1) | |
597 | |
17052 | 598 /* Extern declarations. */ |
89666
7d38a63951c0
(make_conversion_work_buffer): Delete extern.
Kenichi Handa <handa@m17n.org>
parents:
89506
diff
changeset
|
599 extern Lisp_Object code_conversion_save P_ ((int, int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
600 extern int decoding_buffer_size P_ ((struct coding_system *, int)); |
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
601 extern int encoding_buffer_size P_ ((struct coding_system *, int)); |
88365 | 602 extern void setup_coding_system P_ ((Lisp_Object, struct coding_system *)); |
603 extern void detect_coding P_ ((struct coding_system *)); | |
88848
a55219c46b8c
(code_convert_region): Fix prototype.
Dave Love <fx@gnu.org>
parents:
88688
diff
changeset
|
604 extern Lisp_Object code_convert_region P_ ((Lisp_Object, Lisp_Object, |
88365 | 605 Lisp_Object, Lisp_Object, |
606 int, int)); | |
607 extern Lisp_Object code_convert_string P_ ((Lisp_Object, Lisp_Object, | |
608 Lisp_Object, int, int, int)); | |
29438
8c825a8566f5
Declare code_convert_string_norecord.
Dave Love <fx@gnu.org>
parents:
29310
diff
changeset
|
609 extern Lisp_Object code_convert_string_norecord P_ ((Lisp_Object, Lisp_Object, |
8c825a8566f5
Declare code_convert_string_norecord.
Dave Love <fx@gnu.org>
parents:
29310
diff
changeset
|
610 int)); |
88365 | 611 extern Lisp_Object raw_text_coding_system P_ ((Lisp_Object)); |
612 extern Lisp_Object coding_inherit_eol_type P_ ((Lisp_Object, Lisp_Object)); | |
613 | |
614 extern int decode_coding_gap P_ ((struct coding_system *, | |
615 EMACS_INT, EMACS_INT)); | |
616 extern int encode_coding_gap P_ ((struct coding_system *, | |
617 EMACS_INT, EMACS_INT)); | |
618 extern void decode_coding_object P_ ((struct coding_system *, | |
619 Lisp_Object, EMACS_INT, EMACS_INT, | |
620 EMACS_INT, EMACS_INT, Lisp_Object)); | |
621 extern void encode_coding_object P_ ((struct coding_system *, | |
622 Lisp_Object, EMACS_INT, EMACS_INT, | |
623 EMACS_INT, EMACS_INT, Lisp_Object)); | |
624 | |
625 #define decode_coding_region(coding, from, to) \ | |
626 decode_coding_object (coding, Fcurrent_buffer (), \ | |
627 from, CHAR_TO_BYTE (from), \ | |
628 to, CHAR_TO_BYTE (to), Fcurrent_buffer ()) | |
629 | |
630 | |
631 #define encode_coding_region(coding, from, to) \ | |
632 encode_coding_object (coding, Fcurrent_buffer (), \ | |
633 from, CHAR_TO_BYTE (from), \ | |
634 to, CHAR_TO_BYTE (to), Fcurrent_buffer ()) | |
635 | |
636 | |
637 #define decode_coding_string(coding, string, nocopy) \ | |
638 decode_coding_object (coding, string, 0, 0, XSTRING (string)->size, \ | |
639 STRING_BYTES (XSTRING (string)), Qt) | |
640 | |
641 #define encode_coding_string(coding, string, nocopy) \ | |
642 (encode_coding_object (coding, string, 0, 0, XSTRING (string)->size, \ | |
643 STRING_BYTES (XSTRING (string)), Qt), \ | |
644 (coding)->dst_object) | |
645 | |
646 | |
647 #define decode_coding_c_string(coding, src, bytes, dst_object) \ | |
648 do { \ | |
649 (coding)->source = (src); \ | |
650 (coding)->src_chars = (coding)->src_bytes = (bytes); \ | |
651 decode_coding_object ((coding), Qnil, 0, 0, (bytes), (bytes), \ | |
652 (dst_object)); \ | |
653 } while (0) | |
654 | |
655 | |
656 extern Lisp_Object preferred_coding_system P_ (()); | |
657 | |
658 | |
89483 | 659 extern Lisp_Object Qutf_8, Qutf_8_emacs; |
660 | |
17052 | 661 extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
88365 | 662 extern Lisp_Object Qcoding_system_p; |
663 extern Lisp_Object Qraw_text, Qemacs_mule, Qno_conversion, Qundecided; | |
664 extern Lisp_Object Qiso_2022; | |
17052 | 665 extern Lisp_Object Qbuffer_file_coding_system; |
88365 | 666 |
667 extern Lisp_Object Qunix, Qdos, Qmac; | |
17052 | 668 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
669 extern Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
670 extern Lisp_Object Qtranslation_table_id; |
22118
42e2ffa98618
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21901
diff
changeset
|
671 |
24201
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
672 /* Mnemonic strings to indicate each type of end-of-line. */ |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
673 extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
674 /* Mnemonic string to indicate type of end-of-line is not yet decided. */ |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
675 extern Lisp_Object eol_mnemonic_undecided; |
17052 | 676 |
677 #ifdef emacs | |
678 extern Lisp_Object Qfile_coding_system; | |
679 extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
680 extern Lisp_Object Qstart_process, Qopen_network_stream; | |
34107
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
681 extern Lisp_Object Qwrite_region; |
17052 | 682 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
683 extern char *emacs_strerror P_ ((int)); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
684 |
17052 | 685 /* Coding-system for reading files and receiving data from process. */ |
686 extern Lisp_Object Vcoding_system_for_read; | |
687 /* Coding-system for writing files and sending data to process. */ | |
688 extern Lisp_Object Vcoding_system_for_write; | |
689 /* Coding-system actually used in the latest I/O. */ | |
690 extern Lisp_Object Vlast_coding_system_used; | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
691 /* Coding-system to use with system messages (e.g. strerror). */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
692 extern Lisp_Object Vlocale_coding_system; |
17052 | 693 |
21573
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
694 /* If non-zero, process buffer inherits the coding system used to decode |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
695 the subprocess output. */ |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
696 extern int inherit_process_coding_system; |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
697 |
17052 | 698 /* Coding-system to be used for encoding terminal output. This |
699 structure contains information of a coding-system specified by the | |
700 function `set-terminal-coding-system'. */ | |
701 extern struct coding_system terminal_coding; | |
702 | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
703 /* Coding system to be used to encode text for terminal display when |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
704 terminal coding system is nil. */ |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
705 extern struct coding_system safe_terminal_coding; |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
706 |
17052 | 707 /* Coding-system of what is sent from terminal keyboard. This |
708 structure contains information of a coding-system specified by the | |
709 function `set-keyboard-coding-system'. */ | |
710 extern struct coding_system keyboard_coding; | |
711 | |
18181
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
712 /* Default coding systems used for process I/O. */ |
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
713 extern Lisp_Object Vdefault_process_coding_system; |
17052 | 714 |
88365 | 715 /* Function to call to force a user to force select a propert coding |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
716 system. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
717 extern Lisp_Object Vselect_safe_coding_system_function; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
718 |
48875
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
719 /* If nonzero, on writing a file, Vselect_safe_coding_system_function |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
720 is called even if Vcoding_system_for_write is non-nil. */ |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
721 extern int coding_system_require_warning; |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
722 |
21901
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
723 /* Coding system for file names, or nil if none. */ |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
724 extern Lisp_Object Vfile_name_coding_system; |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
725 |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
726 /* Coding system for file names used only when |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
727 Vfile_name_coding_system is nil. */ |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
728 extern Lisp_Object Vdefault_file_name_coding_system; |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
729 |
17052 | 730 #endif |
731 | |
34107
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
732 /* Error signaled when there's a problem with detecting coding system */ |
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
733 extern Lisp_Object Qcoding_system_error; |
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
734 |
88365 | 735 extern char emacs_mule_bytes[256]; |
736 extern int emacs_mule_string_char P_ ((unsigned char *)); | |
737 | |
29571
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
738 #endif /* EMACS_CODING_H */ |