Mercurial > emacs
annotate src/coding.c @ 89249:c17f4a5216ad
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 28 Oct 2002 20:18:17 +0000 |
parents | 101ee928c088 |
children | 1fd77c471ee6 |
rev | line source |
---|---|
88936 | 1 /* Coding system handler (conversion, detection, etc). |
20708 | 2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. |
18269
888bfd80db2c
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18180
diff
changeset
|
3 Licensed to the Free Software Foundation. |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
4 Copyright (C) 2001, 2002 Free Software Foundation, Inc. |
88365 | 5 Copyright (C) 2001, 2002 |
6 National Institute of Advanced Industrial Science and Technology (AIST) | |
7 Registration Number H13PRO009 | |
17052 | 8 |
17071 | 9 This file is part of GNU Emacs. |
10 | |
11 GNU Emacs is free software; you can redistribute it and/or modify | |
12 it under the terms of the GNU General Public License as published by | |
13 the Free Software Foundation; either version 2, or (at your option) | |
14 any later version. | |
15 | |
16 GNU Emacs is distributed in the hope that it will be useful, | |
17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 GNU General Public License for more details. | |
20 | |
21 You should have received a copy of the GNU General Public License | |
22 along with GNU Emacs; see the file COPYING. If not, write to | |
23 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 Boston, MA 02111-1307, USA. */ | |
17052 | 25 |
26 /*** TABLE OF CONTENTS *** | |
27 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
28 0. General comments |
17052 | 29 1. Preamble |
88365 | 30 2. Emacs' internal format (emacs-utf-8) handlers |
31 3. UTF-8 handlers | |
32 4. UTF-16 handlers | |
33 5. Charset-base coding systems handlers | |
34 6. emacs-mule (old Emacs' internal format) handlers | |
35 7. ISO2022 handlers | |
36 8. Shift-JIS and BIG5 handlers | |
37 9. CCL handlers | |
38 10. C library functions | |
39 11. Emacs Lisp library functions | |
40 12. Postamble | |
17052 | 41 |
42 */ | |
43 | |
88365 | 44 /*** 0. General comments *** |
45 | |
46 | |
47 CODING SYSTEM | |
48 | |
88485 | 49 A coding system is an object for an encoding mechanism that contains |
50 information about how to convert byte sequences to character | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
51 sequences and vice versa. When we say "decode", it means converting |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
52 a byte sequence of a specific coding system into a character |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
53 sequence that is represented by Emacs' internal coding system |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
54 `emacs-utf-8', and when we say "encode", it means converting a |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
55 character sequence of emacs-utf-8 to a byte sequence of a specific |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
56 coding system. |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
57 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
58 In Emacs Lisp, a coding system is represented by a Lisp symbol. In |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
59 C level, a coding system is represented by a vector of attributes |
88485 | 60 stored in the hash table Vcharset_hash_table. The conversion from |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
61 coding system symbol to attributes vector is done by looking up |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
62 Vcharset_hash_table by the symbol. |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
63 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
64 Coding systems are classified into the following types depending on |
88485 | 65 the encoding mechanism. Here's a brief description of the types. |
88365 | 66 |
67 o UTF-8 | |
68 | |
69 o UTF-16 | |
70 | |
71 o Charset-base coding system | |
72 | |
73 A coding system defined by one or more (coded) character sets. | |
88485 | 74 Decoding and encoding are done by a code converter defined for each |
88365 | 75 character set. |
76 | |
88485 | 77 o Old Emacs internal format (emacs-mule) |
78 | |
79 The coding system adopted by old versions of Emacs (20 and 21). | |
88365 | 80 |
81 o ISO2022-base coding system | |
17052 | 82 |
83 The most famous coding system for multiple character sets. X's | |
88365 | 84 Compound Text, various EUCs (Extended Unix Code), and coding systems |
85 used in the Internet communication such as ISO-2022-JP are all | |
86 variants of ISO2022. | |
87 | |
88 o SJIS (or Shift-JIS or MS-Kanji-Code) | |
89 | |
17052 | 90 A coding system to encode character sets: ASCII, JISX0201, and |
91 JISX0208. Widely used for PC's in Japan. Details are described in | |
88365 | 92 section 8. |
93 | |
94 o BIG5 | |
95 | |
96 A coding system to encode character sets: ASCII and Big5. Widely | |
88771 | 97 used for Chinese (mainly in Taiwan and Hong Kong). Details are |
88365 | 98 described in section 8. In this file, when we write "big5" (all |
99 lowercase), we mean the coding system, and when we write "Big5" | |
100 (capitalized), we mean the character set. | |
101 | |
102 o CCL | |
103 | |
88485 | 104 If a user wants to decode/encode text encoded in a coding system |
88365 | 105 not listed above, he can supply a decoder and an encoder for it in |
106 CCL (Code Conversion Language) programs. Emacs executes the CCL | |
107 program while decoding/encoding. | |
108 | |
109 o Raw-text | |
110 | |
88771 | 111 A coding system for text containing raw eight-bit data. Emacs |
88485 | 112 treats each byte of source text as a character (except for |
88365 | 113 end-of-line conversion). |
114 | |
115 o No-conversion | |
116 | |
117 Like raw text, but don't do end-of-line conversion. | |
118 | |
119 | |
120 END-OF-LINE FORMAT | |
121 | |
88485 | 122 How text end-of-line is encoded depends on operating system. For |
88365 | 123 instance, Unix's format is just one byte of LF (line-feed) code, |
18766 | 124 whereas DOS's format is two-byte sequence of `carriage-return' and |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
125 `line-feed' codes. MacOS's format is usually one byte of |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
126 `carriage-return'. |
17052 | 127 |
88485 | 128 Since text character encoding and end-of-line encoding are |
88365 | 129 independent, any coding system described above can take any format |
130 of end-of-line (except for no-conversion). | |
17052 | 131 |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
132 STRUCT CODING_SYSTEM |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
133 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
134 Before using a coding system for code conversion (i.e. decoding and |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
135 encoding), we setup a structure of type `struct coding_system'. |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
136 This structure keeps various information about a specific code |
88485 | 137 conversion (e.g. the location of source and destination data). |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
138 |
17052 | 139 */ |
140 | |
88365 | 141 /* COMMON MACROS */ |
142 | |
143 | |
17052 | 144 /*** GENERAL NOTES on `detect_coding_XXX ()' functions *** |
145 | |
88365 | 146 These functions check if a byte sequence specified as a source in |
147 CODING conforms to the format of XXX. Return 1 if the data contains | |
148 a byte sequence which can be decoded into non-ASCII characters by | |
149 the coding system. Otherwize (i.e. the data contains only ASCII | |
150 characters or invalid sequence) return 0. | |
151 | |
152 It also resets some bits of an integer pointed by MASK. The macros | |
153 CATEGORY_MASK_XXX specifies each bit of this integer. | |
154 | |
155 Below is the template of these functions. */ | |
156 | |
17052 | 157 #if 0 |
88365 | 158 static int |
159 detect_coding_XXX (coding, mask) | |
160 struct coding_system *coding; | |
161 int *mask; | |
17052 | 162 { |
88365 | 163 unsigned char *src = coding->source; |
164 unsigned char *src_end = coding->source + coding->src_bytes; | |
165 int multibytep = coding->src_multibyte; | |
166 int c; | |
167 int found = 0; | |
168 ...; | |
169 | |
170 while (1) | |
171 { | |
172 /* Get one byte from the source. If the souce is exausted, jump | |
173 to no_more_source:. */ | |
174 ONE_MORE_BYTE (c); | |
175 /* Check if it conforms to XXX. If not, break the loop. */ | |
176 } | |
177 /* As the data is invalid for XXX, reset a proper bits. */ | |
178 *mask &= ~CODING_CATEGORY_XXX; | |
179 return 0; | |
180 no_more_source: | |
181 /* The source exausted. */ | |
182 if (!found) | |
183 /* ASCII characters only. */ | |
184 return 0; | |
185 /* Some data should be decoded into non-ASCII characters. */ | |
186 *mask &= CODING_CATEGORY_XXX; | |
187 return 1; | |
17052 | 188 } |
189 #endif | |
190 | |
191 /*** GENERAL NOTES on `decode_coding_XXX ()' functions *** | |
192 | |
88365 | 193 These functions decode a byte sequence specified as a source by |
194 CODING. The resulting multibyte text goes to a place pointed to by | |
195 CODING->charbuf, the length of which should not exceed | |
196 CODING->charbuf_size; | |
197 | |
198 These functions set the information of original and decoded texts in | |
199 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used. | |
200 They also set CODING->result to one of CODING_RESULT_XXX indicating | |
201 how the decoding is finished. | |
202 | |
203 Below is the template of these functions. */ | |
204 | |
17052 | 205 #if 0 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
206 static void |
88365 | 207 decode_coding_XXXX (coding) |
17052 | 208 struct coding_system *coding; |
209 { | |
88365 | 210 unsigned char *src = coding->source + coding->consumed; |
211 unsigned char *src_end = coding->source + coding->src_bytes; | |
212 /* SRC_BASE remembers the start position in source in each loop. | |
213 The loop will be exited when there's not enough source code, or | |
214 when there's no room in CHARBUF for a decoded character. */ | |
215 unsigned char *src_base; | |
216 /* A buffer to produce decoded characters. */ | |
217 int *charbuf = coding->charbuf; | |
218 int *charbuf_end = charbuf + coding->charbuf_size; | |
219 int multibytep = coding->src_multibyte; | |
220 | |
221 while (1) | |
222 { | |
223 src_base = src; | |
224 if (charbuf < charbuf_end) | |
225 /* No more room to produce a decoded character. */ | |
226 break; | |
227 ONE_MORE_BYTE (c); | |
228 /* Decode it. */ | |
229 } | |
230 | |
231 no_more_source: | |
232 if (src_base < src_end | |
233 && coding->mode & CODING_MODE_LAST_BLOCK) | |
234 /* If the source ends by partial bytes to construct a character, | |
235 treat them as eight-bit raw data. */ | |
236 while (src_base < src_end && charbuf < charbuf_end) | |
237 *charbuf++ = *src_base++; | |
238 /* Remember how many bytes and characters we consumed. If the | |
239 source is multibyte, the bytes and chars are not identical. */ | |
240 coding->consumed = coding->consumed_char = src_base - coding->source; | |
241 /* Remember how many characters we produced. */ | |
242 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 243 } |
244 #endif | |
245 | |
246 /*** GENERAL NOTES on `encode_coding_XXX ()' functions *** | |
247 | |
88365 | 248 These functions encode SRC_BYTES length text at SOURCE of Emacs' |
249 internal multibyte format by CODING. The resulting byte sequence | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
250 goes to a place pointed to by DESTINATION, the length of which |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
251 should not exceed DST_BYTES. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
252 |
88365 | 253 These functions set the information of original and encoded texts in |
254 the members produced, produced_char, consumed, and consumed_char of | |
255 the structure *CODING. They also set the member result to one of | |
256 CODING_RESULT_XXX indicating how the encoding finished. | |
257 | |
258 DST_BYTES zero means that source area and destination area are | |
259 overlapped, which means that we can produce a encoded text until it | |
260 reaches at the head of not-yet-encoded source text. | |
261 | |
262 Below is a template of these functions. */ | |
17052 | 263 #if 0 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
264 static void |
88365 | 265 encode_coding_XXX (coding) |
17052 | 266 struct coding_system *coding; |
267 { | |
88365 | 268 int multibytep = coding->dst_multibyte; |
269 int *charbuf = coding->charbuf; | |
270 int *charbuf_end = charbuf->charbuf + coding->charbuf_used; | |
271 unsigned char *dst = coding->destination + coding->produced; | |
272 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
273 unsigned char *adjusted_dst_end = dst_end - _MAX_BYTES_PRODUCED_IN_LOOP_; | |
274 int produced_chars = 0; | |
275 | |
276 for (; charbuf < charbuf_end && dst < adjusted_dst_end; charbuf++) | |
277 { | |
278 int c = *charbuf; | |
279 /* Encode C into DST, and increment DST. */ | |
280 } | |
281 label_no_more_destination: | |
282 /* How many chars and bytes we produced. */ | |
283 coding->produced_char += produced_chars; | |
284 coding->produced = dst - coding->destination; | |
17052 | 285 } |
286 #endif | |
287 | |
288 | |
289 /*** 1. Preamble ***/ | |
290 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
291 #include <config.h> |
17052 | 292 #include <stdio.h> |
293 | |
294 #include "lisp.h" | |
295 #include "buffer.h" | |
88365 | 296 #include "character.h" |
17052 | 297 #include "charset.h" |
88365 | 298 #include "ccl.h" |
26847 | 299 #include "composite.h" |
17052 | 300 #include "coding.h" |
301 #include "window.h" | |
302 | |
88365 | 303 Lisp_Object Vcoding_system_hash_table; |
304 | |
305 Lisp_Object Qcoding_system, Qcoding_aliases, Qeol_type; | |
88646
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
306 Lisp_Object Qunix, Qdos; |
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
307 extern Lisp_Object Qmac; /* frame.c */ |
17052 | 308 Lisp_Object Qbuffer_file_coding_system; |
309 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
88365 | 310 Lisp_Object Qdefault_char; |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
311 Lisp_Object Qno_conversion, Qundecided; |
88365 | 312 Lisp_Object Qcharset, Qiso_2022, Qutf_8, Qutf_16, Qshift_jis, Qbig5; |
313 Lisp_Object Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig, Qutf_16_le; | |
314 Lisp_Object Qsignature, Qendian, Qbig, Qlittle; | |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
315 Lisp_Object Qcoding_system_history; |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
316 Lisp_Object Qvalid_codes; |
17052 | 317 |
318 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
319 Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
320 Lisp_Object Qstart_process, Qopen_network_stream; | |
321 Lisp_Object Qtarget_idx; | |
322 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
323 Lisp_Object Vselect_safe_coding_system_function; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
324 |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
325 /* Mnemonic string for each format of end-of-line. */ |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
326 Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
327 /* Mnemonic string to indicate format of end-of-line is not yet |
17052 | 328 decided. */ |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
329 Lisp_Object eol_mnemonic_undecided; |
17052 | 330 |
331 #ifdef emacs | |
332 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
333 Lisp_Object Vcoding_system_list, Vcoding_system_alist; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
334 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
335 Lisp_Object Qcoding_system_p, Qcoding_system_error; |
17052 | 336 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
337 /* Coding system emacs-mule and raw-text are for converting only |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
338 end-of-line format. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
339 Lisp_Object Qemacs_mule, Qraw_text; |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
340 |
17052 | 341 /* Coding-systems are handed between Emacs Lisp programs and C internal |
342 routines by the following three variables. */ | |
343 /* Coding-system for reading files and receiving data from process. */ | |
344 Lisp_Object Vcoding_system_for_read; | |
345 /* Coding-system for writing files and sending data to process. */ | |
346 Lisp_Object Vcoding_system_for_write; | |
347 /* Coding-system actually used in the latest I/O. */ | |
348 Lisp_Object Vlast_coding_system_used; | |
349 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
350 /* A vector of length 256 which contains information about special |
22529 | 351 Latin codes (especially for dealing with Microsoft codes). */ |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
352 Lisp_Object Vlatin_extra_code_table; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
353 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
354 /* Flag to inhibit code conversion of end-of-line format. */ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
355 int inhibit_eol_conversion; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
356 |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
357 /* Flag to inhibit ISO2022 escape sequence detection. */ |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
358 int inhibit_iso_escape_detection; |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
359 |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
360 /* Flag to make buffer-file-coding-system inherit from process-coding. */ |
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
361 int inherit_process_coding_system; |
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
362 |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
363 /* Coding system to be used to encode text for terminal display. */ |
17052 | 364 struct coding_system terminal_coding; |
365 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
366 /* Coding system to be used to encode text for terminal display when |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
367 terminal coding system is nil. */ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
368 struct coding_system safe_terminal_coding; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
369 |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
370 /* Coding system of what is sent from terminal keyboard. */ |
17052 | 371 struct coding_system keyboard_coding; |
372 | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
373 Lisp_Object Vfile_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
374 Lisp_Object Vprocess_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
375 Lisp_Object Vnetwork_coding_system_alist; |
17052 | 376 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
377 Lisp_Object Vlocale_coding_system; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
378 |
17052 | 379 #endif /* emacs */ |
380 | |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
381 /* Flag to tell if we look up translation table on character code |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
382 conversion. */ |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
383 Lisp_Object Venable_character_translation; |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
384 /* Standard translation table to look up on decoding (reading). */ |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
385 Lisp_Object Vstandard_translation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
386 /* Standard translation table to look up on encoding (writing). */ |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
387 Lisp_Object Vstandard_translation_table_for_encode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
388 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
389 Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
390 Lisp_Object Qtranslation_table_id; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
391 Lisp_Object Qtranslation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
392 Lisp_Object Qtranslation_table_for_encode; |
17052 | 393 |
394 /* Alist of charsets vs revision number. */ | |
88365 | 395 static Lisp_Object Vcharset_revision_table; |
17052 | 396 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
397 /* Default coding systems used for process I/O. */ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
398 Lisp_Object Vdefault_process_coding_system; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
399 |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
400 /* Global flag to tell that we can't call post-read-conversion and |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
401 pre-write-conversion functions. Usually the value is zero, but it |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
402 is set to 1 temporarily while such functions are running. This is |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
403 to avoid infinite recursive call. */ |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
404 static int inhibit_pre_post_conversion; |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
405 |
88365 | 406 /* Two special coding systems. */ |
407 Lisp_Object Vsjis_coding_system; | |
408 Lisp_Object Vbig5_coding_system; | |
409 | |
410 | |
411 static int detect_coding_utf_8 P_ ((struct coding_system *, int *)); | |
412 static void decode_coding_utf_8 P_ ((struct coding_system *)); | |
413 static int encode_coding_utf_8 P_ ((struct coding_system *)); | |
414 | |
415 static int detect_coding_utf_16 P_ ((struct coding_system *, int *)); | |
416 static void decode_coding_utf_16 P_ ((struct coding_system *)); | |
417 static int encode_coding_utf_16 P_ ((struct coding_system *)); | |
418 | |
419 static int detect_coding_iso_2022 P_ ((struct coding_system *, int *)); | |
420 static void decode_coding_iso_2022 P_ ((struct coding_system *)); | |
421 static int encode_coding_iso_2022 P_ ((struct coding_system *)); | |
422 | |
423 static int detect_coding_emacs_mule P_ ((struct coding_system *, int *)); | |
424 static void decode_coding_emacs_mule P_ ((struct coding_system *)); | |
425 static int encode_coding_emacs_mule P_ ((struct coding_system *)); | |
426 | |
427 static int detect_coding_sjis P_ ((struct coding_system *, int *)); | |
428 static void decode_coding_sjis P_ ((struct coding_system *)); | |
429 static int encode_coding_sjis P_ ((struct coding_system *)); | |
430 | |
431 static int detect_coding_big5 P_ ((struct coding_system *, int *)); | |
432 static void decode_coding_big5 P_ ((struct coding_system *)); | |
433 static int encode_coding_big5 P_ ((struct coding_system *)); | |
434 | |
435 static int detect_coding_ccl P_ ((struct coding_system *, int *)); | |
436 static void decode_coding_ccl P_ ((struct coding_system *)); | |
437 static int encode_coding_ccl P_ ((struct coding_system *)); | |
438 | |
439 static void decode_coding_raw_text P_ ((struct coding_system *)); | |
440 static int encode_coding_raw_text P_ ((struct coding_system *)); | |
441 | |
442 | |
443 /* ISO2022 section */ | |
444 | |
445 #define CODING_ISO_INITIAL(coding, reg) \ | |
446 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \ | |
447 coding_attr_iso_initial), \ | |
448 reg))) | |
449 | |
450 | |
451 #define CODING_ISO_REQUEST(coding, charset_id) \ | |
452 ((charset_id <= (coding)->max_charset_id \ | |
453 ? (coding)->safe_charsets[charset_id] \ | |
454 : -1)) | |
455 | |
456 | |
457 #define CODING_ISO_FLAGS(coding) \ | |
458 ((coding)->spec.iso_2022.flags) | |
459 #define CODING_ISO_DESIGNATION(coding, reg) \ | |
460 ((coding)->spec.iso_2022.current_designation[reg]) | |
461 #define CODING_ISO_INVOCATION(coding, plane) \ | |
462 ((coding)->spec.iso_2022.current_invocation[plane]) | |
463 #define CODING_ISO_SINGLE_SHIFTING(coding) \ | |
464 ((coding)->spec.iso_2022.single_shifting) | |
465 #define CODING_ISO_BOL(coding) \ | |
466 ((coding)->spec.iso_2022.bol) | |
467 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \ | |
468 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane))) | |
469 | |
470 /* Control characters of ISO2022. */ | |
471 /* code */ /* function */ | |
472 #define ISO_CODE_LF 0x0A /* line-feed */ | |
473 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
474 #define ISO_CODE_SO 0x0E /* shift-out */ | |
475 #define ISO_CODE_SI 0x0F /* shift-in */ | |
476 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
477 #define ISO_CODE_ESC 0x1B /* escape */ | |
478 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
479 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
480 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */ | |
481 | |
482 /* All code (1-byte) of ISO2022 is classified into one of the | |
483 followings. */ | |
484 enum iso_code_class_type | |
485 { | |
486 ISO_control_0, /* Control codes in the range | |
487 0x00..0x1F and 0x7F, except for the | |
488 following 5 codes. */ | |
489 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */ | |
490 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
491 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
492 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
493 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
494 ISO_control_1, /* Control codes in the range | |
495 0x80..0x9F, except for the | |
496 following 3 codes. */ | |
497 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
498 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
499 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
500 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
501 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
502 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
503 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
504 }; | |
505 | |
506 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the | |
507 `iso-flags' attribute of an iso2022 coding system. */ | |
508 | |
509 /* If set, produce long-form designation sequence (e.g. ESC $ ( A) | |
510 instead of the correct short-form sequence (e.g. ESC $ A). */ | |
511 #define CODING_ISO_FLAG_LONG_FORM 0x0001 | |
512 | |
513 /* If set, reset graphic planes and registers at end-of-line to the | |
514 initial state. */ | |
515 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002 | |
516 | |
517 /* If set, reset graphic planes and registers before any control | |
518 characters to the initial state. */ | |
519 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004 | |
520 | |
521 /* If set, encode by 7-bit environment. */ | |
522 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008 | |
523 | |
524 /* If set, use locking-shift function. */ | |
525 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010 | |
526 | |
527 /* If set, use single-shift function. Overwrite | |
528 CODING_ISO_FLAG_LOCKING_SHIFT. */ | |
529 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020 | |
530 | |
531 /* If set, use designation escape sequence. */ | |
532 #define CODING_ISO_FLAG_DESIGNATION 0x0040 | |
533 | |
534 /* If set, produce revision number sequence. */ | |
535 #define CODING_ISO_FLAG_REVISION 0x0080 | |
536 | |
537 /* If set, produce ISO6429's direction specifying sequence. */ | |
538 #define CODING_ISO_FLAG_DIRECTION 0x0100 | |
539 | |
540 /* If set, assume designation states are reset at beginning of line on | |
541 output. */ | |
542 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200 | |
543 | |
544 /* If set, designation sequence should be placed at beginning of line | |
545 on output. */ | |
546 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400 | |
547 | |
548 /* If set, do not encode unsafe charactes on output. */ | |
549 #define CODING_ISO_FLAG_SAFE 0x0800 | |
550 | |
551 /* If set, extra latin codes (128..159) are accepted as a valid code | |
552 on input. */ | |
553 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000 | |
554 | |
555 #define CODING_ISO_FLAG_COMPOSITION 0x2000 | |
556 | |
557 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 | |
558 | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
559 #define CODING_ISO_FLAG_USE_ROMAN 0x8000 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
560 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
561 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
562 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
563 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000 |
88365 | 564 |
565 /* A character to be produced on output if encoding of the original | |
566 character is prohibited by CODING_ISO_FLAG_SAFE. */ | |
567 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?' | |
568 | |
569 | |
570 /* UTF-16 section */ | |
571 #define CODING_UTF_16_BOM(coding) \ | |
572 ((coding)->spec.utf_16.bom) | |
573 | |
574 #define CODING_UTF_16_ENDIAN(coding) \ | |
575 ((coding)->spec.utf_16.endian) | |
576 | |
577 #define CODING_UTF_16_SURROGATE(coding) \ | |
578 ((coding)->spec.utf_16.surrogate) | |
579 | |
580 | |
581 /* CCL section */ | |
582 #define CODING_CCL_DECODER(coding) \ | |
583 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder) | |
584 #define CODING_CCL_ENCODER(coding) \ | |
585 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder) | |
586 #define CODING_CCL_VALIDS(coding) \ | |
587 (XSTRING (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)) \ | |
588 ->data) | |
589 | |
88771 | 590 /* Index for each coding category in `coding_categories' */ |
88365 | 591 |
592 enum coding_category | |
593 { | |
594 coding_category_iso_7, | |
595 coding_category_iso_7_tight, | |
596 coding_category_iso_8_1, | |
597 coding_category_iso_8_2, | |
598 coding_category_iso_7_else, | |
599 coding_category_iso_8_else, | |
600 coding_category_utf_8, | |
601 coding_category_utf_16_auto, | |
602 coding_category_utf_16_be, | |
603 coding_category_utf_16_le, | |
604 coding_category_utf_16_be_nosig, | |
605 coding_category_utf_16_le_nosig, | |
606 coding_category_charset, | |
607 coding_category_sjis, | |
608 coding_category_big5, | |
609 coding_category_ccl, | |
610 coding_category_emacs_mule, | |
611 /* All above are targets of code detection. */ | |
612 coding_category_raw_text, | |
613 coding_category_undecided, | |
614 coding_category_max | |
615 }; | |
616 | |
617 /* Definitions of flag bits used in detect_coding_XXXX. */ | |
618 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7) | |
619 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight) | |
620 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1) | |
621 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2) | |
622 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else) | |
623 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else) | |
624 #define CATEGORY_MASK_UTF_8 (1 << coding_category_utf_8) | |
625 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be) | |
626 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le) | |
627 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig) | |
628 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig) | |
629 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset) | |
630 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis) | |
631 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5) | |
632 #define CATEGORY_MASK_CCL (1 << coding_category_ccl) | |
633 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule) | |
634 | |
635 /* This value is returned if detect_coding_mask () find nothing other | |
636 than ASCII characters. */ | |
637 #define CATEGORY_MASK_ANY \ | |
638 (CATEGORY_MASK_ISO_7 \ | |
639 | CATEGORY_MASK_ISO_7_TIGHT \ | |
640 | CATEGORY_MASK_ISO_8_1 \ | |
641 | CATEGORY_MASK_ISO_8_2 \ | |
642 | CATEGORY_MASK_ISO_7_ELSE \ | |
643 | CATEGORY_MASK_ISO_8_ELSE \ | |
644 | CATEGORY_MASK_UTF_8 \ | |
645 | CATEGORY_MASK_UTF_16_BE \ | |
646 | CATEGORY_MASK_UTF_16_LE \ | |
647 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
648 | CATEGORY_MASK_UTF_16_LE_NOSIG \ | |
649 | CATEGORY_MASK_CHARSET \ | |
650 | CATEGORY_MASK_SJIS \ | |
651 | CATEGORY_MASK_BIG5 \ | |
652 | CATEGORY_MASK_CCL \ | |
653 | CATEGORY_MASK_EMACS_MULE) | |
654 | |
655 | |
656 #define CATEGORY_MASK_ISO_7BIT \ | |
657 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT) | |
658 | |
659 #define CATEGORY_MASK_ISO_8BIT \ | |
660 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2) | |
661 | |
662 #define CATEGORY_MASK_ISO_ELSE \ | |
663 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE) | |
664 | |
665 #define CATEGORY_MASK_ISO_ESCAPE \ | |
666 (CATEGORY_MASK_ISO_7 \ | |
667 | CATEGORY_MASK_ISO_7_TIGHT \ | |
668 | CATEGORY_MASK_ISO_7_ELSE \ | |
669 | CATEGORY_MASK_ISO_8_ELSE) | |
670 | |
671 #define CATEGORY_MASK_ISO \ | |
672 ( CATEGORY_MASK_ISO_7BIT \ | |
673 | CATEGORY_MASK_ISO_8BIT \ | |
674 | CATEGORY_MASK_ISO_ELSE) | |
675 | |
676 #define CATEGORY_MASK_UTF_16 \ | |
677 (CATEGORY_MASK_UTF_16_BE \ | |
678 | CATEGORY_MASK_UTF_16_LE \ | |
679 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
680 | CATEGORY_MASK_UTF_16_LE_NOSIG) | |
681 | |
682 | |
683 /* List of symbols `coding-category-xxx' ordered by priority. This | |
684 variable is exposed to Emacs Lisp. */ | |
685 static Lisp_Object Vcoding_category_list; | |
686 | |
687 /* Table of coding categories (Lisp symbols). This variable is for | |
688 internal use oly. */ | |
689 static Lisp_Object Vcoding_category_table; | |
690 | |
691 /* Table of coding-categories ordered by priority. */ | |
692 static enum coding_category coding_priorities[coding_category_max]; | |
693 | |
694 /* Nth element is a coding context for the coding system bound to the | |
695 Nth coding category. */ | |
696 static struct coding_system coding_categories[coding_category_max]; | |
697 | |
698 static int detected_mask[coding_category_raw_text] = | |
699 { CATEGORY_MASK_ISO, | |
700 CATEGORY_MASK_ISO, | |
701 CATEGORY_MASK_ISO, | |
702 CATEGORY_MASK_ISO, | |
703 CATEGORY_MASK_ISO, | |
704 CATEGORY_MASK_ISO, | |
705 CATEGORY_MASK_UTF_8, | |
706 CATEGORY_MASK_UTF_16, | |
707 CATEGORY_MASK_UTF_16, | |
708 CATEGORY_MASK_UTF_16, | |
709 CATEGORY_MASK_UTF_16, | |
710 CATEGORY_MASK_UTF_16, | |
711 CATEGORY_MASK_CHARSET, | |
712 CATEGORY_MASK_SJIS, | |
713 CATEGORY_MASK_BIG5, | |
714 CATEGORY_MASK_CCL, | |
715 CATEGORY_MASK_EMACS_MULE | |
716 }; | |
717 | |
718 /*** Commonly used macros and functions ***/ | |
719 | |
720 #ifndef min | |
721 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
722 #endif | |
723 #ifndef max | |
724 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
725 #endif | |
726 | |
727 #define CODING_GET_INFO(coding, attrs, eol_type, charset_list) \ | |
728 do { \ | |
729 attrs = CODING_ID_ATTRS (coding->id); \ | |
730 eol_type = CODING_ID_EOL_TYPE (coding->id); \ | |
731 if (VECTORP (eol_type)) \ | |
732 eol_type = Qunix; \ | |
733 charset_list = CODING_ATTR_CHARSET_LIST (attrs); \ | |
734 } while (0) | |
735 | |
736 | |
737 /* Safely get one byte from the source text pointed by SRC which ends | |
738 at SRC_END, and set C to that byte. If there are not enough bytes | |
739 in the source, it jumps to `no_more_source'. The caller | |
740 should declare and set these variables appropriately in advance: | |
741 src, src_end, multibytep | |
742 */ | |
743 | |
744 #define ONE_MORE_BYTE(c) \ | |
745 do { \ | |
746 if (src == src_end) \ | |
747 { \ | |
748 if (src_base < src) \ | |
749 coding->result = CODING_RESULT_INSUFFICIENT_SRC; \ | |
750 goto no_more_source; \ | |
751 } \ | |
752 c = *src++; \ | |
753 if (multibytep && (c & 0x80)) \ | |
754 { \ | |
755 if ((c & 0xFE) != 0xC0) \ | |
756 error ("Undecodable char found"); \ | |
757 c = ((c & 1) << 6) | *src++; \ | |
758 } \ | |
759 consumed_chars++; \ | |
760 } while (0) | |
761 | |
762 | |
763 #define ONE_MORE_BYTE_NO_CHECK(c) \ | |
764 do { \ | |
765 c = *src++; \ | |
766 if (multibytep && (c & 0x80)) \ | |
767 { \ | |
768 if ((c & 0xFE) != 0xC0) \ | |
769 error ("Undecodable char found"); \ | |
770 c = ((c & 1) << 6) | *src++; \ | |
771 } \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
772 consumed_chars++; \ |
88365 | 773 } while (0) |
774 | |
775 | |
776 /* Store a byte C in the place pointed by DST and increment DST to the | |
777 next free point, and increment PRODUCED_CHARS. The caller should | |
778 assure that C is 0..127, and declare and set the variable `dst' | |
779 appropriately in advance. | |
780 */ | |
781 | |
782 | |
783 #define EMIT_ONE_ASCII_BYTE(c) \ | |
784 do { \ | |
785 produced_chars++; \ | |
786 *dst++ = (c); \ | |
787 } while (0) | |
788 | |
789 | |
790 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */ | |
791 | |
792 #define EMIT_TWO_ASCII_BYTES(c1, c2) \ | |
793 do { \ | |
794 produced_chars += 2; \ | |
795 *dst++ = (c1), *dst++ = (c2); \ | |
796 } while (0) | |
797 | |
798 | |
799 /* Store a byte C in the place pointed by DST and increment DST to the | |
800 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is | |
801 nonzero, store in an appropriate multibyte from. The caller should | |
802 declare and set the variables `dst' and `multibytep' appropriately | |
803 in advance. */ | |
804 | |
805 #define EMIT_ONE_BYTE(c) \ | |
806 do { \ | |
807 produced_chars++; \ | |
808 if (multibytep) \ | |
809 { \ | |
810 int ch = (c); \ | |
811 if (ch >= 0x80) \ | |
812 ch = BYTE8_TO_CHAR (ch); \ | |
813 CHAR_STRING_ADVANCE (ch, dst); \ | |
814 } \ | |
815 else \ | |
816 *dst++ = (c); \ | |
817 } while (0) | |
818 | |
819 | |
820 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */ | |
821 | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
822 #define EMIT_TWO_BYTES(c1, c2) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
823 do { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
824 produced_chars += 2; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
825 if (multibytep) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
826 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
827 int ch; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
828 \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
829 ch = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
830 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
831 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
832 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
833 ch = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
834 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
835 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
836 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
837 } \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
838 else \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
839 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
840 *dst++ = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
841 *dst++ = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
842 } \ |
88365 | 843 } while (0) |
844 | |
845 | |
846 #define EMIT_THREE_BYTES(c1, c2, c3) \ | |
847 do { \ | |
848 EMIT_ONE_BYTE (c1); \ | |
849 EMIT_TWO_BYTES (c2, c3); \ | |
850 } while (0) | |
851 | |
852 | |
853 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \ | |
854 do { \ | |
855 EMIT_TWO_BYTES (c1, c2); \ | |
856 EMIT_TWO_BYTES (c3, c4); \ | |
857 } while (0) | |
858 | |
859 | |
860 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \ | |
861 do { \ | |
862 charset_map_loaded = 0; \ | |
863 c = DECODE_CHAR (charset, code); \ | |
864 if (charset_map_loaded) \ | |
865 { \ | |
866 unsigned char *orig = coding->source; \ | |
867 EMACS_INT offset; \ | |
868 \ | |
869 coding_set_source (coding); \ | |
870 offset = coding->source - orig; \ | |
871 src += offset; \ | |
872 src_base += offset; \ | |
873 src_end += offset; \ | |
874 } \ | |
875 } while (0) | |
876 | |
877 | |
878 #define ASSURE_DESTINATION(bytes) \ | |
879 do { \ | |
880 if (dst + (bytes) >= dst_end) \ | |
881 { \ | |
882 int more_bytes = charbuf_end - charbuf + (bytes); \ | |
883 \ | |
884 dst = alloc_destination (coding, more_bytes, dst); \ | |
885 dst_end = coding->destination + coding->dst_bytes; \ | |
886 } \ | |
887 } while (0) | |
888 | |
889 | |
890 | |
891 static void | |
892 coding_set_source (coding) | |
893 struct coding_system *coding; | |
894 { | |
895 if (BUFFERP (coding->src_object)) | |
896 { | |
897 if (coding->src_pos < 0) | |
898 coding->source = GAP_END_ADDR + coding->src_pos_byte; | |
899 else | |
900 { | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
901 struct buffer *buf = XBUFFER (coding->src_object); |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
902 EMACS_INT gpt_byte = BUF_GPT_BYTE (buf); |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
903 unsigned char *beg_addr = BUF_BEG_ADDR (buf); |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
904 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
905 coding->source = beg_addr + coding->src_pos_byte - 1; |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
906 if (coding->src_pos_byte >= gpt_byte) |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
907 coding->source += BUF_GAP_SIZE (buf); |
88365 | 908 } |
909 } | |
910 else if (STRINGP (coding->src_object)) | |
911 { | |
912 coding->source = (XSTRING (coding->src_object)->data | |
913 + coding->src_pos_byte); | |
914 } | |
915 else | |
916 /* Otherwise, the source is C string and is never relocated | |
917 automatically. Thus we don't have to update anything. */ | |
918 ; | |
919 } | |
920 | |
921 static void | |
922 coding_set_destination (coding) | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
923 struct coding_system *coding; |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
924 { |
88365 | 925 if (BUFFERP (coding->dst_object)) |
926 { | |
927 if (coding->src_pos < 0) | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
928 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
929 coding->destination = BEG_ADDR + coding->dst_pos_byte - 1; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
930 coding->dst_bytes = (GAP_END_ADDR |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
931 - (coding->src_bytes - coding->consumed) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
932 - coding->destination); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
933 } |
88365 | 934 else |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
935 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
936 /* We are sure that coding->dst_pos_byte is before the gap |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
937 of the buffer. */ |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
938 coding->destination = (BUF_BEG_ADDR (XBUFFER (coding->dst_object)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
939 + coding->dst_pos_byte - 1); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
940 coding->dst_bytes = (BUF_GAP_END_ADDR (XBUFFER (coding->dst_object)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
941 - coding->destination); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
942 } |
88365 | 943 } |
944 else | |
945 /* Otherwise, the destination is C string and is never relocated | |
946 automatically. Thus we don't have to update anything. */ | |
947 ; | |
948 } | |
949 | |
950 | |
951 static void | |
952 coding_alloc_by_realloc (coding, bytes) | |
953 struct coding_system *coding; | |
954 EMACS_INT bytes; | |
955 { | |
956 coding->destination = (unsigned char *) xrealloc (coding->destination, | |
957 coding->dst_bytes + bytes); | |
958 coding->dst_bytes += bytes; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
959 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
960 |
88365 | 961 static void |
962 coding_alloc_by_making_gap (coding, bytes) | |
963 struct coding_system *coding; | |
964 EMACS_INT bytes; | |
965 { | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
966 if (BUFFERP (coding->dst_object) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
967 && EQ (coding->src_object, coding->dst_object)) |
88365 | 968 { |
969 EMACS_INT add = coding->src_bytes - coding->consumed; | |
970 | |
971 GAP_SIZE -= add; ZV += add; Z += add; ZV_BYTE += add; Z_BYTE += add; | |
972 make_gap (bytes); | |
973 GAP_SIZE += add; ZV -= add; Z -= add; ZV_BYTE -= add; Z_BYTE -= add; | |
974 } | |
975 else | |
976 { | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
977 Lisp_Object this_buffer; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
978 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
979 this_buffer = Fcurrent_buffer (); |
88365 | 980 set_buffer_internal (XBUFFER (coding->dst_object)); |
981 make_gap (bytes); | |
982 set_buffer_internal (XBUFFER (this_buffer)); | |
983 } | |
984 } | |
985 | |
986 | |
987 static unsigned char * | |
988 alloc_destination (coding, nbytes, dst) | |
989 struct coding_system *coding; | |
990 int nbytes; | |
991 unsigned char *dst; | |
992 { | |
993 EMACS_INT offset = dst - coding->destination; | |
994 | |
995 if (BUFFERP (coding->dst_object)) | |
996 coding_alloc_by_making_gap (coding, nbytes); | |
997 else | |
998 coding_alloc_by_realloc (coding, nbytes); | |
999 coding->result = CODING_RESULT_SUCCESS; | |
1000 coding_set_destination (coding); | |
1001 dst = coding->destination + offset; | |
1002 return dst; | |
1003 } | |
1004 | |
1005 | |
1006 /*** 2. Emacs' internal format (emacs-utf-8) ***/ | |
1007 | |
1008 | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1009 |
17052 | 1010 |
88365 | 1011 /*** 3. UTF-8 ***/ |
1012 | |
1013 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
1014 Check if a text is encoded in UTF-8. If it is, return | |
1015 CATEGORY_MASK_UTF_8, else return 0. */ | |
1016 | |
1017 #define UTF_8_1_OCTET_P(c) ((c) < 0x80) | |
1018 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80) | |
1019 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0) | |
1020 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0) | |
1021 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0) | |
1022 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8) | |
1023 | |
1024 static int | |
1025 detect_coding_utf_8 (coding, mask) | |
1026 struct coding_system *coding; | |
1027 int *mask; | |
1028 { | |
1029 unsigned char *src = coding->source, *src_base = src; | |
1030 unsigned char *src_end = coding->source + coding->src_bytes; | |
1031 int multibytep = coding->src_multibyte; | |
1032 int consumed_chars = 0; | |
1033 int found = 0; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1034 int incomplete; |
88365 | 1035 |
1036 /* A coding system of this category is always ASCII compatible. */ | |
1037 src += coding->head_ascii; | |
1038 | |
1039 while (1) | |
1040 { | |
1041 int c, c1, c2, c3, c4; | |
1042 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1043 incomplete = 0; |
88365 | 1044 ONE_MORE_BYTE (c); |
1045 if (UTF_8_1_OCTET_P (c)) | |
1046 continue; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1047 incomplete = 1; |
88365 | 1048 ONE_MORE_BYTE (c1); |
1049 if (! UTF_8_EXTRA_OCTET_P (c1)) | |
1050 break; | |
1051 if (UTF_8_2_OCTET_LEADING_P (c)) | |
1052 { | |
1053 found++; | |
1054 continue; | |
1055 } | |
1056 ONE_MORE_BYTE (c2); | |
1057 if (! UTF_8_EXTRA_OCTET_P (c2)) | |
1058 break; | |
1059 if (UTF_8_3_OCTET_LEADING_P (c)) | |
1060 { | |
1061 found++; | |
1062 continue; | |
1063 } | |
1064 ONE_MORE_BYTE (c3); | |
1065 if (! UTF_8_EXTRA_OCTET_P (c3)) | |
1066 break; | |
1067 if (UTF_8_4_OCTET_LEADING_P (c)) | |
1068 { | |
1069 found++; | |
1070 continue; | |
1071 } | |
1072 ONE_MORE_BYTE (c4); | |
1073 if (! UTF_8_EXTRA_OCTET_P (c4)) | |
1074 break; | |
1075 if (UTF_8_5_OCTET_LEADING_P (c)) | |
1076 { | |
1077 found++; | |
1078 continue; | |
1079 } | |
1080 break; | |
1081 } | |
1082 *mask &= ~CATEGORY_MASK_UTF_8; | |
1083 return 0; | |
1084 | |
1085 no_more_source: | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1086 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1087 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1088 *mask &= ~CATEGORY_MASK_UTF_8; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1089 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1090 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1091 return found; |
88365 | 1092 } |
1093 | |
1094 | |
1095 static void | |
1096 decode_coding_utf_8 (coding) | |
1097 struct coding_system *coding; | |
1098 { | |
1099 unsigned char *src = coding->source + coding->consumed; | |
1100 unsigned char *src_end = coding->source + coding->src_bytes; | |
1101 unsigned char *src_base; | |
1102 int *charbuf = coding->charbuf; | |
1103 int *charbuf_end = charbuf + coding->charbuf_size; | |
1104 int consumed_chars = 0, consumed_chars_base; | |
1105 int multibytep = coding->src_multibyte; | |
1106 Lisp_Object attr, eol_type, charset_list; | |
1107 | |
1108 CODING_GET_INFO (coding, attr, eol_type, charset_list); | |
1109 | |
1110 while (1) | |
1111 { | |
1112 int c, c1, c2, c3, c4, c5; | |
1113 | |
1114 src_base = src; | |
1115 consumed_chars_base = consumed_chars; | |
1116 | |
1117 if (charbuf >= charbuf_end) | |
1118 break; | |
1119 | |
1120 ONE_MORE_BYTE (c1); | |
1121 if (UTF_8_1_OCTET_P(c1)) | |
1122 { | |
1123 c = c1; | |
1124 if (c == '\r') | |
1125 { | |
1126 if (EQ (eol_type, Qdos)) | |
1127 { | |
1128 if (src == src_end) | |
1129 goto no_more_source; | |
1130 if (*src == '\n') | |
1131 ONE_MORE_BYTE (c); | |
1132 } | |
1133 else if (EQ (eol_type, Qmac)) | |
1134 c = '\n'; | |
1135 } | |
1136 } | |
1137 else | |
1138 { | |
1139 ONE_MORE_BYTE (c2); | |
1140 if (! UTF_8_EXTRA_OCTET_P (c2)) | |
1141 goto invalid_code; | |
1142 if (UTF_8_2_OCTET_LEADING_P (c1)) | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1143 { |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1144 c = ((c1 & 0x1F) << 6) | (c2 & 0x3F); |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1145 /* Reject overlong sequences here and below. Encoders |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1146 producing them are incorrect, they can be misleading, |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1147 and they mess up read/write invariance. */ |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1148 if (c < 128) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1149 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1150 } |
88365 | 1151 else |
1152 { | |
1153 ONE_MORE_BYTE (c3); | |
1154 if (! UTF_8_EXTRA_OCTET_P (c3)) | |
1155 goto invalid_code; | |
1156 if (UTF_8_3_OCTET_LEADING_P (c1)) | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1157 { |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1158 c = (((c1 & 0xF) << 12) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1159 | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); |
89184
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1160 if (c < 0x800 |
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1161 || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */ |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1162 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1163 } |
88365 | 1164 else |
1165 { | |
1166 ONE_MORE_BYTE (c4); | |
1167 if (! UTF_8_EXTRA_OCTET_P (c4)) | |
1168 goto invalid_code; | |
1169 if (UTF_8_4_OCTET_LEADING_P (c1)) | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1170 { |
88365 | 1171 c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12) |
1172 | ((c3 & 0x3F) << 6) | (c4 & 0x3F)); | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1173 if (c < 0x10000) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1174 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1175 } |
88365 | 1176 else |
1177 { | |
1178 ONE_MORE_BYTE (c5); | |
1179 if (! UTF_8_EXTRA_OCTET_P (c5)) | |
1180 goto invalid_code; | |
1181 if (UTF_8_5_OCTET_LEADING_P (c1)) | |
1182 { | |
1183 c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18) | |
1184 | ((c3 & 0x3F) << 12) | ((c4 & 0x3F) << 6) | |
1185 | (c5 & 0x3F)); | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1186 if ((c > MAX_CHAR) || (c < 0x200000)) |
88365 | 1187 goto invalid_code; |
1188 } | |
1189 else | |
1190 goto invalid_code; | |
1191 } | |
1192 } | |
1193 } | |
1194 } | |
1195 | |
1196 *charbuf++ = c; | |
1197 continue; | |
1198 | |
1199 invalid_code: | |
1200 src = src_base; | |
1201 consumed_chars = consumed_chars_base; | |
1202 ONE_MORE_BYTE (c); | |
1203 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
1204 coding->errors++; | |
1205 } | |
1206 | |
1207 no_more_source: | |
1208 coding->consumed_char += consumed_chars_base; | |
1209 coding->consumed = src_base - coding->source; | |
1210 coding->charbuf_used = charbuf - coding->charbuf; | |
1211 } | |
1212 | |
1213 | |
1214 static int | |
1215 encode_coding_utf_8 (coding) | |
1216 struct coding_system *coding; | |
1217 { | |
1218 int multibytep = coding->dst_multibyte; | |
1219 int *charbuf = coding->charbuf; | |
1220 int *charbuf_end = charbuf + coding->charbuf_used; | |
1221 unsigned char *dst = coding->destination + coding->produced; | |
1222 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1223 int produced_chars = 0; |
88365 | 1224 int c; |
1225 | |
1226 if (multibytep) | |
1227 { | |
1228 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
1229 | |
1230 while (charbuf < charbuf_end) | |
1231 { | |
1232 unsigned char str[MAX_MULTIBYTE_LENGTH], *p, *pend = str; | |
1233 | |
1234 ASSURE_DESTINATION (safe_room); | |
1235 c = *charbuf++; | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1236 if (CHAR_BYTE8_P (c)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1237 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1238 c = CHAR_TO_BYTE8 (c); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1239 EMIT_ONE_BYTE (c); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1240 } |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1241 else |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1242 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1243 CHAR_STRING_ADVANCE (c, pend); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1244 for (p = str; p < pend; p++) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1245 EMIT_ONE_BYTE (*p); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1246 } |
88365 | 1247 } |
1248 } | |
1249 else | |
1250 { | |
1251 int safe_room = MAX_MULTIBYTE_LENGTH; | |
1252 | |
1253 while (charbuf < charbuf_end) | |
1254 { | |
1255 ASSURE_DESTINATION (safe_room); | |
1256 c = *charbuf++; | |
1257 dst += CHAR_STRING (c, dst); | |
1258 produced_chars++; | |
1259 } | |
1260 } | |
1261 coding->result = CODING_RESULT_SUCCESS; | |
1262 coding->produced_char += produced_chars; | |
1263 coding->produced = dst - coding->destination; | |
1264 return 0; | |
1265 } | |
1266 | |
1267 | |
1268 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
1269 Check if a text is encoded in UTF-16 Big Endian (endian == 1) or | |
1270 Little Endian (otherwise). If it is, return | |
1271 CATEGORY_MASK_UTF_16_BE or CATEGORY_MASK_UTF_16_LE, | |
1272 else return 0. */ | |
1273 | |
1274 #define UTF_16_HIGH_SURROGATE_P(val) \ | |
1275 (((val) & 0xFC00) == 0xD800) | |
1276 | |
1277 #define UTF_16_LOW_SURROGATE_P(val) \ | |
1278 (((val) & 0xFC00) == 0xDC00) | |
1279 | |
1280 #define UTF_16_INVALID_P(val) \ | |
1281 (((val) == 0xFFFE) \ | |
1282 || ((val) == 0xFFFF) \ | |
1283 || UTF_16_LOW_SURROGATE_P (val)) | |
1284 | |
1285 | |
1286 static int | |
1287 detect_coding_utf_16 (coding, mask) | |
1288 struct coding_system *coding; | |
1289 int *mask; | |
1290 { | |
1291 unsigned char *src = coding->source, *src_base = src; | |
1292 unsigned char *src_end = coding->source + coding->src_bytes; | |
1293 int multibytep = coding->src_multibyte; | |
1294 int consumed_chars = 0; | |
1295 int c1, c2; | |
1296 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1297 *mask &= ~CATEGORY_MASK_UTF_16; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1298 |
88365 | 1299 ONE_MORE_BYTE (c1); |
1300 ONE_MORE_BYTE (c2); | |
1301 | |
1302 if ((c1 == 0xFF) && (c2 == 0xFE)) | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1303 *mask |= CATEGORY_MASK_UTF_16_LE; |
88365 | 1304 else if ((c1 == 0xFE) && (c2 == 0xFF)) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1305 *mask |= CATEGORY_MASK_UTF_16_BE; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1306 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1307 *mask |= CATEGORY_MASK_UTF_16_BE_NOSIG | CATEGORY_MASK_UTF_16_LE_NOSIG; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1308 return 1; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1309 |
88365 | 1310 no_more_source: |
1311 return 0; | |
1312 } | |
1313 | |
1314 static void | |
1315 decode_coding_utf_16 (coding) | |
1316 struct coding_system *coding; | |
1317 { | |
1318 unsigned char *src = coding->source + coding->consumed; | |
1319 unsigned char *src_end = coding->source + coding->src_bytes; | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
1320 unsigned char *src_base; |
88365 | 1321 int *charbuf = coding->charbuf; |
1322 int *charbuf_end = charbuf + coding->charbuf_size; | |
1323 int consumed_chars = 0, consumed_chars_base; | |
1324 int multibytep = coding->src_multibyte; | |
1325 enum utf_16_bom_type bom = CODING_UTF_16_BOM (coding); | |
1326 enum utf_16_endian_type endian = CODING_UTF_16_ENDIAN (coding); | |
1327 int surrogate = CODING_UTF_16_SURROGATE (coding); | |
1328 Lisp_Object attr, eol_type, charset_list; | |
1329 | |
1330 CODING_GET_INFO (coding, attr, eol_type, charset_list); | |
1331 | |
1332 if (bom != utf_16_without_bom) | |
1333 { | |
1334 int c, c1, c2; | |
1335 | |
1336 src_base = src; | |
1337 ONE_MORE_BYTE (c1); | |
1338 ONE_MORE_BYTE (c2); | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1339 c = (c1 << 8) | c2; |
88365 | 1340 if (bom == utf_16_with_bom) |
1341 { | |
1342 if (endian == utf_16_big_endian | |
1343 ? c != 0xFFFE : c != 0xFEFF) | |
1344 { | |
1345 /* We are sure that there's enouph room at CHARBUF. */ | |
1346 *charbuf++ = c1; | |
1347 *charbuf++ = c2; | |
1348 coding->errors++; | |
1349 } | |
1350 } | |
1351 else | |
1352 { | |
1353 if (c == 0xFFFE) | |
1354 CODING_UTF_16_ENDIAN (coding) | |
1355 = endian = utf_16_big_endian; | |
1356 else if (c == 0xFEFF) | |
1357 CODING_UTF_16_ENDIAN (coding) | |
1358 = endian = utf_16_little_endian; | |
1359 else | |
1360 { | |
1361 CODING_UTF_16_ENDIAN (coding) | |
1362 = endian = utf_16_big_endian; | |
1363 src = src_base; | |
1364 } | |
1365 } | |
1366 CODING_UTF_16_BOM (coding) = utf_16_with_bom; | |
1367 } | |
1368 | |
1369 while (1) | |
1370 { | |
1371 int c, c1, c2; | |
1372 | |
1373 src_base = src; | |
1374 consumed_chars_base = consumed_chars; | |
1375 | |
1376 if (charbuf + 2 >= charbuf_end) | |
1377 break; | |
1378 | |
1379 ONE_MORE_BYTE (c1); | |
1380 ONE_MORE_BYTE (c2); | |
1381 c = (endian == utf_16_big_endian | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1382 ? ((c1 << 8) | c2) : ((c2 << 8) | c1)); |
88365 | 1383 if (surrogate) |
1384 { | |
1385 if (! UTF_16_LOW_SURROGATE_P (c)) | |
1386 { | |
1387 if (endian == utf_16_big_endian) | |
1388 c1 = surrogate >> 8, c2 = surrogate & 0xFF; | |
1389 else | |
1390 c1 = surrogate & 0xFF, c2 = surrogate >> 8; | |
1391 *charbuf++ = c1; | |
1392 *charbuf++ = c2; | |
1393 coding->errors++; | |
1394 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1395 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1396 else | |
1397 *charbuf++ = c; | |
1398 } | |
1399 else | |
1400 { | |
1401 c = ((surrogate - 0xD800) << 10) | (c - 0xDC00); | |
1402 CODING_UTF_16_SURROGATE (coding) = surrogate = 0; | |
1403 *charbuf++ = c; | |
1404 } | |
1405 } | |
1406 else | |
1407 { | |
1408 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1409 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1410 else | |
1411 *charbuf++ = c; | |
1412 } | |
1413 } | |
1414 | |
1415 no_more_source: | |
1416 coding->consumed_char += consumed_chars_base; | |
1417 coding->consumed = src_base - coding->source; | |
1418 coding->charbuf_used = charbuf - coding->charbuf; | |
1419 } | |
1420 | |
1421 static int | |
1422 encode_coding_utf_16 (coding) | |
1423 struct coding_system *coding; | |
1424 { | |
1425 int multibytep = coding->dst_multibyte; | |
1426 int *charbuf = coding->charbuf; | |
1427 int *charbuf_end = charbuf + coding->charbuf_used; | |
1428 unsigned char *dst = coding->destination + coding->produced; | |
1429 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
1430 int safe_room = 8; | |
1431 enum utf_16_bom_type bom = CODING_UTF_16_BOM (coding); | |
1432 int big_endian = CODING_UTF_16_ENDIAN (coding) == utf_16_big_endian; | |
1433 int produced_chars = 0; | |
1434 Lisp_Object attrs, eol_type, charset_list; | |
1435 int c; | |
1436 | |
1437 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
1438 | |
1439 if (bom == utf_16_with_bom) | |
1440 { | |
1441 ASSURE_DESTINATION (safe_room); | |
1442 if (big_endian) | |
1443 EMIT_TWO_BYTES (0xFF, 0xFE); | |
1444 else | |
1445 EMIT_TWO_BYTES (0xFE, 0xFF); | |
1446 CODING_UTF_16_BOM (coding) = utf_16_without_bom; | |
1447 } | |
1448 | |
1449 while (charbuf < charbuf_end) | |
1450 { | |
1451 ASSURE_DESTINATION (safe_room); | |
1452 c = *charbuf++; | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1453 if (c >= MAX_UNICODE_CHAR) |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1454 c = coding->default_char; |
88365 | 1455 |
1456 if (c < 0x10000) | |
1457 { | |
1458 if (big_endian) | |
1459 EMIT_TWO_BYTES (c >> 8, c & 0xFF); | |
1460 else | |
1461 EMIT_TWO_BYTES (c & 0xFF, c >> 8); | |
1462 } | |
1463 else | |
1464 { | |
1465 int c1, c2; | |
1466 | |
1467 c -= 0x10000; | |
1468 c1 = (c >> 10) + 0xD800; | |
1469 c2 = (c & 0x3FF) + 0xDC00; | |
1470 if (big_endian) | |
1471 EMIT_FOUR_BYTES (c1 >> 8, c1 & 0xFF, c2 >> 8, c2 & 0xFF); | |
1472 else | |
1473 EMIT_FOUR_BYTES (c1 & 0xFF, c1 >> 8, c2 & 0xFF, c2 >> 8); | |
1474 } | |
1475 } | |
1476 coding->result = CODING_RESULT_SUCCESS; | |
1477 coding->produced = dst - coding->destination; | |
1478 coding->produced_char += produced_chars; | |
1479 return 0; | |
1480 } | |
1481 | |
1482 | |
1483 /*** 6. Old Emacs' internal format (emacs-mule) ***/ | |
17052 | 1484 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1485 /* Emacs' internal format for representation of multiple character |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1486 sets is a kind of multi-byte encoding, i.e. characters are |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1487 represented by variable-length sequences of one-byte codes. |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1488 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1489 ASCII characters and control characters (e.g. `tab', `newline') are |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1490 represented by one-byte sequences which are their ASCII codes, in |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1491 the range 0x00 through 0x7F. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1492 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1493 8-bit characters of the range 0x80..0x9F are represented by |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1494 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1495 code + 0x20). |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1496 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1497 8-bit characters of the range 0xA0..0xFF are represented by |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1498 one-byte sequences which are their 8-bit code. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1499 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1500 The other characters are represented by a sequence of `base |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1501 leading-code', optional `extended leading-code', and one or two |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1502 `position-code's. The length of the sequence is determined by the |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1503 base leading-code. Leading-code takes the range 0x81 through 0x9D, |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1504 whereas extended leading-code and position-code take the range 0xA0 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1505 through 0xFF. See `charset.h' for more details about leading-code |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1506 and position-code. |
18766 | 1507 |
17052 | 1508 --- CODE RANGE of Emacs' internal format --- |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1509 character set range |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1510 ------------- ----- |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1511 ascii 0x00..0x7F |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1512 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1513 eight-bit-graphic 0xA0..0xBF |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1514 ELSE 0x81..0x9D + [0xA0..0xFF]+ |
17052 | 1515 --------------------------------------------- |
1516 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1517 As this is the internal character representation, the format is |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1518 usually not used externally (i.e. in a file or in a data sent to a |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1519 process). But, it is possible to have a text externally in this |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1520 format (i.e. by encoding by the coding system `emacs-mule'). |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1521 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1522 In that case, a sequence of one-byte codes has a slightly different |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1523 form. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1524 |
88365 | 1525 At first, all characters in eight-bit-control are represented by |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1526 one-byte sequences which are their 8-bit code. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1527 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1528 Next, character composition data are represented by the byte |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1529 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ..., |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1530 where, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1531 METHOD is 0xF0 plus one of composition method (enum |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1532 composition_method), |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1533 |
88365 | 1534 BYTES is 0xA0 plus a byte length of this composition data, |
1535 | |
1536 CHARS is 0x20 plus a number of characters composed by this | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1537 data, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1538 |
88365 | 1539 COMPONENTs are characters of multibye form or composition |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1540 rules encoded by two-byte of ASCII codes. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1541 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1542 In addition, for backward compatibility, the following formats are |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1543 also recognized as composition data on decoding. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1544 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1545 0x80 MSEQ ... |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1546 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1547 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1548 Here, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1549 MSEQ is a multibyte form but in these special format: |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1550 ASCII: 0xA0 ASCII_CODE+0x80, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1551 other: LEADING_CODE+0x20 FOLLOWING-BYTE ..., |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1552 RULE is a one byte code of the range 0xA0..0xF0 that |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1553 represents a composition rule. |
17052 | 1554 */ |
1555 | |
88365 | 1556 char emacs_mule_bytes[256]; |
1557 | |
1558 int | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1559 emacs_mule_char (coding, src, nbytes, nchars) |
88365 | 1560 struct coding_system *coding; |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1561 unsigned char *src; |
88365 | 1562 int *nbytes, *nchars; |
1563 { | |
1564 unsigned char *src_end = coding->source + coding->src_bytes; | |
1565 int multibytep = coding->src_multibyte; | |
1566 unsigned char *src_base = src; | |
1567 struct charset *charset; | |
1568 unsigned code; | |
1569 int c; | |
1570 int consumed_chars = 0; | |
1571 | |
1572 ONE_MORE_BYTE (c); | |
1573 switch (emacs_mule_bytes[c]) | |
1574 { | |
1575 case 2: | |
1576 if (! (charset = emacs_mule_charset[c])) | |
1577 goto invalid_code; | |
1578 ONE_MORE_BYTE (c); | |
1579 code = c & 0x7F; | |
1580 break; | |
1581 | |
1582 case 3: | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
1583 if (c == EMACS_MULE_LEADING_CODE_PRIVATE_11 |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
1584 || c == EMACS_MULE_LEADING_CODE_PRIVATE_12) |
88365 | 1585 { |
1586 ONE_MORE_BYTE (c); | |
1587 if (! (charset = emacs_mule_charset[c])) | |
1588 goto invalid_code; | |
1589 ONE_MORE_BYTE (c); | |
1590 code = c & 0x7F; | |
1591 } | |
1592 else | |
1593 { | |
1594 if (! (charset = emacs_mule_charset[c])) | |
1595 goto invalid_code; | |
1596 ONE_MORE_BYTE (c); | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1597 code = (c & 0x7F) << 8; |
88365 | 1598 ONE_MORE_BYTE (c); |
1599 code |= c & 0x7F; | |
1600 } | |
1601 break; | |
1602 | |
1603 case 4: | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1604 ONE_MORE_BYTE (c); |
88365 | 1605 if (! (charset = emacs_mule_charset[c])) |
1606 goto invalid_code; | |
1607 ONE_MORE_BYTE (c); | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1608 code = (c & 0x7F) << 8; |
88365 | 1609 ONE_MORE_BYTE (c); |
1610 code |= c & 0x7F; | |
1611 break; | |
1612 | |
1613 case 1: | |
1614 code = c; | |
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
1615 charset = CHARSET_FROM_ID (ASCII_BYTE_P (code) |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
1616 ? charset_ascii : charset_eight_bit); |
88365 | 1617 break; |
1618 | |
1619 default: | |
1620 abort (); | |
1621 } | |
1622 c = DECODE_CHAR (charset, code); | |
1623 if (c < 0) | |
1624 goto invalid_code; | |
1625 *nbytes = src - src_base; | |
1626 *nchars = consumed_chars; | |
1627 return c; | |
1628 | |
1629 no_more_source: | |
1630 return -2; | |
1631 | |
1632 invalid_code: | |
1633 return -1; | |
1634 } | |
1635 | |
17052 | 1636 |
1637 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
88365 | 1638 Check if a text is encoded in `emacs-mule'. */ |
17052 | 1639 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
1640 static int |
88365 | 1641 detect_coding_emacs_mule (coding, mask) |
1642 struct coding_system *coding; | |
1643 int *mask; | |
17052 | 1644 { |
88365 | 1645 unsigned char *src = coding->source, *src_base = src; |
1646 unsigned char *src_end = coding->source + coding->src_bytes; | |
1647 int multibytep = coding->src_multibyte; | |
1648 int consumed_chars = 0; | |
1649 int c; | |
1650 int found = 0; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1651 int incomplete; |
88365 | 1652 |
1653 /* A coding system of this category is always ASCII compatible. */ | |
1654 src += coding->head_ascii; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1655 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1656 while (1) |
17052 | 1657 { |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1658 incomplete = 0; |
88365 | 1659 ONE_MORE_BYTE (c); |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1660 incomplete = 1; |
88365 | 1661 |
1662 if (c == 0x80) | |
17052 | 1663 { |
88365 | 1664 /* Perhaps the start of composite character. We simple skip |
1665 it because analyzing it is too heavy for detecting. But, | |
1666 at least, we check that the composite character | |
1667 constitues of more than 4 bytes. */ | |
1668 unsigned char *src_base; | |
1669 | |
1670 repeat: | |
1671 src_base = src; | |
1672 do | |
1673 { | |
1674 ONE_MORE_BYTE (c); | |
1675 } | |
1676 while (c >= 0xA0); | |
1677 | |
1678 if (src - src_base <= 4) | |
1679 break; | |
1680 found = 1; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1681 if (c == 0x80) |
88365 | 1682 goto repeat; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1683 } |
88365 | 1684 |
1685 if (c < 0x80) | |
1686 { | |
1687 if (c < 0x20 | |
1688 && (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) | |
1689 break; | |
1690 } | |
1691 else | |
1692 { | |
1693 unsigned char *src_base = src - 1; | |
1694 | |
1695 do | |
1696 { | |
1697 ONE_MORE_BYTE (c); | |
1698 } | |
1699 while (c >= 0xA0); | |
1700 if (src - src_base != emacs_mule_bytes[*src_base]) | |
1701 break; | |
1702 found = 1; | |
1703 } | |
1704 } | |
1705 *mask &= ~CATEGORY_MASK_EMACS_MULE; | |
1706 return 0; | |
1707 | |
1708 no_more_source: | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1709 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1710 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1711 *mask &= ~CATEGORY_MASK_EMACS_MULE; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1712 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1713 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1714 return found; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1715 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1716 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1717 |
88365 | 1718 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1719 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1720 /* Decode a character represented as a component of composition |
88365 | 1721 sequence of Emacs 20/21 style at SRC. Set C to that character and |
1722 update SRC to the head of next character (or an encoded composition | |
1723 rule). If SRC doesn't points a composition component, set C to -1. | |
1724 If SRC points an invalid byte sequence, global exit by a return | |
1725 value 0. */ | |
1726 | |
1727 #define DECODE_EMACS_MULE_COMPOSITION_CHAR(buf) \ | |
1728 if (1) \ | |
1729 { \ | |
1730 int c; \ | |
1731 int nbytes, nchars; \ | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1732 \ |
88365 | 1733 if (src == src_end) \ |
1734 break; \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1735 c = emacs_mule_char (coding, src, &nbytes, &nchars); \ |
88365 | 1736 if (c < 0) \ |
1737 { \ | |
1738 if (c == -2) \ | |
1739 break; \ | |
1740 goto invalid_code; \ | |
1741 } \ | |
1742 *buf++ = c; \ | |
1743 src += nbytes; \ | |
1744 consumed_chars += nchars; \ | |
1745 } \ | |
1746 else | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1747 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1748 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1749 /* Decode a composition rule represented as a component of composition |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1750 sequence of Emacs 20 style at SRC. Store the decoded rule in *BUF, |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1751 and increment BUF. If SRC points an invalid byte sequence, set C |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1752 to -1. */ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1753 |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1754 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(buf) \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1755 do { \ |
88365 | 1756 int c, gref, nref; \ |
1757 \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1758 if (src >= src_end) \ |
88365 | 1759 goto invalid_code; \ |
1760 ONE_MORE_BYTE_NO_CHECK (c); \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1761 c -= 0x20; \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1762 if (c < 0 || c >= 81) \ |
88365 | 1763 goto invalid_code; \ |
1764 \ | |
1765 gref = c / 9, nref = c % 9; \ | |
1766 *buf++ = COMPOSITION_ENCODE_RULE (gref, nref); \ | |
1767 } while (0) | |
1768 | |
1769 | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1770 /* Decode a composition rule represented as a component of composition |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1771 sequence of Emacs 21 style at SRC. Store the decoded rule in *BUF, |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1772 and increment BUF. If SRC points an invalid byte sequence, set C |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1773 to -1. */ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1774 |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1775 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(buf) \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1776 do { \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1777 int gref, nref; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1778 \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1779 if (src + 1>= src_end) \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1780 goto invalid_code; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1781 ONE_MORE_BYTE_NO_CHECK (gref); \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1782 gref -= 0x20; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1783 ONE_MORE_BYTE_NO_CHECK (nref); \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1784 nref -= 0x20; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1785 if (gref < 0 || gref >= 81 \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1786 || nref < 0 || nref >= 81) \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1787 goto invalid_code; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1788 *buf++ = COMPOSITION_ENCODE_RULE (gref, nref); \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1789 } while (0) |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1790 |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1791 |
88365 | 1792 #define ADD_COMPOSITION_DATA(buf, method, nchars) \ |
1793 do { \ | |
1794 *buf++ = -5; \ | |
1795 *buf++ = coding->produced_char + char_offset; \ | |
1796 *buf++ = CODING_ANNOTATE_COMPOSITION_MASK; \ | |
1797 *buf++ = method; \ | |
1798 *buf++ = nchars; \ | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1799 } while (0) |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1800 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1801 |
88365 | 1802 #define DECODE_EMACS_MULE_21_COMPOSITION(c) \ |
1803 do { \ | |
1804 /* Emacs 21 style format. The first three bytes at SRC are \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1805 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is \ |
88365 | 1806 the byte length of this composition information, CHARS is the \ |
1807 number of characters composed by this composition. */ \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1808 enum composition_method method = c - 0xF2; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1809 int *charbuf_base = charbuf; \ |
88365 | 1810 int consumed_chars_limit; \ |
1811 int nbytes, nchars; \ | |
1812 \ | |
1813 ONE_MORE_BYTE (c); \ | |
1814 nbytes = c - 0xA0; \ | |
1815 if (nbytes < 3) \ | |
1816 goto invalid_code; \ | |
1817 ONE_MORE_BYTE (c); \ | |
1818 nchars = c - 0xA0; \ | |
1819 ADD_COMPOSITION_DATA (charbuf, method, nchars); \ | |
1820 consumed_chars_limit = consumed_chars_base + nbytes; \ | |
1821 if (method != COMPOSITION_RELATIVE) \ | |
1822 { \ | |
1823 int i = 0; \ | |
1824 while (consumed_chars < consumed_chars_limit) \ | |
1825 { \ | |
1826 if (i % 2 && method != COMPOSITION_WITH_ALTCHARS) \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1827 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (charbuf); \ |
88365 | 1828 else \ |
1829 DECODE_EMACS_MULE_COMPOSITION_CHAR (charbuf); \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1830 i++; \ |
88365 | 1831 } \ |
1832 if (consumed_chars < consumed_chars_limit) \ | |
1833 goto invalid_code; \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1834 charbuf_base[0] -= i; \ |
88365 | 1835 } \ |
1836 } while (0) | |
1837 | |
1838 | |
1839 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION(c) \ | |
1840 do { \ | |
1841 /* Emacs 20 style format for relative composition. */ \ | |
1842 /* Store multibyte form of characters to be composed. */ \ | |
1843 int components[MAX_COMPOSITION_COMPONENTS * 2 - 1]; \ | |
1844 int *buf = components; \ | |
1845 int i, j; \ | |
1846 \ | |
1847 src = src_base; \ | |
1848 ONE_MORE_BYTE (c); /* skip 0x80 */ \ | |
1849 for (i = 0; i < MAX_COMPOSITION_COMPONENTS; i++) \ | |
1850 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
1851 if (i < 2) \ | |
1852 goto invalid_code; \ | |
1853 ADD_COMPOSITION_DATA (charbuf, COMPOSITION_RELATIVE, i); \ | |
1854 for (j = 0; j < i; j++) \ | |
1855 *charbuf++ = components[j]; \ | |
1856 } while (0) | |
1857 | |
1858 | |
1859 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION(c) \ | |
1860 do { \ | |
1861 /* Emacs 20 style format for rule-base composition. */ \ | |
1862 /* Store multibyte form of characters to be composed. */ \ | |
1863 int components[MAX_COMPOSITION_COMPONENTS * 2 - 1]; \ | |
1864 int *buf = components; \ | |
1865 int i, j; \ | |
1866 \ | |
1867 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
1868 for (i = 0; i < MAX_COMPOSITION_COMPONENTS; i++) \ | |
1869 { \ | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1870 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (buf); \ |
88365 | 1871 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ |
1872 } \ | |
1873 if (i < 1 || (buf - components) % 2 == 0) \ | |
1874 goto invalid_code; \ | |
1875 if (charbuf + i + (i / 2) + 1 < charbuf_end) \ | |
1876 goto no_more_source; \ | |
1877 ADD_COMPOSITION_DATA (buf, COMPOSITION_WITH_RULE, i); \ | |
1878 for (j = 0; j < i; j++) \ | |
1879 *charbuf++ = components[j]; \ | |
1880 for (j = 0; j < i; j += 2) \ | |
1881 *charbuf++ = components[j]; \ | |
1882 } while (0) | |
1883 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1884 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1885 static void |
88365 | 1886 decode_coding_emacs_mule (coding) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1887 struct coding_system *coding; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1888 { |
88365 | 1889 unsigned char *src = coding->source + coding->consumed; |
1890 unsigned char *src_end = coding->source + coding->src_bytes; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1891 unsigned char *src_base; |
88365 | 1892 int *charbuf = coding->charbuf; |
1893 int *charbuf_end = charbuf + coding->charbuf_size; | |
1894 int consumed_chars = 0, consumed_chars_base; | |
1895 int char_offset = 0; | |
1896 int multibytep = coding->src_multibyte; | |
1897 Lisp_Object attrs, eol_type, charset_list; | |
1898 | |
1899 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
1900 | |
1901 while (1) | |
1902 { | |
1903 int c; | |
1904 | |
1905 src_base = src; | |
1906 consumed_chars_base = consumed_chars; | |
1907 | |
1908 if (charbuf >= charbuf_end) | |
1909 break; | |
1910 | |
1911 ONE_MORE_BYTE (c); | |
1912 | |
1913 if (c < 0x80) | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1914 { |
88365 | 1915 if (c == '\r') |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1916 { |
88365 | 1917 if (EQ (eol_type, Qdos)) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1918 { |
88365 | 1919 if (src == src_end) |
1920 goto no_more_source; | |
1921 if (*src == '\n') | |
1922 ONE_MORE_BYTE (c); | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1923 } |
88365 | 1924 else if (EQ (eol_type, Qmac)) |
1925 c = '\n'; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1926 } |
88365 | 1927 *charbuf++ = c; |
1928 char_offset++; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1929 } |
88365 | 1930 else if (c == 0x80) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1931 { |
88365 | 1932 if (charbuf + 5 + (MAX_COMPOSITION_COMPONENTS * 2) - 1 > charbuf_end) |
1933 break; | |
1934 ONE_MORE_BYTE (c); | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1935 if (c - 0xF2 >= COMPOSITION_RELATIVE |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1936 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) |
88365 | 1937 DECODE_EMACS_MULE_21_COMPOSITION (c); |
1938 else if (c < 0xC0) | |
1939 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (c); | |
1940 else if (c == 0xFF) | |
1941 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (c); | |
1942 else | |
1943 goto invalid_code; | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1944 coding->annotated = 1; |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1945 } |
88365 | 1946 else if (c < 0xA0 && emacs_mule_bytes[c] > 1) |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1947 { |
88365 | 1948 int nbytes, nchars; |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1949 src = src_base; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1950 consumed_chars = consumed_chars_base; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1951 c = emacs_mule_char (coding, src, &nbytes, &nchars); |
88365 | 1952 if (c < 0) |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1953 { |
88365 | 1954 if (c == -2) |
1955 break; | |
1956 goto invalid_code; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1957 } |
88365 | 1958 *charbuf++ = c; |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1959 src += nbytes; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1960 consumed_chars += nchars; |
88365 | 1961 char_offset++; |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1962 } |
88365 | 1963 continue; |
1964 | |
1965 invalid_code: | |
1966 src = src_base; | |
1967 consumed_chars = consumed_chars_base; | |
1968 ONE_MORE_BYTE (c); | |
1969 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
1970 coding->errors++; | |
1971 } | |
1972 | |
1973 no_more_source: | |
1974 coding->consumed_char += consumed_chars_base; | |
1975 coding->consumed = src_base - coding->source; | |
1976 coding->charbuf_used = charbuf - coding->charbuf; | |
1977 } | |
1978 | |
1979 | |
1980 #define EMACS_MULE_LEADING_CODES(id, codes) \ | |
1981 do { \ | |
1982 if (id < 0xA0) \ | |
1983 codes[0] = id, codes[1] = 0; \ | |
1984 else if (id < 0xE0) \ | |
1985 codes[0] = 0x9A, codes[1] = id; \ | |
1986 else if (id < 0xF0) \ | |
1987 codes[0] = 0x9B, codes[1] = id; \ | |
1988 else if (id < 0xF5) \ | |
1989 codes[0] = 0x9C, codes[1] = id; \ | |
1990 else \ | |
1991 codes[0] = 0x9D, codes[1] = id; \ | |
1992 } while (0); | |
1993 | |
1994 | |
1995 static int | |
1996 encode_coding_emacs_mule (coding) | |
1997 struct coding_system *coding; | |
1998 { | |
1999 int multibytep = coding->dst_multibyte; | |
2000 int *charbuf = coding->charbuf; | |
2001 int *charbuf_end = charbuf + coding->charbuf_used; | |
2002 unsigned char *dst = coding->destination + coding->produced; | |
2003 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
2004 int safe_room = 8; | |
2005 int produced_chars = 0; | |
2006 Lisp_Object attrs, eol_type, charset_list; | |
2007 int c; | |
2008 | |
2009 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
2010 | |
2011 while (charbuf < charbuf_end) | |
2012 { | |
2013 ASSURE_DESTINATION (safe_room); | |
2014 c = *charbuf++; | |
2015 if (ASCII_CHAR_P (c)) | |
2016 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2017 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2018 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2019 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2020 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2021 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2022 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2023 { |
88365 | 2024 struct charset *charset; |
2025 unsigned code; | |
2026 int dimension; | |
2027 int emacs_mule_id; | |
2028 unsigned char leading_codes[2]; | |
2029 | |
2030 charset = char_charset (c, charset_list, &code); | |
2031 if (! charset) | |
2032 { | |
2033 c = coding->default_char; | |
2034 if (ASCII_CHAR_P (c)) | |
2035 { | |
2036 EMIT_ONE_ASCII_BYTE (c); | |
2037 continue; | |
2038 } | |
2039 charset = char_charset (c, charset_list, &code); | |
2040 } | |
2041 dimension = CHARSET_DIMENSION (charset); | |
2042 emacs_mule_id = CHARSET_EMACS_MULE_ID (charset); | |
2043 EMACS_MULE_LEADING_CODES (emacs_mule_id, leading_codes); | |
2044 EMIT_ONE_BYTE (leading_codes[0]); | |
2045 if (leading_codes[1]) | |
2046 EMIT_ONE_BYTE (leading_codes[1]); | |
2047 if (dimension == 1) | |
2048 EMIT_ONE_BYTE (code); | |
2049 else | |
2050 { | |
2051 EMIT_ONE_BYTE (code >> 8); | |
2052 EMIT_ONE_BYTE (code & 0xFF); | |
2053 } | |
17052 | 2054 } |
88365 | 2055 } |
2056 coding->result = CODING_RESULT_SUCCESS; | |
2057 coding->produced_char += produced_chars; | |
2058 coding->produced = dst - coding->destination; | |
2059 return 0; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2060 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2061 |
17052 | 2062 |
88365 | 2063 /*** 7. ISO2022 handlers ***/ |
17052 | 2064 |
2065 /* The following note describes the coding system ISO2022 briefly. | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2066 Since the intention of this note is to help understand the |
88771 | 2067 functions in this file, some parts are NOT ACCURATE or are OVERLY |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2068 SIMPLIFIED. For thorough understanding, please refer to the |
88771 | 2069 original document of ISO2022. This is equivalent to the standard |
2070 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*). | |
17052 | 2071 |
2072 ISO2022 provides many mechanisms to encode several character sets | |
88771 | 2073 in 7-bit and 8-bit environments. For 7-bit environments, all text |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2074 is encoded using bytes less than 128. This may make the encoded |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2075 text a little bit longer, but the text passes more easily through |
88771 | 2076 several types of gateway, some of which strip off the MSB (Most |
2077 Significant Bit). | |
2078 | |
2079 There are two kinds of character sets: control character sets and | |
2080 graphic character sets. The former contain control characters such | |
17052 | 2081 as `newline' and `escape' to provide control functions (control |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2082 functions are also provided by escape sequences). The latter |
88771 | 2083 contain graphic characters such as 'A' and '-'. Emacs recognizes |
17052 | 2084 two control character sets and many graphic character sets. |
2085 | |
2086 Graphic character sets are classified into one of the following | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2087 four classes, according to the number of bytes (DIMENSION) and |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2088 number of characters in one dimension (CHARS) of the set: |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2089 - DIMENSION1_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2090 - DIMENSION1_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2091 - DIMENSION2_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2092 - DIMENSION2_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2093 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2094 In addition, each character set is assigned an identification tag, |
88771 | 2095 unique for each set, called the "final character" (denoted as <F> |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2096 hereafter). The <F> of each character set is decided by ECMA(*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2097 when it is registered in ISO. The code range of <F> is 0x30..0x7F |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2098 (0x30..0x3F are for private use only). |
17052 | 2099 |
2100 Note (*): ECMA = European Computer Manufacturers Association | |
2101 | |
88771 | 2102 Here are examples of graphic character sets [NAME(<F>)]: |
17052 | 2103 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... |
2104 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
2105 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
2106 o DIMENSION2_CHARS96 -- none for the moment | |
2107 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2108 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR. |
17052 | 2109 C0 [0x00..0x1F] -- control character plane 0 |
2110 GL [0x20..0x7F] -- graphic character plane 0 | |
2111 C1 [0x80..0x9F] -- control character plane 1 | |
2112 GR [0xA0..0xFF] -- graphic character plane 1 | |
2113 | |
2114 A control character set is directly designated and invoked to C0 or | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2115 C1 by an escape sequence. The most common case is that: |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2116 - ISO646's control character set is designated/invoked to C0, and |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2117 - ISO6429's control character set is designated/invoked to C1, |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2118 and usually these designations/invocations are omitted in encoded |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2119 text. In a 7-bit environment, only C0 can be used, and a control |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2120 character for C1 is encoded by an appropriate escape sequence to |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2121 fit into the environment. All control characters for C1 are |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2122 defined to have corresponding escape sequences. |
17052 | 2123 |
2124 A graphic character set is at first designated to one of four | |
2125 graphic registers (G0 through G3), then these graphic registers are | |
2126 invoked to GL or GR. These designations and invocations can be | |
2127 done independently. The most common case is that G0 is invoked to | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2128 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2129 these invocations and designations are omitted in encoded text. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2130 In a 7-bit environment, only GL can be used. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2131 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2132 When a graphic character set of CHARS94 is invoked to GL, codes |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2133 0x20 and 0x7F of the GL area work as control characters SPACE and |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2134 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2135 be used. |
17052 | 2136 |
2137 There are two ways of invocation: locking-shift and single-shift. | |
2138 With locking-shift, the invocation lasts until the next different | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2139 invocation, whereas with single-shift, the invocation affects the |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2140 following character only and doesn't affect the locking-shift |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2141 state. Invocations are done by the following control characters or |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2142 escape sequences: |
17052 | 2143 |
2144 ---------------------------------------------------------------------- | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2145 abbrev function cntrl escape seq description |
17052 | 2146 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2147 SI/LS0 (shift-in) 0x0F none invoke G0 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2148 SO/LS1 (shift-out) 0x0E none invoke G1 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2149 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2150 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2151 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2152 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2153 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2154 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2155 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char |
17052 | 2156 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2157 (*) These are not used by any known coding system. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2158 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2159 Control characters for these functions are defined by macros |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2160 ISO_CODE_XXX in `coding.h'. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2161 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2162 Designations are done by the following escape sequences: |
17052 | 2163 ---------------------------------------------------------------------- |
2164 escape sequence description | |
2165 ---------------------------------------------------------------------- | |
2166 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
2167 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
2168 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
2169 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
2170 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
2171 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
2172 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
2173 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
2174 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
2175 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
2176 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
2177 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
2178 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
2179 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
2180 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
2181 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
2182 ---------------------------------------------------------------------- | |
2183 | |
2184 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2185 of dimension 1, chars 94, and final character <F>, etc... |
17052 | 2186 |
2187 Note (*): Although these designations are not allowed in ISO2022, | |
2188 Emacs accepts them on decoding, and produces them on encoding | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2189 CHARS96 character sets in a coding system which is characterized as |
17052 | 2190 7-bit environment, non-locking-shift, and non-single-shift. |
2191 | |
2192 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
88365 | 2193 '(' must be omitted. We refer to this as "short-form" hereafter. |
2194 | |
88771 | 2195 Now you may notice that there are a lot of ways of encoding the |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2196 same multilingual text in ISO2022. Actually, there exist many |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2197 coding systems such as Compound Text (used in X11's inter client |
88771 | 2198 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR |
2199 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian | |
17052 | 2200 localized platforms), and all of these are variants of ISO2022. |
2201 | |
2202 In addition to the above, Emacs handles two more kinds of escape | |
2203 sequences: ISO6429's direction specification and Emacs' private | |
2204 sequence for specifying character composition. | |
2205 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2206 ISO6429's direction specification takes the following form: |
17052 | 2207 o CSI ']' -- end of the current direction |
2208 o CSI '0' ']' -- end of the current direction | |
2209 o CSI '1' ']' -- start of left-to-right text | |
2210 o CSI '2' ']' -- start of right-to-left text | |
2211 The control character CSI (0x9B: control sequence introducer) is | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2212 abbreviated to the escape sequence ESC '[' in a 7-bit environment. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2213 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2214 Character composition specification takes the following form: |
26847 | 2215 o ESC '0' -- start relative composition |
2216 o ESC '1' -- end composition | |
2217 o ESC '2' -- start rule-base composition (*) | |
2218 o ESC '3' -- start relative composition with alternate chars (**) | |
2219 o ESC '4' -- start rule-base composition with alternate chars (**) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2220 Since these are not standard escape sequences of any ISO standard, |
88771 | 2221 the use of them with these meanings is restricted to Emacs only. |
2222 | |
2223 (*) This form is used only in Emacs 20.7 and older versions, | |
2224 but newer versions can safely decode it. | |
2225 (**) This form is used only in Emacs 21.1 and newer versions, | |
2226 and older versions can't decode it. | |
2227 | |
2228 Here's a list of example usages of these composition escape | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2229 sequences (categorized by `enum composition_method'). |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2230 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2231 COMPOSITION_RELATIVE: |
26847 | 2232 ESC 0 CHAR [ CHAR ] ESC 1 |
88771 | 2233 COMPOSITION_WITH_RULE: |
26847 | 2234 ESC 2 CHAR [ RULE CHAR ] ESC 1 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2235 COMPOSITION_WITH_ALTCHARS: |
26847 | 2236 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2237 COMPOSITION_WITH_RULE_ALTCHARS: |
26847 | 2238 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */ |
17052 | 2239 |
2240 enum iso_code_class_type iso_code_class[256]; | |
2241 | |
88365 | 2242 #define SAFE_CHARSET_P(coding, id) \ |
2243 ((id) <= (coding)->max_charset_id \ | |
2244 && (coding)->safe_charsets[id] >= 0) | |
2245 | |
2246 | |
2247 #define SHIFT_OUT_OK(category) \ | |
2248 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) | |
2249 | |
2250 static void | |
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
2251 setup_iso_safe_charsets (attrs) |
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
2252 Lisp_Object attrs; |
88365 | 2253 { |
2254 Lisp_Object charset_list, safe_charsets; | |
2255 Lisp_Object request; | |
2256 Lisp_Object reg_usage; | |
2257 Lisp_Object tail; | |
2258 int reg94, reg96; | |
2259 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
2260 int max_charset_id; | |
2261 | |
2262 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
2263 if ((flags & CODING_ISO_FLAG_FULL_SUPPORT) | |
2264 && ! EQ (charset_list, Viso_2022_charset_list)) | |
2265 { | |
2266 CODING_ATTR_CHARSET_LIST (attrs) | |
2267 = charset_list = Viso_2022_charset_list; | |
2268 ASET (attrs, coding_attr_safe_charsets, Qnil); | |
2269 } | |
2270 | |
2271 if (STRINGP (AREF (attrs, coding_attr_safe_charsets))) | |
2272 return; | |
2273 | |
2274 max_charset_id = 0; | |
2275 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
2276 { | |
2277 int id = XINT (XCAR (tail)); | |
2278 if (max_charset_id < id) | |
2279 max_charset_id = id; | |
2280 } | |
2281 | |
2282 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
2283 make_number (255)); | |
2284 request = AREF (attrs, coding_attr_iso_request); | |
2285 reg_usage = AREF (attrs, coding_attr_iso_usage); | |
2286 reg94 = XINT (XCAR (reg_usage)); | |
2287 reg96 = XINT (XCDR (reg_usage)); | |
2288 | |
2289 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
2290 { | |
2291 Lisp_Object id; | |
2292 Lisp_Object reg; | |
2293 struct charset *charset; | |
2294 | |
2295 id = XCAR (tail); | |
2296 charset = CHARSET_FROM_ID (XINT (id)); | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2297 reg = Fcdr (Fassq (id, request)); |
88365 | 2298 if (! NILP (reg)) |
2299 XSTRING (safe_charsets)->data[XINT (id)] = XINT (reg); | |
2300 else if (charset->iso_chars_96) | |
2301 { | |
2302 if (reg96 < 4) | |
2303 XSTRING (safe_charsets)->data[XINT (id)] = reg96; | |
2304 } | |
2305 else | |
2306 { | |
2307 if (reg94 < 4) | |
2308 XSTRING (safe_charsets)->data[XINT (id)] = reg94; | |
2309 } | |
2310 } | |
2311 ASET (attrs, coding_attr_safe_charsets, safe_charsets); | |
2312 } | |
2313 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2314 |
17052 | 2315 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
88365 | 2316 Check if a text is encoded in ISO2022. If it is, returns an |
17052 | 2317 integer in which appropriate flag bits any of: |
88365 | 2318 CATEGORY_MASK_ISO_7 |
2319 CATEGORY_MASK_ISO_7_TIGHT | |
2320 CATEGORY_MASK_ISO_8_1 | |
2321 CATEGORY_MASK_ISO_8_2 | |
2322 CATEGORY_MASK_ISO_7_ELSE | |
2323 CATEGORY_MASK_ISO_8_ELSE | |
17052 | 2324 are set. If a code which should never appear in ISO2022 is found, |
2325 returns 0. */ | |
2326 | |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
2327 static int |
88365 | 2328 detect_coding_iso_2022 (coding, mask) |
2329 struct coding_system *coding; | |
2330 int *mask; | |
17052 | 2331 { |
88365 | 2332 unsigned char *src = coding->source, *src_base = src; |
2333 unsigned char *src_end = coding->source + coding->src_bytes; | |
2334 int multibytep = coding->src_multibyte; | |
2335 int mask_iso = CATEGORY_MASK_ISO; | |
2336 int mask_found = 0, mask_8bit_found = 0; | |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2337 int reg[4], shift_out = 0, single_shifting = 0; |
88365 | 2338 int id; |
2339 int c, c1; | |
2340 int consumed_chars = 0; | |
2341 int i; | |
2342 | |
2343 for (i = coding_category_iso_7; i <= coding_category_iso_8_else; i++) | |
2344 { | |
2345 struct coding_system *this = &(coding_categories[i]); | |
2346 Lisp_Object attrs, val; | |
2347 | |
2348 attrs = CODING_ID_ATTRS (this->id); | |
2349 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT | |
2350 && ! EQ (CODING_ATTR_SAFE_CHARSETS (attrs), Viso_2022_charset_list)) | |
2351 setup_iso_safe_charsets (attrs); | |
2352 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
2353 this->max_charset_id = XSTRING (val)->size - 1; | |
2354 this->safe_charsets = (char *) XSTRING (val)->data; | |
2355 } | |
2356 | |
2357 /* A coding system of this category is always ASCII compatible. */ | |
2358 src += coding->head_ascii; | |
2359 | |
2360 reg[0] = charset_ascii, reg[1] = reg[2] = reg[3] = -1; | |
2361 while (mask_iso && src < src_end) | |
2362 { | |
2363 ONE_MORE_BYTE (c); | |
17052 | 2364 switch (c) |
2365 { | |
2366 case ISO_CODE_ESC: | |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2367 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2368 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2369 single_shifting = 0; |
88365 | 2370 ONE_MORE_BYTE (c); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2371 if (c >= '(' && c <= '/') |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2372 { |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2373 /* Designation sequence for a charset of dimension 1. */ |
88365 | 2374 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2375 if (c1 < ' ' || c1 >= 0x80 |
88365 | 2376 || (id = iso_charset_table[0][c >= ','][c1]) < 0) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2377 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2378 break; |
88365 | 2379 reg[(c - '(') % 4] = id; |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2380 } |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2381 else if (c == '$') |
17052 | 2382 { |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2383 /* Designation sequence for a charset of dimension 2. */ |
88365 | 2384 ONE_MORE_BYTE (c); |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2385 if (c >= '@' && c <= 'B') |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2386 /* Designation for JISX0208.1978, GB2312, or JISX0208. */ |
88365 | 2387 reg[0] = id = iso_charset_table[1][0][c]; |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2388 else if (c >= '(' && c <= '/') |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2389 { |
88365 | 2390 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2391 if (c1 < ' ' || c1 >= 0x80 |
88365 | 2392 || (id = iso_charset_table[1][c >= ','][c1]) < 0) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2393 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2394 break; |
88365 | 2395 reg[(c - '(') % 4] = id; |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2396 } |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2397 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2398 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2399 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2400 } |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2401 else if (c == 'N' || c == 'O') |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2402 { |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2403 /* ESC <Fe> for SS2 or SS3. */ |
88365 | 2404 mask_iso &= CATEGORY_MASK_ISO_7_ELSE; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2405 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2406 } |
26847 | 2407 else if (c >= '0' && c <= '4') |
2408 { | |
2409 /* ESC <Fp> for start/end composition. */ | |
88365 | 2410 mask_found |= CATEGORY_MASK_ISO; |
26847 | 2411 break; |
2412 } | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2413 else |
88365 | 2414 { |
2415 /* Invalid escape sequence. */ | |
2416 mask_iso &= ~CATEGORY_MASK_ISO_ESCAPE; | |
2417 break; | |
2418 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2419 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2420 /* We found a valid designation sequence for CHARSET. */ |
88365 | 2421 mask_iso &= ~CATEGORY_MASK_ISO_8BIT; |
2422 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7], | |
2423 id)) | |
2424 mask_found |= CATEGORY_MASK_ISO_7; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2425 else |
88365 | 2426 mask_iso &= ~CATEGORY_MASK_ISO_7; |
2427 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_tight], | |
2428 id)) | |
2429 mask_found |= CATEGORY_MASK_ISO_7_TIGHT; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2430 else |
88365 | 2431 mask_iso &= ~CATEGORY_MASK_ISO_7_TIGHT; |
2432 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_else], | |
2433 id)) | |
2434 mask_found |= CATEGORY_MASK_ISO_7_ELSE; | |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2435 else |
88365 | 2436 mask_iso &= ~CATEGORY_MASK_ISO_7_ELSE; |
2437 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_8_else], | |
2438 id)) | |
2439 mask_found |= CATEGORY_MASK_ISO_8_ELSE; | |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2440 else |
88365 | 2441 mask_iso &= ~CATEGORY_MASK_ISO_8_ELSE; |
17052 | 2442 break; |
2443 | |
2444 case ISO_CODE_SO: | |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2445 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2446 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2447 single_shifting = 0; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2448 if (shift_out == 0 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2449 && (reg[1] >= 0 |
88365 | 2450 || SHIFT_OUT_OK (coding_category_iso_7_else) |
2451 || SHIFT_OUT_OK (coding_category_iso_8_else))) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2452 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2453 /* Locking shift out. */ |
88365 | 2454 mask_iso &= ~CATEGORY_MASK_ISO_7BIT; |
2455 mask_found |= CATEGORY_MASK_ISO_ELSE; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2456 } |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2457 break; |
88365 | 2458 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2459 case ISO_CODE_SI: |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2460 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2461 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2462 single_shifting = 0; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2463 if (shift_out == 1) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2464 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2465 /* Locking shift in. */ |
88365 | 2466 mask_iso &= ~CATEGORY_MASK_ISO_7BIT; |
2467 mask_found |= CATEGORY_MASK_ISO_ELSE; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2468 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2469 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2470 |
17052 | 2471 case ISO_CODE_CSI: |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2472 single_shifting = 0; |
17052 | 2473 case ISO_CODE_SS2: |
2474 case ISO_CODE_SS3: | |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2475 { |
88365 | 2476 int newmask = CATEGORY_MASK_ISO_8_ELSE; |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2477 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
2478 mask_8bit_found = 1; |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2479 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2480 break; |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2481 if (c != ISO_CODE_CSI) |
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2482 { |
88365 | 2483 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
2484 & CODING_ISO_FLAG_SINGLE_SHIFT) | |
2485 newmask |= CATEGORY_MASK_ISO_8_1; | |
2486 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
2487 & CODING_ISO_FLAG_SINGLE_SHIFT) | |
2488 newmask |= CATEGORY_MASK_ISO_8_2; | |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2489 single_shifting = 1; |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2490 } |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2491 if (VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2492 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2493 { |
88365 | 2494 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
2495 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2496 newmask |= CATEGORY_MASK_ISO_8_1; | |
2497 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
2498 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2499 newmask |= CATEGORY_MASK_ISO_8_2; | |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2500 } |
88365 | 2501 mask_iso &= newmask; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2502 mask_found |= newmask; |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2503 } |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2504 break; |
17052 | 2505 |
2506 default: | |
2507 if (c < 0x80) | |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2508 { |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2509 single_shifting = 0; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2510 break; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2511 } |
17052 | 2512 else if (c < 0xA0) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2513 { |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2514 single_shifting = 0; |
88365 | 2515 mask_8bit_found = 1; |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2516 if (VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2517 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2518 { |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2519 int newmask = 0; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2520 |
88365 | 2521 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
2522 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2523 newmask |= CATEGORY_MASK_ISO_8_1; | |
2524 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
2525 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2526 newmask |= CATEGORY_MASK_ISO_8_2; | |
2527 mask_iso &= newmask; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2528 mask_found |= newmask; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2529 } |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2530 else |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2531 return 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2532 } |
17052 | 2533 else |
2534 { | |
88365 | 2535 mask_iso &= ~(CATEGORY_MASK_ISO_7BIT |
2536 | CATEGORY_MASK_ISO_7_ELSE); | |
2537 mask_found |= CATEGORY_MASK_ISO_8_1; | |
2538 mask_8bit_found = 1; | |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2539 /* Check the length of succeeding codes of the range |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2540 0xA0..0FF. If the byte length is odd, we exclude |
88365 | 2541 CATEGORY_MASK_ISO_8_2. We can check this only |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2542 when we are not single shifting. */ |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2543 if (!single_shifting |
88365 | 2544 && mask_iso & CATEGORY_MASK_ISO_8_2) |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2545 { |
29299
b33b38d81020
(detect_coding_iso2022): Fix code for checking
Kenichi Handa <handa@m17n.org>
parents:
29275
diff
changeset
|
2546 int i = 1; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2547 while (src < src_end) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2548 { |
88365 | 2549 ONE_MORE_BYTE (c); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2550 if (c < 0xA0) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2551 break; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2552 i++; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2553 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2554 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2555 if (i & 1 && src < src_end) |
88365 | 2556 mask_iso &= ~CATEGORY_MASK_ISO_8_2; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2557 else |
88365 | 2558 mask_found |= CATEGORY_MASK_ISO_8_2; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2559 } |
17052 | 2560 } |
2561 break; | |
2562 } | |
2563 } | |
88365 | 2564 no_more_source: |
2565 if (!mask_iso) | |
2566 { | |
2567 *mask &= ~CATEGORY_MASK_ISO; | |
2568 return 0; | |
2569 } | |
2570 if (!mask_found) | |
2571 return 0; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
2572 *mask &= ~CATEGORY_MASK_ISO; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
2573 *mask |= mask_iso & mask_found; |
88365 | 2574 if (! mask_8bit_found) |
2575 *mask &= ~(CATEGORY_MASK_ISO_8BIT | CATEGORY_MASK_ISO_8_ELSE); | |
2576 return 1; | |
17052 | 2577 } |
2578 | |
2579 | |
2580 /* Set designation state into CODING. */ | |
88365 | 2581 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \ |
2582 do { \ | |
2583 int id, prev; \ | |
2584 \ | |
2585 if (final < '0' || final >= 128 \ | |
2586 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \ | |
2587 || !SAFE_CHARSET_P (coding, id)) \ | |
2588 { \ | |
2589 CODING_ISO_DESIGNATION (coding, reg) = -2; \ | |
2590 goto invalid_code; \ | |
2591 } \ | |
2592 prev = CODING_ISO_DESIGNATION (coding, reg); \ | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2593 if (id == charset_jisx0201_roman) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2594 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2595 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2596 id = charset_ascii; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2597 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2598 else if (id == charset_jisx0208_1978) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2599 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2600 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2601 id = charset_jisx0208; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2602 } \ |
88365 | 2603 CODING_ISO_DESIGNATION (coding, reg) = id; \ |
2604 /* If there was an invalid designation to REG previously, and this \ | |
2605 designation is ASCII to REG, we should keep this designation \ | |
2606 sequence. */ \ | |
2607 if (prev == -2 && id == charset_ascii) \ | |
2608 goto invalid_code; \ | |
17052 | 2609 } while (0) |
2610 | |
88365 | 2611 |
2612 #define MAYBE_FINISH_COMPOSITION() \ | |
2613 do { \ | |
2614 int i; \ | |
2615 if (composition_state == COMPOSING_NO) \ | |
2616 break; \ | |
2617 /* It is assured that we have enough room for producing \ | |
2618 characters stored in the table `components'. */ \ | |
2619 if (charbuf + component_idx > charbuf_end) \ | |
2620 goto no_more_source; \ | |
2621 composition_state = COMPOSING_NO; \ | |
2622 if (method == COMPOSITION_RELATIVE \ | |
2623 || method == COMPOSITION_WITH_ALTCHARS) \ | |
2624 { \ | |
2625 for (i = 0; i < component_idx; i++) \ | |
2626 *charbuf++ = components[i]; \ | |
2627 char_offset += component_idx; \ | |
2628 } \ | |
2629 else \ | |
2630 { \ | |
2631 for (i = 0; i < component_idx; i += 2) \ | |
2632 *charbuf++ = components[i]; \ | |
2633 char_offset += (component_idx / 2) + 1; \ | |
2634 } \ | |
2635 } while (0) | |
2636 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2637 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2638 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2639 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2640 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1 |
88365 | 2641 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1 |
2642 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2643 */ |
26847 | 2644 |
88365 | 2645 #define DECODE_COMPOSITION_START(c1) \ |
26847 | 2646 do { \ |
88365 | 2647 if (c1 == '0' \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2648 && composition_state == COMPOSING_COMPONENT_RULE) \ |
26847 | 2649 { \ |
88365 | 2650 component_len = component_idx; \ |
2651 composition_state = COMPOSING_CHAR; \ | |
26847 | 2652 } \ |
2653 else \ | |
2654 { \ | |
88365 | 2655 unsigned char *p; \ |
2656 \ | |
2657 MAYBE_FINISH_COMPOSITION (); \ | |
2658 if (charbuf + MAX_COMPOSITION_COMPONENTS > charbuf_end) \ | |
2659 goto no_more_source; \ | |
2660 for (p = src; p < src_end - 1; p++) \ | |
2661 if (*p == ISO_CODE_ESC && p[1] == '1') \ | |
2662 break; \ | |
2663 if (p == src_end - 1) \ | |
2664 { \ | |
2665 if (coding->mode & CODING_MODE_LAST_BLOCK) \ | |
2666 goto invalid_code; \ | |
2667 goto no_more_source; \ | |
2668 } \ | |
2669 \ | |
2670 /* This is surely the start of a composition. */ \ | |
2671 method = (c1 == '0' ? COMPOSITION_RELATIVE \ | |
2672 : c1 == '2' ? COMPOSITION_WITH_RULE \ | |
2673 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \ | |
2674 : COMPOSITION_WITH_RULE_ALTCHARS); \ | |
2675 composition_state = (c1 <= '2' ? COMPOSING_CHAR \ | |
2676 : COMPOSING_COMPONENT_CHAR); \ | |
2677 component_idx = component_len = 0; \ | |
26847 | 2678 } \ |
2679 } while (0) | |
2680 | |
88365 | 2681 |
2682 /* Handle compositoin end sequence ESC 1. */ | |
2683 | |
2684 #define DECODE_COMPOSITION_END() \ | |
2685 do { \ | |
2686 int nchars = (component_len > 0 ? component_idx - component_len \ | |
2687 : method == COMPOSITION_RELATIVE ? component_idx \ | |
2688 : (component_idx + 1) / 2); \ | |
2689 int i; \ | |
2690 int *saved_charbuf = charbuf; \ | |
2691 \ | |
2692 ADD_COMPOSITION_DATA (charbuf, method, nchars); \ | |
2693 if (method != COMPOSITION_RELATIVE) \ | |
2694 { \ | |
2695 if (component_len == 0) \ | |
2696 for (i = 0; i < component_idx; i++) \ | |
2697 *charbuf++ = components[i]; \ | |
2698 else \ | |
2699 for (i = 0; i < component_len; i++) \ | |
2700 *charbuf++ = components[i]; \ | |
2701 *saved_charbuf = saved_charbuf - charbuf; \ | |
2702 } \ | |
2703 if (method == COMPOSITION_WITH_RULE) \ | |
2704 for (i = 0; i < component_idx; i += 2, char_offset++) \ | |
2705 *charbuf++ = components[i]; \ | |
2706 else \ | |
2707 for (i = component_len; i < component_idx; i++, char_offset++) \ | |
2708 *charbuf++ = components[i]; \ | |
2709 coding->annotated = 1; \ | |
2710 composition_state = COMPOSING_NO; \ | |
2711 } while (0) | |
2712 | |
2713 | |
26847 | 2714 /* Decode a composition rule from the byte C1 (and maybe one more byte |
2715 from SRC) and store one encoded composition rule in | |
2716 coding->cmp_data. */ | |
2717 | |
2718 #define DECODE_COMPOSITION_RULE(c1) \ | |
2719 do { \ | |
2720 (c1) -= 32; \ | |
2721 if (c1 < 81) /* old format (before ver.21) */ \ | |
2722 { \ | |
2723 int gref = (c1) / 9; \ | |
2724 int nref = (c1) % 9; \ | |
2725 if (gref == 4) gref = 10; \ | |
2726 if (nref == 4) nref = 10; \ | |
88365 | 2727 c1 = COMPOSITION_ENCODE_RULE (gref, nref); \ |
26847 | 2728 } \ |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2729 else if (c1 < 93) /* new format (after ver.21) */ \ |
26847 | 2730 { \ |
2731 ONE_MORE_BYTE (c2); \ | |
88365 | 2732 c1 = COMPOSITION_ENCODE_RULE (c1 - 81, c2 - 32); \ |
26847 | 2733 } \ |
88365 | 2734 else \ |
2735 c1 = 0; \ | |
26847 | 2736 } while (0) |
2737 | |
2738 | |
17052 | 2739 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
2740 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2741 static void |
88365 | 2742 decode_coding_iso_2022 (coding) |
17052 | 2743 struct coding_system *coding; |
2744 { | |
88365 | 2745 unsigned char *src = coding->source + coding->consumed; |
2746 unsigned char *src_end = coding->source + coding->src_bytes; | |
2747 unsigned char *src_base; | |
2748 int *charbuf = coding->charbuf; | |
2749 int *charbuf_end = charbuf + coding->charbuf_size - 4; | |
2750 int consumed_chars = 0, consumed_chars_base; | |
2751 int char_offset = 0; | |
2752 int multibytep = coding->src_multibyte; | |
17052 | 2753 /* Charsets invoked to graphic plane 0 and 1 respectively. */ |
88365 | 2754 int charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
2755 int charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
2756 struct charset *charset; | |
2757 int c; | |
2758 /* For handling composition sequence. */ | |
2759 #define COMPOSING_NO 0 | |
2760 #define COMPOSING_CHAR 1 | |
2761 #define COMPOSING_RULE 2 | |
2762 #define COMPOSING_COMPONENT_CHAR 3 | |
2763 #define COMPOSING_COMPONENT_RULE 4 | |
2764 | |
2765 int composition_state = COMPOSING_NO; | |
2766 enum composition_method method; | |
2767 int components[MAX_COMPOSITION_COMPONENTS * 2 + 1]; | |
2768 int component_idx; | |
2769 int component_len; | |
2770 Lisp_Object attrs, eol_type, charset_list; | |
2771 | |
2772 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
2773 setup_iso_safe_charsets (attrs); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2774 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2775 while (1) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2776 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2777 int c1, c2; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2778 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2779 src_base = src; |
88365 | 2780 consumed_chars_base = consumed_chars; |
2781 | |
2782 if (charbuf >= charbuf_end) | |
2783 break; | |
2784 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2785 ONE_MORE_BYTE (c1); |
17052 | 2786 |
26847 | 2787 /* We produce no character or one character. */ |
17052 | 2788 switch (iso_code_class [c1]) |
2789 { | |
2790 case ISO_0x20_or_0x7F: | |
88365 | 2791 if (composition_state != COMPOSING_NO) |
26847 | 2792 { |
88365 | 2793 if (composition_state == COMPOSING_RULE |
2794 || composition_state == COMPOSING_COMPONENT_RULE) | |
2795 { | |
2796 DECODE_COMPOSITION_RULE (c1); | |
2797 components[component_idx++] = c1; | |
2798 composition_state--; | |
2799 continue; | |
2800 } | |
26847 | 2801 } |
88365 | 2802 if (charset_id_0 < 0 |
2803 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0))) | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2804 /* This is SPACE or DEL. */ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2805 charset = CHARSET_FROM_ID (charset_ascii); |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2806 else |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2807 charset = CHARSET_FROM_ID (charset_id_0); |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2808 break; |
17052 | 2809 |
2810 case ISO_graphic_plane_0: | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2811 if (composition_state != COMPOSING_NO) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2812 { |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2813 if (composition_state == COMPOSING_RULE |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2814 || composition_state == COMPOSING_COMPONENT_RULE) |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2815 { |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2816 DECODE_COMPOSITION_RULE (c1); |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2817 components[component_idx++] = c1; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2818 composition_state--; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2819 continue; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2820 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2821 } |
88365 | 2822 charset = CHARSET_FROM_ID (charset_id_0); |
17052 | 2823 break; |
2824 | |
2825 case ISO_0xA0_or_0xFF: | |
88365 | 2826 if (charset_id_1 < 0 |
2827 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1)) | |
2828 || CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) | |
2829 goto invalid_code; | |
17052 | 2830 /* This is a graphic character, we fall down ... */ |
2831 | |
2832 case ISO_graphic_plane_1: | |
88365 | 2833 if (charset_id_1 < 0) |
2834 goto invalid_code; | |
2835 charset = CHARSET_FROM_ID (charset_id_1); | |
17052 | 2836 break; |
2837 | |
88365 | 2838 case ISO_carriage_return: |
2839 if (c1 == '\r') | |
2840 { | |
2841 if (EQ (eol_type, Qdos)) | |
2842 { | |
2843 if (src == src_end) | |
2844 goto no_more_source; | |
2845 if (*src == '\n') | |
2846 ONE_MORE_BYTE (c1); | |
2847 } | |
2848 else if (EQ (eol_type, Qmac)) | |
2849 c1 = '\n'; | |
2850 } | |
2851 /* fall through */ | |
2852 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2853 case ISO_control_0: |
88365 | 2854 MAYBE_FINISH_COMPOSITION (); |
2855 charset = CHARSET_FROM_ID (charset_ascii); | |
17052 | 2856 break; |
2857 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2858 case ISO_control_1: |
88365 | 2859 MAYBE_FINISH_COMPOSITION (); |
2860 goto invalid_code; | |
17052 | 2861 |
2862 case ISO_shift_out: | |
88365 | 2863 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
2864 || CODING_ISO_DESIGNATION (coding, 1) < 0) | |
2865 goto invalid_code; | |
2866 CODING_ISO_INVOCATION (coding, 0) = 1; | |
2867 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2868 continue; |
17052 | 2869 |
2870 case ISO_shift_in: | |
88365 | 2871 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)) |
2872 goto invalid_code; | |
2873 CODING_ISO_INVOCATION (coding, 0) = 0; | |
2874 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2875 continue; |
17052 | 2876 |
2877 case ISO_single_shift_2_7: | |
2878 case ISO_single_shift_2: | |
88365 | 2879 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
2880 goto invalid_code; | |
17052 | 2881 /* SS2 is handled as an escape sequence of ESC 'N' */ |
2882 c1 = 'N'; | |
2883 goto label_escape_sequence; | |
2884 | |
2885 case ISO_single_shift_3: | |
88365 | 2886 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
2887 goto invalid_code; | |
17052 | 2888 /* SS2 is handled as an escape sequence of ESC 'O' */ |
2889 c1 = 'O'; | |
2890 goto label_escape_sequence; | |
2891 | |
2892 case ISO_control_sequence_introducer: | |
2893 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
2894 c1 = '['; | |
2895 goto label_escape_sequence; | |
2896 | |
2897 case ISO_escape: | |
2898 ONE_MORE_BYTE (c1); | |
2899 label_escape_sequence: | |
88365 | 2900 /* Escape sequences handled here are invocation, |
17052 | 2901 designation, direction specification, and character |
2902 composition specification. */ | |
2903 switch (c1) | |
2904 { | |
2905 case '&': /* revision of following character set */ | |
2906 ONE_MORE_BYTE (c1); | |
2907 if (!(c1 >= '@' && c1 <= '~')) | |
88365 | 2908 goto invalid_code; |
17052 | 2909 ONE_MORE_BYTE (c1); |
2910 if (c1 != ISO_CODE_ESC) | |
88365 | 2911 goto invalid_code; |
17052 | 2912 ONE_MORE_BYTE (c1); |
2913 goto label_escape_sequence; | |
2914 | |
2915 case '$': /* designation of 2-byte character set */ | |
88365 | 2916 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
2917 goto invalid_code; | |
17052 | 2918 ONE_MORE_BYTE (c1); |
2919 if (c1 >= '@' && c1 <= 'B') | |
2920 { /* designation of JISX0208.1978, GB2312.1980, | |
23339
2da87b489590
(check_composing_code): Fix previous change. Now it
Kenichi Handa <handa@m17n.org>
parents:
23325
diff
changeset
|
2921 or JISX0208.1980 */ |
88365 | 2922 DECODE_DESIGNATION (0, 2, 0, c1); |
17052 | 2923 } |
2924 else if (c1 >= 0x28 && c1 <= 0x2B) | |
2925 { /* designation of DIMENSION2_CHARS94 character set */ | |
2926 ONE_MORE_BYTE (c2); | |
88365 | 2927 DECODE_DESIGNATION (c1 - 0x28, 2, 0, c2); |
17052 | 2928 } |
2929 else if (c1 >= 0x2C && c1 <= 0x2F) | |
2930 { /* designation of DIMENSION2_CHARS96 character set */ | |
2931 ONE_MORE_BYTE (c2); | |
88365 | 2932 DECODE_DESIGNATION (c1 - 0x2C, 2, 1, c2); |
17052 | 2933 } |
2934 else | |
88365 | 2935 goto invalid_code; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2936 /* We must update these variables now. */ |
88365 | 2937 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
2938 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2939 continue; |
17052 | 2940 |
2941 case 'n': /* invocation of locking-shift-2 */ | |
88365 | 2942 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
2943 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
2944 goto invalid_code; | |
2945 CODING_ISO_INVOCATION (coding, 0) = 2; | |
2946 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2947 continue; |
17052 | 2948 |
2949 case 'o': /* invocation of locking-shift-3 */ | |
88365 | 2950 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
2951 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
2952 goto invalid_code; | |
2953 CODING_ISO_INVOCATION (coding, 0) = 3; | |
2954 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2955 continue; |
17052 | 2956 |
2957 case 'N': /* invocation of single-shift-2 */ | |
88365 | 2958 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
2959 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
2960 goto invalid_code; | |
2961 charset = CHARSET_FROM_ID (CODING_ISO_DESIGNATION (coding, 2)); | |
17052 | 2962 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
2963 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 2964 goto invalid_code; |
17052 | 2965 break; |
2966 | |
2967 case 'O': /* invocation of single-shift-3 */ | |
88365 | 2968 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
2969 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
2970 goto invalid_code; | |
2971 charset = CHARSET_FROM_ID (CODING_ISO_DESIGNATION (coding, 3)); | |
17052 | 2972 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
2973 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 2974 goto invalid_code; |
17052 | 2975 break; |
2976 | |
26847 | 2977 case '0': case '2': case '3': case '4': /* start composition */ |
88365 | 2978 if (! (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK)) |
2979 goto invalid_code; | |
26847 | 2980 DECODE_COMPOSITION_START (c1); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2981 continue; |
17052 | 2982 |
26847 | 2983 case '1': /* end composition */ |
88365 | 2984 if (composition_state == COMPOSING_NO) |
2985 goto invalid_code; | |
2986 DECODE_COMPOSITION_END (); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2987 continue; |
17052 | 2988 |
2989 case '[': /* specification of direction */ | |
88365 | 2990 if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION) |
2991 goto invalid_code; | |
17052 | 2992 /* For the moment, nested direction is not supported. |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2993 So, `coding->mode & CODING_MODE_DIRECTION' zero means |
88365 | 2994 left-to-right, and nozero means right-to-left. */ |
17052 | 2995 ONE_MORE_BYTE (c1); |
2996 switch (c1) | |
2997 { | |
2998 case ']': /* end of the current direction */ | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2999 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 3000 |
3001 case '0': /* end of the current direction */ | |
3002 case '1': /* start of left-to-right direction */ | |
3003 ONE_MORE_BYTE (c1); | |
3004 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3005 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 3006 else |
88365 | 3007 goto invalid_code; |
17052 | 3008 break; |
3009 | |
3010 case '2': /* start of right-to-left direction */ | |
3011 ONE_MORE_BYTE (c1); | |
3012 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3013 coding->mode |= CODING_MODE_DIRECTION; |
17052 | 3014 else |
88365 | 3015 goto invalid_code; |
17052 | 3016 break; |
3017 | |
3018 default: | |
88365 | 3019 goto invalid_code; |
17052 | 3020 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3021 continue; |
17052 | 3022 |
3023 default: | |
88365 | 3024 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
3025 goto invalid_code; | |
17052 | 3026 if (c1 >= 0x28 && c1 <= 0x2B) |
3027 { /* designation of DIMENSION1_CHARS94 character set */ | |
3028 ONE_MORE_BYTE (c2); | |
88365 | 3029 DECODE_DESIGNATION (c1 - 0x28, 1, 0, c2); |
17052 | 3030 } |
3031 else if (c1 >= 0x2C && c1 <= 0x2F) | |
3032 { /* designation of DIMENSION1_CHARS96 character set */ | |
3033 ONE_MORE_BYTE (c2); | |
88365 | 3034 DECODE_DESIGNATION (c1 - 0x2C, 1, 1, c2); |
17052 | 3035 } |
3036 else | |
88365 | 3037 goto invalid_code; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3038 /* We must update these variables now. */ |
88365 | 3039 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
3040 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3041 continue; |
17052 | 3042 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3043 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3044 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3045 /* Now we know CHARSET and 1st position code C1 of a character. |
88365 | 3046 Produce a decoded character while getting 2nd position code |
3047 C2 if necessary. */ | |
3048 c1 &= 0x7F; | |
3049 if (CHARSET_DIMENSION (charset) > 1) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3050 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3051 ONE_MORE_BYTE (c2); |
88365 | 3052 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0)) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3053 /* C2 is not in a valid range. */ |
88365 | 3054 goto invalid_code; |
3055 c1 = (c1 << 8) | (c2 & 0x7F); | |
3056 if (CHARSET_DIMENSION (charset) > 2) | |
3057 { | |
3058 ONE_MORE_BYTE (c2); | |
3059 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0)) | |
3060 /* C2 is not in a valid range. */ | |
3061 goto invalid_code; | |
3062 c1 = (c1 << 8) | (c2 & 0x7F); | |
3063 } | |
17052 | 3064 } |
88365 | 3065 |
3066 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); | |
3067 if (c < 0) | |
3068 { | |
3069 MAYBE_FINISH_COMPOSITION (); | |
3070 for (; src_base < src; src_base++, char_offset++) | |
3071 { | |
3072 if (ASCII_BYTE_P (*src_base)) | |
3073 *charbuf++ = *src_base; | |
3074 else | |
3075 *charbuf++ = BYTE8_TO_CHAR (*src_base); | |
3076 } | |
3077 } | |
3078 else if (composition_state == COMPOSING_NO) | |
3079 { | |
3080 *charbuf++ = c; | |
3081 char_offset++; | |
3082 } | |
3083 else | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3084 { |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3085 components[component_idx++] = c; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3086 if (method == COMPOSITION_WITH_RULE |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3087 || (method == COMPOSITION_WITH_RULE_ALTCHARS |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3088 && composition_state == COMPOSING_COMPONENT_CHAR)) |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3089 composition_state++; |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3090 } |
17052 | 3091 continue; |
3092 | |
88365 | 3093 invalid_code: |
3094 MAYBE_FINISH_COMPOSITION (); | |
3095 src = src_base; | |
3096 consumed_chars = consumed_chars_base; | |
3097 ONE_MORE_BYTE (c); | |
3098 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3099 coding->errors++; |
88365 | 3100 } |
3101 | |
3102 no_more_source: | |
3103 coding->consumed_char += consumed_chars_base; | |
3104 coding->consumed = src_base - coding->source; | |
3105 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 3106 } |
3107 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3108 |
18766 | 3109 /* ISO2022 encoding stuff. */ |
17052 | 3110 |
3111 /* | |
18766 | 3112 It is not enough to say just "ISO2022" on encoding, we have to |
88365 | 3113 specify more details. In Emacs, each coding system of ISO2022 |
17052 | 3114 variant has the following specifications: |
88365 | 3115 1. Initial designation to G0 thru G3. |
17052 | 3116 2. Allows short-form designation? |
3117 3. ASCII should be designated to G0 before control characters? | |
3118 4. ASCII should be designated to G0 at end of line? | |
3119 5. 7-bit environment or 8-bit environment? | |
3120 6. Use locking-shift? | |
3121 7. Use Single-shift? | |
3122 And the following two are only for Japanese: | |
3123 8. Use ASCII in place of JIS0201-1976-Roman? | |
3124 9. Use JISX0208-1983 in place of JISX0208-1978? | |
88365 | 3125 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits |
3126 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more | |
18766 | 3127 details. |
17052 | 3128 */ |
3129 | |
3130 /* Produce codes (escape sequence) for designating CHARSET to graphic | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3131 register REG at DST, and increment DST. If <final-char> of CHARSET is |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3132 '@', 'A', or 'B' and the coding system CODING allows, produce |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3133 designation sequence of short-form. */ |
17052 | 3134 |
3135 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
3136 do { \ | |
88365 | 3137 unsigned char final_char = CHARSET_ISO_FINAL (charset); \ |
17052 | 3138 char *intermediate_char_94 = "()*+"; \ |
3139 char *intermediate_char_96 = ",-./"; \ | |
88365 | 3140 int revision = -1; \ |
3141 int c; \ | |
3142 \ | |
3143 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \ | |
88856 | 3144 revision = CHARSET_ISO_REVISION (charset); \ |
88365 | 3145 \ |
3146 if (revision >= 0) \ | |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
3147 { \ |
88365 | 3148 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \ |
3149 EMIT_ONE_BYTE ('@' + revision); \ | |
17052 | 3150 } \ |
88365 | 3151 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \ |
17052 | 3152 if (CHARSET_DIMENSION (charset) == 1) \ |
3153 { \ | |
88365 | 3154 if (! CHARSET_ISO_CHARS_96 (charset)) \ |
3155 c = intermediate_char_94[reg]; \ | |
17052 | 3156 else \ |
88365 | 3157 c = intermediate_char_96[reg]; \ |
3158 EMIT_ONE_ASCII_BYTE (c); \ | |
17052 | 3159 } \ |
3160 else \ | |
3161 { \ | |
88365 | 3162 EMIT_ONE_ASCII_BYTE ('$'); \ |
3163 if (! CHARSET_ISO_CHARS_96 (charset)) \ | |
17052 | 3164 { \ |
88365 | 3165 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \ |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3166 || reg != 0 \ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3167 || final_char < '@' || final_char > 'B') \ |
88365 | 3168 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \ |
17052 | 3169 } \ |
3170 else \ | |
88365 | 3171 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \ |
17052 | 3172 } \ |
88365 | 3173 EMIT_ONE_ASCII_BYTE (final_char); \ |
3174 \ | |
3175 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \ | |
17052 | 3176 } while (0) |
3177 | |
88365 | 3178 |
17052 | 3179 /* The following two macros produce codes (control character or escape |
3180 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
3181 single-shift-3). */ | |
3182 | |
88365 | 3183 #define ENCODE_SINGLE_SHIFT_2 \ |
3184 do { \ | |
3185 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
3186 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \ | |
3187 else \ | |
3188 EMIT_ONE_BYTE (ISO_CODE_SS2); \ | |
3189 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 3190 } while (0) |
3191 | |
88365 | 3192 |
3193 #define ENCODE_SINGLE_SHIFT_3 \ | |
3194 do { \ | |
3195 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
3196 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \ | |
3197 else \ | |
3198 EMIT_ONE_BYTE (ISO_CODE_SS3); \ | |
3199 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 3200 } while (0) |
3201 | |
88365 | 3202 |
17052 | 3203 /* The following four macros produce codes (control character or |
3204 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
3205 shift-out, locking-shift-2, and locking-shift-3). */ | |
3206 | |
88365 | 3207 #define ENCODE_SHIFT_IN \ |
3208 do { \ | |
3209 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \ | |
3210 CODING_ISO_INVOCATION (coding, 0) = 0; \ | |
17052 | 3211 } while (0) |
3212 | |
88365 | 3213 |
3214 #define ENCODE_SHIFT_OUT \ | |
3215 do { \ | |
3216 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \ | |
3217 CODING_ISO_INVOCATION (coding, 0) = 1; \ | |
17052 | 3218 } while (0) |
3219 | |
88365 | 3220 |
3221 #define ENCODE_LOCKING_SHIFT_2 \ | |
3222 do { \ | |
3223 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
3224 CODING_ISO_INVOCATION (coding, 0) = 2; \ | |
17052 | 3225 } while (0) |
3226 | |
88365 | 3227 |
3228 #define ENCODE_LOCKING_SHIFT_3 \ | |
3229 do { \ | |
3230 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
3231 CODING_ISO_INVOCATION (coding, 0) = 3; \ | |
17052 | 3232 } while (0) |
3233 | |
88365 | 3234 |
18766 | 3235 /* Produce codes for a DIMENSION1 character whose character set is |
3236 CHARSET and whose position-code is C1. Designation and invocation | |
17052 | 3237 sequences are also produced in advance if necessary. */ |
3238 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3239 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3240 do { \ |
88365 | 3241 int id = CHARSET_ID (charset); \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3242 \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3243 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3244 && id == charset_ascii) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3245 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3246 id = charset_jisx0201_roman; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3247 charset = CHARSET_FROM_ID (id); \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3248 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3249 \ |
88365 | 3250 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3251 { \ |
88365 | 3252 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ |
3253 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3254 else \ |
88365 | 3255 EMIT_ONE_BYTE (c1 | 0x80); \ |
3256 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3257 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3258 } \ |
88365 | 3259 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3260 { \ |
88365 | 3261 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3262 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3263 } \ |
88365 | 3264 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3265 { \ |
88365 | 3266 EMIT_ONE_BYTE (c1 | 0x80); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3267 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3268 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3269 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3270 /* Since CHARSET is not yet invoked to any graphic planes, we \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3271 must invoke it, or, at first, designate it to some graphic \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3272 register. Then repeat the loop to actually produce the \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3273 character. */ \ |
88365 | 3274 dst = encode_invocation_designation (charset, coding, dst, \ |
3275 &produced_chars); \ | |
17052 | 3276 } while (1) |
3277 | |
88365 | 3278 |
3279 /* Produce codes for a DIMENSION2 character whose character set is | |
3280 CHARSET and whose position-codes are C1 and C2. Designation and | |
3281 invocation codes are also produced in advance if necessary. */ | |
3282 | |
3283 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \ | |
24506
219c99669e4b
(ENCODE_ISO_CHARACTER): Check validity of CHARSET. If
Kenichi Handa <handa@m17n.org>
parents:
24460
diff
changeset
|
3284 do { \ |
88365 | 3285 int id = CHARSET_ID (charset); \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3286 \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3287 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3288 && id == charset_jisx0208) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3289 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3290 id = charset_jisx0208_1978; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3291 charset = CHARSET_FROM_ID (id); \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3292 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3293 \ |
88365 | 3294 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
3295 { \ | |
3296 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
3297 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
3298 else \ | |
3299 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
3300 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
3301 break; \ | |
3302 } \ | |
3303 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ | |
3304 { \ | |
3305 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
3306 break; \ | |
3307 } \ | |
3308 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ | |
3309 { \ | |
3310 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
3311 break; \ | |
3312 } \ | |
3313 else \ | |
3314 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
3315 must invoke it, or, at first, designate it to some graphic \ | |
3316 register. Then repeat the loop to actually produce the \ | |
3317 character. */ \ | |
3318 dst = encode_invocation_designation (charset, coding, dst, \ | |
3319 &produced_chars); \ | |
3320 } while (1) | |
3321 | |
3322 | |
3323 #define ENCODE_ISO_CHARACTER(charset, c) \ | |
3324 do { \ | |
3325 int code = ENCODE_CHAR ((charset),(c)); \ | |
3326 \ | |
3327 if (CHARSET_DIMENSION (charset) == 1) \ | |
3328 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \ | |
3329 else \ | |
3330 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \ | |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
3331 } while (0) |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3332 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
3333 |
17052 | 3334 /* Produce designation and invocation codes at a place pointed by DST |
88365 | 3335 to use CHARSET. The element `spec.iso_2022' of *CODING is updated. |
17052 | 3336 Return new DST. */ |
3337 | |
3338 unsigned char * | |
88365 | 3339 encode_invocation_designation (charset, coding, dst, p_nchars) |
3340 struct charset *charset; | |
17052 | 3341 struct coding_system *coding; |
3342 unsigned char *dst; | |
88365 | 3343 int *p_nchars; |
17052 | 3344 { |
88365 | 3345 int multibytep = coding->dst_multibyte; |
3346 int produced_chars = *p_nchars; | |
17052 | 3347 int reg; /* graphic register number */ |
88365 | 3348 int id = CHARSET_ID (charset); |
17052 | 3349 |
3350 /* At first, check designations. */ | |
3351 for (reg = 0; reg < 4; reg++) | |
88365 | 3352 if (id == CODING_ISO_DESIGNATION (coding, reg)) |
17052 | 3353 break; |
3354 | |
3355 if (reg >= 4) | |
3356 { | |
3357 /* CHARSET is not yet designated to any graphic registers. */ | |
3358 /* At first check the requested designation. */ | |
88365 | 3359 reg = CODING_ISO_REQUEST (coding, id); |
3360 if (reg < 0) | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3361 /* Since CHARSET requests no special designation, designate it |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3362 to graphic register 0. */ |
17052 | 3363 reg = 0; |
3364 | |
3365 ENCODE_DESIGNATION (charset, reg, coding); | |
3366 } | |
3367 | |
88365 | 3368 if (CODING_ISO_INVOCATION (coding, 0) != reg |
3369 && CODING_ISO_INVOCATION (coding, 1) != reg) | |
17052 | 3370 { |
3371 /* Since the graphic register REG is not invoked to any graphic | |
3372 planes, invoke it to graphic plane 0. */ | |
3373 switch (reg) | |
3374 { | |
3375 case 0: /* graphic register 0 */ | |
3376 ENCODE_SHIFT_IN; | |
3377 break; | |
3378 | |
3379 case 1: /* graphic register 1 */ | |
3380 ENCODE_SHIFT_OUT; | |
3381 break; | |
3382 | |
3383 case 2: /* graphic register 2 */ | |
88365 | 3384 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 3385 ENCODE_SINGLE_SHIFT_2; |
3386 else | |
3387 ENCODE_LOCKING_SHIFT_2; | |
3388 break; | |
3389 | |
3390 case 3: /* graphic register 3 */ | |
88365 | 3391 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 3392 ENCODE_SINGLE_SHIFT_3; |
3393 else | |
3394 ENCODE_LOCKING_SHIFT_3; | |
3395 break; | |
3396 } | |
3397 } | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3398 |
88365 | 3399 *p_nchars = produced_chars; |
17052 | 3400 return dst; |
3401 } | |
3402 | |
3403 /* The following three macros produce codes for indicating direction | |
3404 of text. */ | |
88365 | 3405 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ |
3406 do { \ | |
3407 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \ | |
3408 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \ | |
3409 else \ | |
3410 EMIT_ONE_BYTE (ISO_CODE_CSI); \ | |
17052 | 3411 } while (0) |
3412 | |
88365 | 3413 |
3414 #define ENCODE_DIRECTION_R2L() \ | |
3415 do { \ | |
3416 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
3417 EMIT_TWO_ASCII_BYTES ('2', ']'); \ | |
3418 } while (0) | |
3419 | |
3420 | |
3421 #define ENCODE_DIRECTION_L2R() \ | |
3422 do { \ | |
3423 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
3424 EMIT_TWO_ASCII_BYTES ('0', ']'); \ | |
3425 } while (0) | |
3426 | |
17052 | 3427 |
3428 /* Produce codes for designation and invocation to reset the graphic | |
3429 planes and registers to initial state. */ | |
88365 | 3430 #define ENCODE_RESET_PLANE_AND_REGISTER() \ |
3431 do { \ | |
3432 int reg; \ | |
3433 struct charset *charset; \ | |
3434 \ | |
3435 if (CODING_ISO_INVOCATION (coding, 0) != 0) \ | |
3436 ENCODE_SHIFT_IN; \ | |
3437 for (reg = 0; reg < 4; reg++) \ | |
3438 if (CODING_ISO_INITIAL (coding, reg) >= 0 \ | |
3439 && (CODING_ISO_DESIGNATION (coding, reg) \ | |
3440 != CODING_ISO_INITIAL (coding, reg))) \ | |
3441 { \ | |
3442 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \ | |
3443 ENCODE_DESIGNATION (charset, reg, coding); \ | |
3444 } \ | |
17052 | 3445 } while (0) |
3446 | |
88365 | 3447 |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3448 /* Produce designation sequences of charsets in the line started from |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3449 SRC to a place pointed by DST, and return updated DST. |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3450 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3451 If the current block ends before any end-of-line, we may fail to |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3452 find all the necessary designations. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3453 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3454 static unsigned char * |
88365 | 3455 encode_designation_at_bol (coding, charbuf, charbuf_end, dst) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3456 struct coding_system *coding; |
88365 | 3457 int *charbuf, *charbuf_end; |
3458 unsigned char *dst; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3459 { |
88365 | 3460 struct charset *charset; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3461 /* Table of charsets to be designated to each graphic register. */ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3462 int r[4]; |
88365 | 3463 int c, found = 0, reg; |
3464 int produced_chars = 0; | |
3465 int multibytep = coding->dst_multibyte; | |
3466 Lisp_Object attrs; | |
3467 Lisp_Object charset_list; | |
3468 | |
3469 attrs = CODING_ID_ATTRS (coding->id); | |
3470 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
3471 if (EQ (charset_list, Qiso_2022)) | |
3472 charset_list = Viso_2022_charset_list; | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3473 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3474 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3475 r[reg] = -1; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3476 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3477 while (found < 4) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3478 { |
88365 | 3479 int id; |
3480 | |
3481 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3482 if (c == '\n') |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3483 break; |
88365 | 3484 charset = char_charset (c, charset_list, NULL); |
3485 id = CHARSET_ID (charset); | |
3486 reg = CODING_ISO_REQUEST (coding, id); | |
3487 if (reg >= 0 && r[reg] < 0) | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3488 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3489 found++; |
88365 | 3490 r[reg] = id; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3491 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3492 } |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3493 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3494 if (found) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3495 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3496 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3497 if (r[reg] >= 0 |
88365 | 3498 && CODING_ISO_DESIGNATION (coding, reg) != r[reg]) |
3499 ENCODE_DESIGNATION (CHARSET_FROM_ID (r[reg]), reg, coding); | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3500 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3501 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3502 return dst; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3503 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3504 |
17052 | 3505 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
3506 | |
88365 | 3507 static int |
3508 encode_coding_iso_2022 (coding) | |
17052 | 3509 struct coding_system *coding; |
3510 { | |
88365 | 3511 int multibytep = coding->dst_multibyte; |
3512 int *charbuf = coding->charbuf; | |
3513 int *charbuf_end = charbuf + coding->charbuf_used; | |
3514 unsigned char *dst = coding->destination + coding->produced; | |
3515 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
3516 int safe_room = 16; | |
3517 int bol_designation | |
3518 = (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL | |
3519 && CODING_ISO_BOL (coding)); | |
3520 int produced_chars = 0; | |
3521 Lisp_Object attrs, eol_type, charset_list; | |
3522 int ascii_compatible; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3523 int c; |
88365 | 3524 |
3525 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
3526 setup_iso_safe_charsets (attrs); |
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
3527 coding->safe_charsets |
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
3528 = (char *) XSTRING (CODING_ATTR_SAFE_CHARSETS(attrs))->data; |
88365 | 3529 |
3530 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
3531 | |
3532 while (charbuf < charbuf_end) | |
3533 { | |
3534 ASSURE_DESTINATION (safe_room); | |
3535 | |
3536 if (bol_designation) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3537 { |
88365 | 3538 unsigned char *dst_prev = dst; |
3539 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3540 /* We have to produce designation sequences if any now. */ |
88365 | 3541 dst = encode_designation_at_bol (coding, charbuf, charbuf_end, dst); |
3542 bol_designation = 0; | |
3543 /* We are sure that designation sequences are all ASCII bytes. */ | |
3544 produced_chars += dst - dst_prev; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3545 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3546 |
88365 | 3547 c = *charbuf++; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3548 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3549 /* Now encode the character C. */ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3550 if (c < 0x20 || c == 0x7F) |
17052 | 3551 { |
88365 | 3552 if (c == '\n' |
3553 || (c == '\r' && EQ (eol_type, Qmac))) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3554 { |
88365 | 3555 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) |
3556 ENCODE_RESET_PLANE_AND_REGISTER (); | |
3557 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_INIT_AT_BOL) | |
3558 { | |
3559 int i; | |
3560 | |
3561 for (i = 0; i < 4; i++) | |
3562 CODING_ISO_DESIGNATION (coding, i) | |
3563 = CODING_ISO_INITIAL (coding, i); | |
3564 } | |
3565 bol_designation | |
3566 = CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL; | |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
3567 } |
88365 | 3568 else if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_CNTL) |
3569 ENCODE_RESET_PLANE_AND_REGISTER (); | |
3570 EMIT_ONE_ASCII_BYTE (c); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3571 } |
88365 | 3572 else if (ASCII_CHAR_P (c)) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3573 { |
88365 | 3574 if (ascii_compatible) |
3575 EMIT_ONE_ASCII_BYTE (c); | |
3576 else | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3577 { |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3578 struct charset *charset = CHARSET_FROM_ID (charset_ascii); |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3579 ENCODE_ISO_CHARACTER (charset, c); |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3580 } |
17052 | 3581 } |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3582 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3583 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3584 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3585 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3586 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3587 else |
88365 | 3588 { |
3589 struct charset *charset = char_charset (c, charset_list, NULL); | |
3590 | |
3591 if (!charset) | |
3592 { | |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3593 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3594 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3595 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3596 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3597 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3598 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3599 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3600 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3601 charset = char_charset (c, charset_list, NULL); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3602 } |
88365 | 3603 } |
3604 ENCODE_ISO_CHARACTER (charset, c); | |
3605 } | |
3606 } | |
3607 | |
3608 if (coding->mode & CODING_MODE_LAST_BLOCK | |
3609 && CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) | |
3610 { | |
3611 ASSURE_DESTINATION (safe_room); | |
3612 ENCODE_RESET_PLANE_AND_REGISTER (); | |
3613 } | |
3614 coding->result = CODING_RESULT_SUCCESS; | |
3615 CODING_ISO_BOL (coding) = bol_designation; | |
3616 coding->produced_char += produced_chars; | |
3617 coding->produced = dst - coding->destination; | |
3618 return 0; | |
17052 | 3619 } |
3620 | |
3621 | |
88365 | 3622 /*** 8,9. SJIS and BIG5 handlers ***/ |
3623 | |
3624 /* Although SJIS and BIG5 are not ISO's coding system, they are used | |
17052 | 3625 quite widely. So, for the moment, Emacs supports them in the bare |
3626 C code. But, in the future, they may be supported only by CCL. */ | |
3627 | |
3628 /* SJIS is a coding system encoding three character sets: ASCII, right | |
3629 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
3630 as is. A character of charset katakana-jisx0201 is encoded by | |
3631 "position-code + 0x80". A character of charset japanese-jisx0208 | |
3632 is encoded in 2-byte but two position-codes are divided and shifted | |
88365 | 3633 so that it fit in the range below. |
17052 | 3634 |
3635 --- CODE RANGE of SJIS --- | |
3636 (character set) (range) | |
3637 ASCII 0x00 .. 0x7F | |
88365 | 3638 KATAKANA-JISX0201 0xA0 .. 0xDF |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
3639 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF |
23564
6eb3e346d1fd
(DECODE_CHARACTER_ASCII): Check validity of inserted
Kenichi Handa <handa@m17n.org>
parents:
23542
diff
changeset
|
3640 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC |
17052 | 3641 ------------------------------- |
3642 | |
3643 */ | |
3644 | |
3645 /* BIG5 is a coding system encoding two character sets: ASCII and | |
3646 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
88365 | 3647 character set and is encoded in two-byte. |
17052 | 3648 |
3649 --- CODE RANGE of BIG5 --- | |
3650 (character set) (range) | |
3651 ASCII 0x00 .. 0x7F | |
3652 Big5 (1st byte) 0xA1 .. 0xFE | |
3653 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
3654 -------------------------- | |
3655 | |
88365 | 3656 */ |
17052 | 3657 |
3658 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
3659 Check if a text is encoded in SJIS. If it is, return | |
88365 | 3660 CATEGORY_MASK_SJIS, else return 0. */ |
17052 | 3661 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3662 static int |
88365 | 3663 detect_coding_sjis (coding, mask) |
3664 struct coding_system *coding; | |
3665 int *mask; | |
17052 | 3666 { |
88365 | 3667 unsigned char *src = coding->source, *src_base = src; |
3668 unsigned char *src_end = coding->source + coding->src_bytes; | |
3669 int multibytep = coding->src_multibyte; | |
3670 int consumed_chars = 0; | |
3671 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3672 int c; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3673 int incomplete; |
88365 | 3674 |
3675 /* A coding system of this category is always ASCII compatible. */ | |
3676 src += coding->head_ascii; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3677 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3678 while (1) |
17052 | 3679 { |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3680 incomplete = 0; |
88365 | 3681 ONE_MORE_BYTE (c); |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3682 incomplete = 1; |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3683 if (c < 0x80) |
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3684 continue; |
88365 | 3685 if ((c >= 0x81 && c <= 0x9F) || (c >= 0xE0 && c <= 0xEF)) |
17052 | 3686 { |
88365 | 3687 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3688 if (c < 0x40 || c == 0x7F || c > 0xFC) |
88365 | 3689 break; |
3690 found = 1; | |
17052 | 3691 } |
88365 | 3692 else if (c >= 0xA0 && c < 0xE0) |
3693 found = 1; | |
3694 else | |
3695 break; | |
3696 } | |
3697 *mask &= ~CATEGORY_MASK_SJIS; | |
3698 return 0; | |
3699 | |
3700 no_more_source: | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3701 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3702 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3703 *mask &= ~CATEGORY_MASK_SJIS; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3704 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3705 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3706 return found; |
17052 | 3707 } |
3708 | |
3709 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
3710 Check if a text is encoded in BIG5. If it is, return | |
88365 | 3711 CATEGORY_MASK_BIG5, else return 0. */ |
17052 | 3712 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3713 static int |
88365 | 3714 detect_coding_big5 (coding, mask) |
3715 struct coding_system *coding; | |
3716 int *mask; | |
17052 | 3717 { |
88365 | 3718 unsigned char *src = coding->source, *src_base = src; |
3719 unsigned char *src_end = coding->source + coding->src_bytes; | |
3720 int multibytep = coding->src_multibyte; | |
3721 int consumed_chars = 0; | |
3722 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3723 int c; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3724 int incomplete; |
88365 | 3725 |
3726 /* A coding system of this category is always ASCII compatible. */ | |
3727 src += coding->head_ascii; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3728 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3729 while (1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3730 { |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3731 incomplete = 0; |
88365 | 3732 ONE_MORE_BYTE (c); |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3733 incomplete = 1; |
88365 | 3734 if (c < 0x80) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3735 continue; |
88365 | 3736 if (c >= 0xA1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3737 { |
88365 | 3738 ONE_MORE_BYTE (c); |
3739 if (c < 0x40 || (c >= 0x7F && c <= 0xA0)) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3740 return 0; |
88365 | 3741 found = 1; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3742 } |
88365 | 3743 else |
3744 break; | |
3745 } | |
3746 *mask &= ~CATEGORY_MASK_BIG5; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3747 return 0; |
88365 | 3748 |
3749 no_more_source: | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3750 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3751 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3752 *mask &= ~CATEGORY_MASK_BIG5; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3753 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3754 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3755 return found; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3756 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3757 |
17052 | 3758 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". |
3759 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
3760 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3761 static void |
88365 | 3762 decode_coding_sjis (coding) |
17052 | 3763 struct coding_system *coding; |
3764 { | |
88365 | 3765 unsigned char *src = coding->source + coding->consumed; |
3766 unsigned char *src_end = coding->source + coding->src_bytes; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3767 unsigned char *src_base; |
88365 | 3768 int *charbuf = coding->charbuf; |
3769 int *charbuf_end = charbuf + coding->charbuf_size; | |
3770 int consumed_chars = 0, consumed_chars_base; | |
3771 int multibytep = coding->src_multibyte; | |
3772 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
3773 Lisp_Object attrs, eol_type, charset_list, val; | |
3774 | |
3775 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3776 | |
3777 val = charset_list; | |
3778 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3779 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3780 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 3781 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3782 while (1) |
17052 | 3783 { |
88365 | 3784 int c, c1; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3785 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3786 src_base = src; |
88365 | 3787 consumed_chars_base = consumed_chars; |
3788 | |
3789 if (charbuf >= charbuf_end) | |
3790 break; | |
3791 | |
3792 ONE_MORE_BYTE (c); | |
3793 | |
3794 if (c == '\r') | |
17052 | 3795 { |
88365 | 3796 if (EQ (eol_type, Qdos)) |
17052 | 3797 { |
88365 | 3798 if (src == src_end) |
3799 goto no_more_source; | |
3800 if (*src == '\n') | |
3801 ONE_MORE_BYTE (c); | |
17052 | 3802 } |
88365 | 3803 else if (EQ (eol_type, Qmac)) |
3804 c = '\n'; | |
17052 | 3805 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3806 else |
88365 | 3807 { |
3808 struct charset *charset; | |
3809 | |
3810 if (c < 0x80) | |
3811 charset = charset_roman; | |
3812 else | |
17052 | 3813 { |
88365 | 3814 if (c >= 0xF0) |
3815 goto invalid_code; | |
3816 if (c < 0xA0 || c >= 0xE0) | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3817 { |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
3818 /* SJIS -> JISX0208 */ |
88365 | 3819 ONE_MORE_BYTE (c1); |
3820 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC) | |
3821 goto invalid_code; | |
3822 c = (c << 8) | c1; | |
3823 SJIS_TO_JIS (c); | |
3824 charset = charset_kanji; | |
24870
b0f6eab5deeb
(decode_coding_sjis_big5): Avoid compiler warning.
Kenichi Handa <handa@m17n.org>
parents:
24822
diff
changeset
|
3825 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3826 else |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3827 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3828 /* SJIS -> JISX0201-Kana */ |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3829 c &= 0x7F; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3830 charset = charset_kana; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3831 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3832 } |
88365 | 3833 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
3834 } | |
3835 *charbuf++ = c; | |
3836 continue; | |
3837 | |
3838 invalid_code: | |
3839 src = src_base; | |
3840 consumed_chars = consumed_chars_base; | |
3841 ONE_MORE_BYTE (c); | |
3842 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
3843 coding->errors++; | |
3844 } | |
3845 | |
3846 no_more_source: | |
3847 coding->consumed_char += consumed_chars_base; | |
3848 coding->consumed = src_base - coding->source; | |
3849 coding->charbuf_used = charbuf - coding->charbuf; | |
3850 } | |
3851 | |
3852 static void | |
3853 decode_coding_big5 (coding) | |
3854 struct coding_system *coding; | |
3855 { | |
3856 unsigned char *src = coding->source + coding->consumed; | |
3857 unsigned char *src_end = coding->source + coding->src_bytes; | |
3858 unsigned char *src_base; | |
3859 int *charbuf = coding->charbuf; | |
3860 int *charbuf_end = charbuf + coding->charbuf_size; | |
3861 int consumed_chars = 0, consumed_chars_base; | |
3862 int multibytep = coding->src_multibyte; | |
3863 struct charset *charset_roman, *charset_big5; | |
3864 Lisp_Object attrs, eol_type, charset_list, val; | |
3865 | |
3866 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3867 val = charset_list; | |
3868 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3869 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
3870 | |
3871 while (1) | |
3872 { | |
3873 int c, c1; | |
3874 | |
3875 src_base = src; | |
3876 consumed_chars_base = consumed_chars; | |
3877 | |
3878 if (charbuf >= charbuf_end) | |
3879 break; | |
3880 | |
3881 ONE_MORE_BYTE (c); | |
3882 | |
3883 if (c == '\r') | |
3884 { | |
3885 if (EQ (eol_type, Qdos)) | |
3886 { | |
3887 if (src == src_end) | |
3888 goto no_more_source; | |
3889 if (*src == '\n') | |
3890 ONE_MORE_BYTE (c); | |
3891 } | |
3892 else if (EQ (eol_type, Qmac)) | |
3893 c = '\n'; | |
3894 } | |
3895 else | |
3896 { | |
3897 struct charset *charset; | |
3898 if (c < 0x80) | |
3899 charset = charset_roman; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3900 else |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3901 { |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
3902 /* BIG5 -> Big5 */ |
88365 | 3903 if (c < 0xA1 || c > 0xFE) |
3904 goto invalid_code; | |
3905 ONE_MORE_BYTE (c1); | |
3906 if (c1 < 0x40 || (c1 > 0x7E && c1 < 0xA1) || c1 > 0xFE) | |
3907 goto invalid_code; | |
3908 c = c << 8 | c1; | |
3909 charset = charset_big5; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3910 } |
88365 | 3911 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3912 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3913 |
88365 | 3914 *charbuf++ = c; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3915 continue; |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3916 |
88365 | 3917 invalid_code: |
17052 | 3918 src = src_base; |
88365 | 3919 consumed_chars = consumed_chars_base; |
3920 ONE_MORE_BYTE (c); | |
3921 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
3922 coding->errors++; | |
3923 } | |
3924 | |
3925 no_more_source: | |
3926 coding->consumed_char += consumed_chars_base; | |
3927 coding->consumed = src_base - coding->source; | |
3928 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 3929 } |
3930 | |
3931 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3932 This function can encode charsets `ascii', `katakana-jisx0201', |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3933 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3934 are sure that all these charsets are registered as official charset |
17052 | 3935 (i.e. do not have extended leading-codes). Characters of other |
3936 charsets are produced without any encoding. If SJIS_P is 1, encode | |
3937 SJIS text, else encode BIG5 text. */ | |
3938 | |
88365 | 3939 static int |
3940 encode_coding_sjis (coding) | |
17052 | 3941 struct coding_system *coding; |
3942 { | |
88365 | 3943 int multibytep = coding->dst_multibyte; |
3944 int *charbuf = coding->charbuf; | |
3945 int *charbuf_end = charbuf + coding->charbuf_used; | |
3946 unsigned char *dst = coding->destination + coding->produced; | |
3947 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
3948 int safe_room = 4; | |
3949 int produced_chars = 0; | |
3950 Lisp_Object attrs, eol_type, charset_list, val; | |
3951 int ascii_compatible; | |
3952 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
3953 int c; | |
3954 | |
3955 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3956 val = charset_list; | |
3957 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3958 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3959 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); | |
3960 | |
3961 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
3962 | |
3963 while (charbuf < charbuf_end) | |
3964 { | |
3965 ASSURE_DESTINATION (safe_room); | |
3966 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3967 /* Now encode the character C. */ |
88365 | 3968 if (ASCII_CHAR_P (c) && ascii_compatible) |
3969 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3970 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3971 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3972 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3973 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3974 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3975 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3976 { |
88365 | 3977 unsigned code; |
3978 struct charset *charset = char_charset (c, charset_list, &code); | |
3979 | |
3980 if (!charset) | |
3981 { | |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3982 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3983 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3984 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3985 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3986 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3987 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3988 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3989 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3990 charset = char_charset (c, charset_list, &code); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3991 } |
88365 | 3992 } |
3993 if (code == CHARSET_INVALID_CODE (charset)) | |
3994 abort (); | |
3995 if (charset == charset_kanji) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3996 { |
88365 | 3997 int c1, c2; |
3998 JIS_TO_SJIS (code); | |
3999 c1 = code >> 8, c2 = code & 0xFF; | |
4000 EMIT_TWO_BYTES (c1, c2); | |
4001 } | |
4002 else if (charset == charset_kana) | |
4003 EMIT_ONE_BYTE (code | 0x80); | |
4004 else | |
4005 EMIT_ONE_ASCII_BYTE (code & 0x7F); | |
4006 } | |
4007 } | |
4008 coding->result = CODING_RESULT_SUCCESS; | |
4009 coding->produced_char += produced_chars; | |
4010 coding->produced = dst - coding->destination; | |
4011 return 0; | |
4012 } | |
4013 | |
4014 static int | |
4015 encode_coding_big5 (coding) | |
4016 struct coding_system *coding; | |
4017 { | |
4018 int multibytep = coding->dst_multibyte; | |
4019 int *charbuf = coding->charbuf; | |
4020 int *charbuf_end = charbuf + coding->charbuf_used; | |
4021 unsigned char *dst = coding->destination + coding->produced; | |
4022 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4023 int safe_room = 4; | |
4024 int produced_chars = 0; | |
4025 Lisp_Object attrs, eol_type, charset_list, val; | |
4026 int ascii_compatible; | |
4027 struct charset *charset_roman, *charset_big5; | |
4028 int c; | |
4029 | |
4030 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
4031 val = charset_list; | |
4032 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
4033 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
4034 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
4035 | |
4036 while (charbuf < charbuf_end) | |
4037 { | |
4038 ASSURE_DESTINATION (safe_room); | |
4039 c = *charbuf++; | |
4040 /* Now encode the character C. */ | |
4041 if (ASCII_CHAR_P (c) && ascii_compatible) | |
4042 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4043 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4044 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4045 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4046 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4047 } |
88365 | 4048 else |
4049 { | |
4050 unsigned code; | |
4051 struct charset *charset = char_charset (c, charset_list, &code); | |
4052 | |
4053 if (! charset) | |
4054 { | |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4055 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4056 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4057 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4058 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4059 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4060 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4061 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4062 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4063 charset = char_charset (c, charset_list, &code); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4064 } |
88365 | 4065 } |
4066 if (code == CHARSET_INVALID_CODE (charset)) | |
4067 abort (); | |
4068 if (charset == charset_big5) | |
4069 { | |
4070 int c1, c2; | |
4071 | |
4072 c1 = code >> 8, c2 = code & 0xFF; | |
4073 EMIT_TWO_BYTES (c1, c2); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4074 } |
17052 | 4075 else |
88365 | 4076 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
17052 | 4077 } |
88365 | 4078 } |
4079 coding->result = CODING_RESULT_SUCCESS; | |
4080 coding->produced_char += produced_chars; | |
4081 coding->produced = dst - coding->destination; | |
4082 return 0; | |
17052 | 4083 } |
4084 | |
4085 | |
88365 | 4086 /*** 10. CCL handlers ***/ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4087 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4088 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4089 Check if a text is encoded in a coding system of which |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4090 encoder/decoder are written in CCL program. If it is, return |
88365 | 4091 CATEGORY_MASK_CCL, else return 0. */ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4092 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
4093 static int |
88365 | 4094 detect_coding_ccl (coding, mask) |
4095 struct coding_system *coding; | |
4096 int *mask; | |
4097 { | |
4098 unsigned char *src = coding->source, *src_base = src; | |
4099 unsigned char *src_end = coding->source + coding->src_bytes; | |
4100 int multibytep = coding->src_multibyte; | |
4101 int consumed_chars = 0; | |
4102 int found = 0; | |
4103 unsigned char *valids = CODING_CCL_VALIDS (coding); | |
4104 int head_ascii = coding->head_ascii; | |
4105 Lisp_Object attrs; | |
4106 | |
4107 coding = &coding_categories[coding_category_ccl]; | |
4108 attrs = CODING_ID_ATTRS (coding->id); | |
4109 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
4110 src += head_ascii; | |
4111 | |
4112 while (1) | |
4113 { | |
4114 int c; | |
4115 ONE_MORE_BYTE (c); | |
4116 if (! valids[c]) | |
4117 break; | |
4118 if (!found && valids[c] > 1) | |
4119 found = 1; | |
4120 } | |
4121 *mask &= ~CATEGORY_MASK_CCL; | |
4122 return 0; | |
4123 | |
4124 no_more_source: | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4125 return found; |
88365 | 4126 } |
4127 | |
4128 static void | |
4129 decode_coding_ccl (coding) | |
4130 struct coding_system *coding; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4131 { |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
4132 const unsigned char *src = coding->source + coding->consumed; |
88365 | 4133 unsigned char *src_end = coding->source + coding->src_bytes; |
4134 int *charbuf = coding->charbuf; | |
4135 int *charbuf_end = charbuf + coding->charbuf_size; | |
4136 int consumed_chars = 0; | |
4137 int multibytep = coding->src_multibyte; | |
4138 struct ccl_program ccl; | |
4139 int source_charbuf[1024]; | |
4140 int source_byteidx[1024]; | |
4141 | |
4142 setup_ccl_program (&ccl, CODING_CCL_DECODER (coding)); | |
4143 | |
4144 while (src < src_end) | |
4145 { | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
4146 const unsigned char *p = src; |
88365 | 4147 int *source, *source_end; |
4148 int i = 0; | |
4149 | |
4150 if (multibytep) | |
4151 while (i < 1024 && p < src_end) | |
4152 { | |
4153 source_byteidx[i] = p - src; | |
4154 source_charbuf[i++] = STRING_CHAR_ADVANCE (p); | |
4155 } | |
4156 else | |
4157 while (i < 1024 && p < src_end) | |
4158 source_charbuf[i++] = *p++; | |
4159 | |
4160 if (p == src_end && coding->mode & CODING_MODE_LAST_BLOCK) | |
4161 ccl.last_block = 1; | |
4162 | |
4163 source = source_charbuf; | |
4164 source_end = source + i; | |
4165 while (source < source_end) | |
4166 { | |
4167 ccl_driver (&ccl, source, charbuf, | |
4168 source_end - source, charbuf_end - charbuf); | |
4169 source += ccl.consumed; | |
4170 charbuf += ccl.produced; | |
4171 if (ccl.status != CCL_STAT_SUSPEND_BY_DST) | |
4172 break; | |
4173 } | |
4174 if (source < source_end) | |
4175 src += source_byteidx[source - source_charbuf]; | |
4176 else | |
4177 src = p; | |
4178 consumed_chars += source - source_charbuf; | |
4179 | |
4180 if (ccl.status != CCL_STAT_SUSPEND_BY_SRC | |
4181 && ccl.status != CODING_RESULT_INSUFFICIENT_SRC) | |
4182 break; | |
4183 } | |
4184 | |
4185 switch (ccl.status) | |
4186 { | |
4187 case CCL_STAT_SUSPEND_BY_SRC: | |
4188 coding->result = CODING_RESULT_INSUFFICIENT_SRC; | |
4189 break; | |
4190 case CCL_STAT_SUSPEND_BY_DST: | |
4191 break; | |
4192 case CCL_STAT_QUIT: | |
4193 case CCL_STAT_INVALID_CMD: | |
4194 coding->result = CODING_RESULT_INTERRUPT; | |
4195 break; | |
4196 default: | |
4197 coding->result = CODING_RESULT_SUCCESS; | |
4198 break; | |
4199 } | |
4200 coding->consumed_char += consumed_chars; | |
4201 coding->consumed = src - coding->source; | |
4202 coding->charbuf_used = charbuf - coding->charbuf; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4203 } |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4204 |
88365 | 4205 static int |
4206 encode_coding_ccl (coding) | |
4207 struct coding_system *coding; | |
4208 { | |
4209 struct ccl_program ccl; | |
4210 int multibytep = coding->dst_multibyte; | |
4211 int *charbuf = coding->charbuf; | |
4212 int *charbuf_end = charbuf + coding->charbuf_used; | |
4213 unsigned char *dst = coding->destination + coding->produced; | |
4214 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4215 unsigned char *adjusted_dst_end = dst_end - 1; | |
4216 int destination_charbuf[1024]; | |
4217 int i, produced_chars = 0; | |
4218 | |
4219 setup_ccl_program (&ccl, CODING_CCL_ENCODER (coding)); | |
4220 | |
4221 ccl.last_block = coding->mode & CODING_MODE_LAST_BLOCK; | |
4222 ccl.dst_multibyte = coding->dst_multibyte; | |
4223 | |
4224 while (charbuf < charbuf_end && dst < adjusted_dst_end) | |
4225 { | |
4226 int dst_bytes = dst_end - dst; | |
4227 if (dst_bytes > 1024) | |
4228 dst_bytes = 1024; | |
4229 | |
4230 ccl_driver (&ccl, charbuf, destination_charbuf, | |
4231 charbuf_end - charbuf, dst_bytes); | |
4232 charbuf += ccl.consumed; | |
4233 if (multibytep) | |
4234 for (i = 0; i < ccl.produced; i++) | |
4235 EMIT_ONE_BYTE (destination_charbuf[i] & 0xFF); | |
4236 else | |
4237 { | |
4238 for (i = 0; i < ccl.produced; i++) | |
4239 *dst++ = destination_charbuf[i] & 0xFF; | |
4240 produced_chars += ccl.produced; | |
4241 } | |
4242 } | |
4243 | |
4244 switch (ccl.status) | |
4245 { | |
4246 case CCL_STAT_SUSPEND_BY_SRC: | |
4247 coding->result = CODING_RESULT_INSUFFICIENT_SRC; | |
4248 break; | |
4249 case CCL_STAT_SUSPEND_BY_DST: | |
4250 coding->result = CODING_RESULT_INSUFFICIENT_DST; | |
4251 break; | |
4252 case CCL_STAT_QUIT: | |
4253 case CCL_STAT_INVALID_CMD: | |
4254 coding->result = CODING_RESULT_INTERRUPT; | |
4255 break; | |
4256 default: | |
4257 coding->result = CODING_RESULT_SUCCESS; | |
4258 break; | |
4259 } | |
4260 | |
4261 coding->produced_char += produced_chars; | |
4262 coding->produced = dst - coding->destination; | |
4263 return 0; | |
4264 } | |
4265 | |
4266 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4267 |
88365 | 4268 /*** 10, 11. no-conversion handlers ***/ |
17052 | 4269 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4270 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4271 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4272 static void |
88365 | 4273 decode_coding_raw_text (coding) |
17052 | 4274 struct coding_system *coding; |
4275 { | |
88365 | 4276 coding->chars_at_source = 1; |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
4277 coding->consumed_char = 0; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
4278 coding->consumed = 0; |
88365 | 4279 coding->result = CODING_RESULT_SUCCESS; |
4280 } | |
4281 | |
4282 static int | |
4283 encode_coding_raw_text (coding) | |
4284 struct coding_system *coding; | |
4285 { | |
4286 int multibytep = coding->dst_multibyte; | |
4287 int *charbuf = coding->charbuf; | |
4288 int *charbuf_end = coding->charbuf + coding->charbuf_used; | |
4289 unsigned char *dst = coding->destination + coding->produced; | |
4290 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4291 int produced_chars = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4292 int c; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4293 |
88365 | 4294 if (multibytep) |
4295 { | |
4296 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
4297 | |
4298 if (coding->src_multibyte) | |
4299 while (charbuf < charbuf_end) | |
4300 { | |
4301 ASSURE_DESTINATION (safe_room); | |
4302 c = *charbuf++; | |
4303 if (ASCII_CHAR_P (c)) | |
4304 EMIT_ONE_ASCII_BYTE (c); | |
4305 else if (CHAR_BYTE8_P (c)) | |
4306 { | |
4307 c = CHAR_TO_BYTE8 (c); | |
4308 EMIT_ONE_BYTE (c); | |
4309 } | |
4310 else | |
4311 { | |
4312 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str; | |
4313 | |
4314 CHAR_STRING_ADVANCE (c, p1); | |
4315 while (p0 < p1) | |
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4316 { |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4317 EMIT_ONE_BYTE (*p0); |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4318 p0++; |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4319 } |
88365 | 4320 } |
4321 } | |
4322 else | |
4323 while (charbuf < charbuf_end) | |
4324 { | |
4325 ASSURE_DESTINATION (safe_room); | |
4326 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4327 EMIT_ONE_BYTE (c); |
88365 | 4328 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4329 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4330 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4331 { |
88365 | 4332 if (coding->src_multibyte) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4333 { |
88365 | 4334 int safe_room = MAX_MULTIBYTE_LENGTH; |
4335 | |
4336 while (charbuf < charbuf_end) | |
4337 { | |
4338 ASSURE_DESTINATION (safe_room); | |
4339 c = *charbuf++; | |
4340 if (ASCII_CHAR_P (c)) | |
4341 *dst++ = c; | |
4342 else if (CHAR_BYTE8_P (c)) | |
4343 *dst++ = CHAR_TO_BYTE8 (c); | |
4344 else | |
4345 CHAR_STRING_ADVANCE (c, dst); | |
4346 produced_chars++; | |
4347 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4348 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4349 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4350 { |
88365 | 4351 ASSURE_DESTINATION (charbuf_end - charbuf); |
4352 while (charbuf < charbuf_end && dst < dst_end) | |
4353 *dst++ = *charbuf++; | |
4354 produced_chars = dst - (coding->destination + coding->dst_bytes); | |
4355 } | |
4356 } | |
4357 coding->result = CODING_RESULT_SUCCESS; | |
4358 coding->produced_char += produced_chars; | |
4359 coding->produced = dst - coding->destination; | |
4360 return 0; | |
4361 } | |
4362 | |
4363 static int | |
4364 detect_coding_charset (coding, mask) | |
4365 struct coding_system *coding; | |
4366 int *mask; | |
4367 { | |
4368 unsigned char *src = coding->source, *src_base = src; | |
4369 unsigned char *src_end = coding->source + coding->src_bytes; | |
4370 int multibytep = coding->src_multibyte; | |
4371 int consumed_chars = 0; | |
4372 Lisp_Object attrs, valids; | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
4373 int found = 0; |
88365 | 4374 |
4375 coding = &coding_categories[coding_category_charset]; | |
4376 attrs = CODING_ID_ATTRS (coding->id); | |
4377 valids = AREF (attrs, coding_attr_charset_valids); | |
4378 | |
4379 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
4380 src += coding->head_ascii; | |
4381 | |
4382 while (1) | |
4383 { | |
4384 int c; | |
4385 | |
4386 ONE_MORE_BYTE (c); | |
4387 if (NILP (AREF (valids, c))) | |
4388 break; | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
4389 if (c >= 0x80) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
4390 found = 1; |
88365 | 4391 } |
4392 *mask &= ~CATEGORY_MASK_CHARSET; | |
4393 return 0; | |
4394 | |
4395 no_more_source: | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
4396 return (found || NILP (CODING_ATTR_ASCII_COMPAT (attrs))); |
88365 | 4397 } |
4398 | |
4399 static void | |
4400 decode_coding_charset (coding) | |
4401 struct coding_system *coding; | |
4402 { | |
4403 unsigned char *src = coding->source + coding->consumed; | |
4404 unsigned char *src_end = coding->source + coding->src_bytes; | |
4405 unsigned char *src_base; | |
4406 int *charbuf = coding->charbuf; | |
4407 int *charbuf_end = charbuf + coding->charbuf_size; | |
4408 int consumed_chars = 0, consumed_chars_base; | |
4409 int multibytep = coding->src_multibyte; | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4410 Lisp_Object attrs, eol_type, charset_list, valids; |
88365 | 4411 |
4412 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4413 valids = AREF (attrs, coding_attr_charset_valids); |
88365 | 4414 |
4415 while (1) | |
4416 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4417 int c; |
88365 | 4418 |
4419 src_base = src; | |
4420 consumed_chars_base = consumed_chars; | |
4421 | |
4422 if (charbuf >= charbuf_end) | |
4423 break; | |
4424 | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4425 ONE_MORE_BYTE (c); |
88365 | 4426 if (c == '\r') |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4427 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4428 /* Here we assume that no charset maps '\r' to something |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4429 else. */ |
88365 | 4430 if (EQ (eol_type, Qdos)) |
4431 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4432 if (src < src_end |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4433 && *src == '\n') |
88365 | 4434 ONE_MORE_BYTE (c); |
4435 } | |
4436 else if (EQ (eol_type, Qmac)) | |
4437 c = '\n'; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4438 } |
88365 | 4439 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4440 { |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4441 Lisp_Object val; |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4442 struct charset *charset; |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4443 int dim; |
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4444 int len = 1; |
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4445 unsigned code = c; |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4446 |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4447 val = AREF (valids, c); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4448 if (NILP (val)) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4449 goto invalid_code; |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4450 if (INTEGERP (val)) |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4451 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4452 charset = CHARSET_FROM_ID (XFASTINT (val)); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4453 dim = CHARSET_DIMENSION (charset); |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4454 while (len < dim) |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4455 { |
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4456 ONE_MORE_BYTE (c); |
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4457 code = (code << 8) | c; |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4458 len++; |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4459 } |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4460 CODING_DECODE_CHAR (coding, src, src_base, src_end, |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4461 charset, code, c); |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4462 } |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4463 else |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4464 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4465 /* VAL is a list of charset IDs. It is assured that the |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4466 list is sorted by charset dimensions (smaller one |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4467 comes first). */ |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4468 while (CONSP (val)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4469 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4470 charset = CHARSET_FROM_ID (XFASTINT (XCAR (val))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4471 dim = CHARSET_DIMENSION (charset); |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4472 while (len < dim) |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4473 { |
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4474 ONE_MORE_BYTE (c); |
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4475 code = (code << 8) | c; |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4476 len++; |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4477 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4478 CODING_DECODE_CHAR (coding, src, src_base, |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4479 src_end, charset, code, c); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4480 if (c >= 0) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4481 break; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4482 val = XCDR (val); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4483 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4484 } |
88365 | 4485 if (c < 0) |
4486 goto invalid_code; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4487 } |
88365 | 4488 *charbuf++ = c; |
4489 continue; | |
4490 | |
4491 invalid_code: | |
4492 src = src_base; | |
4493 consumed_chars = consumed_chars_base; | |
4494 ONE_MORE_BYTE (c); | |
4495 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
4496 coding->errors++; | |
4497 } | |
4498 | |
4499 no_more_source: | |
4500 coding->consumed_char += consumed_chars_base; | |
4501 coding->consumed = src_base - coding->source; | |
4502 coding->charbuf_used = charbuf - coding->charbuf; | |
4503 } | |
4504 | |
4505 static int | |
4506 encode_coding_charset (coding) | |
4507 struct coding_system *coding; | |
4508 { | |
4509 int multibytep = coding->dst_multibyte; | |
4510 int *charbuf = coding->charbuf; | |
4511 int *charbuf_end = charbuf + coding->charbuf_used; | |
4512 unsigned char *dst = coding->destination + coding->produced; | |
4513 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4514 int safe_room = MAX_MULTIBYTE_LENGTH; | |
4515 int produced_chars = 0; | |
4516 Lisp_Object attrs, eol_type, charset_list; | |
4517 int ascii_compatible; | |
4518 int c; | |
4519 | |
4520 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
4521 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
4522 | |
4523 while (charbuf < charbuf_end) | |
4524 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4525 struct charset *charset; |
88365 | 4526 unsigned code; |
4527 | |
4528 ASSURE_DESTINATION (safe_room); | |
4529 c = *charbuf++; | |
4530 if (ascii_compatible && ASCII_CHAR_P (c)) | |
4531 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4532 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4533 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4534 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4535 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4536 } |
88365 | 4537 else |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4538 { |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4539 charset = char_charset (c, charset_list, &code); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4540 if (charset) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4541 { |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4542 if (CHARSET_DIMENSION (charset) == 1) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4543 EMIT_ONE_BYTE (code); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4544 else if (CHARSET_DIMENSION (charset) == 2) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4545 EMIT_TWO_BYTES (code >> 8, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4546 else if (CHARSET_DIMENSION (charset) == 3) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4547 EMIT_THREE_BYTES (code >> 16, (code >> 8) & 0xFF, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4548 else |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4549 EMIT_FOUR_BYTES (code >> 24, (code >> 16) & 0xFF, |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4550 (code >> 8) & 0xFF, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4551 } |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4552 else |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4553 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4554 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4555 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4556 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4557 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4558 EMIT_ONE_BYTE (c); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4559 } |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4560 } |
88365 | 4561 } |
4562 | |
4563 coding->result = CODING_RESULT_SUCCESS; | |
4564 coding->produced_char += produced_chars; | |
4565 coding->produced = dst - coding->destination; | |
4566 return 0; | |
17052 | 4567 } |
4568 | |
4569 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4570 /*** 7. C library functions ***/ |
17052 | 4571 |
88365 | 4572 /* Setup coding context CODING from information about CODING_SYSTEM. |
4573 If CODING_SYSTEM is nil, `no-conversion' is assumed. If | |
4574 CODING_SYSTEM is invalid, signal an error. */ | |
4575 | |
4576 void | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4577 setup_coding_system (coding_system, coding) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4578 Lisp_Object coding_system; |
17052 | 4579 struct coding_system *coding; |
4580 { | |
88365 | 4581 Lisp_Object attrs; |
4582 Lisp_Object eol_type; | |
4583 Lisp_Object coding_type; | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
4584 Lisp_Object val; |
17052 | 4585 |
24460
be35d27a4bfb
(setup_coding_system): Check for CODING_SYSTEM = nil.
Kenichi Handa <handa@m17n.org>
parents:
24425
diff
changeset
|
4586 if (NILP (coding_system)) |
88365 | 4587 coding_system = Qno_conversion; |
4588 | |
4589 CHECK_CODING_SYSTEM_GET_ID (coding_system, coding->id); | |
4590 | |
4591 attrs = CODING_ID_ATTRS (coding->id); | |
4592 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
4593 | |
4594 coding->mode = 0; | |
4595 coding->head_ascii = -1; | |
4596 coding->common_flags | |
4597 = (VECTORP (eol_type) ? CODING_REQUIRE_DETECTION_MASK : 0); | |
4598 | |
4599 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
4600 coding->max_charset_id = XSTRING (val)->size - 1; | |
4601 coding->safe_charsets = (char *) XSTRING (val)->data; | |
4602 coding->default_char = XINT (CODING_ATTR_DEFAULT_CHAR (attrs)); | |
4603 | |
4604 coding_type = CODING_ATTR_TYPE (attrs); | |
4605 if (EQ (coding_type, Qundecided)) | |
4606 { | |
4607 coding->detector = NULL; | |
4608 coding->decoder = decode_coding_raw_text; | |
4609 coding->encoder = encode_coding_raw_text; | |
4610 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; | |
4611 } | |
4612 else if (EQ (coding_type, Qiso_2022)) | |
4613 { | |
4614 int i; | |
4615 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
4616 | |
4617 /* Invoke graphic register 0 to plane 0. */ | |
4618 CODING_ISO_INVOCATION (coding, 0) = 0; | |
4619 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */ | |
4620 CODING_ISO_INVOCATION (coding, 1) | |
4621 = (flags & CODING_ISO_FLAG_SEVEN_BITS ? -1 : 1); | |
4622 /* Setup the initial status of designation. */ | |
4623 for (i = 0; i < 4; i++) | |
4624 CODING_ISO_DESIGNATION (coding, i) = CODING_ISO_INITIAL (coding, i); | |
4625 /* Not single shifting initially. */ | |
4626 CODING_ISO_SINGLE_SHIFTING (coding) = 0; | |
4627 /* Beginning of buffer should also be regarded as bol. */ | |
4628 CODING_ISO_BOL (coding) = 1; | |
4629 coding->detector = detect_coding_iso_2022; | |
4630 coding->decoder = decode_coding_iso_2022; | |
4631 coding->encoder = encode_coding_iso_2022; | |
4632 if (flags & CODING_ISO_FLAG_SAFE) | |
4633 coding->mode |= CODING_MODE_SAFE_ENCODING; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4634 coding->common_flags |
88365 | 4635 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
4636 | CODING_REQUIRE_FLUSHING_MASK); | |
4637 if (flags & CODING_ISO_FLAG_COMPOSITION) | |
4638 coding->common_flags |= CODING_ANNOTATE_COMPOSITION_MASK; | |
4639 if (flags & CODING_ISO_FLAG_FULL_SUPPORT) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4640 { |
88365 | 4641 setup_iso_safe_charsets (attrs); |
4642 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
4643 coding->max_charset_id = XSTRING (val)->size - 1; | |
4644 coding->safe_charsets = (char *) XSTRING (val)->data; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4645 } |
88365 | 4646 CODING_ISO_FLAGS (coding) = flags; |
4647 } | |
4648 else if (EQ (coding_type, Qcharset)) | |
4649 { | |
4650 coding->detector = detect_coding_charset; | |
4651 coding->decoder = decode_coding_charset; | |
4652 coding->encoder = encode_coding_charset; | |
4653 coding->common_flags | |
4654 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
4655 } | |
4656 else if (EQ (coding_type, Qutf_8)) | |
4657 { | |
4658 coding->detector = detect_coding_utf_8; | |
4659 coding->decoder = decode_coding_utf_8; | |
4660 coding->encoder = encode_coding_utf_8; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
4661 coding->common_flags |
88365 | 4662 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
4663 } | |
4664 else if (EQ (coding_type, Qutf_16)) | |
4665 { | |
4666 val = AREF (attrs, coding_attr_utf_16_bom); | |
4667 CODING_UTF_16_BOM (coding) = (CONSP (val) ? utf_16_detect_bom | |
4668 : EQ (val, Qt) ? utf_16_with_bom | |
4669 : utf_16_without_bom); | |
4670 val = AREF (attrs, coding_attr_utf_16_endian); | |
4671 CODING_UTF_16_ENDIAN (coding) = (NILP (val) ? utf_16_big_endian | |
4672 : utf_16_little_endian); | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
4673 CODING_UTF_16_SURROGATE (coding) = 0; |
88365 | 4674 coding->detector = detect_coding_utf_16; |
4675 coding->decoder = decode_coding_utf_16; | |
4676 coding->encoder = encode_coding_utf_16; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4677 coding->common_flags |
88365 | 4678 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
4679 } | |
4680 else if (EQ (coding_type, Qccl)) | |
4681 { | |
4682 coding->detector = detect_coding_ccl; | |
4683 coding->decoder = decode_coding_ccl; | |
4684 coding->encoder = encode_coding_ccl; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4685 coding->common_flags |
88365 | 4686 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
4687 | CODING_REQUIRE_FLUSHING_MASK); | |
4688 } | |
4689 else if (EQ (coding_type, Qemacs_mule)) | |
4690 { | |
4691 coding->detector = detect_coding_emacs_mule; | |
4692 coding->decoder = decode_coding_emacs_mule; | |
4693 coding->encoder = encode_coding_emacs_mule; | |
4694 coding->common_flags | |
4695 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
4696 if (! NILP (AREF (attrs, coding_attr_emacs_mule_full)) | |
4697 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Vemacs_mule_charset_list)) | |
4698 { | |
4699 Lisp_Object tail, safe_charsets; | |
4700 int max_charset_id = 0; | |
4701 | |
4702 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
4703 tail = XCDR (tail)) | |
4704 if (max_charset_id < XFASTINT (XCAR (tail))) | |
4705 max_charset_id = XFASTINT (XCAR (tail)); | |
4706 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
4707 make_number (255)); | |
4708 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
4709 tail = XCDR (tail)) | |
4710 XSTRING (safe_charsets)->data[XFASTINT (XCAR (tail))] = 0; | |
4711 coding->max_charset_id = max_charset_id; | |
4712 coding->safe_charsets = (char *) XSTRING (safe_charsets)->data; | |
4713 } | |
4714 } | |
4715 else if (EQ (coding_type, Qshift_jis)) | |
4716 { | |
4717 coding->detector = detect_coding_sjis; | |
4718 coding->decoder = decode_coding_sjis; | |
4719 coding->encoder = encode_coding_sjis; | |
4720 coding->common_flags | |
4721 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
4722 } | |
4723 else if (EQ (coding_type, Qbig5)) | |
4724 { | |
4725 coding->detector = detect_coding_big5; | |
4726 coding->decoder = decode_coding_big5; | |
4727 coding->encoder = encode_coding_big5; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4728 coding->common_flags |
88365 | 4729 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
4730 } | |
4731 else /* EQ (coding_type, Qraw_text) */ | |
4732 { | |
4733 coding->detector = NULL; | |
4734 coding->decoder = decode_coding_raw_text; | |
4735 coding->encoder = encode_coding_raw_text; | |
4736 coding->common_flags |= CODING_FOR_UNIBYTE_MASK; | |
4737 } | |
4738 | |
4739 return; | |
17052 | 4740 } |
4741 | |
88365 | 4742 /* Return raw-text or one of its subsidiaries that has the same |
4743 eol_type as CODING-SYSTEM. */ | |
4744 | |
4745 Lisp_Object | |
4746 raw_text_coding_system (coding_system) | |
4747 Lisp_Object coding_system; | |
26847 | 4748 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
4749 Lisp_Object spec, attrs; |
88365 | 4750 Lisp_Object eol_type, raw_text_eol_type; |
4751 | |
4752 spec = CODING_SYSTEM_SPEC (coding_system); | |
4753 attrs = AREF (spec, 0); | |
4754 | |
4755 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) | |
4756 return coding_system; | |
4757 | |
4758 eol_type = AREF (spec, 2); | |
4759 if (VECTORP (eol_type)) | |
4760 return Qraw_text; | |
4761 spec = CODING_SYSTEM_SPEC (Qraw_text); | |
4762 raw_text_eol_type = AREF (spec, 2); | |
4763 return (EQ (eol_type, Qunix) ? AREF (raw_text_eol_type, 0) | |
4764 : EQ (eol_type, Qdos) ? AREF (raw_text_eol_type, 1) | |
4765 : AREF (raw_text_eol_type, 2)); | |
26847 | 4766 } |
4767 | |
88365 | 4768 |
4769 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT | |
4770 does, return one of the subsidiary that has the same eol-spec as | |
4771 PARENT. Otherwise, return CODING_SYSTEM. */ | |
4772 | |
4773 Lisp_Object | |
4774 coding_inherit_eol_type (coding_system, parent) | |
88473 | 4775 Lisp_Object coding_system, parent; |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4776 { |
88365 | 4777 Lisp_Object spec, attrs, eol_type; |
4778 | |
4779 spec = CODING_SYSTEM_SPEC (coding_system); | |
4780 attrs = AREF (spec, 0); | |
4781 eol_type = AREF (spec, 2); | |
4782 if (VECTORP (eol_type)) | |
4783 { | |
4784 Lisp_Object parent_spec; | |
4785 Lisp_Object parent_eol_type; | |
4786 | |
4787 parent_spec | |
4788 = CODING_SYSTEM_SPEC (buffer_defaults.buffer_file_coding_system); | |
4789 parent_eol_type = AREF (parent_spec, 2); | |
4790 if (EQ (parent_eol_type, Qunix)) | |
4791 coding_system = AREF (eol_type, 0); | |
4792 else if (EQ (parent_eol_type, Qdos)) | |
4793 coding_system = AREF (eol_type, 1); | |
4794 else if (EQ (parent_eol_type, Qmac)) | |
4795 coding_system = AREF (eol_type, 2); | |
4796 } | |
4797 return coding_system; | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4798 } |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4799 |
17052 | 4800 /* Emacs has a mechanism to automatically detect a coding system if it |
4801 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
4802 it's impossible to distinguish some coding systems accurately | |
4803 because they use the same range of codes. So, at first, coding | |
4804 systems are categorized into 7, those are: | |
4805 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4806 o coding-category-emacs-mule |
17052 | 4807 |
4808 The category for a coding system which has the same code range | |
4809 as Emacs' internal format. Assigned the coding-system (Lisp | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4810 symbol) `emacs-mule' by default. |
17052 | 4811 |
4812 o coding-category-sjis | |
4813 | |
4814 The category for a coding system which has the same code range | |
4815 as SJIS. Assigned the coding-system (Lisp | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4816 symbol) `japanese-shift-jis' by default. |
17052 | 4817 |
4818 o coding-category-iso-7 | |
4819 | |
4820 The category for a coding system which has the same code range | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4821 as ISO2022 of 7-bit environment. This doesn't use any locking |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4822 shift and single shift functions. This can encode/decode all |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4823 charsets. Assigned the coding-system (Lisp symbol) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4824 `iso-2022-7bit' by default. |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4825 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4826 o coding-category-iso-7-tight |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4827 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4828 Same as coding-category-iso-7 except that this can |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4829 encode/decode only the specified charsets. |
17052 | 4830 |
4831 o coding-category-iso-8-1 | |
4832 | |
4833 The category for a coding system which has the same code range | |
4834 as ISO2022 of 8-bit environment and graphic plane 1 used only | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4835 for DIMENSION1 charset. This doesn't use any locking shift |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4836 and single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4837 symbol) `iso-latin-1' by default. |
17052 | 4838 |
4839 o coding-category-iso-8-2 | |
4840 | |
4841 The category for a coding system which has the same code range | |
4842 as ISO2022 of 8-bit environment and graphic plane 1 used only | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4843 for DIMENSION2 charset. This doesn't use any locking shift |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4844 and single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4845 symbol) `japanese-iso-8bit' by default. |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4846 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4847 o coding-category-iso-7-else |
17052 | 4848 |
4849 The category for a coding system which has the same code range | |
88365 | 4850 as ISO2022 of 7-bit environemnt but uses locking shift or |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4851 single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4852 symbol) `iso-2022-7bit-lock' by default. |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4853 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4854 o coding-category-iso-8-else |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4855 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4856 The category for a coding system which has the same code range |
88365 | 4857 as ISO2022 of 8-bit environemnt but uses locking shift or |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4858 single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4859 symbol) `iso-2022-8bit-ss2' by default. |
17052 | 4860 |
4861 o coding-category-big5 | |
4862 | |
4863 The category for a coding system which has the same code range | |
4864 as BIG5. Assigned the coding-system (Lisp symbol) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4865 `cn-big5' by default. |
17052 | 4866 |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4867 o coding-category-utf-8 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4868 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4869 The category for a coding system which has the same code range |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4870 as UTF-8 (cf. RFC2279). Assigned the coding-system (Lisp |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4871 symbol) `utf-8' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4872 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4873 o coding-category-utf-16-be |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4874 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4875 The category for a coding system in which a text has an |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4876 Unicode signature (cf. Unicode Standard) in the order of BIG |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4877 endian at the head. Assigned the coding-system (Lisp symbol) |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4878 `utf-16-be' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4879 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4880 o coding-category-utf-16-le |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4881 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4882 The category for a coding system in which a text has an |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4883 Unicode signature (cf. Unicode Standard) in the order of |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4884 LITTLE endian at the head. Assigned the coding-system (Lisp |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4885 symbol) `utf-16-le' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4886 |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4887 o coding-category-ccl |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4888 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4889 The category for a coding system of which encoder/decoder is |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4890 written in CCL programs. The default value is nil, i.e., no |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4891 coding system is assigned. |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4892 |
17052 | 4893 o coding-category-binary |
4894 | |
4895 The category for a coding system not categorized in any of the | |
4896 above. Assigned the coding-system (Lisp symbol) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4897 `no-conversion' by default. |
17052 | 4898 |
4899 Each of them is a Lisp symbol and the value is an actual | |
88365 | 4900 `coding-system's (this is also a Lisp symbol) assigned by a user. |
17052 | 4901 What Emacs does actually is to detect a category of coding system. |
4902 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
88365 | 4903 decide only one possible category, it selects a category of the |
17052 | 4904 highest priority. Priorities of categories are also specified by a |
4905 user in a Lisp variable `coding-category-list'. | |
4906 | |
4907 */ | |
4908 | |
88365 | 4909 #define EOL_SEEN_NONE 0 |
4910 #define EOL_SEEN_LF 1 | |
4911 #define EOL_SEEN_CR 2 | |
4912 #define EOL_SEEN_CRLF 4 | |
4913 | |
4914 /* Detect how end-of-line of a text of length CODING->src_bytes | |
4915 pointed by CODING->source is encoded. Return one of | |
4916 EOL_SEEN_XXX. */ | |
17052 | 4917 |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
4918 #define MAX_EOL_CHECK_COUNT 3 |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
4919 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4920 static int |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4921 detect_eol (source, src_bytes, category) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4922 unsigned char *source; |
88365 | 4923 EMACS_INT src_bytes; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4924 enum coding_category category; |
17052 | 4925 { |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4926 unsigned char *src = source, *src_end = src + src_bytes; |
17052 | 4927 unsigned char c; |
88365 | 4928 int total = 0; |
4929 int eol_seen = EOL_SEEN_NONE; | |
4930 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4931 if ((1 << category) & CATEGORY_MASK_UTF_16) |
88365 | 4932 { |
4933 int msb, lsb; | |
4934 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4935 msb = category == (coding_category_utf_16_le |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4936 | coding_category_utf_16_le_nosig); |
88365 | 4937 lsb = 1 - msb; |
4938 | |
4939 while (src + 1 < src_end) | |
17052 | 4940 { |
88365 | 4941 c = src[lsb]; |
4942 if (src[msb] == 0 && (c == '\n' || c == '\r')) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4943 { |
88365 | 4944 int this_eol; |
4945 | |
4946 if (c == '\n') | |
4947 this_eol = EOL_SEEN_LF; | |
4948 else if (src + 3 >= src_end | |
4949 || src[msb + 2] != 0 | |
4950 || src[lsb + 2] != '\n') | |
4951 this_eol = EOL_SEEN_CR; | |
4952 else | |
4953 this_eol = EOL_SEEN_CRLF; | |
4954 | |
4955 if (eol_seen == EOL_SEEN_NONE) | |
4956 /* This is the first end-of-line. */ | |
4957 eol_seen = this_eol; | |
4958 else if (eol_seen != this_eol) | |
4959 { | |
4960 /* The found type is different from what found before. */ | |
4961 eol_seen = EOL_SEEN_LF; | |
4962 break; | |
4963 } | |
4964 if (++total == MAX_EOL_CHECK_COUNT) | |
4965 break; | |
4966 } | |
4967 src += 2; | |
4968 } | |
4969 } | |
4970 else | |
4971 { | |
4972 while (src < src_end) | |
4973 { | |
4974 c = *src++; | |
4975 if (c == '\n' || c == '\r') | |
4976 { | |
4977 int this_eol; | |
4978 | |
4979 if (c == '\n') | |
4980 this_eol = EOL_SEEN_LF; | |
4981 else if (src >= src_end || *src != '\n') | |
4982 this_eol = EOL_SEEN_CR; | |
4983 else | |
4984 this_eol = EOL_SEEN_CRLF, src++; | |
4985 | |
4986 if (eol_seen == EOL_SEEN_NONE) | |
4987 /* This is the first end-of-line. */ | |
4988 eol_seen = this_eol; | |
4989 else if (eol_seen != this_eol) | |
4990 { | |
4991 /* The found type is different from what found before. */ | |
4992 eol_seen = EOL_SEEN_LF; | |
4993 break; | |
4994 } | |
4995 if (++total == MAX_EOL_CHECK_COUNT) | |
4996 break; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4997 } |
17052 | 4998 } |
4999 } | |
88365 | 5000 return eol_seen; |
17052 | 5001 } |
5002 | |
88365 | 5003 |
5004 static void | |
5005 adjust_coding_eol_type (coding, eol_seen) | |
5006 struct coding_system *coding; | |
5007 int eol_seen; | |
5008 { | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
5009 Lisp_Object eol_type; |
88365 | 5010 |
5011 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
5012 if (eol_seen & EOL_SEEN_LF) | |
5013 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 0)); | |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
5014 else if (eol_seen & EOL_SEEN_CRLF) |
88365 | 5015 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 1)); |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
5016 else if (eol_seen & EOL_SEEN_CR) |
88365 | 5017 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 2)); |
5018 } | |
5019 | |
5020 /* Detect how a text specified in CODING is encoded. If a coding | |
5021 system is detected, update fields of CODING by the detected coding | |
5022 system. */ | |
5023 | |
5024 void | |
5025 detect_coding (coding) | |
5026 struct coding_system *coding; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5027 { |
88365 | 5028 unsigned char *src, *src_end; |
5029 Lisp_Object attrs, coding_type; | |
5030 | |
5031 coding->consumed = coding->consumed_char = 0; | |
5032 coding->produced = coding->produced_char = 0; | |
5033 coding_set_source (coding); | |
5034 | |
5035 src_end = coding->source + coding->src_bytes; | |
5036 | |
5037 /* If we have not yet decided the text encoding type, detect it | |
5038 now. */ | |
5039 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qundecided)) | |
5040 { | |
5041 int mask = CATEGORY_MASK_ANY; | |
5042 int c, i; | |
5043 | |
5044 for (src = coding->source; src < src_end; src++) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5045 { |
88365 | 5046 c = *src; |
5047 if (c & 0x80 || (c < 0x20 && (c == ISO_CODE_ESC | |
5048 || c == ISO_CODE_SI | |
5049 || c == ISO_CODE_SO))) | |
5050 break; | |
5051 } | |
5052 coding->head_ascii = src - (coding->source + coding->consumed); | |
5053 | |
5054 if (coding->head_ascii < coding->src_bytes) | |
5055 { | |
5056 int detected = 0; | |
5057 | |
5058 for (i = 0; i < coding_category_raw_text; i++) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5059 { |
88365 | 5060 enum coding_category category = coding_priorities[i]; |
5061 struct coding_system *this = coding_categories + category; | |
5062 | |
5063 if (this->id < 0) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5064 { |
88365 | 5065 /* No coding system of this category is defined. */ |
5066 mask &= ~(1 << category); | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5067 } |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5068 else if (category >= coding_category_raw_text |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5069 || detected & (1 << category)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5070 continue; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5071 else |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5072 { |
88365 | 5073 detected |= detected_mask[category]; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5074 if ((*(this->detector)) (coding, &mask) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5075 && (mask & (1 << category))) |
89221
e6779a6185ca
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89218
diff
changeset
|
5076 { |
e6779a6185ca
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89218
diff
changeset
|
5077 mask = 1 << category; |
e6779a6185ca
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89218
diff
changeset
|
5078 break; |
e6779a6185ca
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89218
diff
changeset
|
5079 } |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5080 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5081 } |
88365 | 5082 if (! mask) |
5083 setup_coding_system (Qraw_text, coding); | |
5084 else if (mask != CATEGORY_MASK_ANY) | |
5085 for (i = 0; i < coding_category_raw_text; i++) | |
5086 { | |
5087 enum coding_category category = coding_priorities[i]; | |
5088 struct coding_system *this = coding_categories + category; | |
5089 | |
5090 if (mask & (1 << category)) | |
5091 { | |
5092 setup_coding_system (CODING_ID_NAME (this->id), coding); | |
5093 break; | |
5094 } | |
5095 } | |
5096 } | |
5097 } | |
5098 | |
5099 attrs = CODING_ID_ATTRS (coding->id); | |
5100 coding_type = CODING_ATTR_TYPE (attrs); | |
5101 | |
5102 /* If we have not yet decided the EOL type, detect it now. But, the | |
5103 detection is impossible for a CCL based coding system, in which | |
5104 case, we detct the EOL type after decoding. */ | |
5105 if (VECTORP (CODING_ID_EOL_TYPE (coding->id)) | |
5106 && ! EQ (coding_type, Qccl)) | |
5107 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5108 int eol_seen = detect_eol (coding->source, coding->src_bytes, |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5109 XINT (CODING_ATTR_CATEGORY (attrs))); |
88365 | 5110 |
5111 if (eol_seen != EOL_SEEN_NONE) | |
5112 adjust_coding_eol_type (coding, eol_seen); | |
5113 } | |
5114 } | |
5115 | |
5116 | |
5117 static void | |
5118 decode_eol (coding) | |
5119 struct coding_system *coding; | |
5120 { | |
5121 if (VECTORP (CODING_ID_EOL_TYPE (coding->id))) | |
5122 { | |
5123 unsigned char *p = CHAR_POS_ADDR (coding->dst_pos); | |
5124 unsigned char *pend = p + coding->produced; | |
5125 int eol_seen = EOL_SEEN_NONE; | |
5126 | |
5127 for (; p < pend; p++) | |
5128 { | |
5129 if (*p == '\n') | |
5130 eol_seen |= EOL_SEEN_LF; | |
5131 else if (*p == '\r') | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5132 { |
88365 | 5133 if (p + 1 < pend && *(p + 1) == '\n') |
5134 { | |
5135 eol_seen |= EOL_SEEN_CRLF; | |
5136 p++; | |
5137 } | |
5138 else | |
5139 eol_seen |= EOL_SEEN_CR; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5140 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5141 } |
88365 | 5142 if (eol_seen != EOL_SEEN_NONE) |
5143 adjust_coding_eol_type (coding, eol_seen); | |
5144 } | |
5145 | |
5146 if (EQ (CODING_ID_EOL_TYPE (coding->id), Qmac)) | |
5147 { | |
5148 unsigned char *p = CHAR_POS_ADDR (coding->dst_pos); | |
5149 unsigned char *pend = p + coding->produced; | |
5150 | |
5151 for (; p < pend; p++) | |
5152 if (*p == '\r') | |
5153 *p = '\n'; | |
5154 } | |
5155 else if (EQ (CODING_ID_EOL_TYPE (coding->id), Qdos)) | |
5156 { | |
5157 unsigned char *p, *pbeg, *pend; | |
5158 Lisp_Object undo_list; | |
5159 | |
5160 move_gap_both (coding->dst_pos + coding->produced_char, | |
5161 coding->dst_pos_byte + coding->produced); | |
5162 undo_list = current_buffer->undo_list; | |
5163 current_buffer->undo_list = Qt; | |
88856 | 5164 del_range_2 (coding->dst_pos, coding->dst_pos_byte, GPT, GPT_BYTE, 0); |
88365 | 5165 current_buffer->undo_list = undo_list; |
5166 pbeg = GPT_ADDR; | |
5167 pend = pbeg + coding->produced; | |
5168 | |
5169 for (p = pend - 1; p >= pbeg; p--) | |
5170 if (*p == '\r') | |
5171 { | |
5172 safe_bcopy ((char *) (p + 1), (char *) p, pend - p - 1); | |
5173 pend--; | |
5174 } | |
5175 coding->produced_char -= coding->produced - (pend - pbeg); | |
5176 coding->produced = pend - pbeg; | |
5177 insert_from_gap (coding->produced_char, coding->produced); | |
17052 | 5178 } |
5179 } | |
5180 | |
88365 | 5181 static void |
5182 translate_chars (coding, table) | |
17052 | 5183 struct coding_system *coding; |
88365 | 5184 Lisp_Object table; |
17052 | 5185 { |
88365 | 5186 int *charbuf = coding->charbuf; |
5187 int *charbuf_end = charbuf + coding->charbuf_used; | |
5188 int c; | |
5189 | |
5190 if (coding->chars_at_source) | |
5191 return; | |
5192 | |
5193 while (charbuf < charbuf_end) | |
5194 { | |
5195 c = *charbuf; | |
5196 if (c < 0) | |
5197 charbuf += c; | |
5198 else | |
5199 *charbuf++ = translate_char (table, c); | |
5200 } | |
17052 | 5201 } |
5202 | |
88365 | 5203 static int |
5204 produce_chars (coding) | |
5205 struct coding_system *coding; | |
17052 | 5206 { |
88365 | 5207 unsigned char *dst = coding->destination + coding->produced; |
5208 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5209 int produced; | |
5210 int produced_chars = 0; | |
5211 | |
5212 if (! coding->chars_at_source) | |
5213 { | |
5214 /* Characters are in coding->charbuf. */ | |
5215 int *buf = coding->charbuf; | |
5216 int *buf_end = buf + coding->charbuf_used; | |
5217 unsigned char *adjusted_dst_end; | |
5218 | |
5219 if (BUFFERP (coding->src_object) | |
5220 && EQ (coding->src_object, coding->dst_object)) | |
5221 dst_end = coding->source + coding->consumed; | |
5222 adjusted_dst_end = dst_end - MAX_MULTIBYTE_LENGTH; | |
5223 | |
5224 while (buf < buf_end) | |
5225 { | |
5226 int c = *buf++; | |
5227 | |
5228 if (dst >= adjusted_dst_end) | |
5229 { | |
5230 dst = alloc_destination (coding, | |
5231 buf_end - buf + MAX_MULTIBYTE_LENGTH, | |
5232 dst); | |
5233 dst_end = coding->destination + coding->dst_bytes; | |
5234 adjusted_dst_end = dst_end - MAX_MULTIBYTE_LENGTH; | |
5235 } | |
5236 if (c >= 0) | |
5237 { | |
5238 if (coding->dst_multibyte | |
5239 || ! CHAR_BYTE8_P (c)) | |
5240 CHAR_STRING_ADVANCE (c, dst); | |
5241 else | |
5242 *dst++ = CHAR_TO_BYTE8 (c); | |
5243 produced_chars++; | |
5244 } | |
5245 else | |
5246 /* This is an annotation data. */ | |
5247 buf -= c + 1; | |
5248 } | |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5249 } |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5250 else |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5251 { |
88365 | 5252 unsigned char *src = coding->source; |
5253 unsigned char *src_end = src + coding->src_bytes; | |
5254 Lisp_Object eol_type; | |
5255 | |
5256 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
5257 | |
5258 if (coding->src_multibyte != coding->dst_multibyte) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5259 { |
88365 | 5260 if (coding->src_multibyte) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5261 { |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5262 int multibytep = 1; |
88365 | 5263 int consumed_chars; |
5264 | |
5265 while (1) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5266 { |
88365 | 5267 unsigned char *src_base = src; |
5268 int c; | |
5269 | |
5270 ONE_MORE_BYTE (c); | |
5271 if (c == '\r') | |
5272 { | |
5273 if (EQ (eol_type, Qdos)) | |
5274 { | |
5275 if (src < src_end | |
5276 && *src == '\n') | |
5277 c = *src++; | |
5278 } | |
5279 else if (EQ (eol_type, Qmac)) | |
5280 c = '\n'; | |
5281 } | |
5282 if (dst == dst_end) | |
5283 { | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5284 coding->consumed = src - coding->source; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5285 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5286 if (EQ (coding->src_object, coding->dst_object)) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5287 dst_end = src; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5288 if (dst == dst_end) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5289 { |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5290 dst = alloc_destination (coding, src_end - src + 1, |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5291 dst); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5292 dst_end = coding->destination + coding->dst_bytes; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5293 coding_set_source (coding); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5294 src = coding->source + coding->consumed; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5295 src_end = coding->source + coding->src_bytes; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5296 } |
88365 | 5297 } |
5298 *dst++ = c; | |
5299 produced_chars++; | |
5300 } | |
5301 no_more_source: | |
5302 ; | |
5303 } | |
5304 else | |
5305 while (src < src_end) | |
5306 { | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5307 int multibytep = 1; |
88365 | 5308 int c = *src++; |
5309 | |
5310 if (c == '\r') | |
5311 { | |
5312 if (EQ (eol_type, Qdos)) | |
5313 { | |
5314 if (src < src_end | |
5315 && *src == '\n') | |
5316 c = *src++; | |
5317 } | |
5318 else if (EQ (eol_type, Qmac)) | |
5319 c = '\n'; | |
5320 } | |
5321 if (dst >= dst_end - 1) | |
5322 { | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5323 coding->consumed = src - coding->source; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5324 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5325 if (EQ (coding->src_object, coding->dst_object)) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5326 dst_end = src; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5327 if (dst >= dst_end - 1) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5328 { |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5329 dst = alloc_destination (coding, src_end - src + 2, |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5330 dst); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5331 dst_end = coding->destination + coding->dst_bytes; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5332 coding_set_source (coding); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5333 src = coding->source + coding->consumed; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5334 src_end = coding->source + coding->src_bytes; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5335 } |
88365 | 5336 } |
5337 EMIT_ONE_BYTE (c); | |
5338 } | |
5339 } | |
5340 else | |
5341 { | |
5342 if (!EQ (coding->src_object, coding->dst_object)) | |
5343 { | |
5344 int require = coding->src_bytes - coding->dst_bytes; | |
5345 | |
5346 if (require > 0) | |
5347 { | |
5348 EMACS_INT offset = src - coding->source; | |
5349 | |
5350 dst = alloc_destination (coding, require, dst); | |
5351 coding_set_source (coding); | |
5352 src = coding->source + offset; | |
5353 src_end = coding->source + coding->src_bytes; | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5354 } |
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5355 } |
88365 | 5356 produced_chars = coding->src_chars; |
5357 while (src < src_end) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5358 { |
88365 | 5359 int c = *src++; |
5360 | |
5361 if (c == '\r') | |
5362 { | |
5363 if (EQ (eol_type, Qdos)) | |
5364 { | |
5365 if (src < src_end | |
5366 && *src == '\n') | |
5367 c = *src++; | |
5368 produced_chars--; | |
5369 } | |
5370 else if (EQ (eol_type, Qmac)) | |
5371 c = '\n'; | |
5372 } | |
5373 *dst++ = c; | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5374 } |
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5375 } |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5376 coding->consumed = coding->src_bytes; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5377 coding->consumed_char = coding->src_chars; |
88365 | 5378 } |
5379 | |
5380 produced = dst - (coding->destination + coding->produced); | |
5381 if (BUFFERP (coding->dst_object)) | |
5382 insert_from_gap (produced_chars, produced); | |
5383 coding->produced += produced; | |
5384 coding->produced_char += produced_chars; | |
5385 return produced_chars; | |
5386 } | |
5387 | |
5388 /* [ -LENGTH CHAR_POS_OFFSET MASK METHOD COMP_LEN ] | |
5389 or | |
5390 [ -LENGTH CHAR_POS_OFFSET MASK METHOD COMP_LEN COMPONENTS... ] | |
5391 */ | |
5392 | |
5393 static INLINE void | |
5394 produce_composition (coding, charbuf) | |
5395 struct coding_system *coding; | |
5396 int *charbuf; | |
5397 { | |
5398 Lisp_Object buffer; | |
5399 int len; | |
5400 EMACS_INT pos; | |
5401 enum composition_method method; | |
5402 int cmp_len; | |
5403 Lisp_Object components; | |
5404 | |
5405 buffer = coding->dst_object; | |
5406 len = -charbuf[0]; | |
5407 pos = coding->dst_pos + charbuf[1]; | |
5408 method = (enum composition_method) (charbuf[3]); | |
5409 cmp_len = charbuf[4]; | |
5410 | |
5411 if (method == COMPOSITION_RELATIVE) | |
5412 components = Qnil; | |
5413 else | |
5414 { | |
5415 Lisp_Object args[MAX_COMPOSITION_COMPONENTS * 2 - 1]; | |
5416 int i; | |
5417 | |
5418 len -= 5; | |
5419 charbuf += 5; | |
5420 for (i = 0; i < len; i++) | |
5421 args[i] = make_number (charbuf[i]); | |
5422 components = (method == COMPOSITION_WITH_ALTCHARS | |
5423 ? Fstring (len, args) : Fvector (len, args)); | |
5424 } | |
5425 compose_text (pos, pos + cmp_len, components, Qnil, Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5426 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5427 |
88365 | 5428 static int * |
5429 save_composition_data (buf, buf_end, prop) | |
5430 int *buf, *buf_end; | |
5431 Lisp_Object prop; | |
5432 { | |
5433 enum composition_method method = COMPOSITION_METHOD (prop); | |
5434 int cmp_len = COMPOSITION_LENGTH (prop); | |
5435 | |
5436 if (buf + 4 + (MAX_COMPOSITION_COMPONENTS * 2 - 1) > buf_end) | |
5437 return NULL; | |
5438 | |
5439 buf[1] = CODING_ANNOTATE_COMPOSITION_MASK; | |
5440 buf[2] = method; | |
5441 buf[3] = cmp_len; | |
5442 | |
5443 if (method == COMPOSITION_RELATIVE) | |
5444 buf[0] = 4; | |
5445 else | |
5446 { | |
5447 Lisp_Object components; | |
5448 int len, i; | |
5449 | |
5450 components = COMPOSITION_COMPONENTS (prop); | |
5451 if (VECTORP (components)) | |
5452 { | |
5453 len = XVECTOR (components)->size; | |
5454 for (i = 0; i < len; i++) | |
5455 buf[4 + i] = XINT (AREF (components, i)); | |
5456 } | |
5457 else if (STRINGP (components)) | |
5458 { | |
5459 int i_byte; | |
5460 | |
5461 len = XSTRING (components)->size; | |
5462 i = i_byte = 0; | |
5463 while (i < len) | |
5464 FETCH_STRING_CHAR_ADVANCE (buf[4 + i], components, i, i_byte); | |
5465 } | |
5466 else if (INTEGERP (components)) | |
5467 { | |
5468 len = 1; | |
5469 buf[4] = XINT (components); | |
5470 } | |
5471 else if (CONSP (components)) | |
5472 { | |
5473 for (len = 0; CONSP (components); | |
5474 len++, components = XCDR (components)) | |
5475 buf[4 + len] = XINT (XCAR (components)); | |
5476 } | |
5477 else | |
5478 abort (); | |
5479 buf[0] = 4 + len; | |
5480 } | |
5481 return (buf + buf[0]); | |
5482 } | |
5483 | |
5484 #define CHARBUF_SIZE 0x4000 | |
5485 | |
5486 #define ALLOC_CONVERSION_WORK_AREA(coding) \ | |
5487 do { \ | |
5488 int size = CHARBUF_SIZE;; \ | |
5489 \ | |
5490 coding->charbuf = NULL; \ | |
5491 while (size > 1024) \ | |
5492 { \ | |
5493 coding->charbuf = (int *) alloca (sizeof (int) * size); \ | |
5494 if (coding->charbuf) \ | |
5495 break; \ | |
5496 size >>= 1; \ | |
5497 } \ | |
5498 if (! coding->charbuf) \ | |
5499 { \ | |
5500 coding->result = CODING_RESULT_INSUFFICIENT_MEM; \ | |
5501 return coding->result; \ | |
5502 } \ | |
5503 coding->charbuf_size = size; \ | |
5504 } while (0) | |
5505 | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5506 |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5507 static void |
88365 | 5508 produce_annotation (coding) |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5509 struct coding_system *coding; |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5510 { |
88365 | 5511 int *charbuf = coding->charbuf; |
5512 int *charbuf_end = charbuf + coding->charbuf_used; | |
5513 | |
5514 while (charbuf < charbuf_end) | |
5515 { | |
5516 if (*charbuf >= 0) | |
5517 charbuf++; | |
5518 else | |
29877
7b43e1fb478a
(decode_eol_post_ccl): Special handling for undecided
Eli Zaretskii <eliz@gnu.org>
parents:
29725
diff
changeset
|
5519 { |
88365 | 5520 int len = -*charbuf; |
5521 switch (charbuf[2]) | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5522 { |
88365 | 5523 case CODING_ANNOTATE_COMPOSITION_MASK: |
5524 produce_composition (coding, charbuf); | |
5525 break; | |
5526 default: | |
5527 abort (); | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5528 } |
88365 | 5529 charbuf += len; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5530 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5531 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5532 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5533 |
88365 | 5534 /* Decode the data at CODING->src_object into CODING->dst_object. |
5535 CODING->src_object is a buffer, a string, or nil. | |
5536 CODING->dst_object is a buffer. | |
5537 | |
5538 If CODING->src_object is a buffer, it must be the current buffer. | |
5539 In this case, if CODING->src_pos is positive, it is a position of | |
5540 the source text in the buffer, otherwise, the source text is in the | |
5541 gap area of the buffer, and CODING->src_pos specifies the offset of | |
5542 the text from GPT (which must be the same as PT). If this is the | |
5543 same buffer as CODING->dst_object, CODING->src_pos must be | |
5544 negative. | |
5545 | |
5546 If CODING->src_object is a string, CODING->src_pos in an index to | |
5547 that string. | |
5548 | |
5549 If CODING->src_object is nil, CODING->source must already point to | |
5550 the non-relocatable memory area. In this case, CODING->src_pos is | |
5551 an offset from CODING->source. | |
5552 | |
5553 The decoded data is inserted at the current point of the buffer | |
5554 CODING->dst_object. | |
5555 */ | |
5556 | |
5557 static int | |
5558 decode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5559 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5560 { |
88365 | 5561 Lisp_Object attrs; |
5562 | |
5563 if (BUFFERP (coding->src_object) | |
5564 && coding->src_pos > 0 | |
5565 && coding->src_pos < GPT | |
5566 && coding->src_pos + coding->src_chars > GPT) | |
5567 move_gap_both (coding->src_pos, coding->src_pos_byte); | |
5568 | |
5569 if (BUFFERP (coding->dst_object)) | |
5570 { | |
5571 if (current_buffer != XBUFFER (coding->dst_object)) | |
5572 set_buffer_internal (XBUFFER (coding->dst_object)); | |
5573 if (GPT != PT) | |
5574 move_gap_both (PT, PT_BYTE); | |
5575 } | |
5576 | |
5577 coding->consumed = coding->consumed_char = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5578 coding->produced = coding->produced_char = 0; |
88365 | 5579 coding->chars_at_source = 0; |
5580 coding->result = CODING_RESULT_SUCCESS; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5581 coding->errors = 0; |
88365 | 5582 |
5583 ALLOC_CONVERSION_WORK_AREA (coding); | |
5584 | |
5585 attrs = CODING_ID_ATTRS (coding->id); | |
5586 | |
5587 do | |
5588 { | |
5589 coding_set_source (coding); | |
5590 coding->annotated = 0; | |
5591 (*(coding->decoder)) (coding); | |
5592 if (!NILP (CODING_ATTR_DECODE_TBL (attrs))) | |
89207
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5593 translate_chars (coding, CODING_ATTR_DECODE_TBL (attrs)); |
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5594 else if (!NILP (Vstandard_translation_table_for_decode)) |
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5595 translate_chars (coding, Vstandard_translation_table_for_decode); |
88365 | 5596 coding_set_destination (coding); |
5597 produce_chars (coding); | |
5598 if (coding->annotated) | |
5599 produce_annotation (coding); | |
5600 } | |
5601 while (coding->consumed < coding->src_bytes | |
5602 && ! coding->result); | |
5603 | |
5604 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qccl) | |
5605 && SYMBOLP (CODING_ID_EOL_TYPE (coding->id)) | |
5606 && ! EQ (CODING_ID_EOL_TYPE (coding->id), Qunix)) | |
5607 decode_eol (coding); | |
5608 | |
5609 coding->carryover_bytes = 0; | |
5610 if (coding->consumed < coding->src_bytes) | |
5611 { | |
5612 int nbytes = coding->src_bytes - coding->consumed; | |
5613 unsigned char *src; | |
5614 | |
5615 coding_set_source (coding); | |
5616 coding_set_destination (coding); | |
5617 src = coding->source + coding->consumed; | |
5618 | |
5619 if (coding->mode & CODING_MODE_LAST_BLOCK) | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5620 { |
88365 | 5621 /* Flush out unprocessed data as binary chars. We are sure |
5622 that the number of data is less than the size of | |
5623 coding->charbuf. */ | |
5624 int *charbuf = coding->charbuf; | |
5625 | |
5626 while (nbytes-- > 0) | |
5627 { | |
5628 int c = *src++; | |
5629 *charbuf++ = (c & 0x80 ? - c : c); | |
5630 } | |
5631 produce_chars (coding); | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5632 } |
88365 | 5633 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5634 { |
88365 | 5635 /* Record unprocessed bytes in coding->carryover. We are |
5636 sure that the number of data is less than the size of | |
5637 coding->carryover. */ | |
5638 unsigned char *p = coding->carryover; | |
5639 | |
5640 coding->carryover_bytes = nbytes; | |
5641 while (nbytes-- > 0) | |
5642 *p++ = *src++; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5643 } |
88365 | 5644 coding->consumed = coding->src_bytes; |
5645 } | |
5646 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5647 return coding->result; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5648 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5649 |
88365 | 5650 static void |
5651 consume_chars (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5652 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5653 { |
88365 | 5654 int *buf = coding->charbuf; |
5655 /* -1 is to compensate for CRLF. */ | |
5656 int *buf_end = coding->charbuf + coding->charbuf_size - 1; | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
5657 const unsigned char *src = coding->source + coding->consumed; |
88365 | 5658 int pos = coding->src_pos + coding->consumed_char; |
5659 int end_pos = coding->src_pos + coding->src_chars; | |
5660 int multibytep = coding->src_multibyte; | |
5661 Lisp_Object eol_type; | |
5662 int c; | |
5663 int start, end, stop; | |
5664 Lisp_Object object, prop; | |
5665 | |
5666 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
5667 if (VECTORP (eol_type)) | |
5668 eol_type = Qunix; | |
5669 | |
5670 object = coding->src_object; | |
5671 | |
5672 /* Note: composition handling is not yet implemented. */ | |
5673 coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
5674 | |
5675 if (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK | |
5676 && find_composition (pos, end_pos, &start, &end, &prop, object) | |
5677 && end <= end_pos | |
5678 && (start >= pos | |
5679 || (find_composition (end, end_pos, &start, &end, &prop, object) | |
5680 && end <= end_pos))) | |
5681 stop = start; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5682 else |
88365 | 5683 stop = end_pos; |
5684 | |
5685 while (buf < buf_end) | |
5686 { | |
5687 if (pos == stop) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5688 { |
88365 | 5689 int *p; |
5690 | |
5691 if (pos == end_pos) | |
5692 break; | |
5693 p = save_composition_data (buf, buf_end, prop); | |
5694 if (p == NULL) | |
5695 break; | |
5696 buf = p; | |
5697 if (find_composition (end, end_pos, &start, &end, &prop, object) | |
5698 && end <= end_pos) | |
5699 stop = start; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5700 else |
88365 | 5701 stop = end_pos; |
5702 } | |
5703 | |
5704 if (! multibytep) | |
5705 c = *src++; | |
5706 else | |
5707 c = STRING_CHAR_ADVANCE (src); | |
5708 if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) | |
5709 c = '\n'; | |
5710 if (! EQ (eol_type, Qunix)) | |
5711 { | |
5712 if (c == '\n') | |
5713 { | |
5714 if (EQ (eol_type, Qdos)) | |
5715 *buf++ = '\r'; | |
5716 else | |
5717 c = '\r'; | |
5718 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5719 } |
88365 | 5720 *buf++ = c; |
5721 pos++; | |
5722 } | |
5723 | |
5724 coding->consumed = src - coding->source; | |
5725 coding->consumed_char = pos - coding->src_pos; | |
5726 coding->charbuf_used = buf - coding->charbuf; | |
5727 coding->chars_at_source = 0; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5728 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5729 |
88365 | 5730 |
5731 /* Encode the text at CODING->src_object into CODING->dst_object. | |
5732 CODING->src_object is a buffer or a string. | |
5733 CODING->dst_object is a buffer or nil. | |
5734 | |
5735 If CODING->src_object is a buffer, it must be the current buffer. | |
5736 In this case, if CODING->src_pos is positive, it is a position of | |
5737 the source text in the buffer, otherwise. the source text is in the | |
5738 gap area of the buffer, and coding->src_pos specifies the offset of | |
5739 the text from GPT (which must be the same as PT). If this is the | |
5740 same buffer as CODING->dst_object, CODING->src_pos must be | |
5741 negative and CODING should not have `pre-write-conversion'. | |
5742 | |
5743 If CODING->src_object is a string, CODING should not have | |
5744 `pre-write-conversion'. | |
5745 | |
5746 If CODING->dst_object is a buffer, the encoded data is inserted at | |
5747 the current point of that buffer. | |
5748 | |
5749 If CODING->dst_object is nil, the encoded data is placed at the | |
5750 memory area specified by CODING->destination. */ | |
5751 | |
5752 static int | |
5753 encode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5754 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5755 { |
88365 | 5756 Lisp_Object attrs; |
5757 | |
5758 attrs = CODING_ID_ATTRS (coding->id); | |
5759 | |
5760 if (BUFFERP (coding->dst_object)) | |
5761 { | |
5762 set_buffer_internal (XBUFFER (coding->dst_object)); | |
5763 coding->dst_multibyte | |
5764 = ! NILP (current_buffer->enable_multibyte_characters); | |
5765 } | |
5766 | |
5767 coding->consumed = coding->consumed_char = 0; | |
5768 coding->produced = coding->produced_char = 0; | |
5769 coding->result = CODING_RESULT_SUCCESS; | |
5770 coding->errors = 0; | |
5771 | |
5772 ALLOC_CONVERSION_WORK_AREA (coding); | |
5773 | |
5774 do { | |
5775 coding_set_source (coding); | |
5776 consume_chars (coding); | |
5777 | |
5778 if (!NILP (CODING_ATTR_ENCODE_TBL (attrs))) | |
89207
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5779 translate_chars (coding, CODING_ATTR_ENCODE_TBL (attrs)); |
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5780 else if (!NILP (Vstandard_translation_table_for_encode)) |
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5781 translate_chars (coding, Vstandard_translation_table_for_encode); |
88365 | 5782 |
5783 coding_set_destination (coding); | |
5784 (*(coding->encoder)) (coding); | |
5785 } while (coding->consumed_char < coding->src_chars); | |
5786 | |
5787 if (BUFFERP (coding->dst_object)) | |
5788 insert_from_gap (coding->produced_char, coding->produced); | |
5789 | |
5790 return (coding->result); | |
5791 } | |
5792 | |
5793 /* Work buffer */ | |
5794 | |
5795 /* List of currently used working buffer. */ | |
5796 Lisp_Object Vcode_conversion_work_buf_list; | |
5797 | |
5798 /* A working buffer used by the top level conversion. */ | |
5799 Lisp_Object Vcode_conversion_reused_work_buf; | |
5800 | |
5801 | |
5802 /* Return a working buffer that can be freely used by the following | |
5803 code conversion. MULTIBYTEP specifies the multibyteness of the | |
5804 buffer. */ | |
5805 | |
5806 Lisp_Object | |
5807 make_conversion_work_buffer (multibytep) | |
5808 int multibytep; | |
5809 { | |
5810 struct buffer *current = current_buffer; | |
5811 Lisp_Object buf; | |
5812 | |
5813 if (NILP (Vcode_conversion_work_buf_list)) | |
5814 { | |
5815 if (NILP (Vcode_conversion_reused_work_buf)) | |
5816 Vcode_conversion_reused_work_buf | |
5817 = Fget_buffer_create (build_string (" *code-conversion-work*")); | |
5818 Vcode_conversion_work_buf_list | |
5819 = Fcons (Vcode_conversion_reused_work_buf, Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5820 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5821 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5822 { |
88856 | 5823 int depth = XINT (Flength (Vcode_conversion_work_buf_list)); |
88365 | 5824 char str[128]; |
5825 | |
5826 sprintf (str, " *code-conversion-work*<%d>", depth); | |
5827 Vcode_conversion_work_buf_list | |
5828 = Fcons (Fget_buffer_create (build_string (str)), | |
5829 Vcode_conversion_work_buf_list); | |
5830 } | |
5831 | |
5832 buf = XCAR (Vcode_conversion_work_buf_list); | |
5833 set_buffer_internal (XBUFFER (buf)); | |
5834 current_buffer->undo_list = Qt; | |
5835 Ferase_buffer (); | |
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5836 Fset_buffer_multibyte (multibytep ? Qt : Qnil, Qnil); |
88365 | 5837 set_buffer_internal (current); |
5838 return buf; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5839 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5840 |
88365 | 5841 static struct coding_system *saved_coding; |
5842 | |
5843 Lisp_Object | |
5844 code_conversion_restore (info) | |
5845 Lisp_Object info; | |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5846 { |
88856 | 5847 int depth = XINT (Flength (Vcode_conversion_work_buf_list)); |
88365 | 5848 Lisp_Object buf; |
5849 | |
5850 if (depth > 0) | |
5851 { | |
5852 buf = XCAR (Vcode_conversion_work_buf_list); | |
5853 Vcode_conversion_work_buf_list = XCDR (Vcode_conversion_work_buf_list); | |
5854 if (depth > 1 && !NILP (Fbuffer_live_p (buf))) | |
5855 Fkill_buffer (buf); | |
5856 } | |
5857 | |
88856 | 5858 if (EQ (saved_coding->dst_object, Qt) |
88365 | 5859 && saved_coding->destination) |
5860 xfree (saved_coding->destination); | |
5861 | |
5862 return save_excursion_restore (info); | |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5863 } |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5864 |
88365 | 5865 |
5866 int | |
5867 decode_coding_gap (coding, chars, bytes) | |
26847 | 5868 struct coding_system *coding; |
88365 | 5869 EMACS_INT chars, bytes; |
5870 { | |
5871 int count = specpdl_ptr - specpdl; | |
5872 | |
5873 saved_coding = coding; | |
5874 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5875 | |
5876 coding->src_object = Fcurrent_buffer (); | |
5877 coding->src_chars = chars; | |
5878 coding->src_bytes = bytes; | |
5879 coding->src_pos = -chars; | |
5880 coding->src_pos_byte = -bytes; | |
5881 coding->src_multibyte = chars < bytes; | |
5882 coding->dst_object = coding->src_object; | |
5883 coding->dst_pos = PT; | |
5884 coding->dst_pos_byte = PT_BYTE; | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5885 coding->dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
88365 | 5886 |
5887 if (CODING_REQUIRE_DETECTION (coding)) | |
5888 detect_coding (coding); | |
5889 | |
5890 decode_coding (coding); | |
5891 | |
5892 unbind_to (count, Qnil); | |
5893 return coding->result; | |
5894 } | |
5895 | |
5896 int | |
5897 encode_coding_gap (coding, chars, bytes) | |
5898 struct coding_system *coding; | |
5899 EMACS_INT chars, bytes; | |
26847 | 5900 { |
88365 | 5901 int count = specpdl_ptr - specpdl; |
5902 Lisp_Object buffer; | |
5903 | |
5904 saved_coding = coding; | |
5905 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5906 | |
5907 buffer = Fcurrent_buffer (); | |
5908 coding->src_object = buffer; | |
5909 coding->src_chars = chars; | |
5910 coding->src_bytes = bytes; | |
5911 coding->src_pos = -chars; | |
5912 coding->src_pos_byte = -bytes; | |
5913 coding->src_multibyte = chars < bytes; | |
5914 coding->dst_object = coding->src_object; | |
5915 coding->dst_pos = PT; | |
5916 coding->dst_pos_byte = PT_BYTE; | |
5917 | |
5918 encode_coding (coding); | |
5919 | |
5920 unbind_to (count, Qnil); | |
5921 return coding->result; | |
26847 | 5922 } |
5923 | |
88365 | 5924 |
5925 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in | |
5926 SRC_OBJECT into DST_OBJECT by coding context CODING. | |
5927 | |
5928 SRC_OBJECT is a buffer, a string, or Qnil. | |
5929 | |
5930 If it is a buffer, the text is at point of the buffer. FROM and TO | |
5931 are positions in the buffer. | |
5932 | |
5933 If it is a string, the text is at the beginning of the string. | |
5934 FROM and TO are indices to the string. | |
5935 | |
5936 If it is nil, the text is at coding->source. FROM and TO are | |
5937 indices to coding->source. | |
5938 | |
5939 DST_OBJECT is a buffer, Qt, or Qnil. | |
5940 | |
5941 If it is a buffer, the decoded text is inserted at point of the | |
5942 buffer. If the buffer is the same as SRC_OBJECT, the source text | |
5943 is deleted. | |
5944 | |
5945 If it is Qt, a string is made from the decoded text, and | |
5946 set in CODING->dst_object. | |
5947 | |
5948 If it is Qnil, the decoded text is stored at CODING->destination. | |
5949 The called must allocate CODING->dst_bytes bytes at | |
5950 CODING->destination by xmalloc. If the decoded text is longer than | |
5951 CODING->dst_bytes, CODING->destination is relocated by xrealloc. | |
5952 */ | |
26847 | 5953 |
29275
b4ea9178e480
(DECODE_COMPOSITION_START): If coding->cmp_data is not
Kenichi Handa <handa@m17n.org>
parents:
29247
diff
changeset
|
5954 void |
88365 | 5955 decode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
5956 dst_object) | |
26847 | 5957 struct coding_system *coding; |
88365 | 5958 Lisp_Object src_object; |
5959 EMACS_INT from, from_byte, to, to_byte; | |
5960 Lisp_Object dst_object; | |
26847 | 5961 { |
88365 | 5962 int count = specpdl_ptr - specpdl; |
5963 unsigned char *destination; | |
5964 EMACS_INT dst_bytes; | |
5965 EMACS_INT chars = to - from; | |
5966 EMACS_INT bytes = to_byte - from_byte; | |
5967 Lisp_Object attrs; | |
5968 | |
5969 saved_coding = coding; | |
5970 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5971 | |
5972 if (NILP (dst_object)) | |
5973 { | |
5974 destination = coding->destination; | |
5975 dst_bytes = coding->dst_bytes; | |
5976 } | |
5977 | |
5978 coding->src_object = src_object; | |
5979 coding->src_chars = chars; | |
5980 coding->src_bytes = bytes; | |
5981 coding->src_multibyte = chars < bytes; | |
5982 | |
5983 if (STRINGP (src_object)) | |
5984 { | |
5985 coding->src_pos = from; | |
5986 coding->src_pos_byte = from_byte; | |
5987 } | |
5988 else if (BUFFERP (src_object)) | |
5989 { | |
5990 set_buffer_internal (XBUFFER (src_object)); | |
5991 if (from != GPT) | |
5992 move_gap_both (from, from_byte); | |
5993 if (EQ (src_object, dst_object)) | |
26847 | 5994 { |
88365 | 5995 TEMP_SET_PT_BOTH (from, from_byte); |
5996 del_range_both (from, from_byte, to, to_byte, 1); | |
5997 coding->src_pos = -chars; | |
5998 coding->src_pos_byte = -bytes; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5999 } |
42661
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
6000 else |
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
6001 { |
88365 | 6002 coding->src_pos = from; |
6003 coding->src_pos_byte = from_byte; | |
29985
c17e78d8c720
(code_convert_region): Even if the length of text is
Kenichi Handa <handa@m17n.org>
parents:
29932
diff
changeset
|
6004 } |
88365 | 6005 } |
6006 | |
6007 if (CODING_REQUIRE_DETECTION (coding)) | |
6008 detect_coding (coding); | |
6009 attrs = CODING_ID_ATTRS (coding->id); | |
6010 | |
6011 if (! NILP (CODING_ATTR_POST_READ (attrs)) | |
6012 || EQ (dst_object, Qt)) | |
6013 { | |
6014 coding->dst_object = make_conversion_work_buffer (1); | |
6015 coding->dst_pos = BEG; | |
6016 coding->dst_pos_byte = BEG_BYTE; | |
6017 coding->dst_multibyte = 1; | |
6018 } | |
6019 else if (BUFFERP (dst_object)) | |
6020 { | |
6021 coding->dst_object = dst_object; | |
6022 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); | |
6023 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); | |
6024 coding->dst_multibyte | |
6025 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
6026 } | |
6027 else | |
6028 { | |
6029 coding->dst_object = Qnil; | |
6030 coding->dst_multibyte = 1; | |
6031 } | |
6032 | |
6033 decode_coding (coding); | |
6034 | |
6035 if (BUFFERP (coding->dst_object)) | |
6036 set_buffer_internal (XBUFFER (coding->dst_object)); | |
6037 | |
6038 if (! NILP (CODING_ATTR_POST_READ (attrs))) | |
6039 { | |
6040 struct gcpro gcpro1, gcpro2; | |
6041 EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; | |
6042 Lisp_Object val; | |
6043 | |
88506
a7f0d13affa5
(decode_coding_object): Move point to coding->dst_pos before
Kenichi Handa <handa@m17n.org>
parents:
88497
diff
changeset
|
6044 TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); |
88365 | 6045 GCPRO2 (coding->src_object, coding->dst_object); |
6046 val = call1 (CODING_ATTR_POST_READ (attrs), | |
6047 make_number (coding->produced_char)); | |
6048 UNGCPRO; | |
6049 CHECK_NATNUM (val); | |
6050 coding->produced_char += Z - prev_Z; | |
6051 coding->produced += Z_BYTE - prev_Z_BYTE; | |
6052 } | |
6053 | |
6054 if (EQ (dst_object, Qt)) | |
6055 { | |
6056 coding->dst_object = Fbuffer_string (); | |
6057 } | |
6058 else if (NILP (dst_object) && BUFFERP (coding->dst_object)) | |
6059 { | |
6060 set_buffer_internal (XBUFFER (coding->dst_object)); | |
6061 if (dst_bytes < coding->produced) | |
42105
09cc243e2d14
(code_convert_region): Update coding->cmp_data->char_offset
Richard M. Stallman <rms@gnu.org>
parents:
42104
diff
changeset
|
6062 { |
88365 | 6063 destination |
6064 = (unsigned char *) xrealloc (destination, coding->produced); | |
6065 if (! destination) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6066 { |
88365 | 6067 coding->result = CODING_RESULT_INSUFFICIENT_DST; |
6068 unbind_to (count, Qnil); | |
6069 return; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6070 } |
88365 | 6071 if (BEGV < GPT && GPT < BEGV + coding->produced_char) |
6072 move_gap_both (BEGV, BEGV_BYTE); | |
6073 bcopy (BEGV_ADDR, destination, coding->produced); | |
6074 coding->destination = destination; | |
23279
ca159e828a68
(ccl_coding_driver): If ccl_driver is interrupted by a
Kenichi Handa <handa@m17n.org>
parents:
23258
diff
changeset
|
6075 } |
88365 | 6076 } |
6077 | |
6078 unbind_to (count, Qnil); | |
6079 } | |
6080 | |
6081 | |
6082 void | |
6083 encode_coding_object (coding, src_object, from, from_byte, to, to_byte, | |
6084 dst_object) | |
6085 struct coding_system *coding; | |
6086 Lisp_Object src_object; | |
6087 EMACS_INT from, from_byte, to, to_byte; | |
6088 Lisp_Object dst_object; | |
6089 { | |
6090 int count = specpdl_ptr - specpdl; | |
6091 EMACS_INT chars = to - from; | |
6092 EMACS_INT bytes = to_byte - from_byte; | |
6093 Lisp_Object attrs; | |
6094 | |
6095 saved_coding = coding; | |
6096 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
6097 | |
6098 coding->src_object = src_object; | |
6099 coding->src_chars = chars; | |
6100 coding->src_bytes = bytes; | |
6101 coding->src_multibyte = chars < bytes; | |
6102 | |
6103 attrs = CODING_ID_ATTRS (coding->id); | |
6104 | |
6105 if (! NILP (CODING_ATTR_PRE_WRITE (attrs))) | |
21062
839b22ad1e42
(code_convert_region): Handle the case that codes
Kenichi Handa <handa@m17n.org>
parents:
20999
diff
changeset
|
6106 { |
88365 | 6107 coding->src_object = make_conversion_work_buffer (coding->src_multibyte); |
6108 set_buffer_internal (XBUFFER (coding->src_object)); | |
6109 if (STRINGP (src_object)) | |
6110 insert_from_string (src_object, from, from_byte, chars, bytes, 0); | |
6111 else if (BUFFERP (src_object)) | |
6112 insert_from_buffer (XBUFFER (src_object), from, chars, 0); | |
6113 else | |
6114 insert_1_both (coding->source + from, chars, bytes, 0, 0, 0); | |
6115 | |
6116 if (EQ (src_object, dst_object)) | |
6117 { | |
6118 set_buffer_internal (XBUFFER (src_object)); | |
6119 del_range_both (from, from_byte, to, to_byte, 1); | |
6120 set_buffer_internal (XBUFFER (coding->src_object)); | |
6121 } | |
6122 | |
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6123 call2 (CODING_ATTR_PRE_WRITE (attrs), |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6124 make_number (BEG), make_number (Z)); |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6125 coding->src_object = Fcurrent_buffer (); |
88365 | 6126 if (BEG != GPT) |
6127 move_gap_both (BEG, BEG_BYTE); | |
6128 coding->src_chars = Z - BEG; | |
6129 coding->src_bytes = Z_BYTE - BEG_BYTE; | |
6130 coding->src_pos = BEG; | |
6131 coding->src_pos_byte = BEG_BYTE; | |
6132 coding->src_multibyte = Z < Z_BYTE; | |
6133 } | |
6134 else if (STRINGP (src_object)) | |
6135 { | |
6136 coding->src_pos = from; | |
6137 coding->src_pos_byte = from_byte; | |
6138 } | |
6139 else if (BUFFERP (src_object)) | |
6140 { | |
6141 set_buffer_internal (XBUFFER (src_object)); | |
6142 if (from != GPT) | |
6143 move_gap_both (from, from_byte); | |
6144 if (EQ (src_object, dst_object)) | |
6145 { | |
6146 del_range_both (from, from_byte, to, to_byte, 1); | |
6147 coding->src_pos = -chars; | |
6148 coding->src_pos_byte = -bytes; | |
6149 } | |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
6150 else |
88365 | 6151 { |
6152 coding->src_pos = from; | |
6153 coding->src_pos_byte = from_byte; | |
6154 } | |
6155 } | |
6156 | |
6157 if (BUFFERP (dst_object)) | |
6158 { | |
6159 coding->dst_object = dst_object; | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6160 if (EQ (src_object, dst_object)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6161 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6162 coding->dst_pos = from; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6163 coding->dst_pos_byte = from_byte; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6164 } |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6165 else |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6166 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6167 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6168 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6169 } |
88365 | 6170 coding->dst_multibyte |
6171 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
6172 } | |
6173 else if (EQ (dst_object, Qt)) | |
6174 { | |
6175 coding->dst_object = Qnil; | |
6176 coding->dst_bytes = coding->src_chars; | |
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6177 if (coding->dst_bytes == 0) |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6178 coding->dst_bytes = 1; |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6179 coding->destination = (unsigned char *) xmalloc (coding->dst_bytes); |
88365 | 6180 coding->dst_multibyte = 0; |
6181 } | |
6182 else | |
6183 { | |
6184 coding->dst_object = Qnil; | |
6185 coding->dst_multibyte = 0; | |
6186 } | |
6187 | |
6188 encode_coding (coding); | |
6189 | |
6190 if (EQ (dst_object, Qt)) | |
6191 { | |
6192 if (BUFFERP (coding->dst_object)) | |
6193 coding->dst_object = Fbuffer_string (); | |
6194 else | |
6195 { | |
6196 coding->dst_object | |
6197 = make_unibyte_string ((char *) coding->destination, | |
6198 coding->produced); | |
6199 xfree (coding->destination); | |
6200 } | |
6201 } | |
6202 | |
6203 unbind_to (count, Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6204 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6205 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
6206 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
6207 Lisp_Object |
88365 | 6208 preferred_coding_system () |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6209 { |
88365 | 6210 int id = coding_categories[coding_priorities[0]].id; |
6211 | |
6212 return CODING_ID_NAME (id); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6213 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6214 |
17052 | 6215 |
6216 #ifdef emacs | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6217 /*** 8. Emacs Lisp library functions ***/ |
17052 | 6218 |
6219 DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6220 doc: /* Return t if OBJECT is nil or a coding-system. |
88365 | 6221 See the documentation of `define-coding-system' for information |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6222 about coding-system objects. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6223 (obj) |
17052 | 6224 Lisp_Object obj; |
6225 { | |
88365 | 6226 return ((NILP (obj) || CODING_SYSTEM_P (obj)) ? Qt : Qnil); |
17052 | 6227 } |
6228 | |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6229 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system, |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6230 Sread_non_nil_coding_system, 1, 1, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6231 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6232 (prompt) |
17052 | 6233 Lisp_Object prompt; |
6234 { | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6235 Lisp_Object val; |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6236 do |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6237 { |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6238 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6239 Qt, Qnil, Qcoding_system_history, Qnil, Qnil); |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6240 } |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6241 while (XSTRING (val)->size == 0); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6242 return (Fintern (val, Qnil)); |
17052 | 6243 } |
6244 | |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6245 DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6246 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6247 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6248 (prompt, default_coding_system) |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6249 Lisp_Object prompt, default_coding_system; |
17052 | 6250 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
6251 Lisp_Object val; |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6252 if (SYMBOLP (default_coding_system)) |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6253 XSETSTRING (default_coding_system, XSYMBOL (default_coding_system)->name); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6254 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6255 Qt, Qnil, Qcoding_system_history, |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6256 default_coding_system, Qnil); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6257 return (XSTRING (val)->size == 0 ? Qnil : Fintern (val, Qnil)); |
17052 | 6258 } |
6259 | |
6260 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
6261 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6262 doc: /* Check validity of CODING-SYSTEM. |
89218 | 6263 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. */) |
88365 | 6264 (coding_system) |
17052 | 6265 Lisp_Object coding_system; |
6266 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6267 CHECK_SYMBOL (coding_system); |
17052 | 6268 if (!NILP (Fcoding_system_p (coding_system))) |
6269 return coding_system; | |
6270 while (1) | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
6271 Fsignal (Qcoding_system_error, Fcons (coding_system, Qnil)); |
17052 | 6272 } |
88365 | 6273 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6274 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6275 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6276 HIGHEST is nonzero, return the coding system of the highest |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6277 priority among the detected coding systems. Otherwize return a |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6278 list of detected coding systems sorted by their priorities. If |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6279 MULTIBYTEP is nonzero, it is assumed that the bytes are in correct |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6280 multibyte form but contains only ASCII and eight-bit chars. |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6281 Otherwise, the bytes are raw bytes. |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6282 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6283 CODING-SYSTEM controls the detection as below: |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6284 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6285 If it is nil, detect both text-format and eol-format. If the |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6286 text-format part of CODING-SYSTEM is already specified |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6287 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6288 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'), |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6289 detect only text-format. */ |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6290 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6291 Lisp_Object |
88365 | 6292 detect_coding_system (src, src_bytes, highest, multibytep, coding_system) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6293 unsigned char *src; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6294 int src_bytes, highest; |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6295 int multibytep; |
88365 | 6296 Lisp_Object coding_system; |
17052 | 6297 { |
88365 | 6298 unsigned char *src_end = src + src_bytes; |
6299 int mask = CATEGORY_MASK_ANY; | |
6300 int detected = 0; | |
6301 int c, i; | |
6302 Lisp_Object attrs, eol_type; | |
6303 Lisp_Object val; | |
6304 struct coding_system coding; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6305 int id; |
88365 | 6306 |
6307 if (NILP (coding_system)) | |
6308 coding_system = Qundecided; | |
6309 setup_coding_system (coding_system, &coding); | |
6310 attrs = CODING_ID_ATTRS (coding.id); | |
6311 eol_type = CODING_ID_EOL_TYPE (coding.id); | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6312 coding_system = CODING_ATTR_BASE_NAME (attrs); |
88365 | 6313 |
6314 coding.source = src; | |
6315 coding.src_bytes = src_bytes; | |
6316 coding.src_multibyte = multibytep; | |
6317 coding.consumed = 0; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6318 coding.mode |= CODING_MODE_LAST_BLOCK; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6319 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6320 /* At first, detect text-format if necessary. */ |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6321 if (XINT (CODING_ATTR_CATEGORY (attrs)) == coding_category_undecided) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6322 { |
88365 | 6323 for (; src < src_end; src++) |
17052 | 6324 { |
88365 | 6325 c = *src; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6326 if (c & 0x80 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6327 || (c < 0x20 && (c == ISO_CODE_ESC |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6328 || c == ISO_CODE_SI |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
6329 || c == ISO_CODE_SO))) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6330 break; |
17052 | 6331 } |
88365 | 6332 coding.head_ascii = src - coding.source; |
6333 | |
6334 if (src < src_end) | |
6335 for (i = 0; i < coding_category_raw_text; i++) | |
6336 { | |
6337 enum coding_category category = coding_priorities[i]; | |
6338 struct coding_system *this = coding_categories + category; | |
6339 | |
6340 if (this->id < 0) | |
6341 { | |
6342 /* No coding system of this category is defined. */ | |
6343 mask &= ~(1 << category); | |
6344 } | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6345 else if (category >= coding_category_raw_text |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6346 || detected & (1 << category)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6347 continue; |
88365 | 6348 else |
6349 { | |
6350 detected |= detected_mask[category]; | |
6351 if ((*(coding_categories[category].detector)) (&coding, &mask) | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6352 && highest |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6353 && (mask & (1 << category))) |
88365 | 6354 { |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6355 mask = 1 << category; |
88365 | 6356 break; |
6357 } | |
6358 } | |
6359 } | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6360 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6361 if (!mask) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6362 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6363 id = coding_categories[coding_category_raw_text].id; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6364 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6365 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6366 else if (mask == CATEGORY_MASK_ANY) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6367 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6368 id = coding_categories[coding_category_undecided].id; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6369 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6370 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6371 else if (highest) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6372 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6373 for (i = 0; i < coding_category_raw_text; i++) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6374 if (mask & (1 << coding_priorities[i])) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6375 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6376 id = coding_categories[coding_priorities[i]].id; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6377 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6378 break; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6379 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6380 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6381 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6382 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6383 val = Qnil; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6384 for (i = coding_category_raw_text - 1; i >= 0; i--) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6385 if (mask & (1 << coding_priorities[i])) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6386 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6387 id = coding_categories[coding_priorities[i]].id; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6388 val = Fcons (make_number (id), val); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6389 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6390 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6391 } |
88365 | 6392 else |
6393 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6394 mask = 1 << XINT (CODING_ATTR_CATEGORY (attrs)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6395 val = Fcons (make_number (coding.id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6396 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6397 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6398 /* Then, detect eol-format if necessary. */ |
88365 | 6399 { |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6400 int normal_eol = -1, utf_16_be_eol = -1, utf_16_le_eol; |
88365 | 6401 Lisp_Object tail; |
6402 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6403 if (VECTORP (eol_type)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6404 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6405 if (mask & ~CATEGORY_MASK_UTF_16) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6406 normal_eol = detect_eol (coding.source, src_bytes, |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6407 coding_category_raw_text); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6408 if (mask & (CATEGORY_MASK_UTF_16_BE | CATEGORY_MASK_UTF_16_BE_NOSIG)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6409 utf_16_be_eol = detect_eol (coding.source, src_bytes, |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6410 coding_category_utf_16_be); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6411 if (mask & (CATEGORY_MASK_UTF_16_LE | CATEGORY_MASK_UTF_16_LE_NOSIG)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6412 utf_16_le_eol = detect_eol (coding.source, src_bytes, |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6413 coding_category_utf_16_le); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6414 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6415 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6416 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6417 if (EQ (eol_type, Qunix)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6418 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_LF; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6419 else if (EQ (eol_type, Qdos)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6420 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CRLF; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6421 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6422 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CR; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6423 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6424 |
88365 | 6425 for (tail = val; CONSP (tail); tail = XCDR (tail)) |
6426 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6427 enum coding_category category; |
88365 | 6428 int this_eol; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6429 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6430 id = XINT (XCAR (tail)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6431 attrs = CODING_ID_ATTRS (id); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6432 category = XINT (CODING_ATTR_CATEGORY (attrs)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6433 eol_type = CODING_ID_EOL_TYPE (id); |
88365 | 6434 if (VECTORP (eol_type)) |
6435 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6436 if (category == coding_category_utf_16_be |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6437 || category == coding_category_utf_16_be_nosig) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6438 this_eol = utf_16_be_eol; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6439 else if (category == coding_category_utf_16_le |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6440 || category == coding_category_utf_16_le_nosig) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6441 this_eol = utf_16_le_eol; |
88365 | 6442 else |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6443 this_eol = normal_eol; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6444 |
88365 | 6445 if (this_eol == EOL_SEEN_LF) |
6446 XSETCAR (tail, AREF (eol_type, 0)); | |
6447 else if (this_eol == EOL_SEEN_CRLF) | |
6448 XSETCAR (tail, AREF (eol_type, 1)); | |
6449 else if (this_eol == EOL_SEEN_CR) | |
6450 XSETCAR (tail, AREF (eol_type, 2)); | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6451 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6452 XSETCAR (tail, CODING_ID_NAME (id)); |
88365 | 6453 } |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6454 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6455 XSETCAR (tail, CODING_ID_NAME (id)); |
88365 | 6456 } |
6457 } | |
6458 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
6459 return (highest ? XCAR (val) : val); |
42104
d69c2368e549
(DECODE_COMPOSITION_END): Fixed a typo in the last
Sam Steingold <sds@gnu.org>
parents:
42103
diff
changeset
|
6460 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6461 |
88365 | 6462 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6463 DEFUN ("detect-coding-region", Fdetect_coding_region, Sdetect_coding_region, |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6464 2, 3, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6465 doc: /* Detect coding system of the text in the region between START and END. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6466 Return a list of possible coding systems ordered by priority. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6467 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6468 If only ASCII characters are found, it returns a list of single element |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6469 `undecided' or its subsidiary coding system according to a detected |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6470 end-of-line format. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6471 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6472 If optional argument HIGHEST is non-nil, return the coding system of |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6473 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6474 (start, end, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6475 Lisp_Object start, end, highest; |
17052 | 6476 { |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6477 int from, to; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6478 int from_byte, to_byte; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6479 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6480 CHECK_NUMBER_COERCE_MARKER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6481 CHECK_NUMBER_COERCE_MARKER (end); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6482 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6483 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6484 from = XINT (start), to = XINT (end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6485 from_byte = CHAR_TO_BYTE (from); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6486 to_byte = CHAR_TO_BYTE (to); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6487 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6488 if (from < GPT && to >= GPT) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6489 move_gap_both (to, to_byte); |
88365 | 6490 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6491 return detect_coding_system (BYTE_POS_ADDR (from_byte), |
88365 | 6492 to_byte - from_byte, |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6493 !NILP (highest), |
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6494 !NILP (current_buffer |
88365 | 6495 ->enable_multibyte_characters), |
6496 Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6497 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6498 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6499 DEFUN ("detect-coding-string", Fdetect_coding_string, Sdetect_coding_string, |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6500 1, 2, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6501 doc: /* Detect coding system of the text in STRING. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6502 Return a list of possible coding systems ordered by priority. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6503 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6504 If only ASCII characters are found, it returns a list of single element |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6505 `undecided' or its subsidiary coding system according to a detected |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6506 end-of-line format. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6507 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6508 If optional argument HIGHEST is non-nil, return the coding system of |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6509 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6510 (string, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6511 Lisp_Object string, highest; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6512 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6513 CHECK_STRING (string); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6514 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6515 return detect_coding_system (XSTRING (string)->data, |
88365 | 6516 STRING_BYTES (XSTRING (string)), |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6517 !NILP (highest), |
88365 | 6518 STRING_MULTIBYTE (string), |
6519 Qnil); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6520 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6521 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6522 |
88365 | 6523 static INLINE int |
6524 char_encodable_p (c, attrs) | |
6525 int c; | |
6526 Lisp_Object attrs; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6527 { |
88365 | 6528 Lisp_Object tail; |
6529 struct charset *charset; | |
6530 | |
6531 for (tail = CODING_ATTR_CHARSET_LIST (attrs); | |
6532 CONSP (tail); tail = XCDR (tail)) | |
6533 { | |
6534 charset = CHARSET_FROM_ID (XINT (XCAR (tail))); | |
6535 if (CHAR_CHARSET_P (c, charset)) | |
6536 break; | |
6537 } | |
6538 return (! NILP (tail)); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6539 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6540 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6541 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6542 /* Return a list of coding systems that safely encode the text between |
88365 | 6543 START and END. If EXCLUDE is non-nil, it is a list of coding |
6544 systems not to check. The returned list doesn't contain any such | |
88889
4548f224c603
(Ffind_coding_systems_region_internal): Detect an
Kenichi Handa <handa@m17n.org>
parents:
88876
diff
changeset
|
6545 coding systems. In any case, if the text contains only ASCII or is |
88365 | 6546 unibyte, return t. */ |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6547 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6548 DEFUN ("find-coding-systems-region-internal", |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6549 Ffind_coding_systems_region_internal, |
88365 | 6550 Sfind_coding_systems_region_internal, 2, 3, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6551 doc: /* Internal use only. */) |
88365 | 6552 (start, end, exclude) |
6553 Lisp_Object start, end, exclude; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6554 { |
88365 | 6555 Lisp_Object coding_attrs_list, safe_codings; |
6556 EMACS_INT start_byte, end_byte; | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
6557 const unsigned char *p, *pbeg, *pend; |
88365 | 6558 int c; |
6559 Lisp_Object tail, elt; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6560 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6561 if (STRINGP (start)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6562 { |
88365 | 6563 if (!STRING_MULTIBYTE (start) |
88889
4548f224c603
(Ffind_coding_systems_region_internal): Detect an
Kenichi Handa <handa@m17n.org>
parents:
88876
diff
changeset
|
6564 || XSTRING (start)->size == STRING_BYTES (XSTRING (start))) |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6565 return Qt; |
88365 | 6566 start_byte = 0; |
6567 end_byte = STRING_BYTES (XSTRING (start)); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6568 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6569 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6570 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6571 CHECK_NUMBER_COERCE_MARKER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6572 CHECK_NUMBER_COERCE_MARKER (end); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6573 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6574 args_out_of_range (start, end); |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6575 if (NILP (current_buffer->enable_multibyte_characters)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6576 return Qt; |
88365 | 6577 start_byte = CHAR_TO_BYTE (XINT (start)); |
6578 end_byte = CHAR_TO_BYTE (XINT (end)); | |
6579 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
6580 return Qt; | |
6581 | |
6582 if (start < GPT && end > GPT) | |
6583 { | |
6584 if ((GPT - start) < (end - GPT)) | |
6585 move_gap_both (start, start_byte); | |
6586 else | |
6587 move_gap_both (end, end_byte); | |
6588 } | |
6589 } | |
6590 | |
6591 coding_attrs_list = Qnil; | |
6592 for (tail = Vcoding_system_list; CONSP (tail); tail = XCDR (tail)) | |
6593 if (NILP (exclude) | |
6594 || NILP (Fmemq (XCAR (tail), exclude))) | |
6595 { | |
6596 Lisp_Object attrs; | |
6597 | |
6598 attrs = AREF (CODING_SYSTEM_SPEC (XCAR (tail)), 0); | |
6599 if (EQ (XCAR (tail), CODING_ATTR_BASE_NAME (attrs)) | |
6600 && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided)) | |
6601 coding_attrs_list = Fcons (attrs, coding_attrs_list); | |
6602 } | |
6603 | |
6604 if (STRINGP (start)) | |
6605 p = pbeg = XSTRING (start)->data; | |
6606 else | |
6607 p = pbeg = BYTE_POS_ADDR (start_byte); | |
6608 pend = p + (end_byte - start_byte); | |
6609 | |
6610 while (p < pend && ASCII_BYTE_P (*p)) p++; | |
6611 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
6612 | |
6613 while (p < pend) | |
6614 { | |
6615 if (ASCII_BYTE_P (*p)) | |
6616 p++; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6617 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6618 { |
88365 | 6619 c = STRING_CHAR_ADVANCE (p); |
6620 | |
6621 charset_map_loaded = 0; | |
6622 for (tail = coding_attrs_list; CONSP (tail);) | |
6623 { | |
6624 elt = XCAR (tail); | |
6625 if (NILP (elt)) | |
6626 tail = XCDR (tail); | |
6627 else if (char_encodable_p (c, elt)) | |
6628 tail = XCDR (tail); | |
6629 else if (CONSP (XCDR (tail))) | |
6630 { | |
6631 XSETCAR (tail, XCAR (XCDR (tail))); | |
6632 XSETCDR (tail, XCDR (XCDR (tail))); | |
6633 } | |
6634 else | |
6635 { | |
6636 XSETCAR (tail, Qnil); | |
6637 tail = XCDR (tail); | |
6638 } | |
6639 } | |
6640 if (charset_map_loaded) | |
6641 { | |
6642 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
6643 | |
6644 if (STRINGP (start)) | |
6645 pbeg = XSTRING (start)->data; | |
6646 else | |
6647 pbeg = BYTE_POS_ADDR (start_byte); | |
6648 p = pbeg + p_offset; | |
6649 pend = pbeg + pend_offset; | |
6650 } | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6651 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6652 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6653 |
88365 | 6654 safe_codings = Qnil; |
6655 for (tail = coding_attrs_list; CONSP (tail); tail = XCDR (tail)) | |
6656 if (! NILP (XCAR (tail))) | |
6657 safe_codings = Fcons (CODING_ATTR_BASE_NAME (XCAR (tail)), safe_codings); | |
6658 | |
6659 return safe_codings; | |
6660 } | |
6661 | |
6662 | |
6663 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region, | |
6664 Scheck_coding_systems_region, 3, 3, 0, | |
6665 doc: /* Check if the region is encodable by coding systems. | |
6666 | |
6667 START and END are buffer positions specifying the region. | |
6668 CODING-SYSTEM-LIST is a list of coding systems to check. | |
6669 | |
6670 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where | |
6671 CODING-SYSTEM is a member of CODING-SYSTEM-LIst and can't encode the | |
6672 whole region, POS0, POS1, ... are buffer positions where non-encodable | |
6673 characters are found. | |
6674 | |
6675 If all coding systems in CODING-SYSTEM-LIST can encode the region, the | |
6676 value is nil. | |
6677 | |
6678 START may be a string. In that case, check if the string is | |
6679 encodable, and the value contains indices to the string instead of | |
6680 buffer positions. END is ignored. */) | |
6681 (start, end, coding_system_list) | |
6682 Lisp_Object start, end, coding_system_list; | |
6683 { | |
6684 Lisp_Object list; | |
6685 EMACS_INT start_byte, end_byte; | |
6686 int pos; | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
6687 const unsigned char *p, *pbeg, *pend; |
88365 | 6688 int c; |
6689 Lisp_Object tail, elt; | |
6690 | |
6691 if (STRINGP (start)) | |
6692 { | |
6693 if (!STRING_MULTIBYTE (start) | |
6694 && XSTRING (start)->size != STRING_BYTES (XSTRING (start))) | |
6695 return Qnil; | |
6696 start_byte = 0; | |
6697 end_byte = STRING_BYTES (XSTRING (start)); | |
6698 pos = 0; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6699 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6700 else |
88365 | 6701 { |
6702 CHECK_NUMBER_COERCE_MARKER (start); | |
6703 CHECK_NUMBER_COERCE_MARKER (end); | |
6704 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) | |
6705 args_out_of_range (start, end); | |
6706 if (NILP (current_buffer->enable_multibyte_characters)) | |
6707 return Qnil; | |
6708 start_byte = CHAR_TO_BYTE (XINT (start)); | |
6709 end_byte = CHAR_TO_BYTE (XINT (end)); | |
6710 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
6711 return Qt; | |
6712 | |
6713 if (start < GPT && end > GPT) | |
6714 { | |
6715 if ((GPT - start) < (end - GPT)) | |
6716 move_gap_both (start, start_byte); | |
6717 else | |
6718 move_gap_both (end, end_byte); | |
6719 } | |
6720 pos = start; | |
6721 } | |
6722 | |
6723 list = Qnil; | |
6724 for (tail = coding_system_list; CONSP (tail); tail = XCDR (tail)) | |
6725 { | |
6726 elt = XCAR (tail); | |
6727 list = Fcons (Fcons (elt, Fcons (AREF (CODING_SYSTEM_SPEC (elt), 0), | |
6728 Qnil)), | |
6729 list); | |
6730 } | |
6731 | |
6732 if (STRINGP (start)) | |
6733 p = pbeg = XSTRING (start)->data; | |
6734 else | |
6735 p = pbeg = BYTE_POS_ADDR (start_byte); | |
6736 pend = p + (end_byte - start_byte); | |
6737 | |
6738 while (p < pend && ASCII_BYTE_P (*p)) p++, pos++; | |
6739 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
6740 | |
6741 while (p < pend) | |
6742 { | |
6743 if (ASCII_BYTE_P (*p)) | |
6744 p++; | |
6745 else | |
6746 { | |
6747 c = STRING_CHAR_ADVANCE (p); | |
6748 | |
6749 charset_map_loaded = 0; | |
6750 for (tail = list; CONSP (tail); tail = XCDR (tail)) | |
6751 { | |
6752 elt = XCDR (XCAR (tail)); | |
6753 if (! char_encodable_p (c, XCAR (elt))) | |
6754 XSETCDR (elt, Fcons (make_number (pos), XCDR (elt))); | |
6755 } | |
6756 if (charset_map_loaded) | |
6757 { | |
6758 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
6759 | |
6760 if (STRINGP (start)) | |
6761 pbeg = XSTRING (start)->data; | |
6762 else | |
6763 pbeg = BYTE_POS_ADDR (start_byte); | |
6764 p = pbeg + p_offset; | |
6765 pend = pbeg + pend_offset; | |
6766 } | |
6767 } | |
6768 pos++; | |
6769 } | |
6770 | |
6771 tail = list; | |
6772 list = Qnil; | |
6773 for (; CONSP (tail); tail = XCDR (tail)) | |
6774 { | |
6775 elt = XCAR (tail); | |
6776 if (CONSP (XCDR (XCDR (elt)))) | |
6777 list = Fcons (Fcons (XCAR (elt), Fnreverse (XCDR (XCDR (elt)))), | |
6778 list); | |
6779 } | |
6780 | |
6781 return list; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6782 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6783 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6784 |
88365 | 6785 |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6786 Lisp_Object |
88365 | 6787 code_convert_region (start, end, coding_system, dst_object, encodep, norecord) |
6788 Lisp_Object start, end, coding_system, dst_object; | |
6789 int encodep, norecord; | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6790 { |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6791 struct coding_system coding; |
88365 | 6792 EMACS_INT from, from_byte, to, to_byte; |
6793 Lisp_Object src_object; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6794 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6795 CHECK_NUMBER_COERCE_MARKER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6796 CHECK_NUMBER_COERCE_MARKER (end); |
88365 | 6797 if (NILP (coding_system)) |
6798 coding_system = Qno_conversion; | |
6799 else | |
6800 CHECK_CODING_SYSTEM (coding_system); | |
6801 src_object = Fcurrent_buffer (); | |
6802 if (NILP (dst_object)) | |
6803 dst_object = src_object; | |
6804 else if (! EQ (dst_object, Qt)) | |
6805 CHECK_BUFFER (dst_object); | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6806 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6807 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6808 from = XFASTINT (start); |
88365 | 6809 from_byte = CHAR_TO_BYTE (from); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6810 to = XFASTINT (end); |
88365 | 6811 to_byte = CHAR_TO_BYTE (to); |
6812 | |
6813 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6814 coding.mode |= CODING_MODE_LAST_BLOCK; |
88365 | 6815 |
6816 if (encodep) | |
6817 encode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
6818 dst_object); | |
6819 else | |
6820 decode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
6821 dst_object); | |
6822 if (! norecord) | |
6823 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
6824 | |
6825 if (coding.result != CODING_RESULT_SUCCESS) | |
6826 error ("Code conversion error: %d", coding.result); | |
6827 | |
6828 return (BUFFERP (dst_object) | |
6829 ? make_number (coding.produced_char) | |
6830 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6831 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6832 |
88365 | 6833 |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6834 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, |
88365 | 6835 3, 4, "r\nzCoding system: ", |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6836 doc: /* Decode the current region from the specified coding system. |
88365 | 6837 When called from a program, takes four arguments: |
6838 START, END, CODING-SYSTEM, and DESTINATION. | |
6839 START and END are buffer positions. | |
6840 | |
6841 Optional 4th arguments DESTINATION specifies where the decoded text goes. | |
6842 If nil, the region between START and END is replace by the decoded text. | |
6843 If buffer, the decoded text is inserted in the buffer. | |
6844 If t, the decoded text is returned. | |
6845 | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6846 This function sets `last-coding-system-used' to the precise coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6847 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6848 not fully specified.) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6849 It returns the length of the decoded text. */) |
88365 | 6850 (start, end, coding_system, destination) |
6851 Lisp_Object start, end, coding_system, destination; | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6852 { |
88365 | 6853 return code_convert_region (start, end, coding_system, destination, 0, 0); |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6854 } |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6855 |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6856 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, |
88365 | 6857 3, 4, "r\nzCoding system: ", |
6858 doc: /* Encode the current region by specified coding system. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6859 When called from a program, takes three arguments: |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6860 START, END, and CODING-SYSTEM. START and END are buffer positions. |
88365 | 6861 |
6862 Optional 4th arguments DESTINATION specifies where the encoded text goes. | |
6863 If nil, the region between START and END is replace by the encoded text. | |
6864 If buffer, the encoded text is inserted in the buffer. | |
6865 If t, the encoded text is returned. | |
6866 | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6867 This function sets `last-coding-system-used' to the precise coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6868 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6869 not fully specified.) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6870 It returns the length of the encoded text. */) |
88365 | 6871 (start, end, coding_system, destination) |
6872 Lisp_Object start, end, coding_system, destination; | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6873 { |
88365 | 6874 return code_convert_region (start, end, coding_system, destination, 1, 0); |
17052 | 6875 } |
6876 | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6877 Lisp_Object |
88365 | 6878 code_convert_string (string, coding_system, dst_object, |
6879 encodep, nocopy, norecord) | |
6880 Lisp_Object string, coding_system, dst_object; | |
6881 int encodep, nocopy, norecord; | |
17052 | 6882 { |
6883 struct coding_system coding; | |
88365 | 6884 EMACS_INT chars, bytes; |
17052 | 6885 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6886 CHECK_STRING (string); |
88365 | 6887 if (NILP (coding_system)) |
6888 { | |
6889 if (! norecord) | |
6890 Vlast_coding_system_used = Qno_conversion; | |
6891 if (NILP (dst_object)) | |
6892 return (nocopy ? Fcopy_sequence (string) : string); | |
6893 } | |
17052 | 6894 |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6895 if (NILP (coding_system)) |
88365 | 6896 coding_system = Qno_conversion; |
6897 else | |
6898 CHECK_CODING_SYSTEM (coding_system); | |
6899 if (NILP (dst_object)) | |
6900 dst_object = Qt; | |
6901 else if (! EQ (dst_object, Qt)) | |
6902 CHECK_BUFFER (dst_object); | |
6903 | |
6904 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6905 coding.mode |= CODING_MODE_LAST_BLOCK; |
88365 | 6906 chars = XSTRING (string)->size; |
6907 bytes = STRING_BYTES (XSTRING (string)); | |
6908 if (encodep) | |
6909 encode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
6910 else | |
6911 decode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
6912 if (! norecord) | |
6913 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
6914 | |
6915 if (coding.result != CODING_RESULT_SUCCESS) | |
6916 error ("Code conversion error: %d", coding.result); | |
6917 | |
6918 return (BUFFERP (dst_object) | |
6919 ? make_number (coding.produced_char) | |
6920 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6921 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6922 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6923 |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6924 /* Encode or decode STRING according to CODING_SYSTEM. |
26847 | 6925 Do not set Vlast_coding_system_used. |
6926 | |
6927 This function is called only from macros DECODE_FILE and | |
6928 ENCODE_FILE, thus we ignore character composition. */ | |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6929 |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6930 Lisp_Object |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6931 code_convert_string_norecord (string, coding_system, encodep) |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6932 Lisp_Object string, coding_system; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6933 int encodep; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6934 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6935 return code_convert_string (string, coding_system, Qt, encodep, 0, 1); |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6936 } |
88365 | 6937 |
6938 | |
6939 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
6940 2, 4, 0, | |
6941 doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | |
6942 | |
6943 Optional third arg NOCOPY non-nil means it is OK to return STRING itself | |
6944 if the decoding operation is trivial. | |
6945 | |
6946 Optional fourth arg BUFFER non-nil meant that the decoded text is | |
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
6947 inserted in BUFFER instead of returned as a string. In this case, |
88365 | 6948 the return value is BUFFER. |
6949 | |
6950 This function sets `last-coding-system-used' to the precise coding system | |
6951 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
6952 not fully specified. */) | |
6953 (string, coding_system, nocopy, buffer) | |
6954 Lisp_Object string, coding_system, nocopy, buffer; | |
6955 { | |
6956 return code_convert_string (string, coding_system, buffer, | |
6957 0, ! NILP (nocopy), 0); | |
6958 } | |
6959 | |
6960 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
6961 2, 4, 0, | |
6962 doc: /* Encode STRING to CODING-SYSTEM, and return the result. | |
6963 | |
6964 Optional third arg NOCOPY non-nil means it is OK to return STRING | |
6965 itself if the encoding operation is trivial. | |
6966 | |
6967 Optional fourth arg BUFFER non-nil meant that the encoded text is | |
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
6968 inserted in BUFFER instead of returned as a string. In this case, |
88365 | 6969 the return value is BUFFER. |
6970 | |
6971 This function sets `last-coding-system-used' to the precise coding system | |
6972 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
6973 not fully specified.) */) | |
6974 (string, coding_system, nocopy, buffer) | |
6975 Lisp_Object string, coding_system, nocopy, buffer; | |
6976 { | |
6977 return code_convert_string (string, coding_system, buffer, | |
88856 | 6978 1, ! NILP (nocopy), 1); |
88365 | 6979 } |
6980 | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6981 |
17052 | 6982 DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6983 doc: /* Decode a Japanese character which has CODE in shift_jis encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6984 Return the corresponding character. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6985 (code) |
17052 | 6986 Lisp_Object code; |
6987 { | |
88365 | 6988 Lisp_Object spec, attrs, val; |
6989 struct charset *charset_roman, *charset_kanji, *charset_kana, *charset; | |
6990 int c; | |
6991 | |
6992 CHECK_NATNUM (code); | |
6993 c = XFASTINT (code); | |
6994 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
6995 attrs = AREF (spec, 0); | |
6996 | |
6997 if (ASCII_BYTE_P (c) | |
6998 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
6999 return code; | |
7000 | |
7001 val = CODING_ATTR_CHARSET_LIST (attrs); | |
7002 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
7003 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
7004 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 7005 |
7006 if (c <= 0x7F) | |
7007 charset = charset_roman; | |
7008 else if (c >= 0xA0 && c < 0xDF) | |
7009 { | |
7010 charset = charset_kana; | |
7011 c -= 0x80; | |
24065
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
7012 } |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
7013 else |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
7014 { |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
7015 int s1 = c >> 8, s2 = c & 0xFF; |
88365 | 7016 |
7017 if (s1 < 0x81 || (s1 > 0x9F && s1 < 0xE0) || s1 > 0xEF | |
7018 || s2 < 0x40 || s2 == 0x7F || s2 > 0xFC) | |
7019 error ("Invalid code: %d", code); | |
7020 SJIS_TO_JIS (c); | |
7021 charset = charset_kanji; | |
7022 } | |
7023 c = DECODE_CHAR (charset, c); | |
7024 if (c < 0) | |
7025 error ("Invalid code: %d", code); | |
7026 return make_number (c); | |
17052 | 7027 } |
7028 | |
88365 | 7029 |
17052 | 7030 DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7031 doc: /* Encode a Japanese character CHAR to shift_jis encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7032 Return the corresponding code in SJIS. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7033 (ch) |
88365 | 7034 Lisp_Object ch; |
17052 | 7035 { |
88365 | 7036 Lisp_Object spec, attrs, charset_list; |
7037 int c; | |
7038 struct charset *charset; | |
7039 unsigned code; | |
7040 | |
7041 CHECK_CHARACTER (ch); | |
7042 c = XFASTINT (ch); | |
7043 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
7044 attrs = AREF (spec, 0); | |
7045 | |
7046 if (ASCII_CHAR_P (c) | |
7047 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
7048 return ch; | |
7049 | |
7050 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
7051 charset = char_charset (c, charset_list, &code); | |
7052 if (code == CHARSET_INVALID_CODE (charset)) | |
7053 error ("Can't encode by shift_jis encoding: %d", c); | |
7054 JIS_TO_SJIS (code); | |
7055 | |
7056 return make_number (code); | |
17052 | 7057 } |
7058 | |
7059 DEFUN ("decode-big5-char", Fdecode_big5_char, Sdecode_big5_char, 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7060 doc: /* Decode a Big5 character which has CODE in BIG5 coding system. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7061 Return the corresponding character. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7062 (code) |
17052 | 7063 Lisp_Object code; |
7064 { | |
88365 | 7065 Lisp_Object spec, attrs, val; |
7066 struct charset *charset_roman, *charset_big5, *charset; | |
7067 int c; | |
7068 | |
7069 CHECK_NATNUM (code); | |
7070 c = XFASTINT (code); | |
7071 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
7072 attrs = AREF (spec, 0); | |
7073 | |
7074 if (ASCII_BYTE_P (c) | |
7075 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
7076 return code; | |
7077 | |
7078 val = CODING_ATTR_CHARSET_LIST (attrs); | |
7079 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
7080 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
7081 | |
7082 if (c <= 0x7F) | |
7083 charset = charset_roman; | |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
7084 else |
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
7085 { |
88365 | 7086 int b1 = c >> 8, b2 = c & 0x7F; |
7087 if (b1 < 0xA1 || b1 > 0xFE | |
7088 || b2 < 0x40 || (b2 > 0x7E && b2 < 0xA1) || b2 > 0xFE) | |
7089 error ("Invalid code: %d", code); | |
7090 charset = charset_big5; | |
7091 } | |
7092 c = DECODE_CHAR (charset, (unsigned )c); | |
7093 if (c < 0) | |
7094 error ("Invalid code: %d", code); | |
7095 return make_number (c); | |
17052 | 7096 } |
7097 | |
7098 DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7099 doc: /* Encode the Big5 character CHAR to BIG5 coding system. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7100 Return the corresponding character code in Big5. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7101 (ch) |
17052 | 7102 Lisp_Object ch; |
7103 { | |
88365 | 7104 Lisp_Object spec, attrs, charset_list; |
7105 struct charset *charset; | |
7106 int c; | |
7107 unsigned code; | |
7108 | |
7109 CHECK_CHARACTER (ch); | |
7110 c = XFASTINT (ch); | |
7111 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
7112 attrs = AREF (spec, 0); | |
7113 if (ASCII_CHAR_P (c) | |
7114 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
7115 return ch; | |
7116 | |
7117 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
7118 charset = char_charset (c, charset_list, &code); | |
7119 if (code == CHARSET_INVALID_CODE (charset)) | |
7120 error ("Can't encode by Big5 encoding: %d", c); | |
7121 | |
7122 return make_number (code); | |
17052 | 7123 } |
88365 | 7124 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
7125 |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7126 DEFUN ("set-terminal-coding-system-internal", |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7127 Fset_terminal_coding_system_internal, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7128 Sset_terminal_coding_system_internal, 1, 1, 0, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7129 doc: /* Internal use only. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7130 (coding_system) |
88473 | 7131 Lisp_Object coding_system; |
17052 | 7132 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
7133 CHECK_SYMBOL (coding_system); |
88365 | 7134 setup_coding_system (Fcheck_coding_system (coding_system), |
7135 &terminal_coding); | |
7136 | |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
7137 /* We had better not send unsafe characters to terminal. */ |
88365 | 7138 terminal_coding.mode |= CODING_MODE_SAFE_ENCODING; |
7139 /* Characer composition should be disabled. */ | |
7140 terminal_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7141 terminal_coding.src_multibyte = 1; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7142 terminal_coding.dst_multibyte = 0; |
17052 | 7143 return Qnil; |
7144 } | |
7145 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7146 DEFUN ("set-safe-terminal-coding-system-internal", |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7147 Fset_safe_terminal_coding_system_internal, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7148 Sset_safe_terminal_coding_system_internal, 1, 1, 0, |
41006 | 7149 doc: /* Internal use only. */) |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7150 (coding_system) |
88473 | 7151 Lisp_Object coding_system; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7152 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
7153 CHECK_SYMBOL (coding_system); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7154 setup_coding_system (Fcheck_coding_system (coding_system), |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7155 &safe_terminal_coding); |
88365 | 7156 /* Characer composition should be disabled. */ |
7157 safe_terminal_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7158 safe_terminal_coding.src_multibyte = 1; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7159 safe_terminal_coding.dst_multibyte = 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7160 return Qnil; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7161 } |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7162 |
17052 | 7163 DEFUN ("terminal-coding-system", |
7164 Fterminal_coding_system, Sterminal_coding_system, 0, 0, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7165 doc: /* Return coding system specified for terminal output. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7166 () |
17052 | 7167 { |
88365 | 7168 return CODING_ID_NAME (terminal_coding.id); |
17052 | 7169 } |
7170 | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7171 DEFUN ("set-keyboard-coding-system-internal", |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7172 Fset_keyboard_coding_system_internal, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7173 Sset_keyboard_coding_system_internal, 1, 1, 0, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7174 doc: /* Internal use only. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7175 (coding_system) |
17052 | 7176 Lisp_Object coding_system; |
7177 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
7178 CHECK_SYMBOL (coding_system); |
88365 | 7179 setup_coding_system (Fcheck_coding_system (coding_system), |
7180 &keyboard_coding); | |
7181 /* Characer composition should be disabled. */ | |
7182 keyboard_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
17052 | 7183 return Qnil; |
7184 } | |
7185 | |
7186 DEFUN ("keyboard-coding-system", | |
7187 Fkeyboard_coding_system, Skeyboard_coding_system, 0, 0, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7188 doc: /* Return coding system specified for decoding keyboard input. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7189 () |
17052 | 7190 { |
88365 | 7191 return CODING_ID_NAME (keyboard_coding.id); |
17052 | 7192 } |
7193 | |
7194 | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
7195 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system, |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
7196 Sfind_operation_coding_system, 1, MANY, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7197 doc: /* Choose a coding system for an operation based on the target name. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7198 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7199 DECODING-SYSTEM is the coding system to use for decoding |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7200 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7201 for encoding (in case OPERATION does encoding). |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7202 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7203 The first argument OPERATION specifies an I/O primitive: |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7204 For file I/O, `insert-file-contents' or `write-region'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7205 For process I/O, `call-process', `call-process-region', or `start-process'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7206 For network I/O, `open-network-stream'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7207 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7208 The remaining arguments should be the same arguments that were passed |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7209 to the primitive. Depending on which primitive, one of those arguments |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7210 is selected as the TARGET. For example, if OPERATION does file I/O, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7211 whichever argument specifies the file name is TARGET. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7212 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7213 TARGET has a meaning which depends on OPERATION: |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7214 For file I/O, TARGET is a file name. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7215 For process I/O, TARGET is a process name. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7216 For network I/O, TARGET is a service name or a port number |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7217 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7218 This function looks up what specified for TARGET in, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7219 `file-coding-system-alist', `process-coding-system-alist', |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7220 or `network-coding-system-alist' depending on OPERATION. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7221 They may specify a coding system, a cons of coding systems, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7222 or a function symbol to call. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7223 In the last case, we call the function with one argument, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7224 which is a list of all the arguments given to this function. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7225 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7226 usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7227 (nargs, args) |
17052 | 7228 int nargs; |
7229 Lisp_Object *args; | |
7230 { | |
7231 Lisp_Object operation, target_idx, target, val; | |
7232 register Lisp_Object chain; | |
7233 | |
7234 if (nargs < 2) | |
7235 error ("Too few arguments"); | |
7236 operation = args[0]; | |
7237 if (!SYMBOLP (operation) | |
7238 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx))) | |
88365 | 7239 error ("Invalid first arguement"); |
17052 | 7240 if (nargs < 1 + XINT (target_idx)) |
7241 error ("Too few arguments for operation: %s", | |
7242 XSYMBOL (operation)->name->data); | |
7243 target = args[XINT (target_idx) + 1]; | |
7244 if (!(STRINGP (target) | |
7245 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) | |
88365 | 7246 error ("Invalid %dth argument", XINT (target_idx) + 1); |
17052 | 7247 |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
7248 chain = ((EQ (operation, Qinsert_file_contents) |
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
7249 || EQ (operation, Qwrite_region)) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7250 ? Vfile_coding_system_alist |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
7251 : (EQ (operation, Qopen_network_stream) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7252 ? Vnetwork_coding_system_alist |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7253 : Vprocess_coding_system_alist)); |
17052 | 7254 if (NILP (chain)) |
7255 return Qnil; | |
7256 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7257 for (; CONSP (chain); chain = XCDR (chain)) |
17052 | 7258 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
7259 Lisp_Object elt; |
88365 | 7260 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7261 elt = XCAR (chain); |
17052 | 7262 if (CONSP (elt) |
7263 && ((STRINGP (target) | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7264 && STRINGP (XCAR (elt)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7265 && fast_string_match (XCAR (elt), target) >= 0) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7266 || (INTEGERP (target) && EQ (target, XCAR (elt))))) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7267 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7268 val = XCDR (elt); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7269 /* Here, if VAL is both a valid coding system and a valid |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7270 function symbol, we return VAL as a coding system. */ |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7271 if (CONSP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7272 return val; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7273 if (! SYMBOLP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7274 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7275 if (! NILP (Fcoding_system_p (val))) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7276 return Fcons (val, val); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7277 if (! NILP (Ffboundp (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7278 { |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7279 val = call1 (val, Flist (nargs, args)); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7280 if (CONSP (val)) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7281 return val; |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7282 if (SYMBOLP (val) && ! NILP (Fcoding_system_p (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7283 return Fcons (val, val); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7284 } |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7285 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7286 } |
17052 | 7287 } |
7288 return Qnil; | |
7289 } | |
7290 | |
88365 | 7291 DEFUN ("set-coding-system-priority", Fset_coding_system_priority, |
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
7292 Sset_coding_system_priority, 0, MANY, 0, |
88645 | 7293 doc: /* Assign higher priority to the coding systems given as arguments. |
88544
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
7294 usage: (set-coding-system-priority CODING-SYSTEM ...) */) |
88365 | 7295 (nargs, args) |
7296 int nargs; | |
7297 Lisp_Object *args; | |
7298 { | |
7299 int i, j; | |
7300 int changed[coding_category_max]; | |
7301 enum coding_category priorities[coding_category_max]; | |
7302 | |
7303 bzero (changed, sizeof changed); | |
7304 | |
7305 for (i = j = 0; i < nargs; i++) | |
7306 { | |
7307 enum coding_category category; | |
7308 Lisp_Object spec, attrs; | |
7309 | |
7310 CHECK_CODING_SYSTEM_GET_SPEC (args[i], spec); | |
7311 attrs = AREF (spec, 0); | |
7312 category = XINT (CODING_ATTR_CATEGORY (attrs)); | |
7313 if (changed[category]) | |
7314 /* Ignore this coding system because a coding system of the | |
7315 same category already had a higher priority. */ | |
7316 continue; | |
7317 changed[category] = 1; | |
7318 priorities[j++] = category; | |
7319 if (coding_categories[category].id >= 0 | |
7320 && ! EQ (args[i], CODING_ID_NAME (coding_categories[category].id))) | |
7321 setup_coding_system (args[i], &coding_categories[category]); | |
7322 } | |
7323 | |
7324 /* Now we have decided top J priorities. Reflect the order of the | |
7325 original priorities to the remaining priorities. */ | |
7326 | |
7327 for (i = j, j = 0; i < coding_category_max; i++, j++) | |
7328 { | |
7329 while (j < coding_category_max | |
7330 && changed[coding_priorities[j]]) | |
7331 j++; | |
7332 if (j == coding_category_max) | |
7333 abort (); | |
7334 priorities[i] = coding_priorities[j]; | |
7335 } | |
7336 | |
7337 bcopy (priorities, coding_priorities, sizeof priorities); | |
7338 return Qnil; | |
7339 } | |
7340 | |
7341 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, | |
7342 Scoding_system_priority_list, 0, 1, 0, | |
88645 | 7343 doc: /* Return a list of coding systems ordered by their priorities. |
7344 HIGHESTP non-nil means just return the highest priority one. */) | |
88365 | 7345 (highestp) |
7346 Lisp_Object highestp; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7347 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7348 int i; |
88365 | 7349 Lisp_Object val; |
7350 | |
7351 for (i = 0, val = Qnil; i < coding_category_max; i++) | |
7352 { | |
7353 enum coding_category category = coding_priorities[i]; | |
7354 int id = coding_categories[category].id; | |
7355 Lisp_Object attrs; | |
7356 | |
7357 if (id < 0) | |
7358 continue; | |
7359 attrs = CODING_ID_ATTRS (id); | |
7360 if (! NILP (highestp)) | |
7361 return CODING_ATTR_BASE_NAME (attrs); | |
7362 val = Fcons (CODING_ATTR_BASE_NAME (attrs), val); | |
7363 } | |
7364 return Fnreverse (val); | |
7365 } | |
7366 | |
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
7367 static char *suffixes[] = { "-unix", "-dos", "-mac" }; |
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
7368 |
88365 | 7369 static Lisp_Object |
7370 make_subsidiaries (base) | |
7371 Lisp_Object base; | |
7372 { | |
7373 Lisp_Object subsidiaries; | |
7374 int base_name_len = STRING_BYTES (XSYMBOL (base)->name); | |
7375 char *buf = (char *) alloca (base_name_len + 6); | |
7376 int i; | |
7377 | |
7378 bcopy (XSYMBOL (base)->name->data, buf, base_name_len); | |
7379 subsidiaries = Fmake_vector (make_number (3), Qnil); | |
7380 for (i = 0; i < 3; i++) | |
7381 { | |
7382 bcopy (suffixes[i], buf + base_name_len, strlen (suffixes[i]) + 1); | |
7383 ASET (subsidiaries, i, intern (buf)); | |
7384 } | |
7385 return subsidiaries; | |
7386 } | |
7387 | |
7388 | |
7389 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, | |
7390 Sdefine_coding_system_internal, coding_arg_max, MANY, 0, | |
88544
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
7391 doc: /* For internal use only. |
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
7392 usage: (define-coding-system-internal ...) */) |
88365 | 7393 (nargs, args) |
7394 int nargs; | |
7395 Lisp_Object *args; | |
7396 { | |
7397 Lisp_Object name; | |
7398 Lisp_Object spec_vec; /* [ ATTRS ALIASE EOL_TYPE ] */ | |
7399 Lisp_Object attrs; /* Vector of attributes. */ | |
7400 Lisp_Object eol_type; | |
7401 Lisp_Object aliases; | |
7402 Lisp_Object coding_type, charset_list, safe_charsets; | |
7403 enum coding_category category; | |
7404 Lisp_Object tail, val; | |
7405 int max_charset_id = 0; | |
7406 int i; | |
7407 | |
7408 if (nargs < coding_arg_max) | |
7409 goto short_args; | |
7410 | |
7411 attrs = Fmake_vector (make_number (coding_attr_last_index), Qnil); | |
7412 | |
7413 name = args[coding_arg_name]; | |
7414 CHECK_SYMBOL (name); | |
7415 CODING_ATTR_BASE_NAME (attrs) = name; | |
7416 | |
7417 val = args[coding_arg_mnemonic]; | |
7418 if (! STRINGP (val)) | |
7419 CHECK_CHARACTER (val); | |
7420 CODING_ATTR_MNEMONIC (attrs) = val; | |
7421 | |
7422 coding_type = args[coding_arg_coding_type]; | |
7423 CHECK_SYMBOL (coding_type); | |
7424 CODING_ATTR_TYPE (attrs) = coding_type; | |
7425 | |
7426 charset_list = args[coding_arg_charset_list]; | |
7427 if (SYMBOLP (charset_list)) | |
7428 { | |
7429 if (EQ (charset_list, Qiso_2022)) | |
7430 { | |
7431 if (! EQ (coding_type, Qiso_2022)) | |
7432 error ("Invalid charset-list"); | |
7433 charset_list = Viso_2022_charset_list; | |
7434 } | |
7435 else if (EQ (charset_list, Qemacs_mule)) | |
7436 { | |
7437 if (! EQ (coding_type, Qemacs_mule)) | |
7438 error ("Invalid charset-list"); | |
7439 charset_list = Vemacs_mule_charset_list; | |
7440 } | |
7441 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
7442 if (max_charset_id < XFASTINT (XCAR (tail))) | |
7443 max_charset_id = XFASTINT (XCAR (tail)); | |
7444 } | |
7445 else | |
7446 { | |
7447 charset_list = Fcopy_sequence (charset_list); | |
7448 for (tail = charset_list; !NILP (tail); tail = Fcdr (tail)) | |
7449 { | |
7450 struct charset *charset; | |
7451 | |
7452 val = Fcar (tail); | |
7453 CHECK_CHARSET_GET_CHARSET (val, charset); | |
7454 if (EQ (coding_type, Qiso_2022) | |
7455 ? CHARSET_ISO_FINAL (charset) < 0 | |
7456 : EQ (coding_type, Qemacs_mule) | |
7457 ? CHARSET_EMACS_MULE_ID (charset) < 0 | |
7458 : 0) | |
7459 error ("Can't handle charset `%s'", | |
7460 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7461 | |
7462 XCAR (tail) = make_number (charset->id); | |
7463 if (max_charset_id < charset->id) | |
7464 max_charset_id = charset->id; | |
7465 } | |
7466 } | |
7467 CODING_ATTR_CHARSET_LIST (attrs) = charset_list; | |
7468 | |
7469 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
7470 make_number (255)); | |
7471 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
7472 XSTRING (safe_charsets)->data[XFASTINT (XCAR (tail))] = 0; | |
7473 CODING_ATTR_SAFE_CHARSETS (attrs) = safe_charsets; | |
7474 | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7475 CODING_ATTR_ASCII_COMPAT (attrs) = args[coding_arg_ascii_compatible_p]; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7476 |
88365 | 7477 val = args[coding_arg_decode_translation_table]; |
7478 if (! NILP (val)) | |
7479 CHECK_CHAR_TABLE (val); | |
7480 CODING_ATTR_DECODE_TBL (attrs) = val; | |
7481 | |
7482 val = args[coding_arg_encode_translation_table]; | |
7483 if (! NILP (val)) | |
7484 CHECK_CHAR_TABLE (val); | |
7485 CODING_ATTR_ENCODE_TBL (attrs) = val; | |
7486 | |
7487 val = args[coding_arg_post_read_conversion]; | |
7488 CHECK_SYMBOL (val); | |
7489 CODING_ATTR_POST_READ (attrs) = val; | |
7490 | |
7491 val = args[coding_arg_pre_write_conversion]; | |
7492 CHECK_SYMBOL (val); | |
7493 CODING_ATTR_PRE_WRITE (attrs) = val; | |
7494 | |
7495 val = args[coding_arg_default_char]; | |
7496 if (NILP (val)) | |
7497 CODING_ATTR_DEFAULT_CHAR (attrs) = make_number (' '); | |
7498 else | |
7499 { | |
7500 CHECK_CHARACTER (val); | |
7501 CODING_ATTR_DEFAULT_CHAR (attrs) = val; | |
7502 } | |
7503 | |
7504 val = args[coding_arg_plist]; | |
7505 CHECK_LIST (val); | |
7506 CODING_ATTR_PLIST (attrs) = val; | |
7507 | |
7508 if (EQ (coding_type, Qcharset)) | |
7509 { | |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7510 /* Generate a lisp vector of 256 elements. Each element is nil, |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7511 integer, or a list of charset IDs. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7512 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7513 If Nth element is nil, the byte code N is invalid in this |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7514 coding system. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7515 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7516 If Nth element is a number NUM, N is the first byte of a |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7517 charset whose ID is NUM. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7518 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7519 If Nth element is a list of charset IDs, N is the first byte |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7520 of one of them. The list is sorted by dimensions of the |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7521 charsets. A charset of smaller dimension comes firtst. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7522 */ |
88365 | 7523 val = Fmake_vector (make_number (256), Qnil); |
7524 | |
7525 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
7526 { | |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7527 struct charset *charset = CHARSET_FROM_ID (XFASTINT (XCAR (tail))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7528 int dim = CHARSET_DIMENSION (charset); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7529 int idx = (dim - 1) * 4; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7530 |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7531 if (CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7532 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7533 |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7534 for (i = charset->code_space[idx]; |
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7535 i <= charset->code_space[idx + 1]; i++) |
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7536 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7537 Lisp_Object tmp, tmp2; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7538 int dim2; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7539 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7540 tmp = AREF (val, i); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7541 if (NILP (tmp)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7542 tmp = XCAR (tail); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7543 else if (NUMBERP (tmp)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7544 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7545 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7546 if (dim < dim2) |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
7547 tmp = Fcons (XCAR (tail), Fcons (tmp, Qnil)); |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7548 else |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
7549 tmp = Fcons (tmp, Fcons (XCAR (tail), Qnil)); |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7550 } |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7551 else |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7552 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7553 for (tmp2 = tmp; CONSP (tmp2); tmp2 = XCDR (tmp2)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7554 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7555 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2)))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7556 if (dim < dim2) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7557 break; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7558 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7559 if (NILP (tmp2)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7560 tmp = nconc2 (tmp, Fcons (XCAR (tail), Qnil)); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7561 else |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7562 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7563 XSETCDR (tmp2, Fcons (XCAR (tmp2), XCDR (tmp2))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7564 XSETCAR (tmp2, XCAR (tail)); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7565 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7566 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7567 ASET (val, i, tmp); |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7568 } |
88365 | 7569 } |
7570 ASET (attrs, coding_attr_charset_valids, val); | |
7571 category = coding_category_charset; | |
7572 } | |
7573 else if (EQ (coding_type, Qccl)) | |
7574 { | |
7575 Lisp_Object valids; | |
7576 | |
7577 if (nargs < coding_arg_ccl_max) | |
7578 goto short_args; | |
7579 | |
7580 val = args[coding_arg_ccl_decoder]; | |
7581 CHECK_CCL_PROGRAM (val); | |
7582 if (VECTORP (val)) | |
7583 val = Fcopy_sequence (val); | |
7584 ASET (attrs, coding_attr_ccl_decoder, val); | |
7585 | |
7586 val = args[coding_arg_ccl_encoder]; | |
7587 CHECK_CCL_PROGRAM (val); | |
7588 if (VECTORP (val)) | |
7589 val = Fcopy_sequence (val); | |
7590 ASET (attrs, coding_attr_ccl_encoder, val); | |
7591 | |
7592 val = args[coding_arg_ccl_valids]; | |
7593 valids = Fmake_string (make_number (256), make_number (0)); | |
7594 for (tail = val; !NILP (tail); tail = Fcdr (tail)) | |
7595 { | |
7596 val = Fcar (tail); | |
7597 if (INTEGERP (val)) | |
88856 | 7598 ASET (valids, XINT (val), make_number (1)); |
88365 | 7599 else |
7600 { | |
7601 int from, to; | |
7602 | |
7603 CHECK_CONS (val); | |
7604 CHECK_NUMBER (XCAR (val)); | |
7605 CHECK_NUMBER (XCDR (val)); | |
7606 from = XINT (XCAR (val)); | |
7607 to = XINT (XCDR (val)); | |
7608 for (i = from; i <= to; i++) | |
88856 | 7609 ASET (valids, i, make_number (1)); |
88365 | 7610 } |
7611 } | |
7612 ASET (attrs, coding_attr_ccl_valids, valids); | |
7613 | |
7614 category = coding_category_ccl; | |
7615 } | |
7616 else if (EQ (coding_type, Qutf_16)) | |
7617 { | |
7618 Lisp_Object bom, endian; | |
7619 | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7620 CODING_ATTR_ASCII_COMPAT (attrs) = Qnil; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7621 |
88365 | 7622 if (nargs < coding_arg_utf16_max) |
7623 goto short_args; | |
7624 | |
7625 bom = args[coding_arg_utf16_bom]; | |
7626 if (! NILP (bom) && ! EQ (bom, Qt)) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7627 { |
88365 | 7628 CHECK_CONS (bom); |
7629 CHECK_CODING_SYSTEM (XCAR (bom)); | |
7630 CHECK_CODING_SYSTEM (XCDR (bom)); | |
7631 } | |
7632 ASET (attrs, coding_attr_utf_16_bom, bom); | |
7633 | |
7634 endian = args[coding_arg_utf16_endian]; | |
7635 ASET (attrs, coding_attr_utf_16_endian, endian); | |
7636 | |
7637 category = (CONSP (bom) | |
7638 ? coding_category_utf_16_auto | |
7639 : NILP (bom) | |
7640 ? (NILP (endian) | |
7641 ? coding_category_utf_16_be_nosig | |
7642 : coding_category_utf_16_le_nosig) | |
7643 : (NILP (endian) | |
7644 ? coding_category_utf_16_be | |
7645 : coding_category_utf_16_le)); | |
7646 } | |
7647 else if (EQ (coding_type, Qiso_2022)) | |
7648 { | |
7649 Lisp_Object initial, reg_usage, request, flags; | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
7650 int i, id; |
88365 | 7651 |
7652 if (nargs < coding_arg_iso2022_max) | |
7653 goto short_args; | |
7654 | |
7655 initial = Fcopy_sequence (args[coding_arg_iso2022_initial]); | |
7656 CHECK_VECTOR (initial); | |
7657 for (i = 0; i < 4; i++) | |
7658 { | |
7659 val = Faref (initial, make_number (i)); | |
7660 if (! NILP (val)) | |
7661 { | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7662 struct charset *charset; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7663 |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7664 CHECK_CHARSET_GET_CHARSET (val, charset); |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7665 ASET (initial, i, make_number (CHARSET_ID (charset))); |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7666 if (i == 0 && CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7667 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 7668 } |
7669 else | |
7670 ASET (initial, i, make_number (-1)); | |
7671 } | |
7672 | |
7673 reg_usage = args[coding_arg_iso2022_reg_usage]; | |
7674 CHECK_CONS (reg_usage); | |
7675 CHECK_NATNUM (XCAR (reg_usage)); | |
7676 CHECK_NATNUM (XCDR (reg_usage)); | |
7677 | |
7678 request = Fcopy_sequence (args[coding_arg_iso2022_request]); | |
7679 for (tail = request; ! NILP (tail); tail = Fcdr (tail)) | |
7680 { | |
7681 int id; | |
7682 | |
7683 val = Fcar (tail); | |
7684 CHECK_CONS (val); | |
7685 CHECK_CHARSET_GET_ID (XCAR (val), id); | |
7686 CHECK_NATNUM (XCDR (val)); | |
7687 if (XINT (XCDR (val)) >= 4) | |
7688 error ("Invalid graphic register number: %d", XINT (XCDR (val))); | |
7689 XCAR (val) = make_number (id); | |
7690 } | |
7691 | |
7692 flags = args[coding_arg_iso2022_flags]; | |
7693 CHECK_NATNUM (flags); | |
7694 i = XINT (flags); | |
7695 if (EQ (args[coding_arg_charset_list], Qiso_2022)) | |
7696 flags = make_number (i | CODING_ISO_FLAG_FULL_SUPPORT); | |
7697 | |
7698 ASET (attrs, coding_attr_iso_initial, initial); | |
7699 ASET (attrs, coding_attr_iso_usage, reg_usage); | |
7700 ASET (attrs, coding_attr_iso_request, request); | |
7701 ASET (attrs, coding_attr_iso_flags, flags); | |
7702 setup_iso_safe_charsets (attrs); | |
7703 | |
7704 if (i & CODING_ISO_FLAG_SEVEN_BITS) | |
7705 category = ((i & (CODING_ISO_FLAG_LOCKING_SHIFT | |
7706 | CODING_ISO_FLAG_SINGLE_SHIFT)) | |
7707 ? coding_category_iso_7_else | |
7708 : EQ (args[coding_arg_charset_list], Qiso_2022) | |
7709 ? coding_category_iso_7 | |
7710 : coding_category_iso_7_tight); | |
7711 else | |
7712 { | |
7713 int id = XINT (AREF (initial, 1)); | |
7714 | |
88977
3b05c02eebf2
(Fdefine_coding_system_internal): Fix category setting
Kenichi Handa <handa@m17n.org>
parents:
88950
diff
changeset
|
7715 category = (((i & CODING_ISO_FLAG_LOCKING_SHIFT) |
88365 | 7716 || EQ (args[coding_arg_charset_list], Qiso_2022) |
7717 || id < 0) | |
7718 ? coding_category_iso_8_else | |
7719 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id)) == 1) | |
7720 ? coding_category_iso_8_1 | |
7721 : coding_category_iso_8_2); | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7722 } |
89227
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
7723 if (category != coding_category_iso_8_1 |
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
7724 && category != coding_category_iso_8_2) |
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
7725 CODING_ATTR_ASCII_COMPAT (attrs) = Qnil; |
88365 | 7726 } |
7727 else if (EQ (coding_type, Qemacs_mule)) | |
7728 { | |
7729 if (EQ (args[coding_arg_charset_list], Qemacs_mule)) | |
7730 ASET (attrs, coding_attr_emacs_mule_full, Qt); | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7731 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 7732 category = coding_category_emacs_mule; |
7733 } | |
7734 else if (EQ (coding_type, Qshift_jis)) | |
7735 { | |
7736 | |
7737 struct charset *charset; | |
7738 | |
7739 if (XINT (Flength (charset_list)) != 3) | |
7740 error ("There should be just three charsets"); | |
7741 | |
7742 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7743 if (CHARSET_DIMENSION (charset) != 1) | |
7744 error ("Dimension of charset %s is not one", | |
7745 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7746 if (CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7747 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 7748 |
7749 charset_list = XCDR (charset_list); | |
7750 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7751 if (CHARSET_DIMENSION (charset) != 1) | |
7752 error ("Dimension of charset %s is not one", | |
7753 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7754 | |
7755 charset_list = XCDR (charset_list); | |
7756 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7757 if (CHARSET_DIMENSION (charset) != 2) | |
7758 error ("Dimension of charset %s is not two", | |
7759 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7760 | |
7761 category = coding_category_sjis; | |
7762 Vsjis_coding_system = name; | |
7763 } | |
7764 else if (EQ (coding_type, Qbig5)) | |
7765 { | |
7766 struct charset *charset; | |
7767 | |
7768 if (XINT (Flength (charset_list)) != 2) | |
7769 error ("There should be just two charsets"); | |
7770 | |
7771 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7772 if (CHARSET_DIMENSION (charset) != 1) | |
7773 error ("Dimension of charset %s is not one", | |
7774 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7775 if (CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7776 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 7777 |
7778 charset_list = XCDR (charset_list); | |
7779 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7780 if (CHARSET_DIMENSION (charset) != 2) | |
7781 error ("Dimension of charset %s is not two", | |
7782 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7783 | |
7784 category = coding_category_big5; | |
7785 Vbig5_coding_system = name; | |
7786 } | |
7787 else if (EQ (coding_type, Qraw_text)) | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7788 { |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7789 category = coding_category_raw_text; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7790 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7791 } |
88365 | 7792 else if (EQ (coding_type, Qutf_8)) |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7793 { |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7794 category = coding_category_utf_8; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7795 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
7796 } |
88365 | 7797 else if (EQ (coding_type, Qundecided)) |
7798 category = coding_category_undecided; | |
7799 else | |
7800 error ("Invalid coding system type: %s", | |
7801 XSYMBOL (coding_type)->name->data); | |
7802 | |
7803 CODING_ATTR_CATEGORY (attrs) = make_number (category); | |
7804 | |
7805 eol_type = args[coding_arg_eol_type]; | |
7806 if (! NILP (eol_type) | |
7807 && ! EQ (eol_type, Qunix) | |
7808 && ! EQ (eol_type, Qdos) | |
7809 && ! EQ (eol_type, Qmac)) | |
7810 error ("Invalid eol-type"); | |
7811 | |
7812 aliases = Fcons (name, Qnil); | |
7813 | |
7814 if (NILP (eol_type)) | |
7815 { | |
7816 eol_type = make_subsidiaries (name); | |
7817 for (i = 0; i < 3; i++) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7818 { |
88365 | 7819 Lisp_Object this_spec, this_name, this_aliases, this_eol_type; |
7820 | |
7821 this_name = AREF (eol_type, i); | |
7822 this_aliases = Fcons (this_name, Qnil); | |
7823 this_eol_type = (i == 0 ? Qunix : i == 1 ? Qdos : Qmac); | |
7824 this_spec = Fmake_vector (make_number (3), attrs); | |
7825 ASET (this_spec, 1, this_aliases); | |
7826 ASET (this_spec, 2, this_eol_type); | |
7827 Fputhash (this_name, this_spec, Vcoding_system_hash_table); | |
7828 Vcoding_system_list = Fcons (this_name, Vcoding_system_list); | |
7829 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (this_name), Qnil), | |
7830 Vcoding_system_alist); | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7831 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7832 } |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7833 |
88365 | 7834 spec_vec = Fmake_vector (make_number (3), attrs); |
7835 ASET (spec_vec, 1, aliases); | |
7836 ASET (spec_vec, 2, eol_type); | |
7837 | |
7838 Fputhash (name, spec_vec, Vcoding_system_hash_table); | |
7839 Vcoding_system_list = Fcons (name, Vcoding_system_list); | |
7840 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil), | |
7841 Vcoding_system_alist); | |
7842 | |
7843 { | |
7844 int id = coding_categories[category].id; | |
7845 | |
7846 if (id < 0 || EQ (name, CODING_ID_NAME (id))) | |
7847 setup_coding_system (name, &coding_categories[category]); | |
7848 } | |
7849 | |
7850 return Qnil; | |
7851 | |
7852 short_args: | |
7853 return Fsignal (Qwrong_number_of_arguments, | |
7854 Fcons (intern ("define-coding-system-internal"), | |
7855 make_number (nargs))); | |
7856 } | |
7857 | |
88645 | 7858 /* Fixme: should this record the alias relationships for |
7859 diagnostics? */ | |
88365 | 7860 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, |
7861 Sdefine_coding_system_alias, 2, 2, 0, | |
7862 doc: /* Define ALIAS as an alias for CODING-SYSTEM. */) | |
7863 (alias, coding_system) | |
7864 Lisp_Object alias, coding_system; | |
7865 { | |
7866 Lisp_Object spec, aliases, eol_type; | |
7867 | |
7868 CHECK_SYMBOL (alias); | |
7869 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7870 aliases = AREF (spec, 1); | |
7871 while (!NILP (XCDR (aliases))) | |
7872 aliases = XCDR (aliases); | |
7873 XCDR (aliases) = Fcons (alias, Qnil); | |
7874 | |
7875 eol_type = AREF (spec, 2); | |
7876 if (VECTORP (eol_type)) | |
7877 { | |
7878 Lisp_Object subsidiaries; | |
7879 int i; | |
7880 | |
7881 subsidiaries = make_subsidiaries (alias); | |
7882 for (i = 0; i < 3; i++) | |
7883 Fdefine_coding_system_alias (AREF (subsidiaries, i), | |
7884 AREF (eol_type, i)); | |
7885 | |
7886 ASET (spec, 2, subsidiaries); | |
7887 } | |
7888 | |
7889 Fputhash (alias, spec, Vcoding_system_hash_table); | |
88485 | 7890 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (alias), Qnil), |
7891 Vcoding_system_alist); | |
88365 | 7892 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7893 return Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7894 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7895 |
88365 | 7896 DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
7897 1, 1, 0, | |
7898 doc: /* Return the base of CODING-SYSTEM. | |
88645 | 7899 Any alias or subsidiary coding system is not a base coding system. */) |
88365 | 7900 (coding_system) |
7901 Lisp_Object coding_system; | |
7902 { | |
7903 Lisp_Object spec, attrs; | |
7904 | |
7905 if (NILP (coding_system)) | |
7906 return (Qno_conversion); | |
7907 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7908 attrs = AREF (spec, 0); | |
7909 return CODING_ATTR_BASE_NAME (attrs); | |
7910 } | |
7911 | |
7912 DEFUN ("coding-system-plist", Fcoding_system_plist, Scoding_system_plist, | |
7913 1, 1, 0, | |
7914 doc: "Return the property list of CODING-SYSTEM.") | |
7915 (coding_system) | |
7916 Lisp_Object coding_system; | |
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7917 { |
88365 | 7918 Lisp_Object spec, attrs; |
7919 | |
7920 if (NILP (coding_system)) | |
7921 coding_system = Qno_conversion; | |
7922 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7923 attrs = AREF (spec, 0); | |
7924 return CODING_ATTR_PLIST (attrs); | |
7925 } | |
7926 | |
7927 | |
7928 DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |
7929 1, 1, 0, | |
88645 | 7930 doc: /* Return the list of aliases of CODING-SYSTEM. */) |
88365 | 7931 (coding_system) |
7932 Lisp_Object coding_system; | |
7933 { | |
7934 Lisp_Object spec; | |
7935 | |
7936 if (NILP (coding_system)) | |
7937 coding_system = Qno_conversion; | |
7938 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
88645 | 7939 return AREF (spec, 1); |
88365 | 7940 } |
7941 | |
7942 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, | |
7943 Scoding_system_eol_type, 1, 1, 0, | |
7944 doc: /* Return eol-type of CODING-SYSTEM. | |
7945 An eol-type is integer 0, 1, 2, or a vector of coding systems. | |
7946 | |
7947 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF, | |
7948 and CR respectively. | |
7949 | |
7950 A vector value indicates that a format of end-of-line should be | |
7951 detected automatically. Nth element of the vector is the subsidiary | |
7952 coding system whose eol-type is N. */) | |
7953 (coding_system) | |
7954 Lisp_Object coding_system; | |
7955 { | |
7956 Lisp_Object spec, eol_type; | |
7957 int n; | |
7958 | |
7959 if (NILP (coding_system)) | |
7960 coding_system = Qno_conversion; | |
7961 if (! CODING_SYSTEM_P (coding_system)) | |
7962 return Qnil; | |
7963 spec = CODING_SYSTEM_SPEC (coding_system); | |
7964 eol_type = AREF (spec, 2); | |
7965 if (VECTORP (eol_type)) | |
7966 return Fcopy_sequence (eol_type); | |
7967 n = EQ (eol_type, Qunix) ? 0 : EQ (eol_type, Qdos) ? 1 : 2; | |
7968 return make_number (n); | |
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7969 } |
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7970 |
17052 | 7971 #endif /* emacs */ |
7972 | |
7973 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7974 /*** 9. Post-amble ***/ |
17052 | 7975 |
21514 | 7976 void |
17052 | 7977 init_coding_once () |
7978 { | |
7979 int i; | |
7980 | |
88365 | 7981 for (i = 0; i < coding_category_max; i++) |
7982 { | |
7983 coding_categories[i].id = -1; | |
7984 coding_priorities[i] = i; | |
7985 } | |
17052 | 7986 |
7987 /* ISO2022 specific initialize routine. */ | |
7988 for (i = 0; i < 0x20; i++) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7989 iso_code_class[i] = ISO_control_0; |
17052 | 7990 for (i = 0x21; i < 0x7F; i++) |
7991 iso_code_class[i] = ISO_graphic_plane_0; | |
7992 for (i = 0x80; i < 0xA0; i++) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7993 iso_code_class[i] = ISO_control_1; |
17052 | 7994 for (i = 0xA1; i < 0xFF; i++) |
7995 iso_code_class[i] = ISO_graphic_plane_1; | |
7996 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
7997 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
7998 iso_code_class[ISO_CODE_CR] = ISO_carriage_return; | |
7999 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
8000 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
8001 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
8002 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
8003 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
8004 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
8005 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
8006 | |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
8007 inhibit_pre_post_conversion = 0; |
88365 | 8008 |
8009 for (i = 0; i < 256; i++) | |
8010 { | |
8011 emacs_mule_bytes[i] = 1; | |
8012 } | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8013 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_11] = 3; |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8014 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_12] = 3; |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8015 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_21] = 4; |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8016 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_22] = 4; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8017 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8018 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8019 #ifdef emacs |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8020 |
21514 | 8021 void |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8022 syms_of_coding () |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8023 { |
88365 | 8024 staticpro (&Vcoding_system_hash_table); |
8025 Vcoding_system_hash_table = Fmakehash (Qeq); | |
8026 | |
8027 staticpro (&Vsjis_coding_system); | |
8028 Vsjis_coding_system = Qnil; | |
8029 | |
8030 staticpro (&Vbig5_coding_system); | |
8031 Vbig5_coding_system = Qnil; | |
8032 | |
8033 staticpro (&Vcode_conversion_work_buf_list); | |
8034 Vcode_conversion_work_buf_list = Qnil; | |
8035 | |
8036 staticpro (&Vcode_conversion_reused_work_buf); | |
8037 Vcode_conversion_reused_work_buf = Qnil; | |
8038 | |
8039 DEFSYM (Qcharset, "charset"); | |
8040 DEFSYM (Qtarget_idx, "target-idx"); | |
8041 DEFSYM (Qcoding_system_history, "coding-system-history"); | |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
8042 Fset (Qcoding_system_history, Qnil); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
8043 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8044 /* Target FILENAME is the first argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8045 Fput (Qinsert_file_contents, Qtarget_idx, make_number (0)); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8046 /* Target FILENAME is the third argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8047 Fput (Qwrite_region, Qtarget_idx, make_number (2)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8048 |
88365 | 8049 DEFSYM (Qcall_process, "call-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8050 /* Target PROGRAM is the first argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8051 Fput (Qcall_process, Qtarget_idx, make_number (0)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8052 |
88365 | 8053 DEFSYM (Qcall_process_region, "call-process-region"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8054 /* Target PROGRAM is the third argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8055 Fput (Qcall_process_region, Qtarget_idx, make_number (2)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8056 |
88365 | 8057 DEFSYM (Qstart_process, "start-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8058 /* Target PROGRAM is the third argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8059 Fput (Qstart_process, Qtarget_idx, make_number (2)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8060 |
88365 | 8061 DEFSYM (Qopen_network_stream, "open-network-stream"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8062 /* Target SERVICE is the fourth argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8063 Fput (Qopen_network_stream, Qtarget_idx, make_number (3)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8064 |
88365 | 8065 DEFSYM (Qcoding_system, "coding-system"); |
8066 DEFSYM (Qcoding_aliases, "coding-aliases"); | |
8067 | |
8068 DEFSYM (Qeol_type, "eol-type"); | |
8069 DEFSYM (Qunix, "unix"); | |
8070 DEFSYM (Qdos, "dos"); | |
8071 | |
8072 DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system"); | |
8073 DEFSYM (Qpost_read_conversion, "post-read-conversion"); | |
8074 DEFSYM (Qpre_write_conversion, "pre-write-conversion"); | |
8075 DEFSYM (Qdefault_char, "default-char"); | |
8076 DEFSYM (Qundecided, "undecided"); | |
8077 DEFSYM (Qno_conversion, "no-conversion"); | |
8078 DEFSYM (Qraw_text, "raw-text"); | |
8079 | |
8080 DEFSYM (Qiso_2022, "iso-2022"); | |
8081 | |
8082 DEFSYM (Qutf_8, "utf-8"); | |
8083 | |
8084 DEFSYM (Qutf_16, "utf-16"); | |
8085 DEFSYM (Qutf_16_be, "utf-16-be"); | |
8086 DEFSYM (Qutf_16_be_nosig, "utf-16-be-nosig"); | |
8087 DEFSYM (Qutf_16_le, "utf-16-l3"); | |
8088 DEFSYM (Qutf_16_le_nosig, "utf-16-le-nosig"); | |
8089 DEFSYM (Qsignature, "signature"); | |
8090 DEFSYM (Qendian, "endian"); | |
8091 DEFSYM (Qbig, "big"); | |
8092 DEFSYM (Qlittle, "little"); | |
8093 | |
8094 DEFSYM (Qshift_jis, "shift-jis"); | |
8095 DEFSYM (Qbig5, "big5"); | |
8096 | |
8097 DEFSYM (Qcoding_system_p, "coding-system-p"); | |
8098 | |
8099 DEFSYM (Qcoding_system_error, "coding-system-error"); | |
17052 | 8100 Fput (Qcoding_system_error, Qerror_conditions, |
8101 Fcons (Qcoding_system_error, Fcons (Qerror, Qnil))); | |
8102 Fput (Qcoding_system_error, Qerror_message, | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8103 build_string ("Invalid coding system")); |
17052 | 8104 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8105 /* Intern this now in case it isn't already done. |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8106 Setting this variable twice is harmless. |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8107 But don't staticpro it here--that is done in alloc.c. */ |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8108 Qchar_table_extra_slots = intern ("char-table-extra-slots"); |
88365 | 8109 |
8110 DEFSYM (Qtranslation_table, "translation-table"); | |
8111 Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (1)); | |
8112 DEFSYM (Qtranslation_table_id, "translation-table-id"); | |
8113 DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); | |
8114 DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); | |
8115 | |
8116 DEFSYM (Qvalid_codes, "valid-codes"); | |
8117 | |
8118 DEFSYM (Qemacs_mule, "emacs-mule"); | |
8119 | |
8120 Vcoding_category_table | |
8121 = Fmake_vector (make_number (coding_category_max), Qnil); | |
8122 staticpro (&Vcoding_category_table); | |
8123 /* Followings are target of code detection. */ | |
8124 ASET (Vcoding_category_table, coding_category_iso_7, | |
8125 intern ("coding-category-iso-7")); | |
8126 ASET (Vcoding_category_table, coding_category_iso_7_tight, | |
8127 intern ("coding-category-iso-7-tight")); | |
8128 ASET (Vcoding_category_table, coding_category_iso_8_1, | |
8129 intern ("coding-category-iso-8-1")); | |
8130 ASET (Vcoding_category_table, coding_category_iso_8_2, | |
8131 intern ("coding-category-iso-8-2")); | |
8132 ASET (Vcoding_category_table, coding_category_iso_7_else, | |
8133 intern ("coding-category-iso-7-else")); | |
8134 ASET (Vcoding_category_table, coding_category_iso_8_else, | |
8135 intern ("coding-category-iso-8-else")); | |
8136 ASET (Vcoding_category_table, coding_category_utf_8, | |
8137 intern ("coding-category-utf-8")); | |
8138 ASET (Vcoding_category_table, coding_category_utf_16_be, | |
8139 intern ("coding-category-utf-16-be")); | |
8140 ASET (Vcoding_category_table, coding_category_utf_16_le, | |
8141 intern ("coding-category-utf-16-le")); | |
8142 ASET (Vcoding_category_table, coding_category_utf_16_be_nosig, | |
8143 intern ("coding-category-utf-16-be-nosig")); | |
8144 ASET (Vcoding_category_table, coding_category_utf_16_le_nosig, | |
8145 intern ("coding-category-utf-16-le-nosig")); | |
8146 ASET (Vcoding_category_table, coding_category_charset, | |
8147 intern ("coding-category-charset")); | |
8148 ASET (Vcoding_category_table, coding_category_sjis, | |
8149 intern ("coding-category-sjis")); | |
8150 ASET (Vcoding_category_table, coding_category_big5, | |
8151 intern ("coding-category-big5")); | |
8152 ASET (Vcoding_category_table, coding_category_ccl, | |
8153 intern ("coding-category-ccl")); | |
8154 ASET (Vcoding_category_table, coding_category_emacs_mule, | |
8155 intern ("coding-category-emacs-mule")); | |
8156 /* Followings are NOT target of code detection. */ | |
8157 ASET (Vcoding_category_table, coding_category_raw_text, | |
8158 intern ("coding-category-raw-text")); | |
8159 ASET (Vcoding_category_table, coding_category_undecided, | |
8160 intern ("coding-category-undecided")); | |
8161 | |
17052 | 8162 defsubr (&Scoding_system_p); |
8163 defsubr (&Sread_coding_system); | |
8164 defsubr (&Sread_non_nil_coding_system); | |
8165 defsubr (&Scheck_coding_system); | |
8166 defsubr (&Sdetect_coding_region); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8167 defsubr (&Sdetect_coding_string); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8168 defsubr (&Sfind_coding_systems_region_internal); |
88365 | 8169 defsubr (&Scheck_coding_systems_region); |
17052 | 8170 defsubr (&Sdecode_coding_region); |
8171 defsubr (&Sencode_coding_region); | |
8172 defsubr (&Sdecode_coding_string); | |
8173 defsubr (&Sencode_coding_string); | |
8174 defsubr (&Sdecode_sjis_char); | |
8175 defsubr (&Sencode_sjis_char); | |
8176 defsubr (&Sdecode_big5_char); | |
8177 defsubr (&Sencode_big5_char); | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
8178 defsubr (&Sset_terminal_coding_system_internal); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
8179 defsubr (&Sset_safe_terminal_coding_system_internal); |
17052 | 8180 defsubr (&Sterminal_coding_system); |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
8181 defsubr (&Sset_keyboard_coding_system_internal); |
17052 | 8182 defsubr (&Skeyboard_coding_system); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
8183 defsubr (&Sfind_operation_coding_system); |
88365 | 8184 defsubr (&Sset_coding_system_priority); |
8185 defsubr (&Sdefine_coding_system_internal); | |
8186 defsubr (&Sdefine_coding_system_alias); | |
8187 defsubr (&Scoding_system_base); | |
8188 defsubr (&Scoding_system_plist); | |
8189 defsubr (&Scoding_system_aliases); | |
8190 defsubr (&Scoding_system_eol_type); | |
8191 defsubr (&Scoding_system_priority_list); | |
17052 | 8192 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8193 DEFVAR_LISP ("coding-system-list", &Vcoding_system_list, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8194 doc: /* List of coding systems. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8195 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8196 Do not alter the value of this variable manually. This variable should be |
88365 | 8197 updated by the functions `define-coding-system' and |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8198 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8199 Vcoding_system_list = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8200 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8201 DEFVAR_LISP ("coding-system-alist", &Vcoding_system_alist, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8202 doc: /* Alist of coding system names. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8203 Each element is one element list of coding system name. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8204 This variable is given to `completing-read' as TABLE argument. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8205 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8206 Do not alter the value of this variable manually. This variable should be |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8207 updated by the functions `make-coding-system' and |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8208 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8209 Vcoding_system_alist = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8210 |
17052 | 8211 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8212 doc: /* List of coding-categories (symbols) ordered by priority. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8213 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8214 On detecting a coding system, Emacs tries code detection algorithms |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8215 associated with each coding-category one by one in this order. When |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8216 one algorithm agrees with a byte sequence of source text, the coding |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8217 system bound to the corresponding coding-category is selected. */); |
17052 | 8218 { |
8219 int i; | |
8220 | |
8221 Vcoding_category_list = Qnil; | |
88365 | 8222 for (i = coding_category_max - 1; i >= 0; i--) |
17052 | 8223 Vcoding_category_list |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8224 = Fcons (XVECTOR (Vcoding_category_table)->contents[i], |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8225 Vcoding_category_list); |
17052 | 8226 } |
8227 | |
8228 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8229 doc: /* Specify the coding system for read operations. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8230 It is useful to bind this variable with `let', but do not set it globally. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8231 If the value is a coding system, it is used for decoding on read operation. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8232 If not, an appropriate element is used from one of the coding system alists: |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8233 There are three such tables, `file-coding-system-alist', |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8234 `process-coding-system-alist', and `network-coding-system-alist'. */); |
17052 | 8235 Vcoding_system_for_read = Qnil; |
8236 | |
8237 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8238 doc: /* Specify the coding system for write operations. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8239 Programs bind this variable with `let', but you should not set it globally. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8240 If the value is a coding system, it is used for encoding of output, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8241 when writing it to a file and when sending it to a file or subprocess. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8242 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8243 If this does not specify a coding system, an appropriate element |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8244 is used from one of the coding system alists: |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8245 There are three such tables, `file-coding-system-alist', |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8246 `process-coding-system-alist', and `network-coding-system-alist'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8247 For output to files, if the above procedure does not specify a coding system, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8248 the value of `buffer-file-coding-system' is used. */); |
17052 | 8249 Vcoding_system_for_write = Qnil; |
8250 | |
8251 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
88365 | 8252 doc: /* |
8253 Coding system used in the latest file or process I/O. */); | |
17052 | 8254 Vlast_coding_system_used = Qnil; |
8255 | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8256 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
88365 | 8257 doc: /* |
8258 *Non-nil means always inhibit code conversion of end-of-line format. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8259 See info node `Coding Systems' and info node `Text and Binary' concerning |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8260 such conversion. */); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8261 inhibit_eol_conversion = 0; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8262 |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
8263 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system, |
88365 | 8264 doc: /* |
8265 Non-nil means process buffer inherits coding system of process output. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8266 Bind it to t if the process output is to be treated as if it were a file |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8267 read from some filesystem. */); |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
8268 inherit_process_coding_system = 0; |
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
8269 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8270 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
88365 | 8271 doc: /* |
8272 Alist to decide a coding system to use for a file I/O operation. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8273 The format is ((PATTERN . VAL) ...), |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8274 where PATTERN is a regular expression matching a file name, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8275 VAL is a coding system, a cons of coding systems, or a function symbol. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8276 If VAL is a coding system, it is used for both decoding and encoding |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8277 the file contents. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8278 If VAL is a cons of coding systems, the car part is used for decoding, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8279 and the cdr part is used for encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8280 If VAL is a function symbol, the function must return a coding system |
41678
5aa97e545399
(syms_of_coding) <Qchar_coding_system>: Give it an
Dave Love <fx@gnu.org>
parents:
41624
diff
changeset
|
8281 or a cons of coding systems which are used as above. The function gets |
5aa97e545399
(syms_of_coding) <Qchar_coding_system>: Give it an
Dave Love <fx@gnu.org>
parents:
41624
diff
changeset
|
8282 the arguments with which `find-operation-coding-systems' was called. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8283 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8284 See also the function `find-operation-coding-system' |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8285 and the variable `auto-coding-alist'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8286 Vfile_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8287 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8288 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
88365 | 8289 doc: /* |
8290 Alist to decide a coding system to use for a process I/O operation. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8291 The format is ((PATTERN . VAL) ...), |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8292 where PATTERN is a regular expression matching a program name, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8293 VAL is a coding system, a cons of coding systems, or a function symbol. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8294 If VAL is a coding system, it is used for both decoding what received |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8295 from the program and encoding what sent to the program. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8296 If VAL is a cons of coding systems, the car part is used for decoding, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8297 and the cdr part is used for encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8298 If VAL is a function symbol, the function must return a coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8299 or a cons of coding systems which are used as above. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8300 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8301 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8302 Vprocess_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8303 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8304 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
88365 | 8305 doc: /* |
8306 Alist to decide a coding system to use for a network I/O operation. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8307 The format is ((PATTERN . VAL) ...), |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8308 where PATTERN is a regular expression matching a network service name |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8309 or is a port number to connect to, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8310 VAL is a coding system, a cons of coding systems, or a function symbol. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8311 If VAL is a coding system, it is used for both decoding what received |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8312 from the network stream and encoding what sent to the network stream. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8313 If VAL is a cons of coding systems, the car part is used for decoding, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8314 and the cdr part is used for encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8315 If VAL is a function symbol, the function must return a coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8316 or a cons of coding systems which are used as above. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8317 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8318 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8319 Vnetwork_coding_system_alist = Qnil; |
17052 | 8320 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8321 DEFVAR_LISP ("locale-coding-system", &Vlocale_coding_system, |
41026
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
8322 doc: /* Coding system to use with system messages. |
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
8323 Also used for decoding keyboard input on X Window system. */); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8324 Vlocale_coding_system = Qnil; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8325 |
29182
1d1c27067af4
(encode_eol): Add null statement after label.
Dave Love <fx@gnu.org>
parents:
29172
diff
changeset
|
8326 /* The eol mnemonics are reset in startup.el system-dependently. */ |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8327 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix, |
88365 | 8328 doc: /* |
8329 *String displayed in mode line for UNIX-like (LF) end-of-line format. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8330 eol_mnemonic_unix = build_string (":"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8331 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8332 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos, |
88365 | 8333 doc: /* |
8334 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8335 eol_mnemonic_dos = build_string ("\\"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8336 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8337 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac, |
88365 | 8338 doc: /* |
8339 *String displayed in mode line for MAC-like (CR) end-of-line format. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8340 eol_mnemonic_mac = build_string ("/"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8341 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8342 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided, |
88365 | 8343 doc: /* |
8344 *String displayed in mode line when end-of-line format is not yet determined. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8345 eol_mnemonic_undecided = build_string (":"); |
17052 | 8346 |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8347 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation, |
88365 | 8348 doc: /* |
8349 *Non-nil enables character translation while encoding and decoding. */); | |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8350 Venable_character_translation = Qt; |
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8351 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8352 DEFVAR_LISP ("standard-translation-table-for-decode", |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8353 &Vstandard_translation_table_for_decode, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8354 doc: /* Table for translating characters while decoding. */); |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8355 Vstandard_translation_table_for_decode = Qnil; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8356 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8357 DEFVAR_LISP ("standard-translation-table-for-encode", |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8358 &Vstandard_translation_table_for_encode, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8359 doc: /* Table for translating characters while encoding. */); |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8360 Vstandard_translation_table_for_encode = Qnil; |
17052 | 8361 |
88365 | 8362 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_table, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8363 doc: /* Alist of charsets vs revision numbers. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8364 While encoding, if a charset (car part of an element) is found, |
88365 | 8365 designate it with the escape sequence identifying revision (cdr part |
8366 of the element). */); | |
8367 Vcharset_revision_table = Qnil; | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8368 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8369 DEFVAR_LISP ("default-process-coding-system", |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8370 &Vdefault_process_coding_system, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8371 doc: /* Cons of coding systems used for process I/O by default. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8372 The car part is used for decoding a process output, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8373 the cdr part is used for encoding a text to be sent to a process. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8374 Vdefault_process_coding_system = Qnil; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
8375 |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
8376 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table, |
88365 | 8377 doc: /* |
8378 Table of extra Latin codes in the range 128..159 (inclusive). | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8379 This is a vector of length 256. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8380 If Nth element is non-nil, the existence of code N in a file |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8381 \(or output of subprocess) doesn't prevent it to be detected as |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8382 a coding system of ISO 2022 variant which has a flag |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8383 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8384 or reading output of a subprocess. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8385 Only 128th through 159th elements has a meaning. */); |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
8386 Vlatin_extra_code_table = Fmake_vector (make_number (256), Qnil); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8387 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8388 DEFVAR_LISP ("select-safe-coding-system-function", |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8389 &Vselect_safe_coding_system_function, |
88365 | 8390 doc: /* |
8391 Function to call to select safe coding system for encoding a text. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8392 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8393 If set, this function is called to force a user to select a proper |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8394 coding system which can encode the text in the case that a default |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8395 coding system used in each operation can't encode the text. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8396 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8397 The default value is `select-safe-coding-system' (which see). */); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8398 Vselect_safe_coding_system_function = Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8399 |
30292
14a9937df1f5
(syms_of_coding): Fix typo in spelling of variable
Gerd Moellmann <gerd@gnu.org>
parents:
30263
diff
changeset
|
8400 DEFVAR_BOOL ("inhibit-iso-escape-detection", |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
8401 &inhibit_iso_escape_detection, |
88365 | 8402 doc: /* |
8403 If non-nil, Emacs ignores ISO2022's escape sequence on code detection. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8404 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8405 By default, on reading a file, Emacs tries to detect how the text is |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8406 encoded. This code detection is sensitive to escape sequences. If |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8407 the sequence is valid as ISO2022, the code is determined as one of |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8408 the ISO2022 encodings, and the file is decoded by the corresponding |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8409 coding system (e.g. `iso-2022-7bit'). |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8410 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8411 However, there may be a case that you want to read escape sequences in |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8412 a file as is. In such a case, you can set this variable to non-nil. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8413 Then, as the code detection ignores any escape sequences, no file is |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8414 detected as encoded in some ISO2022 encoding. The result is that all |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8415 escape sequences become visible in a buffer. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8416 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8417 The default value is nil, and it is strongly recommended not to change |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8418 it. That is because many Emacs Lisp source files that contain |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8419 non-ASCII characters are encoded by the coding system `iso-2022-7bit' |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8420 in Emacs's distribution, and they won't be decoded correctly on |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8421 reading if you suppress escape sequence detection. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8422 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8423 The other way to read escape sequences in a file without decoding is |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8424 to explicitly specify some coding system that doesn't use ISO2022's |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8425 escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argument]. */); |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
8426 inhibit_iso_escape_detection = 0; |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8427 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8428 { |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8429 Lisp_Object args[coding_arg_max]; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8430 Lisp_Object plist[14]; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8431 int i; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8432 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8433 for (i = 0; i < coding_arg_max; i++) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8434 args[i] = Qnil; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8435 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8436 plist[0] = intern (":name"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8437 plist[1] = args[coding_arg_name] = Qno_conversion; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8438 plist[2] = intern (":mnemonic"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8439 plist[3] = args[coding_arg_mnemonic] = make_number ('='); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8440 plist[4] = intern (":coding-type"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8441 plist[5] = args[coding_arg_coding_type] = Qraw_text; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8442 plist[6] = intern (":ascii-compatible-p"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8443 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8444 plist[8] = intern (":default-char"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8445 plist[9] = args[coding_arg_default_char] = make_number (0); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8446 plist[10] = intern (":docstring"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8447 plist[11] = build_string ("Do no conversion.\n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8448 \n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8449 When you visit a file with this coding, the file is read into a\n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8450 unibyte buffer as is, thus each byte of a file is treated as a\n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8451 character."); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8452 plist[12] = intern (":eol-type"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8453 plist[13] = args[coding_arg_eol_type] = Qunix; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8454 args[coding_arg_plist] = Flist (14, plist); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8455 Fdefine_coding_system_internal (coding_arg_max, args); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8456 } |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8457 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8458 setup_coding_system (Qno_conversion, &keyboard_coding); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8459 setup_coding_system (Qno_conversion, &terminal_coding); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8460 setup_coding_system (Qno_conversion, &safe_terminal_coding); |
17052 | 8461 } |
8462 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8463 char * |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8464 emacs_strerror (error_number) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8465 int error_number; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8466 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8467 char *str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8468 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26240
diff
changeset
|
8469 synchronize_system_messages_locale (); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8470 str = strerror (error_number); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8471 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8472 if (! NILP (Vlocale_coding_system)) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8473 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8474 Lisp_Object dec = code_convert_string_norecord (build_string (str), |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8475 Vlocale_coding_system, |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8476 0); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8477 str = (char *) XSTRING (dec)->data; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8478 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8479 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8480 return str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8481 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8482 |
17052 | 8483 #endif /* emacs */ |