Mercurial > emacs
annotate src/coding.c @ 88449:76fc6c1146aa
Change the registry for chinese-gb2312 and add the registry for
chinese-gbk.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 07 May 2002 04:48:05 +0000 |
parents | 6b86cf30a0b9 |
children | a7b309f72920 |
rev | line source |
---|---|
17052 | 1 /* Coding system handler (conversion, detection, and 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. |
38518
883da5f3dbac
(code_convert_region): Handle the multibyte case if
Gerd Moellmann <gerd@gnu.org>
parents:
38473
diff
changeset
|
4 Copyright (C) 2001 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 | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
49 Coding system is an object for a encoding mechanism that contains |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
50 information about how to convert byte sequence to character |
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 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
60 stored in the hash table Vcharset_hash_table. The conversion from a |
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 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
65 the mechanism of encoding. Here's a brief descrition about type. |
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. | |
74 Decoding and encoding are done by code converter defined for each | |
75 character set. | |
76 | |
77 o Old Emacs' internal format (emacs-mule) | |
78 | |
79 The coding system adopted by an old versions of Emacs (20 and 21). | |
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 | |
97 used by Chinese (mainly in Taiwan and Hong Kong). Details are | |
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 | |
104 If a user wants to decode/encode a text encoded in a coding system | |
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 | |
111 A coding system for a text containing raw eight-bit data. Emacs | |
112 treat each byte of source text as a character (except for | |
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 | |
122 How end-of-line of a text is encoded depends on a system. For | |
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 |
88365 | 128 Since text characters encoding and end-of-line encoding are |
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 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
137 conversion (e.g. the location of source and destination data). |
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; | |
306 Lisp_Object Qunix, Qdos, Qmac; | |
17052 | 307 Lisp_Object Qbuffer_file_coding_system; |
308 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
88365 | 309 Lisp_Object Qdefault_char; |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
310 Lisp_Object Qno_conversion, Qundecided; |
88365 | 311 Lisp_Object Qcharset, Qiso_2022, Qutf_8, Qutf_16, Qshift_jis, Qbig5; |
312 Lisp_Object Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig, Qutf_16_le; | |
313 Lisp_Object Qsignature, Qendian, Qbig, Qlittle; | |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
314 Lisp_Object Qcoding_system_history; |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
315 Lisp_Object Qvalid_codes; |
17052 | 316 |
317 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
318 Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
319 Lisp_Object Qstart_process, Qopen_network_stream; | |
320 Lisp_Object Qtarget_idx; | |
321 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
322 Lisp_Object Vselect_safe_coding_system_function; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
323 |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
324 /* 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
|
325 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
|
326 /* Mnemonic string to indicate format of end-of-line is not yet |
17052 | 327 decided. */ |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
328 Lisp_Object eol_mnemonic_undecided; |
17052 | 329 |
330 #ifdef emacs | |
331 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
332 Lisp_Object Vcoding_system_list, Vcoding_system_alist; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
333 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
334 Lisp_Object Qcoding_system_p, Qcoding_system_error; |
17052 | 335 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
336 /* 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
|
337 end-of-line format. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
338 Lisp_Object Qemacs_mule, Qraw_text; |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
339 |
17052 | 340 /* Coding-systems are handed between Emacs Lisp programs and C internal |
341 routines by the following three variables. */ | |
342 /* Coding-system for reading files and receiving data from process. */ | |
343 Lisp_Object Vcoding_system_for_read; | |
344 /* Coding-system for writing files and sending data to process. */ | |
345 Lisp_Object Vcoding_system_for_write; | |
346 /* Coding-system actually used in the latest I/O. */ | |
347 Lisp_Object Vlast_coding_system_used; | |
348 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
349 /* A vector of length 256 which contains information about special |
22529 | 350 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
|
351 Lisp_Object Vlatin_extra_code_table; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
352 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
353 /* 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
|
354 int inhibit_eol_conversion; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
355 |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
356 /* Flag to inhibit ISO2022 escape sequence detection. */ |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
357 int inhibit_iso_escape_detection; |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
358 |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
359 /* 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
|
360 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
|
361 |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
362 /* Coding system to be used to encode text for terminal display. */ |
17052 | 363 struct coding_system terminal_coding; |
364 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
365 /* 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
|
366 terminal coding system is nil. */ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
367 struct coding_system safe_terminal_coding; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
368 |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
369 /* Coding system of what is sent from terminal keyboard. */ |
17052 | 370 struct coding_system keyboard_coding; |
371 | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
372 Lisp_Object Vfile_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
373 Lisp_Object Vprocess_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
374 Lisp_Object Vnetwork_coding_system_alist; |
17052 | 375 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
376 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
|
377 |
17052 | 378 #endif /* emacs */ |
379 | |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
380 /* 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
|
381 conversion. */ |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
382 Lisp_Object Venable_character_translation; |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
383 /* 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
|
384 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
|
385 /* 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
|
386 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
|
387 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
388 Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
389 Lisp_Object Qtranslation_table_id; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
390 Lisp_Object Qtranslation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
391 Lisp_Object Qtranslation_table_for_encode; |
17052 | 392 |
393 /* Alist of charsets vs revision number. */ | |
88365 | 394 static Lisp_Object Vcharset_revision_table; |
17052 | 395 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
396 /* Default coding systems used for process I/O. */ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
397 Lisp_Object Vdefault_process_coding_system; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
398 |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
399 /* 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
|
400 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
|
401 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
|
402 to avoid infinite recursive call. */ |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
403 static int inhibit_pre_post_conversion; |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
404 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
405 /* Char-table containing safe coding systems of each character. */ |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
406 Lisp_Object Vchar_coding_system_table; |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
407 Lisp_Object Qchar_coding_system; |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
408 |
88365 | 409 /* Two special coding systems. */ |
410 Lisp_Object Vsjis_coding_system; | |
411 Lisp_Object Vbig5_coding_system; | |
412 | |
413 | |
414 static int detect_coding_utf_8 P_ ((struct coding_system *, int *)); | |
415 static void decode_coding_utf_8 P_ ((struct coding_system *)); | |
416 static int encode_coding_utf_8 P_ ((struct coding_system *)); | |
417 | |
418 static int detect_coding_utf_16 P_ ((struct coding_system *, int *)); | |
419 static void decode_coding_utf_16 P_ ((struct coding_system *)); | |
420 static int encode_coding_utf_16 P_ ((struct coding_system *)); | |
421 | |
422 static int detect_coding_iso_2022 P_ ((struct coding_system *, int *)); | |
423 static void decode_coding_iso_2022 P_ ((struct coding_system *)); | |
424 static int encode_coding_iso_2022 P_ ((struct coding_system *)); | |
425 | |
426 static int detect_coding_emacs_mule P_ ((struct coding_system *, int *)); | |
427 static void decode_coding_emacs_mule P_ ((struct coding_system *)); | |
428 static int encode_coding_emacs_mule P_ ((struct coding_system *)); | |
429 | |
430 static int detect_coding_sjis P_ ((struct coding_system *, int *)); | |
431 static void decode_coding_sjis P_ ((struct coding_system *)); | |
432 static int encode_coding_sjis P_ ((struct coding_system *)); | |
433 | |
434 static int detect_coding_big5 P_ ((struct coding_system *, int *)); | |
435 static void decode_coding_big5 P_ ((struct coding_system *)); | |
436 static int encode_coding_big5 P_ ((struct coding_system *)); | |
437 | |
438 static int detect_coding_ccl P_ ((struct coding_system *, int *)); | |
439 static void decode_coding_ccl P_ ((struct coding_system *)); | |
440 static int encode_coding_ccl P_ ((struct coding_system *)); | |
441 | |
442 static void decode_coding_raw_text P_ ((struct coding_system *)); | |
443 static int encode_coding_raw_text P_ ((struct coding_system *)); | |
444 | |
445 | |
446 /* ISO2022 section */ | |
447 | |
448 #define CODING_ISO_INITIAL(coding, reg) \ | |
449 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \ | |
450 coding_attr_iso_initial), \ | |
451 reg))) | |
452 | |
453 | |
454 #define CODING_ISO_REQUEST(coding, charset_id) \ | |
455 ((charset_id <= (coding)->max_charset_id \ | |
456 ? (coding)->safe_charsets[charset_id] \ | |
457 : -1)) | |
458 | |
459 | |
460 #define CODING_ISO_FLAGS(coding) \ | |
461 ((coding)->spec.iso_2022.flags) | |
462 #define CODING_ISO_DESIGNATION(coding, reg) \ | |
463 ((coding)->spec.iso_2022.current_designation[reg]) | |
464 #define CODING_ISO_INVOCATION(coding, plane) \ | |
465 ((coding)->spec.iso_2022.current_invocation[plane]) | |
466 #define CODING_ISO_SINGLE_SHIFTING(coding) \ | |
467 ((coding)->spec.iso_2022.single_shifting) | |
468 #define CODING_ISO_BOL(coding) \ | |
469 ((coding)->spec.iso_2022.bol) | |
470 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \ | |
471 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane))) | |
472 | |
473 /* Control characters of ISO2022. */ | |
474 /* code */ /* function */ | |
475 #define ISO_CODE_LF 0x0A /* line-feed */ | |
476 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
477 #define ISO_CODE_SO 0x0E /* shift-out */ | |
478 #define ISO_CODE_SI 0x0F /* shift-in */ | |
479 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
480 #define ISO_CODE_ESC 0x1B /* escape */ | |
481 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
482 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
483 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */ | |
484 | |
485 /* All code (1-byte) of ISO2022 is classified into one of the | |
486 followings. */ | |
487 enum iso_code_class_type | |
488 { | |
489 ISO_control_0, /* Control codes in the range | |
490 0x00..0x1F and 0x7F, except for the | |
491 following 5 codes. */ | |
492 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */ | |
493 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
494 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
495 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
496 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
497 ISO_control_1, /* Control codes in the range | |
498 0x80..0x9F, except for the | |
499 following 3 codes. */ | |
500 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
501 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
502 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
503 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
504 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
505 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
506 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
507 }; | |
508 | |
509 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the | |
510 `iso-flags' attribute of an iso2022 coding system. */ | |
511 | |
512 /* If set, produce long-form designation sequence (e.g. ESC $ ( A) | |
513 instead of the correct short-form sequence (e.g. ESC $ A). */ | |
514 #define CODING_ISO_FLAG_LONG_FORM 0x0001 | |
515 | |
516 /* If set, reset graphic planes and registers at end-of-line to the | |
517 initial state. */ | |
518 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002 | |
519 | |
520 /* If set, reset graphic planes and registers before any control | |
521 characters to the initial state. */ | |
522 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004 | |
523 | |
524 /* If set, encode by 7-bit environment. */ | |
525 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008 | |
526 | |
527 /* If set, use locking-shift function. */ | |
528 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010 | |
529 | |
530 /* If set, use single-shift function. Overwrite | |
531 CODING_ISO_FLAG_LOCKING_SHIFT. */ | |
532 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020 | |
533 | |
534 /* If set, use designation escape sequence. */ | |
535 #define CODING_ISO_FLAG_DESIGNATION 0x0040 | |
536 | |
537 /* If set, produce revision number sequence. */ | |
538 #define CODING_ISO_FLAG_REVISION 0x0080 | |
539 | |
540 /* If set, produce ISO6429's direction specifying sequence. */ | |
541 #define CODING_ISO_FLAG_DIRECTION 0x0100 | |
542 | |
543 /* If set, assume designation states are reset at beginning of line on | |
544 output. */ | |
545 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200 | |
546 | |
547 /* If set, designation sequence should be placed at beginning of line | |
548 on output. */ | |
549 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400 | |
550 | |
551 /* If set, do not encode unsafe charactes on output. */ | |
552 #define CODING_ISO_FLAG_SAFE 0x0800 | |
553 | |
554 /* If set, extra latin codes (128..159) are accepted as a valid code | |
555 on input. */ | |
556 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000 | |
557 | |
558 #define CODING_ISO_FLAG_COMPOSITION 0x2000 | |
559 | |
560 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 | |
561 | |
562 #define CODING_ISO_FLAG_FULL_SUPPORT 0x8000 | |
563 | |
564 /* A character to be produced on output if encoding of the original | |
565 character is prohibited by CODING_ISO_FLAG_SAFE. */ | |
566 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?' | |
567 | |
568 | |
569 /* UTF-16 section */ | |
570 #define CODING_UTF_16_BOM(coding) \ | |
571 ((coding)->spec.utf_16.bom) | |
572 | |
573 #define CODING_UTF_16_ENDIAN(coding) \ | |
574 ((coding)->spec.utf_16.endian) | |
575 | |
576 #define CODING_UTF_16_SURROGATE(coding) \ | |
577 ((coding)->spec.utf_16.surrogate) | |
578 | |
579 | |
580 /* CCL section */ | |
581 #define CODING_CCL_DECODER(coding) \ | |
582 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder) | |
583 #define CODING_CCL_ENCODER(coding) \ | |
584 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder) | |
585 #define CODING_CCL_VALIDS(coding) \ | |
586 (XSTRING (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)) \ | |
587 ->data) | |
588 | |
589 /* Index for each coding category in `coding_category_table' */ | |
590 | |
591 enum coding_category | |
592 { | |
593 coding_category_iso_7, | |
594 coding_category_iso_7_tight, | |
595 coding_category_iso_8_1, | |
596 coding_category_iso_8_2, | |
597 coding_category_iso_7_else, | |
598 coding_category_iso_8_else, | |
599 coding_category_utf_8, | |
600 coding_category_utf_16_auto, | |
601 coding_category_utf_16_be, | |
602 coding_category_utf_16_le, | |
603 coding_category_utf_16_be_nosig, | |
604 coding_category_utf_16_le_nosig, | |
605 coding_category_charset, | |
606 coding_category_sjis, | |
607 coding_category_big5, | |
608 coding_category_ccl, | |
609 coding_category_emacs_mule, | |
610 /* All above are targets of code detection. */ | |
611 coding_category_raw_text, | |
612 coding_category_undecided, | |
613 coding_category_max | |
614 }; | |
615 | |
616 /* Definitions of flag bits used in detect_coding_XXXX. */ | |
617 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7) | |
618 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight) | |
619 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1) | |
620 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2) | |
621 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else) | |
622 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else) | |
623 #define CATEGORY_MASK_UTF_8 (1 << coding_category_utf_8) | |
624 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be) | |
625 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le) | |
626 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig) | |
627 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig) | |
628 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset) | |
629 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis) | |
630 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5) | |
631 #define CATEGORY_MASK_CCL (1 << coding_category_ccl) | |
632 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule) | |
633 | |
634 /* This value is returned if detect_coding_mask () find nothing other | |
635 than ASCII characters. */ | |
636 #define CATEGORY_MASK_ANY \ | |
637 (CATEGORY_MASK_ISO_7 \ | |
638 | CATEGORY_MASK_ISO_7_TIGHT \ | |
639 | CATEGORY_MASK_ISO_8_1 \ | |
640 | CATEGORY_MASK_ISO_8_2 \ | |
641 | CATEGORY_MASK_ISO_7_ELSE \ | |
642 | CATEGORY_MASK_ISO_8_ELSE \ | |
643 | CATEGORY_MASK_UTF_8 \ | |
644 | CATEGORY_MASK_UTF_16_BE \ | |
645 | CATEGORY_MASK_UTF_16_LE \ | |
646 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
647 | CATEGORY_MASK_UTF_16_LE_NOSIG \ | |
648 | CATEGORY_MASK_CHARSET \ | |
649 | CATEGORY_MASK_SJIS \ | |
650 | CATEGORY_MASK_BIG5 \ | |
651 | CATEGORY_MASK_CCL \ | |
652 | CATEGORY_MASK_EMACS_MULE) | |
653 | |
654 | |
655 #define CATEGORY_MASK_ISO_7BIT \ | |
656 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT) | |
657 | |
658 #define CATEGORY_MASK_ISO_8BIT \ | |
659 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2) | |
660 | |
661 #define CATEGORY_MASK_ISO_ELSE \ | |
662 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE) | |
663 | |
664 #define CATEGORY_MASK_ISO_ESCAPE \ | |
665 (CATEGORY_MASK_ISO_7 \ | |
666 | CATEGORY_MASK_ISO_7_TIGHT \ | |
667 | CATEGORY_MASK_ISO_7_ELSE \ | |
668 | CATEGORY_MASK_ISO_8_ELSE) | |
669 | |
670 #define CATEGORY_MASK_ISO \ | |
671 ( CATEGORY_MASK_ISO_7BIT \ | |
672 | CATEGORY_MASK_ISO_8BIT \ | |
673 | CATEGORY_MASK_ISO_ELSE) | |
674 | |
675 #define CATEGORY_MASK_UTF_16 \ | |
676 (CATEGORY_MASK_UTF_16_BE \ | |
677 | CATEGORY_MASK_UTF_16_LE \ | |
678 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
679 | CATEGORY_MASK_UTF_16_LE_NOSIG) | |
680 | |
681 | |
682 /* List of symbols `coding-category-xxx' ordered by priority. This | |
683 variable is exposed to Emacs Lisp. */ | |
684 static Lisp_Object Vcoding_category_list; | |
685 | |
686 /* Table of coding categories (Lisp symbols). This variable is for | |
687 internal use oly. */ | |
688 static Lisp_Object Vcoding_category_table; | |
689 | |
690 /* Table of coding-categories ordered by priority. */ | |
691 static enum coding_category coding_priorities[coding_category_max]; | |
692 | |
693 /* Nth element is a coding context for the coding system bound to the | |
694 Nth coding category. */ | |
695 static struct coding_system coding_categories[coding_category_max]; | |
696 | |
697 static int detected_mask[coding_category_raw_text] = | |
698 { CATEGORY_MASK_ISO, | |
699 CATEGORY_MASK_ISO, | |
700 CATEGORY_MASK_ISO, | |
701 CATEGORY_MASK_ISO, | |
702 CATEGORY_MASK_ISO, | |
703 CATEGORY_MASK_ISO, | |
704 CATEGORY_MASK_UTF_8, | |
705 CATEGORY_MASK_UTF_16, | |
706 CATEGORY_MASK_UTF_16, | |
707 CATEGORY_MASK_UTF_16, | |
708 CATEGORY_MASK_UTF_16, | |
709 CATEGORY_MASK_UTF_16, | |
710 CATEGORY_MASK_CHARSET, | |
711 CATEGORY_MASK_SJIS, | |
712 CATEGORY_MASK_BIG5, | |
713 CATEGORY_MASK_CCL, | |
714 CATEGORY_MASK_EMACS_MULE | |
715 }; | |
716 | |
717 /*** Commonly used macros and functions ***/ | |
718 | |
719 #ifndef min | |
720 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
721 #endif | |
722 #ifndef max | |
723 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
724 #endif | |
725 | |
726 #define CODING_GET_INFO(coding, attrs, eol_type, charset_list) \ | |
727 do { \ | |
728 attrs = CODING_ID_ATTRS (coding->id); \ | |
729 eol_type = CODING_ID_EOL_TYPE (coding->id); \ | |
730 if (VECTORP (eol_type)) \ | |
731 eol_type = Qunix; \ | |
732 charset_list = CODING_ATTR_CHARSET_LIST (attrs); \ | |
733 } while (0) | |
734 | |
735 | |
736 /* Safely get one byte from the source text pointed by SRC which ends | |
737 at SRC_END, and set C to that byte. If there are not enough bytes | |
738 in the source, it jumps to `no_more_source'. The caller | |
739 should declare and set these variables appropriately in advance: | |
740 src, src_end, multibytep | |
741 */ | |
742 | |
743 #define ONE_MORE_BYTE(c) \ | |
744 do { \ | |
745 if (src == src_end) \ | |
746 { \ | |
747 if (src_base < src) \ | |
748 coding->result = CODING_RESULT_INSUFFICIENT_SRC; \ | |
749 goto no_more_source; \ | |
750 } \ | |
751 c = *src++; \ | |
752 if (multibytep && (c & 0x80)) \ | |
753 { \ | |
754 if ((c & 0xFE) != 0xC0) \ | |
755 error ("Undecodable char found"); \ | |
756 c = ((c & 1) << 6) | *src++; \ | |
757 } \ | |
758 consumed_chars++; \ | |
759 } while (0) | |
760 | |
761 | |
762 #define ONE_MORE_BYTE_NO_CHECK(c) \ | |
763 do { \ | |
764 c = *src++; \ | |
765 if (multibytep && (c & 0x80)) \ | |
766 { \ | |
767 if ((c & 0xFE) != 0xC0) \ | |
768 error ("Undecodable char found"); \ | |
769 c = ((c & 1) << 6) | *src++; \ | |
770 } \ | |
771 } while (0) | |
772 | |
773 | |
774 /* Store a byte C in the place pointed by DST and increment DST to the | |
775 next free point, and increment PRODUCED_CHARS. The caller should | |
776 assure that C is 0..127, and declare and set the variable `dst' | |
777 appropriately in advance. | |
778 */ | |
779 | |
780 | |
781 #define EMIT_ONE_ASCII_BYTE(c) \ | |
782 do { \ | |
783 produced_chars++; \ | |
784 *dst++ = (c); \ | |
785 } while (0) | |
786 | |
787 | |
788 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */ | |
789 | |
790 #define EMIT_TWO_ASCII_BYTES(c1, c2) \ | |
791 do { \ | |
792 produced_chars += 2; \ | |
793 *dst++ = (c1), *dst++ = (c2); \ | |
794 } while (0) | |
795 | |
796 | |
797 /* Store a byte C in the place pointed by DST and increment DST to the | |
798 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is | |
799 nonzero, store in an appropriate multibyte from. The caller should | |
800 declare and set the variables `dst' and `multibytep' appropriately | |
801 in advance. */ | |
802 | |
803 #define EMIT_ONE_BYTE(c) \ | |
804 do { \ | |
805 produced_chars++; \ | |
806 if (multibytep) \ | |
807 { \ | |
808 int ch = (c); \ | |
809 if (ch >= 0x80) \ | |
810 ch = BYTE8_TO_CHAR (ch); \ | |
811 CHAR_STRING_ADVANCE (ch, dst); \ | |
812 } \ | |
813 else \ | |
814 *dst++ = (c); \ | |
815 } while (0) | |
816 | |
817 | |
818 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */ | |
819 | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
820 #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
|
821 do { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
822 produced_chars += 2; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
823 if (multibytep) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
824 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
825 int ch; \ |
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 ch = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
828 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
829 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
830 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
831 ch = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
832 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
833 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
834 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
835 } \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
836 else \ |
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 *dst++ = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
839 *dst++ = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
840 } \ |
88365 | 841 } while (0) |
842 | |
843 | |
844 #define EMIT_THREE_BYTES(c1, c2, c3) \ | |
845 do { \ | |
846 EMIT_ONE_BYTE (c1); \ | |
847 EMIT_TWO_BYTES (c2, c3); \ | |
848 } while (0) | |
849 | |
850 | |
851 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \ | |
852 do { \ | |
853 EMIT_TWO_BYTES (c1, c2); \ | |
854 EMIT_TWO_BYTES (c3, c4); \ | |
855 } while (0) | |
856 | |
857 | |
858 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \ | |
859 do { \ | |
860 charset_map_loaded = 0; \ | |
861 c = DECODE_CHAR (charset, code); \ | |
862 if (charset_map_loaded) \ | |
863 { \ | |
864 unsigned char *orig = coding->source; \ | |
865 EMACS_INT offset; \ | |
866 \ | |
867 coding_set_source (coding); \ | |
868 offset = coding->source - orig; \ | |
869 src += offset; \ | |
870 src_base += offset; \ | |
871 src_end += offset; \ | |
872 } \ | |
873 } while (0) | |
874 | |
875 | |
876 #define ASSURE_DESTINATION(bytes) \ | |
877 do { \ | |
878 if (dst + (bytes) >= dst_end) \ | |
879 { \ | |
880 int more_bytes = charbuf_end - charbuf + (bytes); \ | |
881 \ | |
882 dst = alloc_destination (coding, more_bytes, dst); \ | |
883 dst_end = coding->destination + coding->dst_bytes; \ | |
884 } \ | |
885 } while (0) | |
886 | |
887 | |
888 | |
889 static void | |
890 coding_set_source (coding) | |
891 struct coding_system *coding; | |
892 { | |
893 if (BUFFERP (coding->src_object)) | |
894 { | |
895 if (coding->src_pos < 0) | |
896 coding->source = GAP_END_ADDR + coding->src_pos_byte; | |
897 else | |
898 { | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
899 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
|
900 EMACS_INT beg_byte = BUF_BEG_BYTE (buf); |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
901 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
|
902 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
|
903 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
904 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
|
905 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
|
906 coding->source += BUF_GAP_SIZE (buf); |
88365 | 907 } |
908 } | |
909 else if (STRINGP (coding->src_object)) | |
910 { | |
911 coding->source = (XSTRING (coding->src_object)->data | |
912 + coding->src_pos_byte); | |
913 } | |
914 else | |
915 /* Otherwise, the source is C string and is never relocated | |
916 automatically. Thus we don't have to update anything. */ | |
917 ; | |
918 } | |
919 | |
920 static void | |
921 coding_set_destination (coding) | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
922 struct coding_system *coding; |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
923 { |
88365 | 924 if (BUFFERP (coding->dst_object)) |
925 { | |
926 /* We are sure that coding->dst_pos_byte is before the gap of the | |
927 buffer. */ | |
928 coding->destination = (BUF_BEG_ADDR (XBUFFER (coding->dst_object)) | |
929 + coding->dst_pos_byte - 1); | |
930 if (coding->src_pos < 0) | |
931 /* The source and destination is in the same buffer. */ | |
932 coding->dst_bytes = (GAP_END_ADDR | |
933 - (coding->src_bytes - coding->consumed) | |
934 - coding->destination); | |
935 else | |
936 coding->dst_bytes = (BUF_GAP_END_ADDR (XBUFFER (coding->dst_object)) | |
937 - coding->destination); | |
938 } | |
939 else | |
940 /* Otherwise, the destination is C string and is never relocated | |
941 automatically. Thus we don't have to update anything. */ | |
942 ; | |
943 } | |
944 | |
945 | |
946 static void | |
947 coding_alloc_by_realloc (coding, bytes) | |
948 struct coding_system *coding; | |
949 EMACS_INT bytes; | |
950 { | |
951 coding->destination = (unsigned char *) xrealloc (coding->destination, | |
952 coding->dst_bytes + bytes); | |
953 coding->dst_bytes += bytes; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
954 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
955 |
88365 | 956 static void |
957 coding_alloc_by_making_gap (coding, bytes) | |
958 struct coding_system *coding; | |
959 EMACS_INT bytes; | |
960 { | |
961 Lisp_Object this_buffer; | |
962 | |
963 this_buffer = Fcurrent_buffer (); | |
964 if (EQ (this_buffer, coding->dst_object)) | |
965 { | |
966 EMACS_INT add = coding->src_bytes - coding->consumed; | |
967 | |
968 GAP_SIZE -= add; ZV += add; Z += add; ZV_BYTE += add; Z_BYTE += add; | |
969 make_gap (bytes); | |
970 GAP_SIZE += add; ZV -= add; Z -= add; ZV_BYTE -= add; Z_BYTE -= add; | |
971 } | |
972 else | |
973 { | |
974 set_buffer_internal (XBUFFER (coding->dst_object)); | |
975 make_gap (bytes); | |
976 set_buffer_internal (XBUFFER (this_buffer)); | |
977 } | |
978 } | |
979 | |
980 | |
981 static unsigned char * | |
982 alloc_destination (coding, nbytes, dst) | |
983 struct coding_system *coding; | |
984 int nbytes; | |
985 unsigned char *dst; | |
986 { | |
987 EMACS_INT offset = dst - coding->destination; | |
988 | |
989 if (BUFFERP (coding->dst_object)) | |
990 coding_alloc_by_making_gap (coding, nbytes); | |
991 else | |
992 coding_alloc_by_realloc (coding, nbytes); | |
993 coding->result = CODING_RESULT_SUCCESS; | |
994 coding_set_destination (coding); | |
995 dst = coding->destination + offset; | |
996 return dst; | |
997 } | |
998 | |
999 | |
1000 /*** 2. Emacs' internal format (emacs-utf-8) ***/ | |
1001 | |
1002 | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1003 |
17052 | 1004 |
88365 | 1005 /*** 3. UTF-8 ***/ |
1006 | |
1007 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
1008 Check if a text is encoded in UTF-8. If it is, return | |
1009 CATEGORY_MASK_UTF_8, else return 0. */ | |
1010 | |
1011 #define UTF_8_1_OCTET_P(c) ((c) < 0x80) | |
1012 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80) | |
1013 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0) | |
1014 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0) | |
1015 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0) | |
1016 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8) | |
1017 | |
1018 static int | |
1019 detect_coding_utf_8 (coding, mask) | |
1020 struct coding_system *coding; | |
1021 int *mask; | |
1022 { | |
1023 unsigned char *src = coding->source, *src_base = src; | |
1024 unsigned char *src_end = coding->source + coding->src_bytes; | |
1025 int multibytep = coding->src_multibyte; | |
1026 int consumed_chars = 0; | |
1027 int found = 0; | |
1028 | |
1029 /* A coding system of this category is always ASCII compatible. */ | |
1030 src += coding->head_ascii; | |
1031 | |
1032 while (1) | |
1033 { | |
1034 int c, c1, c2, c3, c4; | |
1035 | |
1036 ONE_MORE_BYTE (c); | |
1037 if (UTF_8_1_OCTET_P (c)) | |
1038 continue; | |
1039 ONE_MORE_BYTE (c1); | |
1040 if (! UTF_8_EXTRA_OCTET_P (c1)) | |
1041 break; | |
1042 if (UTF_8_2_OCTET_LEADING_P (c)) | |
1043 { | |
1044 found++; | |
1045 continue; | |
1046 } | |
1047 ONE_MORE_BYTE (c2); | |
1048 if (! UTF_8_EXTRA_OCTET_P (c2)) | |
1049 break; | |
1050 if (UTF_8_3_OCTET_LEADING_P (c)) | |
1051 { | |
1052 found++; | |
1053 continue; | |
1054 } | |
1055 ONE_MORE_BYTE (c3); | |
1056 if (! UTF_8_EXTRA_OCTET_P (c3)) | |
1057 break; | |
1058 if (UTF_8_4_OCTET_LEADING_P (c)) | |
1059 { | |
1060 found++; | |
1061 continue; | |
1062 } | |
1063 ONE_MORE_BYTE (c4); | |
1064 if (! UTF_8_EXTRA_OCTET_P (c4)) | |
1065 break; | |
1066 if (UTF_8_5_OCTET_LEADING_P (c)) | |
1067 { | |
1068 found++; | |
1069 continue; | |
1070 } | |
1071 break; | |
1072 } | |
1073 *mask &= ~CATEGORY_MASK_UTF_8; | |
1074 return 0; | |
1075 | |
1076 no_more_source: | |
1077 if (! found) | |
1078 return 0; | |
1079 *mask &= CATEGORY_MASK_UTF_8; | |
1080 return 1; | |
1081 } | |
1082 | |
1083 | |
1084 static void | |
1085 decode_coding_utf_8 (coding) | |
1086 struct coding_system *coding; | |
1087 { | |
1088 unsigned char *src = coding->source + coding->consumed; | |
1089 unsigned char *src_end = coding->source + coding->src_bytes; | |
1090 unsigned char *src_base; | |
1091 int *charbuf = coding->charbuf; | |
1092 int *charbuf_end = charbuf + coding->charbuf_size; | |
1093 int consumed_chars = 0, consumed_chars_base; | |
1094 int multibytep = coding->src_multibyte; | |
1095 Lisp_Object attr, eol_type, charset_list; | |
1096 | |
1097 CODING_GET_INFO (coding, attr, eol_type, charset_list); | |
1098 | |
1099 while (1) | |
1100 { | |
1101 int c, c1, c2, c3, c4, c5; | |
1102 | |
1103 src_base = src; | |
1104 consumed_chars_base = consumed_chars; | |
1105 | |
1106 if (charbuf >= charbuf_end) | |
1107 break; | |
1108 | |
1109 ONE_MORE_BYTE (c1); | |
1110 if (UTF_8_1_OCTET_P(c1)) | |
1111 { | |
1112 c = c1; | |
1113 if (c == '\r') | |
1114 { | |
1115 if (EQ (eol_type, Qdos)) | |
1116 { | |
1117 if (src == src_end) | |
1118 goto no_more_source; | |
1119 if (*src == '\n') | |
1120 ONE_MORE_BYTE (c); | |
1121 } | |
1122 else if (EQ (eol_type, Qmac)) | |
1123 c = '\n'; | |
1124 } | |
1125 } | |
1126 else | |
1127 { | |
1128 ONE_MORE_BYTE (c2); | |
1129 if (! UTF_8_EXTRA_OCTET_P (c2)) | |
1130 goto invalid_code; | |
1131 if (UTF_8_2_OCTET_LEADING_P (c1)) | |
1132 c = ((c1 & 0x1F) << 6) | (c2 & 0x3F); | |
1133 else | |
1134 { | |
1135 ONE_MORE_BYTE (c3); | |
1136 if (! UTF_8_EXTRA_OCTET_P (c3)) | |
1137 goto invalid_code; | |
1138 if (UTF_8_3_OCTET_LEADING_P (c1)) | |
1139 c = (((c1 & 0xF) << 12) | |
1140 | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); | |
1141 else | |
1142 { | |
1143 ONE_MORE_BYTE (c4); | |
1144 if (! UTF_8_EXTRA_OCTET_P (c4)) | |
1145 goto invalid_code; | |
1146 if (UTF_8_4_OCTET_LEADING_P (c1)) | |
1147 c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12) | |
1148 | ((c3 & 0x3F) << 6) | (c4 & 0x3F)); | |
1149 else | |
1150 { | |
1151 ONE_MORE_BYTE (c5); | |
1152 if (! UTF_8_EXTRA_OCTET_P (c5)) | |
1153 goto invalid_code; | |
1154 if (UTF_8_5_OCTET_LEADING_P (c1)) | |
1155 { | |
1156 c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18) | |
1157 | ((c3 & 0x3F) << 12) | ((c4 & 0x3F) << 6) | |
1158 | (c5 & 0x3F)); | |
1159 if (c > MAX_CHAR) | |
1160 goto invalid_code; | |
1161 } | |
1162 else | |
1163 goto invalid_code; | |
1164 } | |
1165 } | |
1166 } | |
1167 } | |
1168 | |
1169 *charbuf++ = c; | |
1170 continue; | |
1171 | |
1172 invalid_code: | |
1173 src = src_base; | |
1174 consumed_chars = consumed_chars_base; | |
1175 ONE_MORE_BYTE (c); | |
1176 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
1177 coding->errors++; | |
1178 } | |
1179 | |
1180 no_more_source: | |
1181 coding->consumed_char += consumed_chars_base; | |
1182 coding->consumed = src_base - coding->source; | |
1183 coding->charbuf_used = charbuf - coding->charbuf; | |
1184 } | |
1185 | |
1186 | |
1187 static int | |
1188 encode_coding_utf_8 (coding) | |
1189 struct coding_system *coding; | |
1190 { | |
1191 int multibytep = coding->dst_multibyte; | |
1192 int *charbuf = coding->charbuf; | |
1193 int *charbuf_end = charbuf + coding->charbuf_used; | |
1194 unsigned char *dst = coding->destination + coding->produced; | |
1195 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
|
1196 int produced_chars = 0; |
88365 | 1197 int c; |
1198 | |
1199 if (multibytep) | |
1200 { | |
1201 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
1202 | |
1203 while (charbuf < charbuf_end) | |
1204 { | |
1205 unsigned char str[MAX_MULTIBYTE_LENGTH], *p, *pend = str; | |
1206 | |
1207 ASSURE_DESTINATION (safe_room); | |
1208 c = *charbuf++; | |
1209 CHAR_STRING_ADVANCE (c, pend); | |
1210 for (p = str; p < pend; p++) | |
1211 EMIT_ONE_BYTE (*p); | |
1212 } | |
1213 } | |
1214 else | |
1215 { | |
1216 int safe_room = MAX_MULTIBYTE_LENGTH; | |
1217 | |
1218 while (charbuf < charbuf_end) | |
1219 { | |
1220 ASSURE_DESTINATION (safe_room); | |
1221 c = *charbuf++; | |
1222 dst += CHAR_STRING (c, dst); | |
1223 produced_chars++; | |
1224 } | |
1225 } | |
1226 coding->result = CODING_RESULT_SUCCESS; | |
1227 coding->produced_char += produced_chars; | |
1228 coding->produced = dst - coding->destination; | |
1229 return 0; | |
1230 } | |
1231 | |
1232 | |
1233 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
1234 Check if a text is encoded in UTF-16 Big Endian (endian == 1) or | |
1235 Little Endian (otherwise). If it is, return | |
1236 CATEGORY_MASK_UTF_16_BE or CATEGORY_MASK_UTF_16_LE, | |
1237 else return 0. */ | |
1238 | |
1239 #define UTF_16_HIGH_SURROGATE_P(val) \ | |
1240 (((val) & 0xFC00) == 0xD800) | |
1241 | |
1242 #define UTF_16_LOW_SURROGATE_P(val) \ | |
1243 (((val) & 0xFC00) == 0xDC00) | |
1244 | |
1245 #define UTF_16_INVALID_P(val) \ | |
1246 (((val) == 0xFFFE) \ | |
1247 || ((val) == 0xFFFF) \ | |
1248 || UTF_16_LOW_SURROGATE_P (val)) | |
1249 | |
1250 | |
1251 static int | |
1252 detect_coding_utf_16 (coding, mask) | |
1253 struct coding_system *coding; | |
1254 int *mask; | |
1255 { | |
1256 unsigned char *src = coding->source, *src_base = src; | |
1257 unsigned char *src_end = coding->source + coding->src_bytes; | |
1258 int multibytep = coding->src_multibyte; | |
1259 int consumed_chars = 0; | |
1260 int c1, c2; | |
1261 | |
1262 ONE_MORE_BYTE (c1); | |
1263 ONE_MORE_BYTE (c2); | |
1264 | |
1265 if ((c1 == 0xFF) && (c2 == 0xFE)) | |
1266 { | |
1267 *mask &= CATEGORY_MASK_UTF_16_LE; | |
1268 return 1; | |
1269 } | |
1270 else if ((c1 == 0xFE) && (c2 == 0xFF)) | |
1271 { | |
1272 *mask &= CATEGORY_MASK_UTF_16_BE; | |
1273 return 1; | |
1274 } | |
1275 no_more_source: | |
1276 return 0; | |
1277 } | |
1278 | |
1279 static void | |
1280 decode_coding_utf_16 (coding) | |
1281 struct coding_system *coding; | |
1282 { | |
1283 unsigned char *src = coding->source + coding->consumed; | |
1284 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
|
1285 unsigned char *src_base; |
88365 | 1286 int *charbuf = coding->charbuf; |
1287 int *charbuf_end = charbuf + coding->charbuf_size; | |
1288 int consumed_chars = 0, consumed_chars_base; | |
1289 int multibytep = coding->src_multibyte; | |
1290 enum utf_16_bom_type bom = CODING_UTF_16_BOM (coding); | |
1291 enum utf_16_endian_type endian = CODING_UTF_16_ENDIAN (coding); | |
1292 int surrogate = CODING_UTF_16_SURROGATE (coding); | |
1293 Lisp_Object attr, eol_type, charset_list; | |
1294 | |
1295 CODING_GET_INFO (coding, attr, eol_type, charset_list); | |
1296 | |
1297 if (bom != utf_16_without_bom) | |
1298 { | |
1299 int c, c1, c2; | |
1300 | |
1301 src_base = src; | |
1302 ONE_MORE_BYTE (c1); | |
1303 ONE_MORE_BYTE (c2); | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1304 c = (c1 << 8) | c2; |
88365 | 1305 if (bom == utf_16_with_bom) |
1306 { | |
1307 if (endian == utf_16_big_endian | |
1308 ? c != 0xFFFE : c != 0xFEFF) | |
1309 { | |
1310 /* We are sure that there's enouph room at CHARBUF. */ | |
1311 *charbuf++ = c1; | |
1312 *charbuf++ = c2; | |
1313 coding->errors++; | |
1314 } | |
1315 } | |
1316 else | |
1317 { | |
1318 if (c == 0xFFFE) | |
1319 CODING_UTF_16_ENDIAN (coding) | |
1320 = endian = utf_16_big_endian; | |
1321 else if (c == 0xFEFF) | |
1322 CODING_UTF_16_ENDIAN (coding) | |
1323 = endian = utf_16_little_endian; | |
1324 else | |
1325 { | |
1326 CODING_UTF_16_ENDIAN (coding) | |
1327 = endian = utf_16_big_endian; | |
1328 src = src_base; | |
1329 } | |
1330 } | |
1331 CODING_UTF_16_BOM (coding) = utf_16_with_bom; | |
1332 } | |
1333 | |
1334 while (1) | |
1335 { | |
1336 int c, c1, c2; | |
1337 | |
1338 src_base = src; | |
1339 consumed_chars_base = consumed_chars; | |
1340 | |
1341 if (charbuf + 2 >= charbuf_end) | |
1342 break; | |
1343 | |
1344 ONE_MORE_BYTE (c1); | |
1345 ONE_MORE_BYTE (c2); | |
1346 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
|
1347 ? ((c1 << 8) | c2) : ((c2 << 8) | c1)); |
88365 | 1348 if (surrogate) |
1349 { | |
1350 if (! UTF_16_LOW_SURROGATE_P (c)) | |
1351 { | |
1352 if (endian == utf_16_big_endian) | |
1353 c1 = surrogate >> 8, c2 = surrogate & 0xFF; | |
1354 else | |
1355 c1 = surrogate & 0xFF, c2 = surrogate >> 8; | |
1356 *charbuf++ = c1; | |
1357 *charbuf++ = c2; | |
1358 coding->errors++; | |
1359 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1360 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1361 else | |
1362 *charbuf++ = c; | |
1363 } | |
1364 else | |
1365 { | |
1366 c = ((surrogate - 0xD800) << 10) | (c - 0xDC00); | |
1367 CODING_UTF_16_SURROGATE (coding) = surrogate = 0; | |
1368 *charbuf++ = c; | |
1369 } | |
1370 } | |
1371 else | |
1372 { | |
1373 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1374 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1375 else | |
1376 *charbuf++ = c; | |
1377 } | |
1378 } | |
1379 | |
1380 no_more_source: | |
1381 coding->consumed_char += consumed_chars_base; | |
1382 coding->consumed = src_base - coding->source; | |
1383 coding->charbuf_used = charbuf - coding->charbuf; | |
1384 } | |
1385 | |
1386 static int | |
1387 encode_coding_utf_16 (coding) | |
1388 struct coding_system *coding; | |
1389 { | |
1390 int multibytep = coding->dst_multibyte; | |
1391 int *charbuf = coding->charbuf; | |
1392 int *charbuf_end = charbuf + coding->charbuf_used; | |
1393 unsigned char *dst = coding->destination + coding->produced; | |
1394 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
1395 int safe_room = 8; | |
1396 enum utf_16_bom_type bom = CODING_UTF_16_BOM (coding); | |
1397 int big_endian = CODING_UTF_16_ENDIAN (coding) == utf_16_big_endian; | |
1398 int produced_chars = 0; | |
1399 Lisp_Object attrs, eol_type, charset_list; | |
1400 int c; | |
1401 | |
1402 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
1403 | |
1404 if (bom == utf_16_with_bom) | |
1405 { | |
1406 ASSURE_DESTINATION (safe_room); | |
1407 if (big_endian) | |
1408 EMIT_TWO_BYTES (0xFF, 0xFE); | |
1409 else | |
1410 EMIT_TWO_BYTES (0xFE, 0xFF); | |
1411 CODING_UTF_16_BOM (coding) = utf_16_without_bom; | |
1412 } | |
1413 | |
1414 while (charbuf < charbuf_end) | |
1415 { | |
1416 ASSURE_DESTINATION (safe_room); | |
1417 c = *charbuf++; | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1418 if (c >= MAX_UNICODE_CHAR) |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1419 c = coding->default_char; |
88365 | 1420 |
1421 if (c < 0x10000) | |
1422 { | |
1423 if (big_endian) | |
1424 EMIT_TWO_BYTES (c >> 8, c & 0xFF); | |
1425 else | |
1426 EMIT_TWO_BYTES (c & 0xFF, c >> 8); | |
1427 } | |
1428 else | |
1429 { | |
1430 int c1, c2; | |
1431 | |
1432 c -= 0x10000; | |
1433 c1 = (c >> 10) + 0xD800; | |
1434 c2 = (c & 0x3FF) + 0xDC00; | |
1435 if (big_endian) | |
1436 EMIT_FOUR_BYTES (c1 >> 8, c1 & 0xFF, c2 >> 8, c2 & 0xFF); | |
1437 else | |
1438 EMIT_FOUR_BYTES (c1 & 0xFF, c1 >> 8, c2 & 0xFF, c2 >> 8); | |
1439 } | |
1440 } | |
1441 coding->result = CODING_RESULT_SUCCESS; | |
1442 coding->produced = dst - coding->destination; | |
1443 coding->produced_char += produced_chars; | |
1444 return 0; | |
1445 } | |
1446 | |
1447 | |
1448 /*** 6. Old Emacs' internal format (emacs-mule) ***/ | |
17052 | 1449 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1450 /* Emacs' internal format for representation of multiple character |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1451 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
|
1452 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
|
1453 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1454 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
|
1455 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
|
1456 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
|
1457 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1458 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
|
1459 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
|
1460 code + 0x20). |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1461 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1462 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
|
1463 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
|
1464 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1465 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
|
1466 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
|
1467 `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
|
1468 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
|
1469 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
|
1470 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
|
1471 and position-code. |
18766 | 1472 |
17052 | 1473 --- 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
|
1474 character set range |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1475 ------------- ----- |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1476 ascii 0x00..0x7F |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1477 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
|
1478 eight-bit-graphic 0xA0..0xBF |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1479 ELSE 0x81..0x9D + [0xA0..0xFF]+ |
17052 | 1480 --------------------------------------------- |
1481 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1482 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
|
1483 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
|
1484 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
|
1485 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
|
1486 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1487 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
|
1488 form. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1489 |
88365 | 1490 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
|
1491 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
|
1492 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1493 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
|
1494 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
|
1495 where, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1496 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
|
1497 composition_method), |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1498 |
88365 | 1499 BYTES is 0xA0 plus a byte length of this composition data, |
1500 | |
1501 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
|
1502 data, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1503 |
88365 | 1504 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
|
1505 rules encoded by two-byte of ASCII codes. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1506 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1507 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
|
1508 also recognized as composition data on decoding. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1509 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1510 0x80 MSEQ ... |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1511 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1512 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1513 Here, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1514 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
|
1515 ASCII: 0xA0 ASCII_CODE+0x80, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1516 other: LEADING_CODE+0x20 FOLLOWING-BYTE ..., |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1517 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
|
1518 represents a composition rule. |
17052 | 1519 */ |
1520 | |
88365 | 1521 char emacs_mule_bytes[256]; |
1522 | |
1523 /* Leading-code followed by extended leading-code. */ | |
1524 #define LEADING_CODE_PRIVATE_11 0x9A /* for private DIMENSION1 of 1-column */ | |
1525 #define LEADING_CODE_PRIVATE_12 0x9B /* for private DIMENSION1 of 2-column */ | |
1526 #define LEADING_CODE_PRIVATE_21 0x9C /* for private DIMENSION2 of 1-column */ | |
1527 #define LEADING_CODE_PRIVATE_22 0x9D /* for private DIMENSION2 of 2-column */ | |
1528 | |
1529 | |
1530 int | |
1531 emacs_mule_char (coding, composition, nbytes, nchars) | |
1532 struct coding_system *coding; | |
1533 int composition; | |
1534 int *nbytes, *nchars; | |
1535 { | |
1536 unsigned char *src = coding->source + coding->consumed; | |
1537 unsigned char *src_end = coding->source + coding->src_bytes; | |
1538 int multibytep = coding->src_multibyte; | |
1539 unsigned char *src_base = src; | |
1540 struct charset *charset; | |
1541 unsigned code; | |
1542 int c; | |
1543 int consumed_chars = 0; | |
1544 | |
1545 ONE_MORE_BYTE (c); | |
1546 if (composition) | |
1547 { | |
1548 c -= 0x20; | |
1549 if (c == 0x80) | |
1550 { | |
1551 ONE_MORE_BYTE (c); | |
1552 if (c < 0xA0) | |
1553 goto invalid_code; | |
1554 *nbytes = src - src_base; | |
1555 *nchars = consumed_chars; | |
1556 return (c - 0x80); | |
1557 } | |
1558 } | |
1559 | |
1560 switch (emacs_mule_bytes[c]) | |
1561 { | |
1562 case 2: | |
1563 if (! (charset = emacs_mule_charset[c])) | |
1564 goto invalid_code; | |
1565 ONE_MORE_BYTE (c); | |
1566 code = c & 0x7F; | |
1567 break; | |
1568 | |
1569 case 3: | |
1570 if (c == LEADING_CODE_PRIVATE_11 | |
1571 || c == LEADING_CODE_PRIVATE_12) | |
1572 { | |
1573 ONE_MORE_BYTE (c); | |
1574 if (! (charset = emacs_mule_charset[c])) | |
1575 goto invalid_code; | |
1576 ONE_MORE_BYTE (c); | |
1577 code = c & 0x7F; | |
1578 } | |
1579 else | |
1580 { | |
1581 if (! (charset = emacs_mule_charset[c])) | |
1582 goto invalid_code; | |
1583 ONE_MORE_BYTE (c); | |
1584 code = (c & 0x7F) << 7; | |
1585 ONE_MORE_BYTE (c); | |
1586 code |= c & 0x7F; | |
1587 } | |
1588 break; | |
1589 | |
1590 case 4: | |
1591 if (! (charset = emacs_mule_charset[c])) | |
1592 goto invalid_code; | |
1593 ONE_MORE_BYTE (c); | |
1594 code = (c & 0x7F) << 7; | |
1595 ONE_MORE_BYTE (c); | |
1596 code |= c & 0x7F; | |
1597 break; | |
1598 | |
1599 case 1: | |
1600 code = c; | |
1601 charset = CHARSET_FROM_ID (ASCII_BYTE_P (code) ? charset_ascii | |
1602 : code < 0xA0 ? charset_8_bit_control | |
1603 : charset_8_bit_graphic); | |
1604 break; | |
1605 | |
1606 default: | |
1607 abort (); | |
1608 } | |
1609 c = DECODE_CHAR (charset, code); | |
1610 if (c < 0) | |
1611 goto invalid_code; | |
1612 *nbytes = src - src_base; | |
1613 *nchars = consumed_chars; | |
1614 return c; | |
1615 | |
1616 no_more_source: | |
1617 return -2; | |
1618 | |
1619 invalid_code: | |
1620 return -1; | |
1621 } | |
1622 | |
17052 | 1623 |
1624 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
88365 | 1625 Check if a text is encoded in `emacs-mule'. */ |
17052 | 1626 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
1627 static int |
88365 | 1628 detect_coding_emacs_mule (coding, mask) |
1629 struct coding_system *coding; | |
1630 int *mask; | |
17052 | 1631 { |
88365 | 1632 unsigned char *src = coding->source, *src_base = src; |
1633 unsigned char *src_end = coding->source + coding->src_bytes; | |
1634 int multibytep = coding->src_multibyte; | |
1635 int consumed_chars = 0; | |
1636 int c; | |
1637 int found = 0; | |
1638 | |
1639 /* A coding system of this category is always ASCII compatible. */ | |
1640 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
|
1641 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1642 while (1) |
17052 | 1643 { |
88365 | 1644 ONE_MORE_BYTE (c); |
1645 | |
1646 if (c == 0x80) | |
17052 | 1647 { |
88365 | 1648 /* Perhaps the start of composite character. We simple skip |
1649 it because analyzing it is too heavy for detecting. But, | |
1650 at least, we check that the composite character | |
1651 constitues of more than 4 bytes. */ | |
1652 unsigned char *src_base; | |
1653 | |
1654 repeat: | |
1655 src_base = src; | |
1656 do | |
1657 { | |
1658 ONE_MORE_BYTE (c); | |
1659 } | |
1660 while (c >= 0xA0); | |
1661 | |
1662 if (src - src_base <= 4) | |
1663 break; | |
1664 found = 1; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1665 if (c == 0x80) |
88365 | 1666 goto repeat; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1667 } |
88365 | 1668 |
1669 if (c < 0x80) | |
1670 { | |
1671 if (c < 0x20 | |
1672 && (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) | |
1673 break; | |
1674 } | |
1675 else | |
1676 { | |
1677 unsigned char *src_base = src - 1; | |
1678 | |
1679 do | |
1680 { | |
1681 ONE_MORE_BYTE (c); | |
1682 } | |
1683 while (c >= 0xA0); | |
1684 if (src - src_base != emacs_mule_bytes[*src_base]) | |
1685 break; | |
1686 found = 1; | |
1687 } | |
1688 } | |
1689 *mask &= ~CATEGORY_MASK_EMACS_MULE; | |
1690 return 0; | |
1691 | |
1692 no_more_source: | |
1693 if (!found) | |
1694 return 0; | |
1695 *mask &= CATEGORY_MASK_EMACS_MULE; | |
1696 return 1; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1697 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1698 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1699 |
88365 | 1700 /* 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
|
1701 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1702 /* Decode a character represented as a component of composition |
88365 | 1703 sequence of Emacs 20/21 style at SRC. Set C to that character and |
1704 update SRC to the head of next character (or an encoded composition | |
1705 rule). If SRC doesn't points a composition component, set C to -1. | |
1706 If SRC points an invalid byte sequence, global exit by a return | |
1707 value 0. */ | |
1708 | |
1709 #define DECODE_EMACS_MULE_COMPOSITION_CHAR(buf) \ | |
1710 if (1) \ | |
1711 { \ | |
1712 int c; \ | |
1713 int nbytes, nchars; \ | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1714 \ |
88365 | 1715 if (src == src_end) \ |
1716 break; \ | |
1717 c = emacs_mule_char (coding, 1, &nbytes, &nchars); \ | |
1718 if (c < 0) \ | |
1719 { \ | |
1720 if (c == -2) \ | |
1721 break; \ | |
1722 goto invalid_code; \ | |
1723 } \ | |
1724 *buf++ = c; \ | |
1725 src += nbytes; \ | |
1726 consumed_chars += nchars; \ | |
1727 } \ | |
1728 else | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1729 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1730 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1731 /* Decode a composition rule represented as a component of composition |
88365 | 1732 sequence of Emacs 20 style at SRC. Set C to the rule. If SRC |
1733 points an invalid byte sequence, set C to -1. */ | |
1734 | |
1735 #define DECODE_EMACS_MULE_COMPOSITION_RULE(buf) \ | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1736 do { \ |
88365 | 1737 int c, gref, nref; \ |
1738 \ | |
1739 if (src < src_end) \ | |
1740 goto invalid_code; \ | |
1741 ONE_MORE_BYTE_NO_CHECK (c); \ | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1742 c -= 0xA0; \ |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1743 if (c < 0 || c >= 81) \ |
88365 | 1744 goto invalid_code; \ |
1745 \ | |
1746 gref = c / 9, nref = c % 9; \ | |
1747 *buf++ = COMPOSITION_ENCODE_RULE (gref, nref); \ | |
1748 } while (0) | |
1749 | |
1750 | |
1751 #define ADD_COMPOSITION_DATA(buf, method, nchars) \ | |
1752 do { \ | |
1753 *buf++ = -5; \ | |
1754 *buf++ = coding->produced_char + char_offset; \ | |
1755 *buf++ = CODING_ANNOTATE_COMPOSITION_MASK; \ | |
1756 *buf++ = method; \ | |
1757 *buf++ = nchars; \ | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1758 } while (0) |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1759 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1760 |
88365 | 1761 #define DECODE_EMACS_MULE_21_COMPOSITION(c) \ |
1762 do { \ | |
1763 /* Emacs 21 style format. The first three bytes at SRC are \ | |
1764 (METHOD - 0xF0), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is \ | |
1765 the byte length of this composition information, CHARS is the \ | |
1766 number of characters composed by this composition. */ \ | |
1767 enum composition_method method = c - 0xF0; \ | |
1768 int consumed_chars_limit; \ | |
1769 int nbytes, nchars; \ | |
1770 \ | |
1771 ONE_MORE_BYTE (c); \ | |
1772 nbytes = c - 0xA0; \ | |
1773 if (nbytes < 3) \ | |
1774 goto invalid_code; \ | |
1775 ONE_MORE_BYTE (c); \ | |
1776 nchars = c - 0xA0; \ | |
1777 ADD_COMPOSITION_DATA (charbuf, method, nchars); \ | |
1778 consumed_chars_limit = consumed_chars_base + nbytes; \ | |
1779 if (method != COMPOSITION_RELATIVE) \ | |
1780 { \ | |
1781 int i = 0; \ | |
1782 while (consumed_chars < consumed_chars_limit) \ | |
1783 { \ | |
1784 if (i % 2 && method != COMPOSITION_WITH_ALTCHARS) \ | |
1785 DECODE_EMACS_MULE_COMPOSITION_RULE (charbuf); \ | |
1786 else \ | |
1787 DECODE_EMACS_MULE_COMPOSITION_CHAR (charbuf); \ | |
1788 } \ | |
1789 if (consumed_chars < consumed_chars_limit) \ | |
1790 goto invalid_code; \ | |
1791 } \ | |
1792 } while (0) | |
1793 | |
1794 | |
1795 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION(c) \ | |
1796 do { \ | |
1797 /* Emacs 20 style format for relative composition. */ \ | |
1798 /* Store multibyte form of characters to be composed. */ \ | |
1799 int components[MAX_COMPOSITION_COMPONENTS * 2 - 1]; \ | |
1800 int *buf = components; \ | |
1801 int i, j; \ | |
1802 \ | |
1803 src = src_base; \ | |
1804 ONE_MORE_BYTE (c); /* skip 0x80 */ \ | |
1805 for (i = 0; i < MAX_COMPOSITION_COMPONENTS; i++) \ | |
1806 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
1807 if (i < 2) \ | |
1808 goto invalid_code; \ | |
1809 ADD_COMPOSITION_DATA (charbuf, COMPOSITION_RELATIVE, i); \ | |
1810 for (j = 0; j < i; j++) \ | |
1811 *charbuf++ = components[j]; \ | |
1812 } while (0) | |
1813 | |
1814 | |
1815 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION(c) \ | |
1816 do { \ | |
1817 /* Emacs 20 style format for rule-base composition. */ \ | |
1818 /* Store multibyte form of characters to be composed. */ \ | |
1819 int components[MAX_COMPOSITION_COMPONENTS * 2 - 1]; \ | |
1820 int *buf = components; \ | |
1821 int i, j; \ | |
1822 \ | |
1823 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
1824 for (i = 0; i < MAX_COMPOSITION_COMPONENTS; i++) \ | |
1825 { \ | |
1826 DECODE_EMACS_MULE_COMPOSITION_RULE (buf); \ | |
1827 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
1828 } \ | |
1829 if (i < 1 || (buf - components) % 2 == 0) \ | |
1830 goto invalid_code; \ | |
1831 if (charbuf + i + (i / 2) + 1 < charbuf_end) \ | |
1832 goto no_more_source; \ | |
1833 ADD_COMPOSITION_DATA (buf, COMPOSITION_WITH_RULE, i); \ | |
1834 for (j = 0; j < i; j++) \ | |
1835 *charbuf++ = components[j]; \ | |
1836 for (j = 0; j < i; j += 2) \ | |
1837 *charbuf++ = components[j]; \ | |
1838 } while (0) | |
1839 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1840 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1841 static void |
88365 | 1842 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
|
1843 struct coding_system *coding; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1844 { |
88365 | 1845 unsigned char *src = coding->source + coding->consumed; |
1846 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
|
1847 unsigned char *src_base; |
88365 | 1848 int *charbuf = coding->charbuf; |
1849 int *charbuf_end = charbuf + coding->charbuf_size; | |
1850 int consumed_chars = 0, consumed_chars_base; | |
1851 int char_offset = 0; | |
1852 int multibytep = coding->src_multibyte; | |
1853 Lisp_Object attrs, eol_type, charset_list; | |
1854 | |
1855 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
1856 | |
1857 while (1) | |
1858 { | |
1859 int c; | |
1860 | |
1861 src_base = src; | |
1862 consumed_chars_base = consumed_chars; | |
1863 | |
1864 if (charbuf >= charbuf_end) | |
1865 break; | |
1866 | |
1867 ONE_MORE_BYTE (c); | |
1868 | |
1869 if (c < 0x80) | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1870 { |
88365 | 1871 if (c == '\r') |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1872 { |
88365 | 1873 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
|
1874 { |
88365 | 1875 if (src == src_end) |
1876 goto no_more_source; | |
1877 if (*src == '\n') | |
1878 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
|
1879 } |
88365 | 1880 else if (EQ (eol_type, Qmac)) |
1881 c = '\n'; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1882 } |
88365 | 1883 *charbuf++ = c; |
1884 char_offset++; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1885 } |
88365 | 1886 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
|
1887 { |
88365 | 1888 if (charbuf + 5 + (MAX_COMPOSITION_COMPONENTS * 2) - 1 > charbuf_end) |
1889 break; | |
1890 ONE_MORE_BYTE (c); | |
1891 if (c - 0xF0 >= COMPOSITION_RELATIVE | |
1892 && c - 0xF0 <= COMPOSITION_WITH_RULE_ALTCHARS) | |
1893 DECODE_EMACS_MULE_21_COMPOSITION (c); | |
1894 else if (c < 0xC0) | |
1895 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (c); | |
1896 else if (c == 0xFF) | |
1897 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (c); | |
1898 else | |
1899 goto invalid_code; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1900 } |
88365 | 1901 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
|
1902 { |
88365 | 1903 int nbytes, nchars; |
1904 src--; | |
1905 c = emacs_mule_char (coding, 0, &nbytes, &nchars); | |
1906 if (c < 0) | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1907 { |
88365 | 1908 if (c == -2) |
1909 break; | |
1910 goto invalid_code; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1911 } |
88365 | 1912 *charbuf++ = c; |
1913 char_offset++; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1914 } |
88365 | 1915 continue; |
1916 | |
1917 invalid_code: | |
1918 src = src_base; | |
1919 consumed_chars = consumed_chars_base; | |
1920 ONE_MORE_BYTE (c); | |
1921 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
1922 coding->errors++; | |
1923 } | |
1924 | |
1925 no_more_source: | |
1926 coding->consumed_char += consumed_chars_base; | |
1927 coding->consumed = src_base - coding->source; | |
1928 coding->charbuf_used = charbuf - coding->charbuf; | |
1929 } | |
1930 | |
1931 | |
1932 #define EMACS_MULE_LEADING_CODES(id, codes) \ | |
1933 do { \ | |
1934 if (id < 0xA0) \ | |
1935 codes[0] = id, codes[1] = 0; \ | |
1936 else if (id < 0xE0) \ | |
1937 codes[0] = 0x9A, codes[1] = id; \ | |
1938 else if (id < 0xF0) \ | |
1939 codes[0] = 0x9B, codes[1] = id; \ | |
1940 else if (id < 0xF5) \ | |
1941 codes[0] = 0x9C, codes[1] = id; \ | |
1942 else \ | |
1943 codes[0] = 0x9D, codes[1] = id; \ | |
1944 } while (0); | |
1945 | |
1946 | |
1947 static int | |
1948 encode_coding_emacs_mule (coding) | |
1949 struct coding_system *coding; | |
1950 { | |
1951 int multibytep = coding->dst_multibyte; | |
1952 int *charbuf = coding->charbuf; | |
1953 int *charbuf_end = charbuf + coding->charbuf_used; | |
1954 unsigned char *dst = coding->destination + coding->produced; | |
1955 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
1956 int safe_room = 8; | |
1957 int produced_chars = 0; | |
1958 Lisp_Object attrs, eol_type, charset_list; | |
1959 int c; | |
1960 | |
1961 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
1962 | |
1963 while (charbuf < charbuf_end) | |
1964 { | |
1965 ASSURE_DESTINATION (safe_room); | |
1966 c = *charbuf++; | |
1967 if (ASCII_CHAR_P (c)) | |
1968 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
|
1969 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1970 { |
88365 | 1971 struct charset *charset; |
1972 unsigned code; | |
1973 int dimension; | |
1974 int emacs_mule_id; | |
1975 unsigned char leading_codes[2]; | |
1976 | |
1977 charset = char_charset (c, charset_list, &code); | |
1978 if (! charset) | |
1979 { | |
1980 c = coding->default_char; | |
1981 if (ASCII_CHAR_P (c)) | |
1982 { | |
1983 EMIT_ONE_ASCII_BYTE (c); | |
1984 continue; | |
1985 } | |
1986 charset = char_charset (c, charset_list, &code); | |
1987 } | |
1988 dimension = CHARSET_DIMENSION (charset); | |
1989 emacs_mule_id = CHARSET_EMACS_MULE_ID (charset); | |
1990 EMACS_MULE_LEADING_CODES (emacs_mule_id, leading_codes); | |
1991 EMIT_ONE_BYTE (leading_codes[0]); | |
1992 if (leading_codes[1]) | |
1993 EMIT_ONE_BYTE (leading_codes[1]); | |
1994 if (dimension == 1) | |
1995 EMIT_ONE_BYTE (code); | |
1996 else | |
1997 { | |
1998 EMIT_ONE_BYTE (code >> 8); | |
1999 EMIT_ONE_BYTE (code & 0xFF); | |
2000 } | |
17052 | 2001 } |
88365 | 2002 } |
2003 coding->result = CODING_RESULT_SUCCESS; | |
2004 coding->produced_char += produced_chars; | |
2005 coding->produced = dst - coding->destination; | |
2006 return 0; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2007 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2008 |
17052 | 2009 |
88365 | 2010 /*** 7. ISO2022 handlers ***/ |
17052 | 2011 |
2012 /* 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
|
2013 Since the intention of this note is to help understand the |
88365 | 2014 functions in this file, some parts are NOT ACCURATE or OVERLY |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2015 SIMPLIFIED. For thorough understanding, please refer to the |
88365 | 2016 original document of ISO2022. |
17052 | 2017 |
2018 ISO2022 provides many mechanisms to encode several character sets | |
88365 | 2019 in 7-bit and 8-bit environments. For 7-bite environments, all text |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2020 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
|
2021 text a little bit longer, but the text passes more easily through |
88365 | 2022 several gateways, some of which strip off MSB (Most Signigant Bit). |
2023 | |
2024 There are two kinds of character sets: control character set and | |
2025 graphic character set. The former contains control characters such | |
17052 | 2026 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
|
2027 functions are also provided by escape sequences). The latter |
88365 | 2028 contains graphic characters such as 'A' and '-'. Emacs recognizes |
17052 | 2029 two control character sets and many graphic character sets. |
2030 | |
2031 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
|
2032 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
|
2033 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
|
2034 - DIMENSION1_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2035 - DIMENSION1_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2036 - DIMENSION2_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2037 - DIMENSION2_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2038 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2039 In addition, each character set is assigned an identification tag, |
88365 | 2040 unique for each set, called "final character" (denoted as <F> |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2041 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
|
2042 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
|
2043 (0x30..0x3F are for private use only). |
17052 | 2044 |
2045 Note (*): ECMA = European Computer Manufacturers Association | |
2046 | |
88365 | 2047 Here are examples of graphic character set [NAME(<F>)]: |
17052 | 2048 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... |
2049 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
2050 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
2051 o DIMENSION2_CHARS96 -- none for the moment | |
2052 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2053 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR. |
17052 | 2054 C0 [0x00..0x1F] -- control character plane 0 |
2055 GL [0x20..0x7F] -- graphic character plane 0 | |
2056 C1 [0x80..0x9F] -- control character plane 1 | |
2057 GR [0xA0..0xFF] -- graphic character plane 1 | |
2058 | |
2059 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
|
2060 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
|
2061 - 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
|
2062 - 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
|
2063 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
|
2064 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
|
2065 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
|
2066 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
|
2067 defined to have corresponding escape sequences. |
17052 | 2068 |
2069 A graphic character set is at first designated to one of four | |
2070 graphic registers (G0 through G3), then these graphic registers are | |
2071 invoked to GL or GR. These designations and invocations can be | |
2072 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
|
2073 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
|
2074 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
|
2075 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
|
2076 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2077 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
|
2078 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
|
2079 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
|
2080 be used. |
17052 | 2081 |
2082 There are two ways of invocation: locking-shift and single-shift. | |
2083 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
|
2084 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
|
2085 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
|
2086 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
|
2087 escape sequences: |
17052 | 2088 |
2089 ---------------------------------------------------------------------- | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2090 abbrev function cntrl escape seq description |
17052 | 2091 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2092 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
|
2093 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
|
2094 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
|
2095 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
|
2096 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
|
2097 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
|
2098 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
|
2099 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
|
2100 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char |
17052 | 2101 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2102 (*) 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
|
2103 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2104 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
|
2105 ISO_CODE_XXX in `coding.h'. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2106 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2107 Designations are done by the following escape sequences: |
17052 | 2108 ---------------------------------------------------------------------- |
2109 escape sequence description | |
2110 ---------------------------------------------------------------------- | |
2111 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
2112 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
2113 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
2114 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
2115 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
2116 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
2117 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
2118 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
2119 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
2120 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
2121 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
2122 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
2123 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
2124 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
2125 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
2126 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
2127 ---------------------------------------------------------------------- | |
2128 | |
2129 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
|
2130 of dimension 1, chars 94, and final character <F>, etc... |
17052 | 2131 |
2132 Note (*): Although these designations are not allowed in ISO2022, | |
2133 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
|
2134 CHARS96 character sets in a coding system which is characterized as |
17052 | 2135 7-bit environment, non-locking-shift, and non-single-shift. |
2136 | |
2137 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
88365 | 2138 '(' must be omitted. We refer to this as "short-form" hereafter. |
2139 | |
2140 Now you may notice that there are a lot of ways for encoding the | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2141 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
|
2142 coding systems such as Compound Text (used in X11's inter client |
88365 | 2143 communication, ISO-2022-JP (used in Japanese internet), ISO-2022-KR |
2144 (used in Korean internet), EUC (Extended UNIX Code, used in Asian | |
17052 | 2145 localized platforms), and all of these are variants of ISO2022. |
2146 | |
2147 In addition to the above, Emacs handles two more kinds of escape | |
2148 sequences: ISO6429's direction specification and Emacs' private | |
2149 sequence for specifying character composition. | |
2150 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2151 ISO6429's direction specification takes the following form: |
17052 | 2152 o CSI ']' -- end of the current direction |
2153 o CSI '0' ']' -- end of the current direction | |
2154 o CSI '1' ']' -- start of left-to-right text | |
2155 o CSI '2' ']' -- start of right-to-left text | |
2156 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
|
2157 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
|
2158 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2159 Character composition specification takes the following form: |
26847 | 2160 o ESC '0' -- start relative composition |
2161 o ESC '1' -- end composition | |
2162 o ESC '2' -- start rule-base composition (*) | |
2163 o ESC '3' -- start relative composition with alternate chars (**) | |
2164 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
|
2165 Since these are not standard escape sequences of any ISO standard, |
88365 | 2166 the use of them for these meaning is restricted to Emacs only. |
2167 | |
2168 (*) This form is used only in Emacs 20.5 and the older versions, | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2169 but the newer versions can safely decode it. |
88365 | 2170 (**) This form is used only in Emacs 21.1 and the newer versions, |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2171 and the older versions can't decode it. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2172 |
88365 | 2173 Here's a list of examples 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
|
2174 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
|
2175 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2176 COMPOSITION_RELATIVE: |
26847 | 2177 ESC 0 CHAR [ CHAR ] ESC 1 |
88365 | 2178 COMPOSITOIN_WITH_RULE: |
26847 | 2179 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
|
2180 COMPOSITION_WITH_ALTCHARS: |
26847 | 2181 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
|
2182 COMPOSITION_WITH_RULE_ALTCHARS: |
26847 | 2183 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */ |
17052 | 2184 |
2185 enum iso_code_class_type iso_code_class[256]; | |
2186 | |
88365 | 2187 #define SAFE_CHARSET_P(coding, id) \ |
2188 ((id) <= (coding)->max_charset_id \ | |
2189 && (coding)->safe_charsets[id] >= 0) | |
2190 | |
2191 | |
2192 #define SHIFT_OUT_OK(category) \ | |
2193 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) | |
2194 | |
2195 static void | |
2196 setup_iso_safe_charsets (Lisp_Object attrs) | |
2197 { | |
2198 Lisp_Object charset_list, safe_charsets; | |
2199 Lisp_Object request; | |
2200 Lisp_Object reg_usage; | |
2201 Lisp_Object tail; | |
2202 int reg94, reg96; | |
2203 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
2204 int max_charset_id; | |
2205 | |
2206 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
2207 if ((flags & CODING_ISO_FLAG_FULL_SUPPORT) | |
2208 && ! EQ (charset_list, Viso_2022_charset_list)) | |
2209 { | |
2210 CODING_ATTR_CHARSET_LIST (attrs) | |
2211 = charset_list = Viso_2022_charset_list; | |
2212 ASET (attrs, coding_attr_safe_charsets, Qnil); | |
2213 } | |
2214 | |
2215 if (STRINGP (AREF (attrs, coding_attr_safe_charsets))) | |
2216 return; | |
2217 | |
2218 max_charset_id = 0; | |
2219 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
2220 { | |
2221 int id = XINT (XCAR (tail)); | |
2222 if (max_charset_id < id) | |
2223 max_charset_id = id; | |
2224 } | |
2225 | |
2226 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
2227 make_number (255)); | |
2228 request = AREF (attrs, coding_attr_iso_request); | |
2229 reg_usage = AREF (attrs, coding_attr_iso_usage); | |
2230 reg94 = XINT (XCAR (reg_usage)); | |
2231 reg96 = XINT (XCDR (reg_usage)); | |
2232 | |
2233 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
2234 { | |
2235 Lisp_Object id; | |
2236 Lisp_Object reg; | |
2237 struct charset *charset; | |
2238 | |
2239 id = XCAR (tail); | |
2240 charset = CHARSET_FROM_ID (XINT (id)); | |
2241 reg = Fcdr (Fassq (request, id)); | |
2242 if (! NILP (reg)) | |
2243 XSTRING (safe_charsets)->data[XINT (id)] = XINT (reg); | |
2244 else if (charset->iso_chars_96) | |
2245 { | |
2246 if (reg96 < 4) | |
2247 XSTRING (safe_charsets)->data[XINT (id)] = reg96; | |
2248 } | |
2249 else | |
2250 { | |
2251 if (reg94 < 4) | |
2252 XSTRING (safe_charsets)->data[XINT (id)] = reg94; | |
2253 } | |
2254 } | |
2255 ASET (attrs, coding_attr_safe_charsets, safe_charsets); | |
2256 } | |
2257 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2258 |
17052 | 2259 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
88365 | 2260 Check if a text is encoded in ISO2022. If it is, returns an |
17052 | 2261 integer in which appropriate flag bits any of: |
88365 | 2262 CATEGORY_MASK_ISO_7 |
2263 CATEGORY_MASK_ISO_7_TIGHT | |
2264 CATEGORY_MASK_ISO_8_1 | |
2265 CATEGORY_MASK_ISO_8_2 | |
2266 CATEGORY_MASK_ISO_7_ELSE | |
2267 CATEGORY_MASK_ISO_8_ELSE | |
17052 | 2268 are set. If a code which should never appear in ISO2022 is found, |
2269 returns 0. */ | |
2270 | |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
2271 static int |
88365 | 2272 detect_coding_iso_2022 (coding, mask) |
2273 struct coding_system *coding; | |
2274 int *mask; | |
17052 | 2275 { |
88365 | 2276 unsigned char *src = coding->source, *src_base = src; |
2277 unsigned char *src_end = coding->source + coding->src_bytes; | |
2278 int multibytep = coding->src_multibyte; | |
2279 int mask_iso = CATEGORY_MASK_ISO; | |
2280 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
|
2281 int reg[4], shift_out = 0, single_shifting = 0; |
88365 | 2282 int id; |
2283 int c, c1; | |
2284 int consumed_chars = 0; | |
2285 int i; | |
2286 | |
2287 for (i = coding_category_iso_7; i <= coding_category_iso_8_else; i++) | |
2288 { | |
2289 struct coding_system *this = &(coding_categories[i]); | |
2290 Lisp_Object attrs, val; | |
2291 | |
2292 attrs = CODING_ID_ATTRS (this->id); | |
2293 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT | |
2294 && ! EQ (CODING_ATTR_SAFE_CHARSETS (attrs), Viso_2022_charset_list)) | |
2295 setup_iso_safe_charsets (attrs); | |
2296 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
2297 this->max_charset_id = XSTRING (val)->size - 1; | |
2298 this->safe_charsets = (char *) XSTRING (val)->data; | |
2299 } | |
2300 | |
2301 /* A coding system of this category is always ASCII compatible. */ | |
2302 src += coding->head_ascii; | |
2303 | |
2304 reg[0] = charset_ascii, reg[1] = reg[2] = reg[3] = -1; | |
2305 while (mask_iso && src < src_end) | |
2306 { | |
2307 ONE_MORE_BYTE (c); | |
17052 | 2308 switch (c) |
2309 { | |
2310 case ISO_CODE_ESC: | |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2311 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2312 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2313 single_shifting = 0; |
88365 | 2314 ONE_MORE_BYTE (c); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2315 if (c >= '(' && c <= '/') |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2316 { |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2317 /* Designation sequence for a charset of dimension 1. */ |
88365 | 2318 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2319 if (c1 < ' ' || c1 >= 0x80 |
88365 | 2320 || (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
|
2321 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2322 break; |
88365 | 2323 reg[(c - '(') % 4] = id; |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2324 } |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2325 else if (c == '$') |
17052 | 2326 { |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2327 /* Designation sequence for a charset of dimension 2. */ |
88365 | 2328 ONE_MORE_BYTE (c); |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2329 if (c >= '@' && c <= 'B') |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2330 /* Designation for JISX0208.1978, GB2312, or JISX0208. */ |
88365 | 2331 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
|
2332 else if (c >= '(' && c <= '/') |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2333 { |
88365 | 2334 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2335 if (c1 < ' ' || c1 >= 0x80 |
88365 | 2336 || (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
|
2337 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2338 break; |
88365 | 2339 reg[(c - '(') % 4] = id; |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2340 } |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2341 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2342 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2343 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2344 } |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2345 else if (c == 'N' || c == 'O') |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2346 { |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2347 /* ESC <Fe> for SS2 or SS3. */ |
88365 | 2348 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
|
2349 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2350 } |
26847 | 2351 else if (c >= '0' && c <= '4') |
2352 { | |
2353 /* ESC <Fp> for start/end composition. */ | |
88365 | 2354 mask_found |= CATEGORY_MASK_ISO; |
26847 | 2355 break; |
2356 } | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2357 else |
88365 | 2358 { |
2359 /* Invalid escape sequence. */ | |
2360 mask_iso &= ~CATEGORY_MASK_ISO_ESCAPE; | |
2361 break; | |
2362 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2363 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2364 /* We found a valid designation sequence for CHARSET. */ |
88365 | 2365 mask_iso &= ~CATEGORY_MASK_ISO_8BIT; |
2366 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7], | |
2367 id)) | |
2368 mask_found |= CATEGORY_MASK_ISO_7; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2369 else |
88365 | 2370 mask_iso &= ~CATEGORY_MASK_ISO_7; |
2371 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_tight], | |
2372 id)) | |
2373 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
|
2374 else |
88365 | 2375 mask_iso &= ~CATEGORY_MASK_ISO_7_TIGHT; |
2376 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_else], | |
2377 id)) | |
2378 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
|
2379 else |
88365 | 2380 mask_iso &= ~CATEGORY_MASK_ISO_7_ELSE; |
2381 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_8_else], | |
2382 id)) | |
2383 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
|
2384 else |
88365 | 2385 mask_iso &= ~CATEGORY_MASK_ISO_8_ELSE; |
17052 | 2386 break; |
2387 | |
2388 case ISO_CODE_SO: | |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2389 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2390 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2391 single_shifting = 0; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2392 if (shift_out == 0 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2393 && (reg[1] >= 0 |
88365 | 2394 || SHIFT_OUT_OK (coding_category_iso_7_else) |
2395 || 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
|
2396 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2397 /* Locking shift out. */ |
88365 | 2398 mask_iso &= ~CATEGORY_MASK_ISO_7BIT; |
2399 mask_found |= CATEGORY_MASK_ISO_ELSE; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2400 } |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2401 break; |
88365 | 2402 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2403 case ISO_CODE_SI: |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2404 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2405 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2406 single_shifting = 0; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2407 if (shift_out == 1) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2408 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2409 /* Locking shift in. */ |
88365 | 2410 mask_iso &= ~CATEGORY_MASK_ISO_7BIT; |
2411 mask_found |= CATEGORY_MASK_ISO_ELSE; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2412 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2413 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2414 |
17052 | 2415 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
|
2416 single_shifting = 0; |
17052 | 2417 case ISO_CODE_SS2: |
2418 case ISO_CODE_SS3: | |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2419 { |
88365 | 2420 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
|
2421 |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2422 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2423 break; |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2424 if (c != ISO_CODE_CSI) |
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2425 { |
88365 | 2426 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
2427 & CODING_ISO_FLAG_SINGLE_SHIFT) | |
2428 newmask |= CATEGORY_MASK_ISO_8_1; | |
2429 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
2430 & CODING_ISO_FLAG_SINGLE_SHIFT) | |
2431 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
|
2432 single_shifting = 1; |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2433 } |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2434 if (VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2435 && !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
|
2436 { |
88365 | 2437 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
2438 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2439 newmask |= CATEGORY_MASK_ISO_8_1; | |
2440 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
2441 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2442 newmask |= CATEGORY_MASK_ISO_8_2; | |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2443 } |
88365 | 2444 mask_iso &= newmask; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2445 mask_found |= newmask; |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2446 } |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2447 break; |
17052 | 2448 |
2449 default: | |
2450 if (c < 0x80) | |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2451 { |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2452 single_shifting = 0; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2453 break; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2454 } |
17052 | 2455 else if (c < 0xA0) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2456 { |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2457 single_shifting = 0; |
88365 | 2458 mask_8bit_found = 1; |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2459 if (VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2460 && !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
|
2461 { |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2462 int newmask = 0; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2463 |
88365 | 2464 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
2465 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2466 newmask |= CATEGORY_MASK_ISO_8_1; | |
2467 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
2468 & CODING_ISO_FLAG_LATIN_EXTRA) | |
2469 newmask |= CATEGORY_MASK_ISO_8_2; | |
2470 mask_iso &= newmask; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2471 mask_found |= newmask; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2472 } |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2473 else |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2474 return 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2475 } |
17052 | 2476 else |
2477 { | |
88365 | 2478 mask_iso &= ~(CATEGORY_MASK_ISO_7BIT |
2479 | CATEGORY_MASK_ISO_7_ELSE); | |
2480 mask_found |= CATEGORY_MASK_ISO_8_1; | |
2481 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
|
2482 /* 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
|
2483 0xA0..0FF. If the byte length is odd, we exclude |
88365 | 2484 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
|
2485 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
|
2486 if (!single_shifting |
88365 | 2487 && 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
|
2488 { |
29299
b33b38d81020
(detect_coding_iso2022): Fix code for checking
Kenichi Handa <handa@m17n.org>
parents:
29275
diff
changeset
|
2489 int i = 1; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2490 while (src < src_end) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2491 { |
88365 | 2492 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
|
2493 if (c < 0xA0) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2494 break; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2495 i++; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2496 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2497 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2498 if (i & 1 && src < src_end) |
88365 | 2499 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
|
2500 else |
88365 | 2501 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
|
2502 } |
17052 | 2503 } |
2504 break; | |
2505 } | |
2506 } | |
88365 | 2507 no_more_source: |
2508 if (!mask_iso) | |
2509 { | |
2510 *mask &= ~CATEGORY_MASK_ISO; | |
2511 return 0; | |
2512 } | |
2513 if (!mask_found) | |
2514 return 0; | |
2515 *mask &= mask_iso & mask_found; | |
2516 if (! mask_8bit_found) | |
2517 *mask &= ~(CATEGORY_MASK_ISO_8BIT | CATEGORY_MASK_ISO_8_ELSE); | |
2518 return 1; | |
17052 | 2519 } |
2520 | |
2521 | |
2522 /* Set designation state into CODING. */ | |
88365 | 2523 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \ |
2524 do { \ | |
2525 int id, prev; \ | |
2526 \ | |
2527 if (final < '0' || final >= 128 \ | |
2528 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \ | |
2529 || !SAFE_CHARSET_P (coding, id)) \ | |
2530 { \ | |
2531 CODING_ISO_DESIGNATION (coding, reg) = -2; \ | |
2532 goto invalid_code; \ | |
2533 } \ | |
2534 prev = CODING_ISO_DESIGNATION (coding, reg); \ | |
2535 CODING_ISO_DESIGNATION (coding, reg) = id; \ | |
2536 /* If there was an invalid designation to REG previously, and this \ | |
2537 designation is ASCII to REG, we should keep this designation \ | |
2538 sequence. */ \ | |
2539 if (prev == -2 && id == charset_ascii) \ | |
2540 goto invalid_code; \ | |
17052 | 2541 } while (0) |
2542 | |
88365 | 2543 |
2544 #define MAYBE_FINISH_COMPOSITION() \ | |
2545 do { \ | |
2546 int i; \ | |
2547 if (composition_state == COMPOSING_NO) \ | |
2548 break; \ | |
2549 /* It is assured that we have enough room for producing \ | |
2550 characters stored in the table `components'. */ \ | |
2551 if (charbuf + component_idx > charbuf_end) \ | |
2552 goto no_more_source; \ | |
2553 composition_state = COMPOSING_NO; \ | |
2554 if (method == COMPOSITION_RELATIVE \ | |
2555 || method == COMPOSITION_WITH_ALTCHARS) \ | |
2556 { \ | |
2557 for (i = 0; i < component_idx; i++) \ | |
2558 *charbuf++ = components[i]; \ | |
2559 char_offset += component_idx; \ | |
2560 } \ | |
2561 else \ | |
2562 { \ | |
2563 for (i = 0; i < component_idx; i += 2) \ | |
2564 *charbuf++ = components[i]; \ | |
2565 char_offset += (component_idx / 2) + 1; \ | |
2566 } \ | |
2567 } while (0) | |
2568 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2569 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2570 /* 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
|
2571 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
|
2572 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1 |
88365 | 2573 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1 |
2574 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
|
2575 */ |
26847 | 2576 |
88365 | 2577 #define DECODE_COMPOSITION_START(c1) \ |
26847 | 2578 do { \ |
88365 | 2579 if (c1 == '0' \ |
2580 && composition_state == COMPOSING_COMPONENT_CHAR) \ | |
26847 | 2581 { \ |
88365 | 2582 component_len = component_idx; \ |
2583 composition_state = COMPOSING_CHAR; \ | |
26847 | 2584 } \ |
2585 else \ | |
2586 { \ | |
88365 | 2587 unsigned char *p; \ |
2588 \ | |
2589 MAYBE_FINISH_COMPOSITION (); \ | |
2590 if (charbuf + MAX_COMPOSITION_COMPONENTS > charbuf_end) \ | |
2591 goto no_more_source; \ | |
2592 for (p = src; p < src_end - 1; p++) \ | |
2593 if (*p == ISO_CODE_ESC && p[1] == '1') \ | |
2594 break; \ | |
2595 if (p == src_end - 1) \ | |
2596 { \ | |
2597 if (coding->mode & CODING_MODE_LAST_BLOCK) \ | |
2598 goto invalid_code; \ | |
2599 goto no_more_source; \ | |
2600 } \ | |
2601 \ | |
2602 /* This is surely the start of a composition. */ \ | |
2603 method = (c1 == '0' ? COMPOSITION_RELATIVE \ | |
2604 : c1 == '2' ? COMPOSITION_WITH_RULE \ | |
2605 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \ | |
2606 : COMPOSITION_WITH_RULE_ALTCHARS); \ | |
2607 composition_state = (c1 <= '2' ? COMPOSING_CHAR \ | |
2608 : COMPOSING_COMPONENT_CHAR); \ | |
2609 component_idx = component_len = 0; \ | |
26847 | 2610 } \ |
2611 } while (0) | |
2612 | |
88365 | 2613 |
2614 /* Handle compositoin end sequence ESC 1. */ | |
2615 | |
2616 #define DECODE_COMPOSITION_END() \ | |
2617 do { \ | |
2618 int nchars = (component_len > 0 ? component_idx - component_len \ | |
2619 : method == COMPOSITION_RELATIVE ? component_idx \ | |
2620 : (component_idx + 1) / 2); \ | |
2621 int i; \ | |
2622 int *saved_charbuf = charbuf; \ | |
2623 \ | |
2624 ADD_COMPOSITION_DATA (charbuf, method, nchars); \ | |
2625 if (method != COMPOSITION_RELATIVE) \ | |
2626 { \ | |
2627 if (component_len == 0) \ | |
2628 for (i = 0; i < component_idx; i++) \ | |
2629 *charbuf++ = components[i]; \ | |
2630 else \ | |
2631 for (i = 0; i < component_len; i++) \ | |
2632 *charbuf++ = components[i]; \ | |
2633 *saved_charbuf = saved_charbuf - charbuf; \ | |
2634 } \ | |
2635 if (method == COMPOSITION_WITH_RULE) \ | |
2636 for (i = 0; i < component_idx; i += 2, char_offset++) \ | |
2637 *charbuf++ = components[i]; \ | |
2638 else \ | |
2639 for (i = component_len; i < component_idx; i++, char_offset++) \ | |
2640 *charbuf++ = components[i]; \ | |
2641 coding->annotated = 1; \ | |
2642 composition_state = COMPOSING_NO; \ | |
2643 } while (0) | |
2644 | |
2645 | |
26847 | 2646 /* Decode a composition rule from the byte C1 (and maybe one more byte |
2647 from SRC) and store one encoded composition rule in | |
2648 coding->cmp_data. */ | |
2649 | |
2650 #define DECODE_COMPOSITION_RULE(c1) \ | |
2651 do { \ | |
2652 (c1) -= 32; \ | |
2653 if (c1 < 81) /* old format (before ver.21) */ \ | |
2654 { \ | |
2655 int gref = (c1) / 9; \ | |
2656 int nref = (c1) % 9; \ | |
2657 if (gref == 4) gref = 10; \ | |
2658 if (nref == 4) nref = 10; \ | |
88365 | 2659 c1 = COMPOSITION_ENCODE_RULE (gref, nref); \ |
26847 | 2660 } \ |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2661 else if (c1 < 93) /* new format (after ver.21) */ \ |
26847 | 2662 { \ |
2663 ONE_MORE_BYTE (c2); \ | |
88365 | 2664 c1 = COMPOSITION_ENCODE_RULE (c1 - 81, c2 - 32); \ |
26847 | 2665 } \ |
88365 | 2666 else \ |
2667 c1 = 0; \ | |
26847 | 2668 } while (0) |
2669 | |
2670 | |
17052 | 2671 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
2672 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2673 static void |
88365 | 2674 decode_coding_iso_2022 (coding) |
17052 | 2675 struct coding_system *coding; |
2676 { | |
88365 | 2677 unsigned char *src = coding->source + coding->consumed; |
2678 unsigned char *src_end = coding->source + coding->src_bytes; | |
2679 unsigned char *src_base; | |
2680 int *charbuf = coding->charbuf; | |
2681 int *charbuf_end = charbuf + coding->charbuf_size - 4; | |
2682 int consumed_chars = 0, consumed_chars_base; | |
2683 int char_offset = 0; | |
2684 int multibytep = coding->src_multibyte; | |
17052 | 2685 /* Charsets invoked to graphic plane 0 and 1 respectively. */ |
88365 | 2686 int charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
2687 int charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
2688 struct charset *charset; | |
2689 int c; | |
2690 /* For handling composition sequence. */ | |
2691 #define COMPOSING_NO 0 | |
2692 #define COMPOSING_CHAR 1 | |
2693 #define COMPOSING_RULE 2 | |
2694 #define COMPOSING_COMPONENT_CHAR 3 | |
2695 #define COMPOSING_COMPONENT_RULE 4 | |
2696 | |
2697 int composition_state = COMPOSING_NO; | |
2698 enum composition_method method; | |
2699 int components[MAX_COMPOSITION_COMPONENTS * 2 + 1]; | |
2700 int component_idx; | |
2701 int component_len; | |
2702 Lisp_Object attrs, eol_type, charset_list; | |
2703 | |
2704 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
2705 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
|
2706 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2707 while (1) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2708 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2709 int c1, c2; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2710 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2711 src_base = src; |
88365 | 2712 consumed_chars_base = consumed_chars; |
2713 | |
2714 if (charbuf >= charbuf_end) | |
2715 break; | |
2716 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2717 ONE_MORE_BYTE (c1); |
17052 | 2718 |
26847 | 2719 /* We produce no character or one character. */ |
17052 | 2720 switch (iso_code_class [c1]) |
2721 { | |
2722 case ISO_0x20_or_0x7F: | |
88365 | 2723 if (composition_state != COMPOSING_NO) |
26847 | 2724 { |
88365 | 2725 if (composition_state == COMPOSING_RULE |
2726 || composition_state == COMPOSING_COMPONENT_RULE) | |
2727 { | |
2728 DECODE_COMPOSITION_RULE (c1); | |
2729 components[component_idx++] = c1; | |
2730 composition_state--; | |
2731 continue; | |
2732 } | |
2733 else if (method == COMPOSITION_WITH_RULE) | |
2734 composition_state = COMPOSING_RULE; | |
2735 else if (method == COMPOSITION_WITH_RULE_ALTCHARS | |
2736 && composition_state == COMPOSING_COMPONENT_CHAR) | |
2737 composition_state = COMPOSING_COMPONENT_CHAR; | |
26847 | 2738 } |
88365 | 2739 if (charset_id_0 < 0 |
2740 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0))) | |
17052 | 2741 { |
2742 /* This is SPACE or DEL. */ | |
88365 | 2743 charset = CHARSET_FROM_ID (charset_ascii); |
17052 | 2744 break; |
2745 } | |
2746 /* This is a graphic character, we fall down ... */ | |
2747 | |
2748 case ISO_graphic_plane_0: | |
88365 | 2749 if (composition_state == COMPOSING_RULE) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2750 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2751 DECODE_COMPOSITION_RULE (c1); |
88365 | 2752 components[component_idx++] = c1; |
2753 composition_state = COMPOSING_CHAR; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2754 } |
88365 | 2755 charset = CHARSET_FROM_ID (charset_id_0); |
17052 | 2756 break; |
2757 | |
2758 case ISO_0xA0_or_0xFF: | |
88365 | 2759 if (charset_id_1 < 0 |
2760 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1)) | |
2761 || CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) | |
2762 goto invalid_code; | |
17052 | 2763 /* This is a graphic character, we fall down ... */ |
2764 | |
2765 case ISO_graphic_plane_1: | |
88365 | 2766 if (charset_id_1 < 0) |
2767 goto invalid_code; | |
2768 charset = CHARSET_FROM_ID (charset_id_1); | |
17052 | 2769 break; |
2770 | |
88365 | 2771 case ISO_carriage_return: |
2772 if (c1 == '\r') | |
2773 { | |
2774 if (EQ (eol_type, Qdos)) | |
2775 { | |
2776 if (src == src_end) | |
2777 goto no_more_source; | |
2778 if (*src == '\n') | |
2779 ONE_MORE_BYTE (c1); | |
2780 } | |
2781 else if (EQ (eol_type, Qmac)) | |
2782 c1 = '\n'; | |
2783 } | |
2784 /* fall through */ | |
2785 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2786 case ISO_control_0: |
88365 | 2787 MAYBE_FINISH_COMPOSITION (); |
2788 charset = CHARSET_FROM_ID (charset_ascii); | |
17052 | 2789 break; |
2790 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2791 case ISO_control_1: |
88365 | 2792 MAYBE_FINISH_COMPOSITION (); |
2793 goto invalid_code; | |
17052 | 2794 |
2795 case ISO_shift_out: | |
88365 | 2796 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
2797 || CODING_ISO_DESIGNATION (coding, 1) < 0) | |
2798 goto invalid_code; | |
2799 CODING_ISO_INVOCATION (coding, 0) = 1; | |
2800 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
|
2801 continue; |
17052 | 2802 |
2803 case ISO_shift_in: | |
88365 | 2804 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)) |
2805 goto invalid_code; | |
2806 CODING_ISO_INVOCATION (coding, 0) = 0; | |
2807 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
|
2808 continue; |
17052 | 2809 |
2810 case ISO_single_shift_2_7: | |
2811 case ISO_single_shift_2: | |
88365 | 2812 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
2813 goto invalid_code; | |
17052 | 2814 /* SS2 is handled as an escape sequence of ESC 'N' */ |
2815 c1 = 'N'; | |
2816 goto label_escape_sequence; | |
2817 | |
2818 case ISO_single_shift_3: | |
88365 | 2819 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
2820 goto invalid_code; | |
17052 | 2821 /* SS2 is handled as an escape sequence of ESC 'O' */ |
2822 c1 = 'O'; | |
2823 goto label_escape_sequence; | |
2824 | |
2825 case ISO_control_sequence_introducer: | |
2826 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
2827 c1 = '['; | |
2828 goto label_escape_sequence; | |
2829 | |
2830 case ISO_escape: | |
2831 ONE_MORE_BYTE (c1); | |
2832 label_escape_sequence: | |
88365 | 2833 /* Escape sequences handled here are invocation, |
17052 | 2834 designation, direction specification, and character |
2835 composition specification. */ | |
2836 switch (c1) | |
2837 { | |
2838 case '&': /* revision of following character set */ | |
2839 ONE_MORE_BYTE (c1); | |
2840 if (!(c1 >= '@' && c1 <= '~')) | |
88365 | 2841 goto invalid_code; |
17052 | 2842 ONE_MORE_BYTE (c1); |
2843 if (c1 != ISO_CODE_ESC) | |
88365 | 2844 goto invalid_code; |
17052 | 2845 ONE_MORE_BYTE (c1); |
2846 goto label_escape_sequence; | |
2847 | |
2848 case '$': /* designation of 2-byte character set */ | |
88365 | 2849 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
2850 goto invalid_code; | |
17052 | 2851 ONE_MORE_BYTE (c1); |
2852 if (c1 >= '@' && c1 <= 'B') | |
2853 { /* 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
|
2854 or JISX0208.1980 */ |
88365 | 2855 DECODE_DESIGNATION (0, 2, 0, c1); |
17052 | 2856 } |
2857 else if (c1 >= 0x28 && c1 <= 0x2B) | |
2858 { /* designation of DIMENSION2_CHARS94 character set */ | |
2859 ONE_MORE_BYTE (c2); | |
88365 | 2860 DECODE_DESIGNATION (c1 - 0x28, 2, 0, c2); |
17052 | 2861 } |
2862 else if (c1 >= 0x2C && c1 <= 0x2F) | |
2863 { /* designation of DIMENSION2_CHARS96 character set */ | |
2864 ONE_MORE_BYTE (c2); | |
88365 | 2865 DECODE_DESIGNATION (c1 - 0x2C, 2, 1, c2); |
17052 | 2866 } |
2867 else | |
88365 | 2868 goto invalid_code; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2869 /* We must update these variables now. */ |
88365 | 2870 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
2871 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
|
2872 continue; |
17052 | 2873 |
2874 case 'n': /* invocation of locking-shift-2 */ | |
88365 | 2875 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
2876 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
2877 goto invalid_code; | |
2878 CODING_ISO_INVOCATION (coding, 0) = 2; | |
2879 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
|
2880 continue; |
17052 | 2881 |
2882 case 'o': /* invocation of locking-shift-3 */ | |
88365 | 2883 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
2884 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
2885 goto invalid_code; | |
2886 CODING_ISO_INVOCATION (coding, 0) = 3; | |
2887 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
|
2888 continue; |
17052 | 2889 |
2890 case 'N': /* invocation of single-shift-2 */ | |
88365 | 2891 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
2892 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
2893 goto invalid_code; | |
2894 charset = CHARSET_FROM_ID (CODING_ISO_DESIGNATION (coding, 2)); | |
17052 | 2895 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
2896 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 2897 goto invalid_code; |
17052 | 2898 break; |
2899 | |
2900 case 'O': /* invocation of single-shift-3 */ | |
88365 | 2901 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
2902 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
2903 goto invalid_code; | |
2904 charset = CHARSET_FROM_ID (CODING_ISO_DESIGNATION (coding, 3)); | |
17052 | 2905 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
2906 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 2907 goto invalid_code; |
17052 | 2908 break; |
2909 | |
26847 | 2910 case '0': case '2': case '3': case '4': /* start composition */ |
88365 | 2911 if (! (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK)) |
2912 goto invalid_code; | |
26847 | 2913 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
|
2914 continue; |
17052 | 2915 |
26847 | 2916 case '1': /* end composition */ |
88365 | 2917 if (composition_state == COMPOSING_NO) |
2918 goto invalid_code; | |
2919 DECODE_COMPOSITION_END (); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2920 continue; |
17052 | 2921 |
2922 case '[': /* specification of direction */ | |
88365 | 2923 if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION) |
2924 goto invalid_code; | |
17052 | 2925 /* 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
|
2926 So, `coding->mode & CODING_MODE_DIRECTION' zero means |
88365 | 2927 left-to-right, and nozero means right-to-left. */ |
17052 | 2928 ONE_MORE_BYTE (c1); |
2929 switch (c1) | |
2930 { | |
2931 case ']': /* end of the current direction */ | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2932 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 2933 |
2934 case '0': /* end of the current direction */ | |
2935 case '1': /* start of left-to-right direction */ | |
2936 ONE_MORE_BYTE (c1); | |
2937 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2938 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 2939 else |
88365 | 2940 goto invalid_code; |
17052 | 2941 break; |
2942 | |
2943 case '2': /* start of right-to-left direction */ | |
2944 ONE_MORE_BYTE (c1); | |
2945 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2946 coding->mode |= CODING_MODE_DIRECTION; |
17052 | 2947 else |
88365 | 2948 goto invalid_code; |
17052 | 2949 break; |
2950 | |
2951 default: | |
88365 | 2952 goto invalid_code; |
17052 | 2953 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2954 continue; |
17052 | 2955 |
2956 default: | |
88365 | 2957 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
2958 goto invalid_code; | |
17052 | 2959 if (c1 >= 0x28 && c1 <= 0x2B) |
2960 { /* designation of DIMENSION1_CHARS94 character set */ | |
2961 ONE_MORE_BYTE (c2); | |
88365 | 2962 DECODE_DESIGNATION (c1 - 0x28, 1, 0, c2); |
17052 | 2963 } |
2964 else if (c1 >= 0x2C && c1 <= 0x2F) | |
2965 { /* designation of DIMENSION1_CHARS96 character set */ | |
2966 ONE_MORE_BYTE (c2); | |
88365 | 2967 DECODE_DESIGNATION (c1 - 0x2C, 1, 1, c2); |
17052 | 2968 } |
2969 else | |
88365 | 2970 goto invalid_code; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2971 /* We must update these variables now. */ |
88365 | 2972 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
2973 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
|
2974 continue; |
17052 | 2975 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2976 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2977 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2978 /* Now we know CHARSET and 1st position code C1 of a character. |
88365 | 2979 Produce a decoded character while getting 2nd position code |
2980 C2 if necessary. */ | |
2981 c1 &= 0x7F; | |
2982 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
|
2983 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2984 ONE_MORE_BYTE (c2); |
88365 | 2985 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
|
2986 /* C2 is not in a valid range. */ |
88365 | 2987 goto invalid_code; |
2988 c1 = (c1 << 8) | (c2 & 0x7F); | |
2989 if (CHARSET_DIMENSION (charset) > 2) | |
2990 { | |
2991 ONE_MORE_BYTE (c2); | |
2992 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0)) | |
2993 /* C2 is not in a valid range. */ | |
2994 goto invalid_code; | |
2995 c1 = (c1 << 8) | (c2 & 0x7F); | |
2996 } | |
17052 | 2997 } |
88365 | 2998 |
2999 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); | |
3000 if (c < 0) | |
3001 { | |
3002 MAYBE_FINISH_COMPOSITION (); | |
3003 for (; src_base < src; src_base++, char_offset++) | |
3004 { | |
3005 if (ASCII_BYTE_P (*src_base)) | |
3006 *charbuf++ = *src_base; | |
3007 else | |
3008 *charbuf++ = BYTE8_TO_CHAR (*src_base); | |
3009 } | |
3010 } | |
3011 else if (composition_state == COMPOSING_NO) | |
3012 { | |
3013 *charbuf++ = c; | |
3014 char_offset++; | |
3015 } | |
3016 else | |
3017 components[component_idx++] = c; | |
17052 | 3018 continue; |
3019 | |
88365 | 3020 invalid_code: |
3021 MAYBE_FINISH_COMPOSITION (); | |
3022 src = src_base; | |
3023 consumed_chars = consumed_chars_base; | |
3024 ONE_MORE_BYTE (c); | |
3025 *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
|
3026 coding->errors++; |
88365 | 3027 } |
3028 | |
3029 no_more_source: | |
3030 coding->consumed_char += consumed_chars_base; | |
3031 coding->consumed = src_base - coding->source; | |
3032 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 3033 } |
3034 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3035 |
18766 | 3036 /* ISO2022 encoding stuff. */ |
17052 | 3037 |
3038 /* | |
18766 | 3039 It is not enough to say just "ISO2022" on encoding, we have to |
88365 | 3040 specify more details. In Emacs, each coding system of ISO2022 |
17052 | 3041 variant has the following specifications: |
88365 | 3042 1. Initial designation to G0 thru G3. |
17052 | 3043 2. Allows short-form designation? |
3044 3. ASCII should be designated to G0 before control characters? | |
3045 4. ASCII should be designated to G0 at end of line? | |
3046 5. 7-bit environment or 8-bit environment? | |
3047 6. Use locking-shift? | |
3048 7. Use Single-shift? | |
3049 And the following two are only for Japanese: | |
3050 8. Use ASCII in place of JIS0201-1976-Roman? | |
3051 9. Use JISX0208-1983 in place of JISX0208-1978? | |
88365 | 3052 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits |
3053 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more | |
18766 | 3054 details. |
17052 | 3055 */ |
3056 | |
3057 /* 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
|
3058 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
|
3059 '@', '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
|
3060 designation sequence of short-form. */ |
17052 | 3061 |
3062 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
3063 do { \ | |
88365 | 3064 unsigned char final_char = CHARSET_ISO_FINAL (charset); \ |
17052 | 3065 char *intermediate_char_94 = "()*+"; \ |
3066 char *intermediate_char_96 = ",-./"; \ | |
88365 | 3067 int revision = -1; \ |
3068 int c; \ | |
3069 \ | |
3070 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \ | |
3071 revision = XINT (CHARSET_ISO_REVISION (charset)); \ | |
3072 \ | |
3073 if (revision >= 0) \ | |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
3074 { \ |
88365 | 3075 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \ |
3076 EMIT_ONE_BYTE ('@' + revision); \ | |
17052 | 3077 } \ |
88365 | 3078 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \ |
17052 | 3079 if (CHARSET_DIMENSION (charset) == 1) \ |
3080 { \ | |
88365 | 3081 if (! CHARSET_ISO_CHARS_96 (charset)) \ |
3082 c = intermediate_char_94[reg]; \ | |
17052 | 3083 else \ |
88365 | 3084 c = intermediate_char_96[reg]; \ |
3085 EMIT_ONE_ASCII_BYTE (c); \ | |
17052 | 3086 } \ |
3087 else \ | |
3088 { \ | |
88365 | 3089 EMIT_ONE_ASCII_BYTE ('$'); \ |
3090 if (! CHARSET_ISO_CHARS_96 (charset)) \ | |
17052 | 3091 { \ |
88365 | 3092 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
|
3093 || reg != 0 \ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3094 || final_char < '@' || final_char > 'B') \ |
88365 | 3095 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \ |
17052 | 3096 } \ |
3097 else \ | |
88365 | 3098 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \ |
17052 | 3099 } \ |
88365 | 3100 EMIT_ONE_ASCII_BYTE (final_char); \ |
3101 \ | |
3102 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \ | |
17052 | 3103 } while (0) |
3104 | |
88365 | 3105 |
17052 | 3106 /* The following two macros produce codes (control character or escape |
3107 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
3108 single-shift-3). */ | |
3109 | |
88365 | 3110 #define ENCODE_SINGLE_SHIFT_2 \ |
3111 do { \ | |
3112 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
3113 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \ | |
3114 else \ | |
3115 EMIT_ONE_BYTE (ISO_CODE_SS2); \ | |
3116 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 3117 } while (0) |
3118 | |
88365 | 3119 |
3120 #define ENCODE_SINGLE_SHIFT_3 \ | |
3121 do { \ | |
3122 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
3123 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \ | |
3124 else \ | |
3125 EMIT_ONE_BYTE (ISO_CODE_SS3); \ | |
3126 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 3127 } while (0) |
3128 | |
88365 | 3129 |
17052 | 3130 /* The following four macros produce codes (control character or |
3131 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
3132 shift-out, locking-shift-2, and locking-shift-3). */ | |
3133 | |
88365 | 3134 #define ENCODE_SHIFT_IN \ |
3135 do { \ | |
3136 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \ | |
3137 CODING_ISO_INVOCATION (coding, 0) = 0; \ | |
17052 | 3138 } while (0) |
3139 | |
88365 | 3140 |
3141 #define ENCODE_SHIFT_OUT \ | |
3142 do { \ | |
3143 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \ | |
3144 CODING_ISO_INVOCATION (coding, 0) = 1; \ | |
17052 | 3145 } while (0) |
3146 | |
88365 | 3147 |
3148 #define ENCODE_LOCKING_SHIFT_2 \ | |
3149 do { \ | |
3150 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
3151 CODING_ISO_INVOCATION (coding, 0) = 2; \ | |
17052 | 3152 } while (0) |
3153 | |
88365 | 3154 |
3155 #define ENCODE_LOCKING_SHIFT_3 \ | |
3156 do { \ | |
3157 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
3158 CODING_ISO_INVOCATION (coding, 0) = 3; \ | |
17052 | 3159 } while (0) |
3160 | |
88365 | 3161 |
18766 | 3162 /* Produce codes for a DIMENSION1 character whose character set is |
3163 CHARSET and whose position-code is C1. Designation and invocation | |
17052 | 3164 sequences are also produced in advance if necessary. */ |
3165 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3166 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3167 do { \ |
88365 | 3168 int id = CHARSET_ID (charset); \ |
3169 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3170 { \ |
88365 | 3171 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ |
3172 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3173 else \ |
88365 | 3174 EMIT_ONE_BYTE (c1 | 0x80); \ |
3175 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3176 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3177 } \ |
88365 | 3178 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
|
3179 { \ |
88365 | 3180 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3181 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3182 } \ |
88365 | 3183 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
|
3184 { \ |
88365 | 3185 EMIT_ONE_BYTE (c1 | 0x80); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3186 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3187 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3188 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3189 /* 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
|
3190 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
|
3191 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
|
3192 character. */ \ |
88365 | 3193 dst = encode_invocation_designation (charset, coding, dst, \ |
3194 &produced_chars); \ | |
17052 | 3195 } while (1) |
3196 | |
88365 | 3197 |
3198 /* Produce codes for a DIMENSION2 character whose character set is | |
3199 CHARSET and whose position-codes are C1 and C2. Designation and | |
3200 invocation codes are also produced in advance if necessary. */ | |
3201 | |
3202 #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
|
3203 do { \ |
88365 | 3204 int id = CHARSET_ID (charset); \ |
3205 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ | |
3206 { \ | |
3207 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
3208 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
3209 else \ | |
3210 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
3211 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
3212 break; \ | |
3213 } \ | |
3214 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ | |
3215 { \ | |
3216 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
3217 break; \ | |
3218 } \ | |
3219 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ | |
3220 { \ | |
3221 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
3222 break; \ | |
3223 } \ | |
3224 else \ | |
3225 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
3226 must invoke it, or, at first, designate it to some graphic \ | |
3227 register. Then repeat the loop to actually produce the \ | |
3228 character. */ \ | |
3229 dst = encode_invocation_designation (charset, coding, dst, \ | |
3230 &produced_chars); \ | |
3231 } while (1) | |
3232 | |
3233 | |
3234 #define ENCODE_ISO_CHARACTER(charset, c) \ | |
3235 do { \ | |
3236 int code = ENCODE_CHAR ((charset),(c)); \ | |
3237 \ | |
3238 if (CHARSET_DIMENSION (charset) == 1) \ | |
3239 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \ | |
3240 else \ | |
3241 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
|
3242 } while (0) |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3243 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
3244 |
17052 | 3245 /* Produce designation and invocation codes at a place pointed by DST |
88365 | 3246 to use CHARSET. The element `spec.iso_2022' of *CODING is updated. |
17052 | 3247 Return new DST. */ |
3248 | |
3249 unsigned char * | |
88365 | 3250 encode_invocation_designation (charset, coding, dst, p_nchars) |
3251 struct charset *charset; | |
17052 | 3252 struct coding_system *coding; |
3253 unsigned char *dst; | |
88365 | 3254 int *p_nchars; |
17052 | 3255 { |
88365 | 3256 int multibytep = coding->dst_multibyte; |
3257 int produced_chars = *p_nchars; | |
17052 | 3258 int reg; /* graphic register number */ |
88365 | 3259 int id = CHARSET_ID (charset); |
17052 | 3260 |
3261 /* At first, check designations. */ | |
3262 for (reg = 0; reg < 4; reg++) | |
88365 | 3263 if (id == CODING_ISO_DESIGNATION (coding, reg)) |
17052 | 3264 break; |
3265 | |
3266 if (reg >= 4) | |
3267 { | |
3268 /* CHARSET is not yet designated to any graphic registers. */ | |
3269 /* At first check the requested designation. */ | |
88365 | 3270 reg = CODING_ISO_REQUEST (coding, id); |
3271 if (reg < 0) | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3272 /* Since CHARSET requests no special designation, designate it |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3273 to graphic register 0. */ |
17052 | 3274 reg = 0; |
3275 | |
3276 ENCODE_DESIGNATION (charset, reg, coding); | |
3277 } | |
3278 | |
88365 | 3279 if (CODING_ISO_INVOCATION (coding, 0) != reg |
3280 && CODING_ISO_INVOCATION (coding, 1) != reg) | |
17052 | 3281 { |
3282 /* Since the graphic register REG is not invoked to any graphic | |
3283 planes, invoke it to graphic plane 0. */ | |
3284 switch (reg) | |
3285 { | |
3286 case 0: /* graphic register 0 */ | |
3287 ENCODE_SHIFT_IN; | |
3288 break; | |
3289 | |
3290 case 1: /* graphic register 1 */ | |
3291 ENCODE_SHIFT_OUT; | |
3292 break; | |
3293 | |
3294 case 2: /* graphic register 2 */ | |
88365 | 3295 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 3296 ENCODE_SINGLE_SHIFT_2; |
3297 else | |
3298 ENCODE_LOCKING_SHIFT_2; | |
3299 break; | |
3300 | |
3301 case 3: /* graphic register 3 */ | |
88365 | 3302 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 3303 ENCODE_SINGLE_SHIFT_3; |
3304 else | |
3305 ENCODE_LOCKING_SHIFT_3; | |
3306 break; | |
3307 } | |
3308 } | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3309 |
88365 | 3310 *p_nchars = produced_chars; |
17052 | 3311 return dst; |
3312 } | |
3313 | |
3314 /* The following three macros produce codes for indicating direction | |
3315 of text. */ | |
88365 | 3316 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ |
3317 do { \ | |
3318 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \ | |
3319 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \ | |
3320 else \ | |
3321 EMIT_ONE_BYTE (ISO_CODE_CSI); \ | |
17052 | 3322 } while (0) |
3323 | |
88365 | 3324 |
3325 #define ENCODE_DIRECTION_R2L() \ | |
3326 do { \ | |
3327 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
3328 EMIT_TWO_ASCII_BYTES ('2', ']'); \ | |
3329 } while (0) | |
3330 | |
3331 | |
3332 #define ENCODE_DIRECTION_L2R() \ | |
3333 do { \ | |
3334 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
3335 EMIT_TWO_ASCII_BYTES ('0', ']'); \ | |
3336 } while (0) | |
3337 | |
17052 | 3338 |
3339 /* Produce codes for designation and invocation to reset the graphic | |
3340 planes and registers to initial state. */ | |
88365 | 3341 #define ENCODE_RESET_PLANE_AND_REGISTER() \ |
3342 do { \ | |
3343 int reg; \ | |
3344 struct charset *charset; \ | |
3345 \ | |
3346 if (CODING_ISO_INVOCATION (coding, 0) != 0) \ | |
3347 ENCODE_SHIFT_IN; \ | |
3348 for (reg = 0; reg < 4; reg++) \ | |
3349 if (CODING_ISO_INITIAL (coding, reg) >= 0 \ | |
3350 && (CODING_ISO_DESIGNATION (coding, reg) \ | |
3351 != CODING_ISO_INITIAL (coding, reg))) \ | |
3352 { \ | |
3353 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \ | |
3354 ENCODE_DESIGNATION (charset, reg, coding); \ | |
3355 } \ | |
17052 | 3356 } while (0) |
3357 | |
88365 | 3358 |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3359 /* 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
|
3360 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
|
3361 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3362 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
|
3363 find all the necessary designations. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3364 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3365 static unsigned char * |
88365 | 3366 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
|
3367 struct coding_system *coding; |
88365 | 3368 int *charbuf, *charbuf_end; |
3369 unsigned char *dst; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3370 { |
88365 | 3371 struct charset *charset; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3372 /* 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
|
3373 int r[4]; |
88365 | 3374 int c, found = 0, reg; |
3375 int produced_chars = 0; | |
3376 int multibytep = coding->dst_multibyte; | |
3377 Lisp_Object attrs; | |
3378 Lisp_Object charset_list; | |
3379 | |
3380 attrs = CODING_ID_ATTRS (coding->id); | |
3381 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
3382 if (EQ (charset_list, Qiso_2022)) | |
3383 charset_list = Viso_2022_charset_list; | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3384 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3385 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3386 r[reg] = -1; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3387 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3388 while (found < 4) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3389 { |
88365 | 3390 int id; |
3391 | |
3392 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3393 if (c == '\n') |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3394 break; |
88365 | 3395 charset = char_charset (c, charset_list, NULL); |
3396 id = CHARSET_ID (charset); | |
3397 reg = CODING_ISO_REQUEST (coding, id); | |
3398 if (reg >= 0 && r[reg] < 0) | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3399 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3400 found++; |
88365 | 3401 r[reg] = id; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3402 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3403 } |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3404 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3405 if (found) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3406 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3407 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3408 if (r[reg] >= 0 |
88365 | 3409 && CODING_ISO_DESIGNATION (coding, reg) != r[reg]) |
3410 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
|
3411 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3412 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3413 return dst; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3414 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3415 |
17052 | 3416 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
3417 | |
88365 | 3418 static int |
3419 encode_coding_iso_2022 (coding) | |
17052 | 3420 struct coding_system *coding; |
3421 { | |
88365 | 3422 int multibytep = coding->dst_multibyte; |
3423 int *charbuf = coding->charbuf; | |
3424 int *charbuf_end = charbuf + coding->charbuf_used; | |
3425 unsigned char *dst = coding->destination + coding->produced; | |
3426 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
3427 int safe_room = 16; | |
3428 int bol_designation | |
3429 = (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL | |
3430 && CODING_ISO_BOL (coding)); | |
3431 int produced_chars = 0; | |
3432 Lisp_Object attrs, eol_type, charset_list; | |
3433 int ascii_compatible; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3434 int c; |
88365 | 3435 |
3436 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3437 | |
3438 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
3439 | |
3440 while (charbuf < charbuf_end) | |
3441 { | |
3442 ASSURE_DESTINATION (safe_room); | |
3443 | |
3444 if (bol_designation) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3445 { |
88365 | 3446 unsigned char *dst_prev = dst; |
3447 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3448 /* We have to produce designation sequences if any now. */ |
88365 | 3449 dst = encode_designation_at_bol (coding, charbuf, charbuf_end, dst); |
3450 bol_designation = 0; | |
3451 /* We are sure that designation sequences are all ASCII bytes. */ | |
3452 produced_chars += dst - dst_prev; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3453 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3454 |
88365 | 3455 c = *charbuf++; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3456 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3457 /* 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
|
3458 if (c < 0x20 || c == 0x7F) |
17052 | 3459 { |
88365 | 3460 if (c == '\n' |
3461 || (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
|
3462 { |
88365 | 3463 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) |
3464 ENCODE_RESET_PLANE_AND_REGISTER (); | |
3465 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_INIT_AT_BOL) | |
3466 { | |
3467 int i; | |
3468 | |
3469 for (i = 0; i < 4; i++) | |
3470 CODING_ISO_DESIGNATION (coding, i) | |
3471 = CODING_ISO_INITIAL (coding, i); | |
3472 } | |
3473 bol_designation | |
3474 = 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
|
3475 } |
88365 | 3476 else if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_CNTL) |
3477 ENCODE_RESET_PLANE_AND_REGISTER (); | |
3478 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
|
3479 } |
88365 | 3480 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
|
3481 { |
88365 | 3482 if (ascii_compatible) |
3483 EMIT_ONE_ASCII_BYTE (c); | |
3484 else | |
3485 ENCODE_ISO_CHARACTER (CHARSET_FROM_ID (charset_ascii), c); | |
17052 | 3486 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3487 else |
88365 | 3488 { |
3489 struct charset *charset = char_charset (c, charset_list, NULL); | |
3490 | |
3491 if (!charset) | |
3492 { | |
3493 c = coding->default_char; | |
3494 charset = char_charset (c, charset_list, NULL); | |
3495 } | |
3496 ENCODE_ISO_CHARACTER (charset, c); | |
3497 } | |
3498 } | |
3499 | |
3500 if (coding->mode & CODING_MODE_LAST_BLOCK | |
3501 && CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) | |
3502 { | |
3503 ASSURE_DESTINATION (safe_room); | |
3504 ENCODE_RESET_PLANE_AND_REGISTER (); | |
3505 } | |
3506 coding->result = CODING_RESULT_SUCCESS; | |
3507 CODING_ISO_BOL (coding) = bol_designation; | |
3508 coding->produced_char += produced_chars; | |
3509 coding->produced = dst - coding->destination; | |
3510 return 0; | |
17052 | 3511 } |
3512 | |
3513 | |
88365 | 3514 /*** 8,9. SJIS and BIG5 handlers ***/ |
3515 | |
3516 /* Although SJIS and BIG5 are not ISO's coding system, they are used | |
17052 | 3517 quite widely. So, for the moment, Emacs supports them in the bare |
3518 C code. But, in the future, they may be supported only by CCL. */ | |
3519 | |
3520 /* SJIS is a coding system encoding three character sets: ASCII, right | |
3521 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
3522 as is. A character of charset katakana-jisx0201 is encoded by | |
3523 "position-code + 0x80". A character of charset japanese-jisx0208 | |
3524 is encoded in 2-byte but two position-codes are divided and shifted | |
88365 | 3525 so that it fit in the range below. |
17052 | 3526 |
3527 --- CODE RANGE of SJIS --- | |
3528 (character set) (range) | |
3529 ASCII 0x00 .. 0x7F | |
88365 | 3530 KATAKANA-JISX0201 0xA0 .. 0xDF |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
3531 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
|
3532 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC |
17052 | 3533 ------------------------------- |
3534 | |
3535 */ | |
3536 | |
3537 /* BIG5 is a coding system encoding two character sets: ASCII and | |
3538 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
88365 | 3539 character set and is encoded in two-byte. |
17052 | 3540 |
3541 --- CODE RANGE of BIG5 --- | |
3542 (character set) (range) | |
3543 ASCII 0x00 .. 0x7F | |
3544 Big5 (1st byte) 0xA1 .. 0xFE | |
3545 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
3546 -------------------------- | |
3547 | |
88365 | 3548 */ |
17052 | 3549 |
3550 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
3551 Check if a text is encoded in SJIS. If it is, return | |
88365 | 3552 CATEGORY_MASK_SJIS, else return 0. */ |
17052 | 3553 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3554 static int |
88365 | 3555 detect_coding_sjis (coding, mask) |
3556 struct coding_system *coding; | |
3557 int *mask; | |
17052 | 3558 { |
88365 | 3559 unsigned char *src = coding->source, *src_base = src; |
3560 unsigned char *src_end = coding->source + coding->src_bytes; | |
3561 int multibytep = coding->src_multibyte; | |
3562 int consumed_chars = 0; | |
3563 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3564 int c; |
88365 | 3565 |
3566 /* A coding system of this category is always ASCII compatible. */ | |
3567 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
|
3568 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3569 while (1) |
17052 | 3570 { |
88365 | 3571 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3572 if (c < 0x80) |
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3573 continue; |
88365 | 3574 if ((c >= 0x81 && c <= 0x9F) || (c >= 0xE0 && c <= 0xEF)) |
17052 | 3575 { |
88365 | 3576 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3577 if (c < 0x40 || c == 0x7F || c > 0xFC) |
88365 | 3578 break; |
3579 found = 1; | |
17052 | 3580 } |
88365 | 3581 else if (c >= 0xA0 && c < 0xE0) |
3582 found = 1; | |
3583 else | |
3584 break; | |
3585 } | |
3586 *mask &= ~CATEGORY_MASK_SJIS; | |
3587 return 0; | |
3588 | |
3589 no_more_source: | |
3590 if (!found) | |
3591 return 0; | |
3592 *mask &= CATEGORY_MASK_SJIS; | |
3593 return 1; | |
17052 | 3594 } |
3595 | |
3596 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
3597 Check if a text is encoded in BIG5. If it is, return | |
88365 | 3598 CATEGORY_MASK_BIG5, else return 0. */ |
17052 | 3599 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3600 static int |
88365 | 3601 detect_coding_big5 (coding, mask) |
3602 struct coding_system *coding; | |
3603 int *mask; | |
17052 | 3604 { |
88365 | 3605 unsigned char *src = coding->source, *src_base = src; |
3606 unsigned char *src_end = coding->source + coding->src_bytes; | |
3607 int multibytep = coding->src_multibyte; | |
3608 int consumed_chars = 0; | |
3609 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3610 int c; |
88365 | 3611 |
3612 /* A coding system of this category is always ASCII compatible. */ | |
3613 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
|
3614 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3615 while (1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3616 { |
88365 | 3617 ONE_MORE_BYTE (c); |
3618 if (c < 0x80) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3619 continue; |
88365 | 3620 if (c >= 0xA1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3621 { |
88365 | 3622 ONE_MORE_BYTE (c); |
3623 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
|
3624 return 0; |
88365 | 3625 found = 1; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3626 } |
88365 | 3627 else |
3628 break; | |
3629 } | |
3630 *mask &= ~CATEGORY_MASK_BIG5; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3631 return 0; |
88365 | 3632 |
3633 no_more_source: | |
3634 if (!found) | |
3635 return 0; | |
3636 *mask &= CATEGORY_MASK_BIG5; | |
3637 return 1; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3638 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3639 |
17052 | 3640 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". |
3641 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
3642 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3643 static void |
88365 | 3644 decode_coding_sjis (coding) |
17052 | 3645 struct coding_system *coding; |
3646 { | |
88365 | 3647 unsigned char *src = coding->source + coding->consumed; |
3648 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
|
3649 unsigned char *src_base; |
88365 | 3650 int *charbuf = coding->charbuf; |
3651 int *charbuf_end = charbuf + coding->charbuf_size; | |
3652 int consumed_chars = 0, consumed_chars_base; | |
3653 int multibytep = coding->src_multibyte; | |
3654 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
3655 Lisp_Object attrs, eol_type, charset_list, val; | |
3656 | |
3657 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3658 | |
3659 val = charset_list; | |
3660 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3661 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3662 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))); | |
3663 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3664 while (1) |
17052 | 3665 { |
88365 | 3666 int c, c1; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3667 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3668 src_base = src; |
88365 | 3669 consumed_chars_base = consumed_chars; |
3670 | |
3671 if (charbuf >= charbuf_end) | |
3672 break; | |
3673 | |
3674 ONE_MORE_BYTE (c); | |
3675 | |
3676 if (c == '\r') | |
17052 | 3677 { |
88365 | 3678 if (EQ (eol_type, Qdos)) |
17052 | 3679 { |
88365 | 3680 if (src == src_end) |
3681 goto no_more_source; | |
3682 if (*src == '\n') | |
3683 ONE_MORE_BYTE (c); | |
17052 | 3684 } |
88365 | 3685 else if (EQ (eol_type, Qmac)) |
3686 c = '\n'; | |
17052 | 3687 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3688 else |
88365 | 3689 { |
3690 struct charset *charset; | |
3691 | |
3692 if (c < 0x80) | |
3693 charset = charset_roman; | |
3694 else | |
17052 | 3695 { |
88365 | 3696 if (c >= 0xF0) |
3697 goto invalid_code; | |
3698 if (c < 0xA0 || c >= 0xE0) | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3699 { |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
3700 /* SJIS -> JISX0208 */ |
88365 | 3701 ONE_MORE_BYTE (c1); |
3702 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC) | |
3703 goto invalid_code; | |
3704 c = (c << 8) | c1; | |
3705 SJIS_TO_JIS (c); | |
3706 charset = charset_kanji; | |
24870
b0f6eab5deeb
(decode_coding_sjis_big5): Avoid compiler warning.
Kenichi Handa <handa@m17n.org>
parents:
24822
diff
changeset
|
3707 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3708 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3709 /* SJIS -> JISX0201-Kana */ |
88365 | 3710 charset = charset_kana; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3711 } |
88365 | 3712 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
3713 } | |
3714 *charbuf++ = c; | |
3715 continue; | |
3716 | |
3717 invalid_code: | |
3718 src = src_base; | |
3719 consumed_chars = consumed_chars_base; | |
3720 ONE_MORE_BYTE (c); | |
3721 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
3722 coding->errors++; | |
3723 } | |
3724 | |
3725 no_more_source: | |
3726 coding->consumed_char += consumed_chars_base; | |
3727 coding->consumed = src_base - coding->source; | |
3728 coding->charbuf_used = charbuf - coding->charbuf; | |
3729 } | |
3730 | |
3731 static void | |
3732 decode_coding_big5 (coding) | |
3733 struct coding_system *coding; | |
3734 { | |
3735 unsigned char *src = coding->source + coding->consumed; | |
3736 unsigned char *src_end = coding->source + coding->src_bytes; | |
3737 unsigned char *src_base; | |
3738 int *charbuf = coding->charbuf; | |
3739 int *charbuf_end = charbuf + coding->charbuf_size; | |
3740 int consumed_chars = 0, consumed_chars_base; | |
3741 int multibytep = coding->src_multibyte; | |
3742 struct charset *charset_roman, *charset_big5; | |
3743 Lisp_Object attrs, eol_type, charset_list, val; | |
3744 | |
3745 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3746 val = charset_list; | |
3747 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3748 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
3749 | |
3750 while (1) | |
3751 { | |
3752 int c, c1; | |
3753 | |
3754 src_base = src; | |
3755 consumed_chars_base = consumed_chars; | |
3756 | |
3757 if (charbuf >= charbuf_end) | |
3758 break; | |
3759 | |
3760 ONE_MORE_BYTE (c); | |
3761 | |
3762 if (c == '\r') | |
3763 { | |
3764 if (EQ (eol_type, Qdos)) | |
3765 { | |
3766 if (src == src_end) | |
3767 goto no_more_source; | |
3768 if (*src == '\n') | |
3769 ONE_MORE_BYTE (c); | |
3770 } | |
3771 else if (EQ (eol_type, Qmac)) | |
3772 c = '\n'; | |
3773 } | |
3774 else | |
3775 { | |
3776 struct charset *charset; | |
3777 if (c < 0x80) | |
3778 charset = charset_roman; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3779 else |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3780 { |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
3781 /* BIG5 -> Big5 */ |
88365 | 3782 if (c < 0xA1 || c > 0xFE) |
3783 goto invalid_code; | |
3784 ONE_MORE_BYTE (c1); | |
3785 if (c1 < 0x40 || (c1 > 0x7E && c1 < 0xA1) || c1 > 0xFE) | |
3786 goto invalid_code; | |
3787 c = c << 8 | c1; | |
3788 charset = charset_big5; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3789 } |
88365 | 3790 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
|
3791 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3792 |
88365 | 3793 *charbuf++ = c; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3794 continue; |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3795 |
88365 | 3796 invalid_code: |
17052 | 3797 src = src_base; |
88365 | 3798 consumed_chars = consumed_chars_base; |
3799 ONE_MORE_BYTE (c); | |
3800 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
3801 coding->errors++; | |
3802 } | |
3803 | |
3804 no_more_source: | |
3805 coding->consumed_char += consumed_chars_base; | |
3806 coding->consumed = src_base - coding->source; | |
3807 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 3808 } |
3809 | |
3810 /* 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
|
3811 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
|
3812 `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
|
3813 are sure that all these charsets are registered as official charset |
17052 | 3814 (i.e. do not have extended leading-codes). Characters of other |
3815 charsets are produced without any encoding. If SJIS_P is 1, encode | |
3816 SJIS text, else encode BIG5 text. */ | |
3817 | |
88365 | 3818 static int |
3819 encode_coding_sjis (coding) | |
17052 | 3820 struct coding_system *coding; |
3821 { | |
88365 | 3822 int multibytep = coding->dst_multibyte; |
3823 int *charbuf = coding->charbuf; | |
3824 int *charbuf_end = charbuf + coding->charbuf_used; | |
3825 unsigned char *dst = coding->destination + coding->produced; | |
3826 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
3827 int safe_room = 4; | |
3828 int produced_chars = 0; | |
3829 Lisp_Object attrs, eol_type, charset_list, val; | |
3830 int ascii_compatible; | |
3831 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
3832 int c; | |
3833 | |
3834 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3835 val = charset_list; | |
3836 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3837 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3838 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); | |
3839 | |
3840 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
3841 | |
3842 while (charbuf < charbuf_end) | |
3843 { | |
3844 ASSURE_DESTINATION (safe_room); | |
3845 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3846 /* Now encode the character C. */ |
88365 | 3847 if (ASCII_CHAR_P (c) && ascii_compatible) |
3848 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
|
3849 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3850 { |
88365 | 3851 unsigned code; |
3852 struct charset *charset = char_charset (c, charset_list, &code); | |
3853 | |
3854 if (!charset) | |
3855 { | |
3856 c = coding->default_char; | |
3857 charset = char_charset (c, charset_list, &code); | |
3858 } | |
3859 if (code == CHARSET_INVALID_CODE (charset)) | |
3860 abort (); | |
3861 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
|
3862 { |
88365 | 3863 int c1, c2; |
3864 JIS_TO_SJIS (code); | |
3865 c1 = code >> 8, c2 = code & 0xFF; | |
3866 EMIT_TWO_BYTES (c1, c2); | |
3867 } | |
3868 else if (charset == charset_kana) | |
3869 EMIT_ONE_BYTE (code | 0x80); | |
3870 else | |
3871 EMIT_ONE_ASCII_BYTE (code & 0x7F); | |
3872 } | |
3873 } | |
3874 coding->result = CODING_RESULT_SUCCESS; | |
3875 coding->produced_char += produced_chars; | |
3876 coding->produced = dst - coding->destination; | |
3877 return 0; | |
3878 } | |
3879 | |
3880 static int | |
3881 encode_coding_big5 (coding) | |
3882 struct coding_system *coding; | |
3883 { | |
3884 int multibytep = coding->dst_multibyte; | |
3885 int *charbuf = coding->charbuf; | |
3886 int *charbuf_end = charbuf + coding->charbuf_used; | |
3887 unsigned char *dst = coding->destination + coding->produced; | |
3888 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
3889 int safe_room = 4; | |
3890 int produced_chars = 0; | |
3891 Lisp_Object attrs, eol_type, charset_list, val; | |
3892 int ascii_compatible; | |
3893 struct charset *charset_roman, *charset_big5; | |
3894 int c; | |
3895 | |
3896 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
3897 val = charset_list; | |
3898 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
3899 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
3900 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
3901 | |
3902 while (charbuf < charbuf_end) | |
3903 { | |
3904 ASSURE_DESTINATION (safe_room); | |
3905 c = *charbuf++; | |
3906 /* Now encode the character C. */ | |
3907 if (ASCII_CHAR_P (c) && ascii_compatible) | |
3908 EMIT_ONE_ASCII_BYTE (c); | |
3909 else | |
3910 { | |
3911 unsigned code; | |
3912 struct charset *charset = char_charset (c, charset_list, &code); | |
3913 | |
3914 if (! charset) | |
3915 { | |
3916 c = coding->default_char; | |
3917 charset = char_charset (c, charset_list, &code); | |
3918 } | |
3919 if (code == CHARSET_INVALID_CODE (charset)) | |
3920 abort (); | |
3921 if (charset == charset_big5) | |
3922 { | |
3923 int c1, c2; | |
3924 | |
3925 c1 = code >> 8, c2 = code & 0xFF; | |
3926 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
|
3927 } |
17052 | 3928 else |
88365 | 3929 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
17052 | 3930 } |
88365 | 3931 } |
3932 coding->result = CODING_RESULT_SUCCESS; | |
3933 coding->produced_char += produced_chars; | |
3934 coding->produced = dst - coding->destination; | |
3935 return 0; | |
17052 | 3936 } |
3937 | |
3938 | |
88365 | 3939 /*** 10. CCL handlers ***/ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
3940 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
3941 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
3942 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
|
3943 encoder/decoder are written in CCL program. If it is, return |
88365 | 3944 CATEGORY_MASK_CCL, else return 0. */ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
3945 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3946 static int |
88365 | 3947 detect_coding_ccl (coding, mask) |
3948 struct coding_system *coding; | |
3949 int *mask; | |
3950 { | |
3951 unsigned char *src = coding->source, *src_base = src; | |
3952 unsigned char *src_end = coding->source + coding->src_bytes; | |
3953 int multibytep = coding->src_multibyte; | |
3954 int consumed_chars = 0; | |
3955 int found = 0; | |
3956 unsigned char *valids = CODING_CCL_VALIDS (coding); | |
3957 int head_ascii = coding->head_ascii; | |
3958 Lisp_Object attrs; | |
3959 | |
3960 coding = &coding_categories[coding_category_ccl]; | |
3961 attrs = CODING_ID_ATTRS (coding->id); | |
3962 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
3963 src += head_ascii; | |
3964 | |
3965 while (1) | |
3966 { | |
3967 int c; | |
3968 ONE_MORE_BYTE (c); | |
3969 if (! valids[c]) | |
3970 break; | |
3971 if (!found && valids[c] > 1) | |
3972 found = 1; | |
3973 } | |
3974 *mask &= ~CATEGORY_MASK_CCL; | |
3975 return 0; | |
3976 | |
3977 no_more_source: | |
3978 if (!found) | |
3979 return 0; | |
3980 *mask &= CATEGORY_MASK_CCL; | |
3981 return 1; | |
3982 } | |
3983 | |
3984 static void | |
3985 decode_coding_ccl (coding) | |
3986 struct coding_system *coding; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
3987 { |
88365 | 3988 unsigned char *src = coding->source + coding->consumed; |
3989 unsigned char *src_end = coding->source + coding->src_bytes; | |
3990 int *charbuf = coding->charbuf; | |
3991 int *charbuf_end = charbuf + coding->charbuf_size; | |
3992 int consumed_chars = 0; | |
3993 int multibytep = coding->src_multibyte; | |
3994 struct ccl_program ccl; | |
3995 int source_charbuf[1024]; | |
3996 int source_byteidx[1024]; | |
3997 | |
3998 setup_ccl_program (&ccl, CODING_CCL_DECODER (coding)); | |
3999 | |
4000 while (src < src_end) | |
4001 { | |
4002 unsigned char *p = src; | |
4003 int *source, *source_end; | |
4004 int i = 0; | |
4005 | |
4006 if (multibytep) | |
4007 while (i < 1024 && p < src_end) | |
4008 { | |
4009 source_byteidx[i] = p - src; | |
4010 source_charbuf[i++] = STRING_CHAR_ADVANCE (p); | |
4011 } | |
4012 else | |
4013 while (i < 1024 && p < src_end) | |
4014 source_charbuf[i++] = *p++; | |
4015 | |
4016 if (p == src_end && coding->mode & CODING_MODE_LAST_BLOCK) | |
4017 ccl.last_block = 1; | |
4018 | |
4019 source = source_charbuf; | |
4020 source_end = source + i; | |
4021 while (source < source_end) | |
4022 { | |
4023 ccl_driver (&ccl, source, charbuf, | |
4024 source_end - source, charbuf_end - charbuf); | |
4025 source += ccl.consumed; | |
4026 charbuf += ccl.produced; | |
4027 if (ccl.status != CCL_STAT_SUSPEND_BY_DST) | |
4028 break; | |
4029 } | |
4030 if (source < source_end) | |
4031 src += source_byteidx[source - source_charbuf]; | |
4032 else | |
4033 src = p; | |
4034 consumed_chars += source - source_charbuf; | |
4035 | |
4036 if (ccl.status != CCL_STAT_SUSPEND_BY_SRC | |
4037 && ccl.status != CODING_RESULT_INSUFFICIENT_SRC) | |
4038 break; | |
4039 } | |
4040 | |
4041 switch (ccl.status) | |
4042 { | |
4043 case CCL_STAT_SUSPEND_BY_SRC: | |
4044 coding->result = CODING_RESULT_INSUFFICIENT_SRC; | |
4045 break; | |
4046 case CCL_STAT_SUSPEND_BY_DST: | |
4047 break; | |
4048 case CCL_STAT_QUIT: | |
4049 case CCL_STAT_INVALID_CMD: | |
4050 coding->result = CODING_RESULT_INTERRUPT; | |
4051 break; | |
4052 default: | |
4053 coding->result = CODING_RESULT_SUCCESS; | |
4054 break; | |
4055 } | |
4056 coding->consumed_char += consumed_chars; | |
4057 coding->consumed = src - coding->source; | |
4058 coding->charbuf_used = charbuf - coding->charbuf; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4059 } |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4060 |
88365 | 4061 static int |
4062 encode_coding_ccl (coding) | |
4063 struct coding_system *coding; | |
4064 { | |
4065 struct ccl_program ccl; | |
4066 int multibytep = coding->dst_multibyte; | |
4067 int *charbuf = coding->charbuf; | |
4068 int *charbuf_end = charbuf + coding->charbuf_used; | |
4069 unsigned char *dst = coding->destination + coding->produced; | |
4070 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4071 unsigned char *adjusted_dst_end = dst_end - 1; | |
4072 int destination_charbuf[1024]; | |
4073 int i, produced_chars = 0; | |
4074 | |
4075 setup_ccl_program (&ccl, CODING_CCL_ENCODER (coding)); | |
4076 | |
4077 ccl.last_block = coding->mode & CODING_MODE_LAST_BLOCK; | |
4078 ccl.dst_multibyte = coding->dst_multibyte; | |
4079 | |
4080 while (charbuf < charbuf_end && dst < adjusted_dst_end) | |
4081 { | |
4082 int dst_bytes = dst_end - dst; | |
4083 if (dst_bytes > 1024) | |
4084 dst_bytes = 1024; | |
4085 | |
4086 ccl_driver (&ccl, charbuf, destination_charbuf, | |
4087 charbuf_end - charbuf, dst_bytes); | |
4088 charbuf += ccl.consumed; | |
4089 if (multibytep) | |
4090 for (i = 0; i < ccl.produced; i++) | |
4091 EMIT_ONE_BYTE (destination_charbuf[i] & 0xFF); | |
4092 else | |
4093 { | |
4094 for (i = 0; i < ccl.produced; i++) | |
4095 *dst++ = destination_charbuf[i] & 0xFF; | |
4096 produced_chars += ccl.produced; | |
4097 } | |
4098 } | |
4099 | |
4100 switch (ccl.status) | |
4101 { | |
4102 case CCL_STAT_SUSPEND_BY_SRC: | |
4103 coding->result = CODING_RESULT_INSUFFICIENT_SRC; | |
4104 break; | |
4105 case CCL_STAT_SUSPEND_BY_DST: | |
4106 coding->result = CODING_RESULT_INSUFFICIENT_DST; | |
4107 break; | |
4108 case CCL_STAT_QUIT: | |
4109 case CCL_STAT_INVALID_CMD: | |
4110 coding->result = CODING_RESULT_INTERRUPT; | |
4111 break; | |
4112 default: | |
4113 coding->result = CODING_RESULT_SUCCESS; | |
4114 break; | |
4115 } | |
4116 | |
4117 coding->produced_char += produced_chars; | |
4118 coding->produced = dst - coding->destination; | |
4119 return 0; | |
4120 } | |
4121 | |
4122 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4123 |
88365 | 4124 /*** 10, 11. no-conversion handlers ***/ |
17052 | 4125 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4126 /* 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
|
4127 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4128 static void |
88365 | 4129 decode_coding_raw_text (coding) |
17052 | 4130 struct coding_system *coding; |
4131 { | |
88365 | 4132 coding->chars_at_source = 1; |
4133 coding->consumed_char = coding->src_chars; | |
4134 coding->consumed = coding->src_bytes; | |
4135 coding->result = CODING_RESULT_SUCCESS; | |
4136 } | |
4137 | |
4138 static int | |
4139 encode_coding_raw_text (coding) | |
4140 struct coding_system *coding; | |
4141 { | |
4142 int multibytep = coding->dst_multibyte; | |
4143 int *charbuf = coding->charbuf; | |
4144 int *charbuf_end = coding->charbuf + coding->charbuf_used; | |
4145 unsigned char *dst = coding->destination + coding->produced; | |
4146 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4147 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
|
4148 int c; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4149 |
88365 | 4150 if (multibytep) |
4151 { | |
4152 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
4153 | |
4154 if (coding->src_multibyte) | |
4155 while (charbuf < charbuf_end) | |
4156 { | |
4157 ASSURE_DESTINATION (safe_room); | |
4158 c = *charbuf++; | |
4159 if (ASCII_CHAR_P (c)) | |
4160 EMIT_ONE_ASCII_BYTE (c); | |
4161 else if (CHAR_BYTE8_P (c)) | |
4162 { | |
4163 c = CHAR_TO_BYTE8 (c); | |
4164 EMIT_ONE_BYTE (c); | |
4165 } | |
4166 else | |
4167 { | |
4168 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str; | |
4169 | |
4170 CHAR_STRING_ADVANCE (c, p1); | |
4171 while (p0 < p1) | |
4172 EMIT_ONE_BYTE (*p0); | |
4173 } | |
4174 } | |
4175 else | |
4176 while (charbuf < charbuf_end) | |
4177 { | |
4178 ASSURE_DESTINATION (safe_room); | |
4179 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4180 EMIT_ONE_BYTE (c); |
88365 | 4181 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4182 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4183 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4184 { |
88365 | 4185 if (coding->src_multibyte) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4186 { |
88365 | 4187 int safe_room = MAX_MULTIBYTE_LENGTH; |
4188 | |
4189 while (charbuf < charbuf_end) | |
4190 { | |
4191 ASSURE_DESTINATION (safe_room); | |
4192 c = *charbuf++; | |
4193 if (ASCII_CHAR_P (c)) | |
4194 *dst++ = c; | |
4195 else if (CHAR_BYTE8_P (c)) | |
4196 *dst++ = CHAR_TO_BYTE8 (c); | |
4197 else | |
4198 CHAR_STRING_ADVANCE (c, dst); | |
4199 produced_chars++; | |
4200 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4201 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4202 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4203 { |
88365 | 4204 ASSURE_DESTINATION (charbuf_end - charbuf); |
4205 while (charbuf < charbuf_end && dst < dst_end) | |
4206 *dst++ = *charbuf++; | |
4207 produced_chars = dst - (coding->destination + coding->dst_bytes); | |
4208 } | |
4209 } | |
4210 coding->result = CODING_RESULT_SUCCESS; | |
4211 coding->produced_char += produced_chars; | |
4212 coding->produced = dst - coding->destination; | |
4213 return 0; | |
4214 } | |
4215 | |
4216 static int | |
4217 detect_coding_charset (coding, mask) | |
4218 struct coding_system *coding; | |
4219 int *mask; | |
4220 { | |
4221 unsigned char *src = coding->source, *src_base = src; | |
4222 unsigned char *src_end = coding->source + coding->src_bytes; | |
4223 int multibytep = coding->src_multibyte; | |
4224 int consumed_chars = 0; | |
4225 Lisp_Object attrs, valids; | |
4226 | |
4227 coding = &coding_categories[coding_category_charset]; | |
4228 attrs = CODING_ID_ATTRS (coding->id); | |
4229 valids = AREF (attrs, coding_attr_charset_valids); | |
4230 | |
4231 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
4232 src += coding->head_ascii; | |
4233 | |
4234 while (1) | |
4235 { | |
4236 int c; | |
4237 | |
4238 ONE_MORE_BYTE (c); | |
4239 if (NILP (AREF (valids, c))) | |
4240 break; | |
4241 } | |
4242 *mask &= ~CATEGORY_MASK_CHARSET; | |
4243 return 0; | |
4244 | |
4245 no_more_source: | |
4246 *mask &= CATEGORY_MASK_CHARSET; | |
4247 return 1; | |
4248 } | |
4249 | |
4250 static void | |
4251 decode_coding_charset (coding) | |
4252 struct coding_system *coding; | |
4253 { | |
4254 unsigned char *src = coding->source + coding->consumed; | |
4255 unsigned char *src_end = coding->source + coding->src_bytes; | |
4256 unsigned char *src_base; | |
4257 int *charbuf = coding->charbuf; | |
4258 int *charbuf_end = charbuf + coding->charbuf_size; | |
4259 int consumed_chars = 0, consumed_chars_base; | |
4260 int multibytep = coding->src_multibyte; | |
4261 struct charset *charset; | |
4262 Lisp_Object attrs, eol_type, charset_list; | |
4263 | |
4264 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
4265 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
4266 | |
4267 while (1) | |
4268 { | |
4269 int c, c1; | |
4270 | |
4271 src_base = src; | |
4272 consumed_chars_base = consumed_chars; | |
4273 | |
4274 if (charbuf >= charbuf_end) | |
4275 break; | |
4276 | |
4277 ONE_MORE_BYTE (c1); | |
4278 if (c == '\r') | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4279 { |
88365 | 4280 if (EQ (eol_type, Qdos)) |
4281 { | |
4282 if (src == src_end) | |
4283 goto no_more_source; | |
4284 if (*src == '\n') | |
4285 ONE_MORE_BYTE (c); | |
4286 } | |
4287 else if (EQ (eol_type, Qmac)) | |
4288 c = '\n'; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4289 } |
88365 | 4290 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4291 { |
88365 | 4292 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); |
4293 if (c < 0) | |
4294 goto invalid_code; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4295 } |
88365 | 4296 *charbuf++ = c; |
4297 continue; | |
4298 | |
4299 invalid_code: | |
4300 src = src_base; | |
4301 consumed_chars = consumed_chars_base; | |
4302 ONE_MORE_BYTE (c); | |
4303 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
4304 coding->errors++; | |
4305 } | |
4306 | |
4307 no_more_source: | |
4308 coding->consumed_char += consumed_chars_base; | |
4309 coding->consumed = src_base - coding->source; | |
4310 coding->charbuf_used = charbuf - coding->charbuf; | |
4311 } | |
4312 | |
4313 static int | |
4314 encode_coding_charset (coding) | |
4315 struct coding_system *coding; | |
4316 { | |
4317 int multibytep = coding->dst_multibyte; | |
4318 int *charbuf = coding->charbuf; | |
4319 int *charbuf_end = charbuf + coding->charbuf_used; | |
4320 unsigned char *dst = coding->destination + coding->produced; | |
4321 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4322 int safe_room = MAX_MULTIBYTE_LENGTH; | |
4323 int produced_chars = 0; | |
4324 struct charset *charset; | |
4325 Lisp_Object attrs, eol_type, charset_list; | |
4326 int ascii_compatible; | |
4327 int c; | |
4328 | |
4329 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
4330 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
4331 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
4332 | |
4333 while (charbuf < charbuf_end) | |
4334 { | |
4335 unsigned code; | |
4336 | |
4337 ASSURE_DESTINATION (safe_room); | |
4338 c = *charbuf++; | |
4339 if (ascii_compatible && ASCII_CHAR_P (c)) | |
4340 EMIT_ONE_ASCII_BYTE (c); | |
4341 else if ((code = ENCODE_CHAR (charset, c)) | |
4342 != CHARSET_INVALID_CODE (charset)) | |
4343 EMIT_ONE_BYTE (code); | |
4344 else | |
4345 EMIT_ONE_BYTE (coding->default_char); | |
4346 } | |
4347 | |
4348 coding->result = CODING_RESULT_SUCCESS; | |
4349 coding->produced_char += produced_chars; | |
4350 coding->produced = dst - coding->destination; | |
4351 return 0; | |
17052 | 4352 } |
4353 | |
4354 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4355 /*** 7. C library functions ***/ |
17052 | 4356 |
88365 | 4357 /* In Emacs Lisp, coding system is represented by a Lisp symbol which |
17052 | 4358 has a property `coding-system'. The value of this property is a |
88365 | 4359 vector of length 5 (called as coding-vector). Among elements of |
17052 | 4360 this vector, the first (element[0]) and the fifth (element[4]) |
4361 carry important information for decoding/encoding. Before | |
4362 decoding/encoding, this information should be set in fields of a | |
4363 structure of type `coding_system'. | |
4364 | |
88365 | 4365 A value of property `coding-system' can be a symbol of another |
17052 | 4366 subsidiary coding-system. In that case, Emacs gets coding-vector |
4367 from that symbol. | |
4368 | |
4369 `element[0]' contains information to be set in `coding->type'. The | |
4370 value and its meaning is as follows: | |
4371 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4372 0 -- coding_type_emacs_mule |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4373 1 -- coding_type_sjis |
88365 | 4374 2 -- coding_type_iso_2022 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4375 3 -- coding_type_big5 |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4376 4 -- coding_type_ccl encoder/decoder written in CCL |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4377 nil -- coding_type_no_conversion |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4378 t -- coding_type_undecided (automatic conversion on decoding, |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4379 no-conversion on encoding) |
17052 | 4380 |
4381 `element[4]' contains information to be set in `coding->flags' and | |
4382 `coding->spec'. The meaning varies by `coding->type'. | |
4383 | |
88365 | 4384 If `coding->type' is `coding_type_iso_2022', element[4] is a vector |
17052 | 4385 of length 32 (of which the first 13 sub-elements are used now). |
4386 Meanings of these sub-elements are: | |
4387 | |
88365 | 4388 sub-element[N] where N is 0 through 3: to be set in `coding->spec.iso_2022' |
17052 | 4389 If the value is an integer of valid charset, the charset is |
4390 assumed to be designated to graphic register N initially. | |
4391 | |
4392 If the value is minus, it is a minus value of charset which | |
4393 reserves graphic register N, which means that the charset is | |
4394 not designated initially but should be designated to graphic | |
4395 register N just before encoding a character in that charset. | |
4396 | |
4397 If the value is nil, graphic register N is never used on | |
4398 encoding. | |
88365 | 4399 |
17052 | 4400 sub-element[N] where N is 4 through 11: to be set in `coding->flags' |
4401 Each value takes t or nil. See the section ISO2022 of | |
4402 `coding.h' for more information. | |
4403 | |
4404 If `coding->type' is `coding_type_big5', element[4] is t to denote | |
4405 BIG5-ETen or nil to denote BIG5-HKU. | |
4406 | |
4407 If `coding->type' takes the other value, element[4] is ignored. | |
4408 | |
88365 | 4409 Emacs Lisp's coding system also carries information about format of |
17052 | 4410 end-of-line in a value of property `eol-type'. If the value is |
88365 | 4411 integer, 0 means eol_lf, 1 means eol_crlf, and 2 means eol_cr. If |
4412 it is not integer, it should be a vector of subsidiary coding | |
4413 systems of which property `eol-type' has one of above values. | |
17052 | 4414 |
4415 */ | |
4416 | |
88365 | 4417 /* Setup coding context CODING from information about CODING_SYSTEM. |
4418 If CODING_SYSTEM is nil, `no-conversion' is assumed. If | |
4419 CODING_SYSTEM is invalid, signal an error. */ | |
4420 | |
4421 void | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4422 setup_coding_system (coding_system, coding) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4423 Lisp_Object coding_system; |
17052 | 4424 struct coding_system *coding; |
4425 { | |
88365 | 4426 Lisp_Object attrs; |
4427 Lisp_Object eol_type; | |
4428 Lisp_Object coding_type; | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
4429 Lisp_Object val; |
17052 | 4430 |
24460
be35d27a4bfb
(setup_coding_system): Check for CODING_SYSTEM = nil.
Kenichi Handa <handa@m17n.org>
parents:
24425
diff
changeset
|
4431 if (NILP (coding_system)) |
88365 | 4432 coding_system = Qno_conversion; |
4433 | |
4434 CHECK_CODING_SYSTEM_GET_ID (coding_system, coding->id); | |
4435 | |
4436 attrs = CODING_ID_ATTRS (coding->id); | |
4437 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
4438 | |
4439 coding->mode = 0; | |
4440 coding->head_ascii = -1; | |
4441 coding->common_flags | |
4442 = (VECTORP (eol_type) ? CODING_REQUIRE_DETECTION_MASK : 0); | |
4443 | |
4444 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
4445 coding->max_charset_id = XSTRING (val)->size - 1; | |
4446 coding->safe_charsets = (char *) XSTRING (val)->data; | |
4447 coding->default_char = XINT (CODING_ATTR_DEFAULT_CHAR (attrs)); | |
4448 | |
4449 coding_type = CODING_ATTR_TYPE (attrs); | |
4450 if (EQ (coding_type, Qundecided)) | |
4451 { | |
4452 coding->detector = NULL; | |
4453 coding->decoder = decode_coding_raw_text; | |
4454 coding->encoder = encode_coding_raw_text; | |
4455 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; | |
4456 } | |
4457 else if (EQ (coding_type, Qiso_2022)) | |
4458 { | |
4459 int i; | |
4460 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
4461 | |
4462 /* Invoke graphic register 0 to plane 0. */ | |
4463 CODING_ISO_INVOCATION (coding, 0) = 0; | |
4464 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */ | |
4465 CODING_ISO_INVOCATION (coding, 1) | |
4466 = (flags & CODING_ISO_FLAG_SEVEN_BITS ? -1 : 1); | |
4467 /* Setup the initial status of designation. */ | |
4468 for (i = 0; i < 4; i++) | |
4469 CODING_ISO_DESIGNATION (coding, i) = CODING_ISO_INITIAL (coding, i); | |
4470 /* Not single shifting initially. */ | |
4471 CODING_ISO_SINGLE_SHIFTING (coding) = 0; | |
4472 /* Beginning of buffer should also be regarded as bol. */ | |
4473 CODING_ISO_BOL (coding) = 1; | |
4474 coding->detector = detect_coding_iso_2022; | |
4475 coding->decoder = decode_coding_iso_2022; | |
4476 coding->encoder = encode_coding_iso_2022; | |
4477 if (flags & CODING_ISO_FLAG_SAFE) | |
4478 coding->mode |= CODING_MODE_SAFE_ENCODING; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4479 coding->common_flags |
88365 | 4480 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
4481 | CODING_REQUIRE_FLUSHING_MASK); | |
4482 if (flags & CODING_ISO_FLAG_COMPOSITION) | |
4483 coding->common_flags |= CODING_ANNOTATE_COMPOSITION_MASK; | |
4484 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
|
4485 { |
88365 | 4486 setup_iso_safe_charsets (attrs); |
4487 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
4488 coding->max_charset_id = XSTRING (val)->size - 1; | |
4489 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
|
4490 } |
88365 | 4491 CODING_ISO_FLAGS (coding) = flags; |
4492 } | |
4493 else if (EQ (coding_type, Qcharset)) | |
4494 { | |
4495 coding->detector = detect_coding_charset; | |
4496 coding->decoder = decode_coding_charset; | |
4497 coding->encoder = encode_coding_charset; | |
4498 coding->common_flags | |
4499 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
4500 } | |
4501 else if (EQ (coding_type, Qutf_8)) | |
4502 { | |
4503 coding->detector = detect_coding_utf_8; | |
4504 coding->decoder = decode_coding_utf_8; | |
4505 coding->encoder = encode_coding_utf_8; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
4506 coding->common_flags |
88365 | 4507 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
4508 } | |
4509 else if (EQ (coding_type, Qutf_16)) | |
4510 { | |
4511 val = AREF (attrs, coding_attr_utf_16_bom); | |
4512 CODING_UTF_16_BOM (coding) = (CONSP (val) ? utf_16_detect_bom | |
4513 : EQ (val, Qt) ? utf_16_with_bom | |
4514 : utf_16_without_bom); | |
4515 val = AREF (attrs, coding_attr_utf_16_endian); | |
4516 CODING_UTF_16_ENDIAN (coding) = (NILP (val) ? utf_16_big_endian | |
4517 : utf_16_little_endian); | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
4518 CODING_UTF_16_SURROGATE (coding) = 0; |
88365 | 4519 coding->detector = detect_coding_utf_16; |
4520 coding->decoder = decode_coding_utf_16; | |
4521 coding->encoder = encode_coding_utf_16; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4522 coding->common_flags |
88365 | 4523 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
4524 } | |
4525 else if (EQ (coding_type, Qccl)) | |
4526 { | |
4527 coding->detector = detect_coding_ccl; | |
4528 coding->decoder = decode_coding_ccl; | |
4529 coding->encoder = encode_coding_ccl; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4530 coding->common_flags |
88365 | 4531 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
4532 | CODING_REQUIRE_FLUSHING_MASK); | |
4533 } | |
4534 else if (EQ (coding_type, Qemacs_mule)) | |
4535 { | |
4536 coding->detector = detect_coding_emacs_mule; | |
4537 coding->decoder = decode_coding_emacs_mule; | |
4538 coding->encoder = encode_coding_emacs_mule; | |
4539 coding->common_flags | |
4540 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
4541 if (! NILP (AREF (attrs, coding_attr_emacs_mule_full)) | |
4542 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Vemacs_mule_charset_list)) | |
4543 { | |
4544 Lisp_Object tail, safe_charsets; | |
4545 int max_charset_id = 0; | |
4546 | |
4547 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
4548 tail = XCDR (tail)) | |
4549 if (max_charset_id < XFASTINT (XCAR (tail))) | |
4550 max_charset_id = XFASTINT (XCAR (tail)); | |
4551 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
4552 make_number (255)); | |
4553 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
4554 tail = XCDR (tail)) | |
4555 XSTRING (safe_charsets)->data[XFASTINT (XCAR (tail))] = 0; | |
4556 coding->max_charset_id = max_charset_id; | |
4557 coding->safe_charsets = (char *) XSTRING (safe_charsets)->data; | |
4558 } | |
4559 } | |
4560 else if (EQ (coding_type, Qshift_jis)) | |
4561 { | |
4562 coding->detector = detect_coding_sjis; | |
4563 coding->decoder = decode_coding_sjis; | |
4564 coding->encoder = encode_coding_sjis; | |
4565 coding->common_flags | |
4566 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
4567 } | |
4568 else if (EQ (coding_type, Qbig5)) | |
4569 { | |
4570 coding->detector = detect_coding_big5; | |
4571 coding->decoder = decode_coding_big5; | |
4572 coding->encoder = encode_coding_big5; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4573 coding->common_flags |
88365 | 4574 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
4575 } | |
4576 else /* EQ (coding_type, Qraw_text) */ | |
4577 { | |
4578 coding->detector = NULL; | |
4579 coding->decoder = decode_coding_raw_text; | |
4580 coding->encoder = encode_coding_raw_text; | |
4581 coding->common_flags |= CODING_FOR_UNIBYTE_MASK; | |
4582 } | |
4583 | |
4584 return; | |
17052 | 4585 } |
4586 | |
88365 | 4587 /* Return raw-text or one of its subsidiaries that has the same |
4588 eol_type as CODING-SYSTEM. */ | |
4589 | |
4590 Lisp_Object | |
4591 raw_text_coding_system (coding_system) | |
4592 Lisp_Object coding_system; | |
26847 | 4593 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
4594 Lisp_Object spec, attrs; |
88365 | 4595 Lisp_Object eol_type, raw_text_eol_type; |
4596 | |
4597 spec = CODING_SYSTEM_SPEC (coding_system); | |
4598 attrs = AREF (spec, 0); | |
4599 | |
4600 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) | |
4601 return coding_system; | |
4602 | |
4603 eol_type = AREF (spec, 2); | |
4604 if (VECTORP (eol_type)) | |
4605 return Qraw_text; | |
4606 spec = CODING_SYSTEM_SPEC (Qraw_text); | |
4607 raw_text_eol_type = AREF (spec, 2); | |
4608 return (EQ (eol_type, Qunix) ? AREF (raw_text_eol_type, 0) | |
4609 : EQ (eol_type, Qdos) ? AREF (raw_text_eol_type, 1) | |
4610 : AREF (raw_text_eol_type, 2)); | |
26847 | 4611 } |
4612 | |
88365 | 4613 |
4614 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT | |
4615 does, return one of the subsidiary that has the same eol-spec as | |
4616 PARENT. Otherwise, return CODING_SYSTEM. */ | |
4617 | |
4618 Lisp_Object | |
4619 coding_inherit_eol_type (coding_system, parent) | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4620 { |
88365 | 4621 Lisp_Object spec, attrs, eol_type; |
4622 | |
4623 spec = CODING_SYSTEM_SPEC (coding_system); | |
4624 attrs = AREF (spec, 0); | |
4625 eol_type = AREF (spec, 2); | |
4626 if (VECTORP (eol_type)) | |
4627 { | |
4628 Lisp_Object parent_spec; | |
4629 Lisp_Object parent_eol_type; | |
4630 | |
4631 parent_spec | |
4632 = CODING_SYSTEM_SPEC (buffer_defaults.buffer_file_coding_system); | |
4633 parent_eol_type = AREF (parent_spec, 2); | |
4634 if (EQ (parent_eol_type, Qunix)) | |
4635 coding_system = AREF (eol_type, 0); | |
4636 else if (EQ (parent_eol_type, Qdos)) | |
4637 coding_system = AREF (eol_type, 1); | |
4638 else if (EQ (parent_eol_type, Qmac)) | |
4639 coding_system = AREF (eol_type, 2); | |
4640 } | |
4641 return coding_system; | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4642 } |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4643 |
17052 | 4644 /* Emacs has a mechanism to automatically detect a coding system if it |
4645 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
4646 it's impossible to distinguish some coding systems accurately | |
4647 because they use the same range of codes. So, at first, coding | |
4648 systems are categorized into 7, those are: | |
4649 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4650 o coding-category-emacs-mule |
17052 | 4651 |
4652 The category for a coding system which has the same code range | |
4653 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
|
4654 symbol) `emacs-mule' by default. |
17052 | 4655 |
4656 o coding-category-sjis | |
4657 | |
4658 The category for a coding system which has the same code range | |
4659 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
|
4660 symbol) `japanese-shift-jis' by default. |
17052 | 4661 |
4662 o coding-category-iso-7 | |
4663 | |
4664 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
|
4665 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
|
4666 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
|
4667 charsets. Assigned the coding-system (Lisp symbol) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4668 `iso-2022-7bit' by default. |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4669 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4670 o coding-category-iso-7-tight |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4671 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4672 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
|
4673 encode/decode only the specified charsets. |
17052 | 4674 |
4675 o coding-category-iso-8-1 | |
4676 | |
4677 The category for a coding system which has the same code range | |
4678 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
|
4679 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
|
4680 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
|
4681 symbol) `iso-latin-1' by default. |
17052 | 4682 |
4683 o coding-category-iso-8-2 | |
4684 | |
4685 The category for a coding system which has the same code range | |
4686 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
|
4687 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
|
4688 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
|
4689 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
|
4690 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4691 o coding-category-iso-7-else |
17052 | 4692 |
4693 The category for a coding system which has the same code range | |
88365 | 4694 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
|
4695 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
|
4696 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
|
4697 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4698 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
|
4699 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4700 The category for a coding system which has the same code range |
88365 | 4701 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
|
4702 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
|
4703 symbol) `iso-2022-8bit-ss2' by default. |
17052 | 4704 |
4705 o coding-category-big5 | |
4706 | |
4707 The category for a coding system which has the same code range | |
4708 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
|
4709 `cn-big5' by default. |
17052 | 4710 |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4711 o coding-category-utf-8 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4712 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4713 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
|
4714 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
|
4715 symbol) `utf-8' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4716 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4717 o coding-category-utf-16-be |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4718 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4719 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
|
4720 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
|
4721 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
|
4722 `utf-16-be' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4723 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4724 o coding-category-utf-16-le |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4725 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4726 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
|
4727 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
|
4728 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
|
4729 symbol) `utf-16-le' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4730 |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4731 o coding-category-ccl |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4732 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4733 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
|
4734 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
|
4735 coding system is assigned. |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4736 |
17052 | 4737 o coding-category-binary |
4738 | |
4739 The category for a coding system not categorized in any of the | |
4740 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
|
4741 `no-conversion' by default. |
17052 | 4742 |
4743 Each of them is a Lisp symbol and the value is an actual | |
88365 | 4744 `coding-system's (this is also a Lisp symbol) assigned by a user. |
17052 | 4745 What Emacs does actually is to detect a category of coding system. |
4746 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
88365 | 4747 decide only one possible category, it selects a category of the |
17052 | 4748 highest priority. Priorities of categories are also specified by a |
4749 user in a Lisp variable `coding-category-list'. | |
4750 | |
4751 */ | |
4752 | |
88365 | 4753 #define EOL_SEEN_NONE 0 |
4754 #define EOL_SEEN_LF 1 | |
4755 #define EOL_SEEN_CR 2 | |
4756 #define EOL_SEEN_CRLF 4 | |
4757 | |
4758 /* Detect how end-of-line of a text of length CODING->src_bytes | |
4759 pointed by CODING->source is encoded. Return one of | |
4760 EOL_SEEN_XXX. */ | |
17052 | 4761 |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
4762 #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
|
4763 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4764 static int |
88365 | 4765 detect_eol (coding, source, src_bytes) |
4766 struct coding_system *coding; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4767 unsigned char *source; |
88365 | 4768 EMACS_INT src_bytes; |
17052 | 4769 { |
88365 | 4770 Lisp_Object attrs, coding_type; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4771 unsigned char *src = source, *src_end = src + src_bytes; |
17052 | 4772 unsigned char c; |
88365 | 4773 int total = 0; |
4774 int eol_seen = EOL_SEEN_NONE; | |
4775 | |
4776 attrs = CODING_ID_ATTRS (coding->id); | |
4777 coding_type = CODING_ATTR_TYPE (attrs); | |
4778 | |
4779 if (EQ (coding_type, Qccl)) | |
4780 { | |
4781 int msb, lsb; | |
4782 | |
4783 msb = coding->spec.utf_16.endian == utf_16_little_endian; | |
4784 lsb = 1 - msb; | |
4785 | |
4786 while (src + 1 < src_end) | |
17052 | 4787 { |
88365 | 4788 c = src[lsb]; |
4789 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
|
4790 { |
88365 | 4791 int this_eol; |
4792 | |
4793 if (c == '\n') | |
4794 this_eol = EOL_SEEN_LF; | |
4795 else if (src + 3 >= src_end | |
4796 || src[msb + 2] != 0 | |
4797 || src[lsb + 2] != '\n') | |
4798 this_eol = EOL_SEEN_CR; | |
4799 else | |
4800 this_eol = EOL_SEEN_CRLF; | |
4801 | |
4802 if (eol_seen == EOL_SEEN_NONE) | |
4803 /* This is the first end-of-line. */ | |
4804 eol_seen = this_eol; | |
4805 else if (eol_seen != this_eol) | |
4806 { | |
4807 /* The found type is different from what found before. */ | |
4808 eol_seen = EOL_SEEN_LF; | |
4809 break; | |
4810 } | |
4811 if (++total == MAX_EOL_CHECK_COUNT) | |
4812 break; | |
4813 } | |
4814 src += 2; | |
4815 } | |
4816 } | |
4817 else | |
4818 { | |
4819 while (src < src_end) | |
4820 { | |
4821 c = *src++; | |
4822 if (c == '\n' || c == '\r') | |
4823 { | |
4824 int this_eol; | |
4825 | |
4826 if (c == '\n') | |
4827 this_eol = EOL_SEEN_LF; | |
4828 else if (src >= src_end || *src != '\n') | |
4829 this_eol = EOL_SEEN_CR; | |
4830 else | |
4831 this_eol = EOL_SEEN_CRLF, src++; | |
4832 | |
4833 if (eol_seen == EOL_SEEN_NONE) | |
4834 /* This is the first end-of-line. */ | |
4835 eol_seen = this_eol; | |
4836 else if (eol_seen != this_eol) | |
4837 { | |
4838 /* The found type is different from what found before. */ | |
4839 eol_seen = EOL_SEEN_LF; | |
4840 break; | |
4841 } | |
4842 if (++total == MAX_EOL_CHECK_COUNT) | |
4843 break; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4844 } |
17052 | 4845 } |
4846 } | |
88365 | 4847 return eol_seen; |
17052 | 4848 } |
4849 | |
88365 | 4850 |
4851 static void | |
4852 adjust_coding_eol_type (coding, eol_seen) | |
4853 struct coding_system *coding; | |
4854 int eol_seen; | |
4855 { | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
4856 Lisp_Object eol_type; |
88365 | 4857 |
4858 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
4859 if (eol_seen & EOL_SEEN_LF) | |
4860 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 0)); | |
4861 else if (eol_type & EOL_SEEN_CRLF) | |
4862 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 1)); | |
4863 else if (eol_type & EOL_SEEN_CR) | |
4864 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 2)); | |
4865 } | |
4866 | |
4867 /* Detect how a text specified in CODING is encoded. If a coding | |
4868 system is detected, update fields of CODING by the detected coding | |
4869 system. */ | |
4870 | |
4871 void | |
4872 detect_coding (coding) | |
4873 struct coding_system *coding; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4874 { |
88365 | 4875 unsigned char *src, *src_end; |
4876 Lisp_Object attrs, coding_type; | |
4877 | |
4878 coding->consumed = coding->consumed_char = 0; | |
4879 coding->produced = coding->produced_char = 0; | |
4880 coding_set_source (coding); | |
4881 | |
4882 src_end = coding->source + coding->src_bytes; | |
4883 | |
4884 /* If we have not yet decided the text encoding type, detect it | |
4885 now. */ | |
4886 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qundecided)) | |
4887 { | |
4888 int mask = CATEGORY_MASK_ANY; | |
4889 int c, i; | |
4890 | |
4891 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
|
4892 { |
88365 | 4893 c = *src; |
4894 if (c & 0x80 || (c < 0x20 && (c == ISO_CODE_ESC | |
4895 || c == ISO_CODE_SI | |
4896 || c == ISO_CODE_SO))) | |
4897 break; | |
4898 } | |
4899 coding->head_ascii = src - (coding->source + coding->consumed); | |
4900 | |
4901 if (coding->head_ascii < coding->src_bytes) | |
4902 { | |
4903 int detected = 0; | |
4904 | |
4905 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
|
4906 { |
88365 | 4907 enum coding_category category = coding_priorities[i]; |
4908 struct coding_system *this = coding_categories + category; | |
4909 | |
4910 if (category >= coding_category_raw_text | |
4911 || detected & (1 << category)) | |
4912 continue; | |
4913 | |
4914 if (this->id < 0) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4915 { |
88365 | 4916 /* No coding system of this category is defined. */ |
4917 mask &= ~(1 << category); | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4918 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4919 else |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4920 { |
88365 | 4921 detected |= detected_mask[category]; |
4922 if ((*(this->detector)) (coding, &mask)) | |
4923 break; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4924 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4925 } |
88365 | 4926 if (! mask) |
4927 setup_coding_system (Qraw_text, coding); | |
4928 else if (mask != CATEGORY_MASK_ANY) | |
4929 for (i = 0; i < coding_category_raw_text; i++) | |
4930 { | |
4931 enum coding_category category = coding_priorities[i]; | |
4932 struct coding_system *this = coding_categories + category; | |
4933 | |
4934 if (mask & (1 << category)) | |
4935 { | |
4936 setup_coding_system (CODING_ID_NAME (this->id), coding); | |
4937 break; | |
4938 } | |
4939 } | |
4940 } | |
4941 } | |
4942 | |
4943 attrs = CODING_ID_ATTRS (coding->id); | |
4944 coding_type = CODING_ATTR_TYPE (attrs); | |
4945 | |
4946 /* If we have not yet decided the EOL type, detect it now. But, the | |
4947 detection is impossible for a CCL based coding system, in which | |
4948 case, we detct the EOL type after decoding. */ | |
4949 if (VECTORP (CODING_ID_EOL_TYPE (coding->id)) | |
4950 && ! EQ (coding_type, Qccl)) | |
4951 { | |
4952 int eol_seen = detect_eol (coding, coding->source, coding->src_bytes); | |
4953 | |
4954 if (eol_seen != EOL_SEEN_NONE) | |
4955 adjust_coding_eol_type (coding, eol_seen); | |
4956 } | |
4957 } | |
4958 | |
4959 | |
4960 static void | |
4961 decode_eol (coding) | |
4962 struct coding_system *coding; | |
4963 { | |
4964 if (VECTORP (CODING_ID_EOL_TYPE (coding->id))) | |
4965 { | |
4966 unsigned char *p = CHAR_POS_ADDR (coding->dst_pos); | |
4967 unsigned char *pend = p + coding->produced; | |
4968 int eol_seen = EOL_SEEN_NONE; | |
4969 | |
4970 for (; p < pend; p++) | |
4971 { | |
4972 if (*p == '\n') | |
4973 eol_seen |= EOL_SEEN_LF; | |
4974 else if (*p == '\r') | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4975 { |
88365 | 4976 if (p + 1 < pend && *(p + 1) == '\n') |
4977 { | |
4978 eol_seen |= EOL_SEEN_CRLF; | |
4979 p++; | |
4980 } | |
4981 else | |
4982 eol_seen |= EOL_SEEN_CR; | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4983 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4984 } |
88365 | 4985 if (eol_seen != EOL_SEEN_NONE) |
4986 adjust_coding_eol_type (coding, eol_seen); | |
4987 } | |
4988 | |
4989 if (EQ (CODING_ID_EOL_TYPE (coding->id), Qmac)) | |
4990 { | |
4991 unsigned char *p = CHAR_POS_ADDR (coding->dst_pos); | |
4992 unsigned char *pend = p + coding->produced; | |
4993 | |
4994 for (; p < pend; p++) | |
4995 if (*p == '\r') | |
4996 *p = '\n'; | |
4997 } | |
4998 else if (EQ (CODING_ID_EOL_TYPE (coding->id), Qdos)) | |
4999 { | |
5000 unsigned char *p, *pbeg, *pend; | |
5001 Lisp_Object undo_list; | |
5002 | |
5003 move_gap_both (coding->dst_pos + coding->produced_char, | |
5004 coding->dst_pos_byte + coding->produced); | |
5005 undo_list = current_buffer->undo_list; | |
5006 current_buffer->undo_list = Qt; | |
5007 del_range_2 (coding->dst_pos, coding->dst_pos_byte, GPT, GPT_BYTE, Qnil); | |
5008 current_buffer->undo_list = undo_list; | |
5009 pbeg = GPT_ADDR; | |
5010 pend = pbeg + coding->produced; | |
5011 | |
5012 for (p = pend - 1; p >= pbeg; p--) | |
5013 if (*p == '\r') | |
5014 { | |
5015 safe_bcopy ((char *) (p + 1), (char *) p, pend - p - 1); | |
5016 pend--; | |
5017 } | |
5018 coding->produced_char -= coding->produced - (pend - pbeg); | |
5019 coding->produced = pend - pbeg; | |
5020 insert_from_gap (coding->produced_char, coding->produced); | |
17052 | 5021 } |
5022 } | |
5023 | |
88365 | 5024 static void |
5025 translate_chars (coding, table) | |
17052 | 5026 struct coding_system *coding; |
88365 | 5027 Lisp_Object table; |
17052 | 5028 { |
88365 | 5029 int *charbuf = coding->charbuf; |
5030 int *charbuf_end = charbuf + coding->charbuf_used; | |
5031 int c; | |
5032 | |
5033 if (coding->chars_at_source) | |
5034 return; | |
5035 | |
5036 while (charbuf < charbuf_end) | |
5037 { | |
5038 c = *charbuf; | |
5039 if (c < 0) | |
5040 charbuf += c; | |
5041 else | |
5042 *charbuf++ = translate_char (table, c); | |
5043 } | |
17052 | 5044 } |
5045 | |
88365 | 5046 static int |
5047 produce_chars (coding) | |
5048 struct coding_system *coding; | |
17052 | 5049 { |
88365 | 5050 unsigned char *dst = coding->destination + coding->produced; |
5051 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5052 int produced; | |
5053 int produced_chars = 0; | |
5054 | |
5055 if (! coding->chars_at_source) | |
5056 { | |
5057 /* Characters are in coding->charbuf. */ | |
5058 int *buf = coding->charbuf; | |
5059 int *buf_end = buf + coding->charbuf_used; | |
5060 unsigned char *adjusted_dst_end; | |
5061 | |
5062 if (BUFFERP (coding->src_object) | |
5063 && EQ (coding->src_object, coding->dst_object)) | |
5064 dst_end = coding->source + coding->consumed; | |
5065 adjusted_dst_end = dst_end - MAX_MULTIBYTE_LENGTH; | |
5066 | |
5067 while (buf < buf_end) | |
5068 { | |
5069 int c = *buf++; | |
5070 | |
5071 if (dst >= adjusted_dst_end) | |
5072 { | |
5073 dst = alloc_destination (coding, | |
5074 buf_end - buf + MAX_MULTIBYTE_LENGTH, | |
5075 dst); | |
5076 dst_end = coding->destination + coding->dst_bytes; | |
5077 adjusted_dst_end = dst_end - MAX_MULTIBYTE_LENGTH; | |
5078 } | |
5079 if (c >= 0) | |
5080 { | |
5081 if (coding->dst_multibyte | |
5082 || ! CHAR_BYTE8_P (c)) | |
5083 CHAR_STRING_ADVANCE (c, dst); | |
5084 else | |
5085 *dst++ = CHAR_TO_BYTE8 (c); | |
5086 produced_chars++; | |
5087 } | |
5088 else | |
5089 /* This is an annotation data. */ | |
5090 buf -= c + 1; | |
5091 } | |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5092 } |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5093 else |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5094 { |
88365 | 5095 unsigned char *src = coding->source; |
5096 unsigned char *src_end = src + coding->src_bytes; | |
5097 Lisp_Object eol_type; | |
5098 | |
5099 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
5100 | |
5101 if (coding->src_multibyte != coding->dst_multibyte) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5102 { |
88365 | 5103 if (coding->src_multibyte) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5104 { |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5105 int multibytep = 1; |
88365 | 5106 int consumed_chars; |
5107 | |
5108 while (1) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5109 { |
88365 | 5110 unsigned char *src_base = src; |
5111 int c; | |
5112 | |
5113 ONE_MORE_BYTE (c); | |
5114 if (c == '\r') | |
5115 { | |
5116 if (EQ (eol_type, Qdos)) | |
5117 { | |
5118 if (src < src_end | |
5119 && *src == '\n') | |
5120 c = *src++; | |
5121 } | |
5122 else if (EQ (eol_type, Qmac)) | |
5123 c = '\n'; | |
5124 } | |
5125 if (dst == dst_end) | |
5126 { | |
5127 EMACS_INT offset = src - coding->source; | |
5128 | |
5129 dst = alloc_destination (coding, src_end - src + 1, dst); | |
5130 dst_end = coding->destination + coding->dst_bytes; | |
5131 coding_set_source (coding); | |
5132 src = coding->source + offset; | |
5133 src_end = coding->source + coding->src_bytes; | |
5134 } | |
5135 *dst++ = c; | |
5136 produced_chars++; | |
5137 } | |
5138 no_more_source: | |
5139 ; | |
5140 } | |
5141 else | |
5142 while (src < src_end) | |
5143 { | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5144 int multibytep = 1; |
88365 | 5145 int c = *src++; |
5146 | |
5147 if (c == '\r') | |
5148 { | |
5149 if (EQ (eol_type, Qdos)) | |
5150 { | |
5151 if (src < src_end | |
5152 && *src == '\n') | |
5153 c = *src++; | |
5154 } | |
5155 else if (EQ (eol_type, Qmac)) | |
5156 c = '\n'; | |
5157 } | |
5158 if (dst >= dst_end - 1) | |
5159 { | |
5160 EMACS_INT offset = src - coding->source; | |
5161 | |
5162 dst = alloc_destination (coding, src_end - src + 2, dst); | |
5163 dst_end = coding->destination + coding->dst_bytes; | |
5164 coding_set_source (coding); | |
5165 src = coding->source + offset; | |
5166 src_end = coding->source + coding->src_bytes; | |
5167 } | |
5168 EMIT_ONE_BYTE (c); | |
5169 } | |
5170 } | |
5171 else | |
5172 { | |
5173 if (!EQ (coding->src_object, coding->dst_object)) | |
5174 { | |
5175 int require = coding->src_bytes - coding->dst_bytes; | |
5176 | |
5177 if (require > 0) | |
5178 { | |
5179 EMACS_INT offset = src - coding->source; | |
5180 | |
5181 dst = alloc_destination (coding, require, dst); | |
5182 coding_set_source (coding); | |
5183 src = coding->source + offset; | |
5184 src_end = coding->source + coding->src_bytes; | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5185 } |
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5186 } |
88365 | 5187 produced_chars = coding->src_chars; |
5188 while (src < src_end) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5189 { |
88365 | 5190 int c = *src++; |
5191 | |
5192 if (c == '\r') | |
5193 { | |
5194 if (EQ (eol_type, Qdos)) | |
5195 { | |
5196 if (src < src_end | |
5197 && *src == '\n') | |
5198 c = *src++; | |
5199 produced_chars--; | |
5200 } | |
5201 else if (EQ (eol_type, Qmac)) | |
5202 c = '\n'; | |
5203 } | |
5204 *dst++ = c; | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5205 } |
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5206 } |
88365 | 5207 } |
5208 | |
5209 produced = dst - (coding->destination + coding->produced); | |
5210 if (BUFFERP (coding->dst_object)) | |
5211 insert_from_gap (produced_chars, produced); | |
5212 coding->produced += produced; | |
5213 coding->produced_char += produced_chars; | |
5214 return produced_chars; | |
5215 } | |
5216 | |
5217 /* [ -LENGTH CHAR_POS_OFFSET MASK METHOD COMP_LEN ] | |
5218 or | |
5219 [ -LENGTH CHAR_POS_OFFSET MASK METHOD COMP_LEN COMPONENTS... ] | |
5220 */ | |
5221 | |
5222 static INLINE void | |
5223 produce_composition (coding, charbuf) | |
5224 struct coding_system *coding; | |
5225 int *charbuf; | |
5226 { | |
5227 Lisp_Object buffer; | |
5228 int len; | |
5229 EMACS_INT pos; | |
5230 enum composition_method method; | |
5231 int cmp_len; | |
5232 Lisp_Object components; | |
5233 | |
5234 buffer = coding->dst_object; | |
5235 len = -charbuf[0]; | |
5236 pos = coding->dst_pos + charbuf[1]; | |
5237 method = (enum composition_method) (charbuf[3]); | |
5238 cmp_len = charbuf[4]; | |
5239 | |
5240 if (method == COMPOSITION_RELATIVE) | |
5241 components = Qnil; | |
5242 else | |
5243 { | |
5244 Lisp_Object args[MAX_COMPOSITION_COMPONENTS * 2 - 1]; | |
5245 int i; | |
5246 | |
5247 len -= 5; | |
5248 charbuf += 5; | |
5249 for (i = 0; i < len; i++) | |
5250 args[i] = make_number (charbuf[i]); | |
5251 components = (method == COMPOSITION_WITH_ALTCHARS | |
5252 ? Fstring (len, args) : Fvector (len, args)); | |
5253 } | |
5254 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
|
5255 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5256 |
88365 | 5257 static int * |
5258 save_composition_data (buf, buf_end, prop) | |
5259 int *buf, *buf_end; | |
5260 Lisp_Object prop; | |
5261 { | |
5262 enum composition_method method = COMPOSITION_METHOD (prop); | |
5263 int cmp_len = COMPOSITION_LENGTH (prop); | |
5264 | |
5265 if (buf + 4 + (MAX_COMPOSITION_COMPONENTS * 2 - 1) > buf_end) | |
5266 return NULL; | |
5267 | |
5268 buf[1] = CODING_ANNOTATE_COMPOSITION_MASK; | |
5269 buf[2] = method; | |
5270 buf[3] = cmp_len; | |
5271 | |
5272 if (method == COMPOSITION_RELATIVE) | |
5273 buf[0] = 4; | |
5274 else | |
5275 { | |
5276 Lisp_Object components; | |
5277 int len, i; | |
5278 | |
5279 components = COMPOSITION_COMPONENTS (prop); | |
5280 if (VECTORP (components)) | |
5281 { | |
5282 len = XVECTOR (components)->size; | |
5283 for (i = 0; i < len; i++) | |
5284 buf[4 + i] = XINT (AREF (components, i)); | |
5285 } | |
5286 else if (STRINGP (components)) | |
5287 { | |
5288 int i_byte; | |
5289 | |
5290 len = XSTRING (components)->size; | |
5291 i = i_byte = 0; | |
5292 while (i < len) | |
5293 FETCH_STRING_CHAR_ADVANCE (buf[4 + i], components, i, i_byte); | |
5294 } | |
5295 else if (INTEGERP (components)) | |
5296 { | |
5297 len = 1; | |
5298 buf[4] = XINT (components); | |
5299 } | |
5300 else if (CONSP (components)) | |
5301 { | |
5302 for (len = 0; CONSP (components); | |
5303 len++, components = XCDR (components)) | |
5304 buf[4 + len] = XINT (XCAR (components)); | |
5305 } | |
5306 else | |
5307 abort (); | |
5308 buf[0] = 4 + len; | |
5309 } | |
5310 return (buf + buf[0]); | |
5311 } | |
5312 | |
5313 #define CHARBUF_SIZE 0x4000 | |
5314 | |
5315 #define ALLOC_CONVERSION_WORK_AREA(coding) \ | |
5316 do { \ | |
5317 int size = CHARBUF_SIZE;; \ | |
5318 \ | |
5319 coding->charbuf = NULL; \ | |
5320 while (size > 1024) \ | |
5321 { \ | |
5322 coding->charbuf = (int *) alloca (sizeof (int) * size); \ | |
5323 if (coding->charbuf) \ | |
5324 break; \ | |
5325 size >>= 1; \ | |
5326 } \ | |
5327 if (! coding->charbuf) \ | |
5328 { \ | |
5329 coding->result = CODING_RESULT_INSUFFICIENT_MEM; \ | |
5330 return coding->result; \ | |
5331 } \ | |
5332 coding->charbuf_size = size; \ | |
5333 } while (0) | |
5334 | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5335 |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5336 static void |
88365 | 5337 produce_annotation (coding) |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5338 struct coding_system *coding; |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5339 { |
88365 | 5340 int *charbuf = coding->charbuf; |
5341 int *charbuf_end = charbuf + coding->charbuf_used; | |
5342 | |
5343 while (charbuf < charbuf_end) | |
5344 { | |
5345 if (*charbuf >= 0) | |
5346 charbuf++; | |
5347 else | |
29877
7b43e1fb478a
(decode_eol_post_ccl): Special handling for undecided
Eli Zaretskii <eliz@gnu.org>
parents:
29725
diff
changeset
|
5348 { |
88365 | 5349 int len = -*charbuf; |
5350 switch (charbuf[2]) | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5351 { |
88365 | 5352 case CODING_ANNOTATE_COMPOSITION_MASK: |
5353 produce_composition (coding, charbuf); | |
5354 break; | |
5355 default: | |
5356 abort (); | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5357 } |
88365 | 5358 charbuf += len; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5359 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5360 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5361 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5362 |
88365 | 5363 /* Decode the data at CODING->src_object into CODING->dst_object. |
5364 CODING->src_object is a buffer, a string, or nil. | |
5365 CODING->dst_object is a buffer. | |
5366 | |
5367 If CODING->src_object is a buffer, it must be the current buffer. | |
5368 In this case, if CODING->src_pos is positive, it is a position of | |
5369 the source text in the buffer, otherwise, the source text is in the | |
5370 gap area of the buffer, and CODING->src_pos specifies the offset of | |
5371 the text from GPT (which must be the same as PT). If this is the | |
5372 same buffer as CODING->dst_object, CODING->src_pos must be | |
5373 negative. | |
5374 | |
5375 If CODING->src_object is a string, CODING->src_pos in an index to | |
5376 that string. | |
5377 | |
5378 If CODING->src_object is nil, CODING->source must already point to | |
5379 the non-relocatable memory area. In this case, CODING->src_pos is | |
5380 an offset from CODING->source. | |
5381 | |
5382 The decoded data is inserted at the current point of the buffer | |
5383 CODING->dst_object. | |
5384 */ | |
5385 | |
5386 static int | |
5387 decode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5388 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5389 { |
88365 | 5390 Lisp_Object attrs; |
5391 | |
5392 if (BUFFERP (coding->src_object) | |
5393 && coding->src_pos > 0 | |
5394 && coding->src_pos < GPT | |
5395 && coding->src_pos + coding->src_chars > GPT) | |
5396 move_gap_both (coding->src_pos, coding->src_pos_byte); | |
5397 | |
5398 if (BUFFERP (coding->dst_object)) | |
5399 { | |
5400 if (current_buffer != XBUFFER (coding->dst_object)) | |
5401 set_buffer_internal (XBUFFER (coding->dst_object)); | |
5402 if (GPT != PT) | |
5403 move_gap_both (PT, PT_BYTE); | |
5404 } | |
5405 | |
5406 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
|
5407 coding->produced = coding->produced_char = 0; |
88365 | 5408 coding->chars_at_source = 0; |
5409 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
|
5410 coding->errors = 0; |
88365 | 5411 |
5412 ALLOC_CONVERSION_WORK_AREA (coding); | |
5413 | |
5414 attrs = CODING_ID_ATTRS (coding->id); | |
5415 | |
5416 do | |
5417 { | |
5418 coding_set_source (coding); | |
5419 coding->annotated = 0; | |
5420 (*(coding->decoder)) (coding); | |
5421 if (!NILP (CODING_ATTR_DECODE_TBL (attrs))) | |
5422 translate_chars (CODING_ATTR_DECODE_TBL (attrs), coding); | |
5423 coding_set_destination (coding); | |
5424 produce_chars (coding); | |
5425 if (coding->annotated) | |
5426 produce_annotation (coding); | |
5427 } | |
5428 while (coding->consumed < coding->src_bytes | |
5429 && ! coding->result); | |
5430 | |
5431 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qccl) | |
5432 && SYMBOLP (CODING_ID_EOL_TYPE (coding->id)) | |
5433 && ! EQ (CODING_ID_EOL_TYPE (coding->id), Qunix)) | |
5434 decode_eol (coding); | |
5435 | |
5436 coding->carryover_bytes = 0; | |
5437 if (coding->consumed < coding->src_bytes) | |
5438 { | |
5439 int nbytes = coding->src_bytes - coding->consumed; | |
5440 unsigned char *src; | |
5441 | |
5442 coding_set_source (coding); | |
5443 coding_set_destination (coding); | |
5444 src = coding->source + coding->consumed; | |
5445 | |
5446 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
|
5447 { |
88365 | 5448 /* Flush out unprocessed data as binary chars. We are sure |
5449 that the number of data is less than the size of | |
5450 coding->charbuf. */ | |
5451 int *charbuf = coding->charbuf; | |
5452 | |
5453 while (nbytes-- > 0) | |
5454 { | |
5455 int c = *src++; | |
5456 *charbuf++ = (c & 0x80 ? - c : c); | |
5457 } | |
5458 produce_chars (coding); | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5459 } |
88365 | 5460 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5461 { |
88365 | 5462 /* Record unprocessed bytes in coding->carryover. We are |
5463 sure that the number of data is less than the size of | |
5464 coding->carryover. */ | |
5465 unsigned char *p = coding->carryover; | |
5466 | |
5467 coding->carryover_bytes = nbytes; | |
5468 while (nbytes-- > 0) | |
5469 *p++ = *src++; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5470 } |
88365 | 5471 coding->consumed = coding->src_bytes; |
5472 } | |
5473 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5474 return coding->result; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5475 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5476 |
88365 | 5477 static void |
5478 consume_chars (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5479 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5480 { |
88365 | 5481 int *buf = coding->charbuf; |
5482 /* -1 is to compensate for CRLF. */ | |
5483 int *buf_end = coding->charbuf + coding->charbuf_size - 1; | |
5484 unsigned char *src = coding->source + coding->consumed; | |
5485 int pos = coding->src_pos + coding->consumed_char; | |
5486 int end_pos = coding->src_pos + coding->src_chars; | |
5487 int multibytep = coding->src_multibyte; | |
5488 Lisp_Object eol_type; | |
5489 int c; | |
5490 int start, end, stop; | |
5491 Lisp_Object object, prop; | |
5492 | |
5493 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
5494 if (VECTORP (eol_type)) | |
5495 eol_type = Qunix; | |
5496 | |
5497 object = coding->src_object; | |
5498 | |
5499 /* Note: composition handling is not yet implemented. */ | |
5500 coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
5501 | |
5502 if (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK | |
5503 && find_composition (pos, end_pos, &start, &end, &prop, object) | |
5504 && end <= end_pos | |
5505 && (start >= pos | |
5506 || (find_composition (end, end_pos, &start, &end, &prop, object) | |
5507 && end <= end_pos))) | |
5508 stop = start; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5509 else |
88365 | 5510 stop = end_pos; |
5511 | |
5512 while (buf < buf_end) | |
5513 { | |
5514 if (pos == stop) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5515 { |
88365 | 5516 int *p; |
5517 | |
5518 if (pos == end_pos) | |
5519 break; | |
5520 p = save_composition_data (buf, buf_end, prop); | |
5521 if (p == NULL) | |
5522 break; | |
5523 buf = p; | |
5524 if (find_composition (end, end_pos, &start, &end, &prop, object) | |
5525 && end <= end_pos) | |
5526 stop = start; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5527 else |
88365 | 5528 stop = end_pos; |
5529 } | |
5530 | |
5531 if (! multibytep) | |
5532 c = *src++; | |
5533 else | |
5534 c = STRING_CHAR_ADVANCE (src); | |
5535 if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) | |
5536 c = '\n'; | |
5537 if (! EQ (eol_type, Qunix)) | |
5538 { | |
5539 if (c == '\n') | |
5540 { | |
5541 if (EQ (eol_type, Qdos)) | |
5542 *buf++ = '\r'; | |
5543 else | |
5544 c = '\r'; | |
5545 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5546 } |
88365 | 5547 *buf++ = c; |
5548 pos++; | |
5549 } | |
5550 | |
5551 coding->consumed = src - coding->source; | |
5552 coding->consumed_char = pos - coding->src_pos; | |
5553 coding->charbuf_used = buf - coding->charbuf; | |
5554 coding->chars_at_source = 0; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5555 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5556 |
88365 | 5557 |
5558 /* Encode the text at CODING->src_object into CODING->dst_object. | |
5559 CODING->src_object is a buffer or a string. | |
5560 CODING->dst_object is a buffer or nil. | |
5561 | |
5562 If CODING->src_object is a buffer, it must be the current buffer. | |
5563 In this case, if CODING->src_pos is positive, it is a position of | |
5564 the source text in the buffer, otherwise. the source text is in the | |
5565 gap area of the buffer, and coding->src_pos specifies the offset of | |
5566 the text from GPT (which must be the same as PT). If this is the | |
5567 same buffer as CODING->dst_object, CODING->src_pos must be | |
5568 negative and CODING should not have `pre-write-conversion'. | |
5569 | |
5570 If CODING->src_object is a string, CODING should not have | |
5571 `pre-write-conversion'. | |
5572 | |
5573 If CODING->dst_object is a buffer, the encoded data is inserted at | |
5574 the current point of that buffer. | |
5575 | |
5576 If CODING->dst_object is nil, the encoded data is placed at the | |
5577 memory area specified by CODING->destination. */ | |
5578 | |
5579 static int | |
5580 encode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5581 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5582 { |
88365 | 5583 Lisp_Object attrs; |
5584 | |
5585 attrs = CODING_ID_ATTRS (coding->id); | |
5586 | |
5587 if (BUFFERP (coding->dst_object)) | |
5588 { | |
5589 set_buffer_internal (XBUFFER (coding->dst_object)); | |
5590 coding->dst_multibyte | |
5591 = ! NILP (current_buffer->enable_multibyte_characters); | |
5592 } | |
5593 | |
5594 coding->consumed = coding->consumed_char = 0; | |
5595 coding->produced = coding->produced_char = 0; | |
5596 coding->result = CODING_RESULT_SUCCESS; | |
5597 coding->errors = 0; | |
5598 | |
5599 ALLOC_CONVERSION_WORK_AREA (coding); | |
5600 | |
5601 do { | |
5602 coding_set_source (coding); | |
5603 consume_chars (coding); | |
5604 | |
5605 if (!NILP (CODING_ATTR_ENCODE_TBL (attrs))) | |
5606 translate_chars (CODING_ATTR_ENCODE_TBL (attrs), coding); | |
5607 | |
5608 coding_set_destination (coding); | |
5609 (*(coding->encoder)) (coding); | |
5610 } while (coding->consumed_char < coding->src_chars); | |
5611 | |
5612 if (BUFFERP (coding->dst_object)) | |
5613 insert_from_gap (coding->produced_char, coding->produced); | |
5614 | |
5615 return (coding->result); | |
5616 } | |
5617 | |
5618 /* Work buffer */ | |
5619 | |
5620 /* List of currently used working buffer. */ | |
5621 Lisp_Object Vcode_conversion_work_buf_list; | |
5622 | |
5623 /* A working buffer used by the top level conversion. */ | |
5624 Lisp_Object Vcode_conversion_reused_work_buf; | |
5625 | |
5626 | |
5627 /* Return a working buffer that can be freely used by the following | |
5628 code conversion. MULTIBYTEP specifies the multibyteness of the | |
5629 buffer. */ | |
5630 | |
5631 Lisp_Object | |
5632 make_conversion_work_buffer (multibytep) | |
5633 int multibytep; | |
5634 { | |
5635 struct buffer *current = current_buffer; | |
5636 Lisp_Object buf; | |
5637 | |
5638 if (NILP (Vcode_conversion_work_buf_list)) | |
5639 { | |
5640 if (NILP (Vcode_conversion_reused_work_buf)) | |
5641 Vcode_conversion_reused_work_buf | |
5642 = Fget_buffer_create (build_string (" *code-conversion-work*")); | |
5643 Vcode_conversion_work_buf_list | |
5644 = 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
|
5645 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5646 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5647 { |
88365 | 5648 int depth = Flength (Vcode_conversion_work_buf_list); |
5649 char str[128]; | |
5650 | |
5651 sprintf (str, " *code-conversion-work*<%d>", depth); | |
5652 Vcode_conversion_work_buf_list | |
5653 = Fcons (Fget_buffer_create (build_string (str)), | |
5654 Vcode_conversion_work_buf_list); | |
5655 } | |
5656 | |
5657 buf = XCAR (Vcode_conversion_work_buf_list); | |
5658 set_buffer_internal (XBUFFER (buf)); | |
5659 current_buffer->undo_list = Qt; | |
5660 Ferase_buffer (); | |
5661 Fset_buffer_multibyte (multibytep ? Qt : Qnil); | |
5662 set_buffer_internal (current); | |
5663 return buf; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5664 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5665 |
88365 | 5666 static struct coding_system *saved_coding; |
5667 | |
5668 Lisp_Object | |
5669 code_conversion_restore (info) | |
5670 Lisp_Object info; | |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5671 { |
88365 | 5672 int depth = Flength (Vcode_conversion_work_buf_list); |
5673 Lisp_Object buf; | |
5674 | |
5675 if (depth > 0) | |
5676 { | |
5677 buf = XCAR (Vcode_conversion_work_buf_list); | |
5678 Vcode_conversion_work_buf_list = XCDR (Vcode_conversion_work_buf_list); | |
5679 if (depth > 1 && !NILP (Fbuffer_live_p (buf))) | |
5680 Fkill_buffer (buf); | |
5681 } | |
5682 | |
5683 if (saved_coding->dst_object == Qt | |
5684 && saved_coding->destination) | |
5685 xfree (saved_coding->destination); | |
5686 | |
5687 return save_excursion_restore (info); | |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5688 } |
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5689 |
88365 | 5690 |
5691 int | |
5692 decode_coding_gap (coding, chars, bytes) | |
26847 | 5693 struct coding_system *coding; |
88365 | 5694 EMACS_INT chars, bytes; |
5695 { | |
5696 int count = specpdl_ptr - specpdl; | |
5697 | |
5698 saved_coding = coding; | |
5699 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5700 | |
5701 coding->src_object = Fcurrent_buffer (); | |
5702 coding->src_chars = chars; | |
5703 coding->src_bytes = bytes; | |
5704 coding->src_pos = -chars; | |
5705 coding->src_pos_byte = -bytes; | |
5706 coding->src_multibyte = chars < bytes; | |
5707 coding->dst_object = coding->src_object; | |
5708 coding->dst_pos = PT; | |
5709 coding->dst_pos_byte = PT_BYTE; | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5710 coding->dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
88365 | 5711 |
5712 if (CODING_REQUIRE_DETECTION (coding)) | |
5713 detect_coding (coding); | |
5714 | |
5715 decode_coding (coding); | |
5716 | |
5717 unbind_to (count, Qnil); | |
5718 return coding->result; | |
5719 } | |
5720 | |
5721 int | |
5722 encode_coding_gap (coding, chars, bytes) | |
5723 struct coding_system *coding; | |
5724 EMACS_INT chars, bytes; | |
26847 | 5725 { |
88365 | 5726 int count = specpdl_ptr - specpdl; |
5727 Lisp_Object buffer; | |
5728 | |
5729 saved_coding = coding; | |
5730 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5731 | |
5732 buffer = Fcurrent_buffer (); | |
5733 coding->src_object = buffer; | |
5734 coding->src_chars = chars; | |
5735 coding->src_bytes = bytes; | |
5736 coding->src_pos = -chars; | |
5737 coding->src_pos_byte = -bytes; | |
5738 coding->src_multibyte = chars < bytes; | |
5739 coding->dst_object = coding->src_object; | |
5740 coding->dst_pos = PT; | |
5741 coding->dst_pos_byte = PT_BYTE; | |
5742 | |
5743 encode_coding (coding); | |
5744 | |
5745 unbind_to (count, Qnil); | |
5746 return coding->result; | |
26847 | 5747 } |
5748 | |
88365 | 5749 |
5750 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in | |
5751 SRC_OBJECT into DST_OBJECT by coding context CODING. | |
5752 | |
5753 SRC_OBJECT is a buffer, a string, or Qnil. | |
5754 | |
5755 If it is a buffer, the text is at point of the buffer. FROM and TO | |
5756 are positions in the buffer. | |
5757 | |
5758 If it is a string, the text is at the beginning of the string. | |
5759 FROM and TO are indices to the string. | |
5760 | |
5761 If it is nil, the text is at coding->source. FROM and TO are | |
5762 indices to coding->source. | |
5763 | |
5764 DST_OBJECT is a buffer, Qt, or Qnil. | |
5765 | |
5766 If it is a buffer, the decoded text is inserted at point of the | |
5767 buffer. If the buffer is the same as SRC_OBJECT, the source text | |
5768 is deleted. | |
5769 | |
5770 If it is Qt, a string is made from the decoded text, and | |
5771 set in CODING->dst_object. | |
5772 | |
5773 If it is Qnil, the decoded text is stored at CODING->destination. | |
5774 The called must allocate CODING->dst_bytes bytes at | |
5775 CODING->destination by xmalloc. If the decoded text is longer than | |
5776 CODING->dst_bytes, CODING->destination is relocated by xrealloc. | |
5777 */ | |
26847 | 5778 |
29275
b4ea9178e480
(DECODE_COMPOSITION_START): If coding->cmp_data is not
Kenichi Handa <handa@m17n.org>
parents:
29247
diff
changeset
|
5779 void |
88365 | 5780 decode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
5781 dst_object) | |
26847 | 5782 struct coding_system *coding; |
88365 | 5783 Lisp_Object src_object; |
5784 EMACS_INT from, from_byte, to, to_byte; | |
5785 Lisp_Object dst_object; | |
26847 | 5786 { |
88365 | 5787 int count = specpdl_ptr - specpdl; |
5788 unsigned char *destination; | |
5789 EMACS_INT dst_bytes; | |
5790 EMACS_INT chars = to - from; | |
5791 EMACS_INT bytes = to_byte - from_byte; | |
5792 Lisp_Object attrs; | |
5793 | |
5794 saved_coding = coding; | |
5795 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5796 | |
5797 if (NILP (dst_object)) | |
5798 { | |
5799 destination = coding->destination; | |
5800 dst_bytes = coding->dst_bytes; | |
5801 } | |
5802 | |
5803 coding->src_object = src_object; | |
5804 coding->src_chars = chars; | |
5805 coding->src_bytes = bytes; | |
5806 coding->src_multibyte = chars < bytes; | |
5807 | |
5808 if (STRINGP (src_object)) | |
5809 { | |
5810 coding->src_pos = from; | |
5811 coding->src_pos_byte = from_byte; | |
5812 } | |
5813 else if (BUFFERP (src_object)) | |
5814 { | |
5815 set_buffer_internal (XBUFFER (src_object)); | |
5816 if (from != GPT) | |
5817 move_gap_both (from, from_byte); | |
5818 if (EQ (src_object, dst_object)) | |
26847 | 5819 { |
88365 | 5820 TEMP_SET_PT_BOTH (from, from_byte); |
5821 del_range_both (from, from_byte, to, to_byte, 1); | |
5822 coding->src_pos = -chars; | |
5823 coding->src_pos_byte = -bytes; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5824 } |
42661
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
5825 else |
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
5826 { |
88365 | 5827 coding->src_pos = from; |
5828 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
|
5829 } |
88365 | 5830 } |
5831 | |
5832 if (CODING_REQUIRE_DETECTION (coding)) | |
5833 detect_coding (coding); | |
5834 attrs = CODING_ID_ATTRS (coding->id); | |
5835 | |
5836 if (! NILP (CODING_ATTR_POST_READ (attrs)) | |
5837 || EQ (dst_object, Qt)) | |
5838 { | |
5839 coding->dst_object = make_conversion_work_buffer (1); | |
5840 coding->dst_pos = BEG; | |
5841 coding->dst_pos_byte = BEG_BYTE; | |
5842 coding->dst_multibyte = 1; | |
5843 } | |
5844 else if (BUFFERP (dst_object)) | |
5845 { | |
5846 coding->dst_object = dst_object; | |
5847 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); | |
5848 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); | |
5849 coding->dst_multibyte | |
5850 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
5851 } | |
5852 else | |
5853 { | |
5854 coding->dst_object = Qnil; | |
5855 coding->dst_multibyte = 1; | |
5856 } | |
5857 | |
5858 decode_coding (coding); | |
5859 | |
5860 if (BUFFERP (coding->dst_object)) | |
5861 set_buffer_internal (XBUFFER (coding->dst_object)); | |
5862 | |
5863 if (! NILP (CODING_ATTR_POST_READ (attrs))) | |
5864 { | |
5865 struct gcpro gcpro1, gcpro2; | |
5866 EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; | |
5867 Lisp_Object val; | |
5868 | |
5869 GCPRO2 (coding->src_object, coding->dst_object); | |
5870 val = call1 (CODING_ATTR_POST_READ (attrs), | |
5871 make_number (coding->produced_char)); | |
5872 UNGCPRO; | |
5873 CHECK_NATNUM (val); | |
5874 coding->produced_char += Z - prev_Z; | |
5875 coding->produced += Z_BYTE - prev_Z_BYTE; | |
5876 } | |
5877 | |
5878 if (EQ (dst_object, Qt)) | |
5879 { | |
5880 coding->dst_object = Fbuffer_string (); | |
5881 } | |
5882 else if (NILP (dst_object) && BUFFERP (coding->dst_object)) | |
5883 { | |
5884 set_buffer_internal (XBUFFER (coding->dst_object)); | |
5885 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
|
5886 { |
88365 | 5887 destination |
5888 = (unsigned char *) xrealloc (destination, coding->produced); | |
5889 if (! destination) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5890 { |
88365 | 5891 coding->result = CODING_RESULT_INSUFFICIENT_DST; |
5892 unbind_to (count, Qnil); | |
5893 return; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5894 } |
88365 | 5895 if (BEGV < GPT && GPT < BEGV + coding->produced_char) |
5896 move_gap_both (BEGV, BEGV_BYTE); | |
5897 bcopy (BEGV_ADDR, destination, coding->produced); | |
5898 coding->destination = destination; | |
23279
ca159e828a68
(ccl_coding_driver): If ccl_driver is interrupted by a
Kenichi Handa <handa@m17n.org>
parents:
23258
diff
changeset
|
5899 } |
88365 | 5900 } |
5901 | |
5902 unbind_to (count, Qnil); | |
5903 } | |
5904 | |
5905 | |
5906 void | |
5907 encode_coding_object (coding, src_object, from, from_byte, to, to_byte, | |
5908 dst_object) | |
5909 struct coding_system *coding; | |
5910 Lisp_Object src_object; | |
5911 EMACS_INT from, from_byte, to, to_byte; | |
5912 Lisp_Object dst_object; | |
5913 { | |
5914 int count = specpdl_ptr - specpdl; | |
5915 EMACS_INT chars = to - from; | |
5916 EMACS_INT bytes = to_byte - from_byte; | |
5917 Lisp_Object attrs; | |
5918 | |
5919 saved_coding = coding; | |
5920 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
5921 | |
5922 coding->src_object = src_object; | |
5923 coding->src_chars = chars; | |
5924 coding->src_bytes = bytes; | |
5925 coding->src_multibyte = chars < bytes; | |
5926 | |
5927 attrs = CODING_ID_ATTRS (coding->id); | |
5928 | |
5929 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
|
5930 { |
21140
179c73d91f70
(code_convert_region): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
21132
diff
changeset
|
5931 Lisp_Object val; |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
5932 |
88365 | 5933 coding->src_object = make_conversion_work_buffer (coding->src_multibyte); |
5934 set_buffer_internal (XBUFFER (coding->src_object)); | |
5935 if (STRINGP (src_object)) | |
5936 insert_from_string (src_object, from, from_byte, chars, bytes, 0); | |
5937 else if (BUFFERP (src_object)) | |
5938 insert_from_buffer (XBUFFER (src_object), from, chars, 0); | |
5939 else | |
5940 insert_1_both (coding->source + from, chars, bytes, 0, 0, 0); | |
5941 | |
5942 if (EQ (src_object, dst_object)) | |
5943 { | |
5944 set_buffer_internal (XBUFFER (src_object)); | |
5945 del_range_both (from, from_byte, to, to_byte, 1); | |
5946 set_buffer_internal (XBUFFER (coding->src_object)); | |
5947 } | |
5948 | |
5949 val = call2 (CODING_ATTR_PRE_WRITE (attrs), | |
5950 make_number (1), make_number (chars)); | |
5951 CHECK_NATNUM (val); | |
5952 if (BEG != GPT) | |
5953 move_gap_both (BEG, BEG_BYTE); | |
5954 coding->src_chars = Z - BEG; | |
5955 coding->src_bytes = Z_BYTE - BEG_BYTE; | |
5956 coding->src_pos = BEG; | |
5957 coding->src_pos_byte = BEG_BYTE; | |
5958 coding->src_multibyte = Z < Z_BYTE; | |
5959 } | |
5960 else if (STRINGP (src_object)) | |
5961 { | |
5962 coding->src_pos = from; | |
5963 coding->src_pos_byte = from_byte; | |
5964 } | |
5965 else if (BUFFERP (src_object)) | |
5966 { | |
5967 set_buffer_internal (XBUFFER (src_object)); | |
5968 if (from != GPT) | |
5969 move_gap_both (from, from_byte); | |
5970 if (EQ (src_object, dst_object)) | |
5971 { | |
5972 del_range_both (from, from_byte, to, to_byte, 1); | |
5973 coding->src_pos = -chars; | |
5974 coding->src_pos_byte = -bytes; | |
5975 } | |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
5976 else |
88365 | 5977 { |
5978 coding->src_pos = from; | |
5979 coding->src_pos_byte = from_byte; | |
5980 } | |
5981 } | |
5982 | |
5983 if (BUFFERP (dst_object)) | |
5984 { | |
5985 coding->dst_object = dst_object; | |
5986 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); | |
5987 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); | |
5988 coding->dst_multibyte | |
5989 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
5990 } | |
5991 else if (EQ (dst_object, Qt)) | |
5992 { | |
5993 coding->dst_object = Qnil; | |
5994 coding->destination = (unsigned char *) xmalloc (coding->src_chars); | |
5995 coding->dst_bytes = coding->src_chars; | |
5996 coding->dst_multibyte = 0; | |
5997 } | |
5998 else | |
5999 { | |
6000 coding->dst_object = Qnil; | |
6001 coding->dst_multibyte = 0; | |
6002 } | |
6003 | |
6004 encode_coding (coding); | |
6005 | |
6006 if (EQ (dst_object, Qt)) | |
6007 { | |
6008 if (BUFFERP (coding->dst_object)) | |
6009 coding->dst_object = Fbuffer_string (); | |
6010 else | |
6011 { | |
6012 coding->dst_object | |
6013 = make_unibyte_string ((char *) coding->destination, | |
6014 coding->produced); | |
6015 xfree (coding->destination); | |
6016 } | |
6017 } | |
6018 | |
6019 unbind_to (count, Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6020 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6021 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
6022 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
6023 Lisp_Object |
88365 | 6024 preferred_coding_system () |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6025 { |
88365 | 6026 int id = coding_categories[coding_priorities[0]].id; |
6027 | |
6028 return CODING_ID_NAME (id); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6029 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6030 |
17052 | 6031 |
6032 #ifdef emacs | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6033 /*** 8. Emacs Lisp library functions ***/ |
17052 | 6034 |
6035 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
|
6036 doc: /* Return t if OBJECT is nil or a coding-system. |
88365 | 6037 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
|
6038 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
|
6039 (obj) |
17052 | 6040 Lisp_Object obj; |
6041 { | |
88365 | 6042 return ((NILP (obj) || CODING_SYSTEM_P (obj)) ? Qt : Qnil); |
17052 | 6043 } |
6044 | |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6045 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
|
6046 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
|
6047 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
|
6048 (prompt) |
17052 | 6049 Lisp_Object prompt; |
6050 { | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6051 Lisp_Object val; |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6052 do |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6053 { |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6054 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6055 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
|
6056 } |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6057 while (XSTRING (val)->size == 0); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6058 return (Fintern (val, Qnil)); |
17052 | 6059 } |
6060 | |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6061 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
|
6062 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
|
6063 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
|
6064 (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
|
6065 Lisp_Object prompt, default_coding_system; |
17052 | 6066 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
6067 Lisp_Object val; |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6068 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
|
6069 XSETSTRING (default_coding_system, XSYMBOL (default_coding_system)->name); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6070 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
|
6071 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
|
6072 default_coding_system, Qnil); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6073 return (XSTRING (val)->size == 0 ? Qnil : Fintern (val, Qnil)); |
17052 | 6074 } |
6075 | |
6076 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
6077 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
|
6078 doc: /* Check validity of CODING-SYSTEM. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6079 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6080 It is valid if it is a symbol with a non-nil `coding-system' property. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6081 The value of property should be a vector of length 5. */) |
88365 | 6082 (coding_system) |
17052 | 6083 Lisp_Object coding_system; |
6084 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6085 CHECK_SYMBOL (coding_system); |
17052 | 6086 if (!NILP (Fcoding_system_p (coding_system))) |
6087 return coding_system; | |
6088 while (1) | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
6089 Fsignal (Qcoding_system_error, Fcons (coding_system, Qnil)); |
17052 | 6090 } |
88365 | 6091 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6092 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6093 Lisp_Object |
88365 | 6094 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
|
6095 unsigned char *src; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6096 int src_bytes, highest; |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6097 int multibytep; |
88365 | 6098 Lisp_Object coding_system; |
17052 | 6099 { |
88365 | 6100 unsigned char *src_end = src + src_bytes; |
6101 int mask = CATEGORY_MASK_ANY; | |
6102 int detected = 0; | |
6103 int c, i; | |
6104 Lisp_Object attrs, eol_type; | |
6105 Lisp_Object val; | |
6106 struct coding_system coding; | |
6107 | |
6108 if (NILP (coding_system)) | |
6109 coding_system = Qundecided; | |
6110 setup_coding_system (coding_system, &coding); | |
6111 attrs = CODING_ID_ATTRS (coding.id); | |
6112 eol_type = CODING_ID_EOL_TYPE (coding.id); | |
6113 | |
6114 coding.source = src; | |
6115 coding.src_bytes = src_bytes; | |
6116 coding.src_multibyte = multibytep; | |
6117 coding.consumed = 0; | |
6118 | |
6119 if (XINT (CODING_ATTR_CATEGORY (attrs)) != coding_category_undecided) | |
6120 { | |
6121 mask = 1 << XINT (CODING_ATTR_CATEGORY (attrs)); | |
6122 } | |
6123 else | |
6124 { | |
6125 coding_system = Qnil; | |
6126 for (; src < src_end; src++) | |
17052 | 6127 { |
88365 | 6128 c = *src; |
6129 if (c & 0x80 || (c < 0x20 && (c == ISO_CODE_ESC | |
6130 || c == ISO_CODE_SI | |
6131 || c == ISO_CODE_SO))) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6132 break; |
17052 | 6133 } |
88365 | 6134 coding.head_ascii = src - coding.source; |
6135 | |
6136 if (src < src_end) | |
6137 for (i = 0; i < coding_category_raw_text; i++) | |
6138 { | |
6139 enum coding_category category = coding_priorities[i]; | |
6140 struct coding_system *this = coding_categories + category; | |
6141 | |
6142 if (category >= coding_category_raw_text | |
6143 || detected & (1 << category)) | |
6144 continue; | |
6145 | |
6146 if (this->id < 0) | |
6147 { | |
6148 /* No coding system of this category is defined. */ | |
6149 mask &= ~(1 << category); | |
6150 } | |
6151 else | |
6152 { | |
6153 detected |= detected_mask[category]; | |
6154 if ((*(coding_categories[category].detector)) (&coding, &mask) | |
6155 && highest) | |
6156 { | |
6157 mask &= detected_mask[category]; | |
6158 break; | |
6159 } | |
6160 } | |
6161 } | |
6162 } | |
6163 | |
6164 if (!mask) | |
6165 val = Fcons (make_number (coding_category_raw_text), Qnil); | |
6166 else if (mask == CATEGORY_MASK_ANY) | |
6167 val = Fcons (make_number (coding_category_undecided), Qnil); | |
6168 else if (highest) | |
6169 { | |
6170 for (i = 0; i < coding_category_raw_text; i++) | |
6171 if (mask & (1 << coding_priorities[i])) | |
6172 { | |
6173 val = Fcons (make_number (coding_priorities[i]), Qnil); | |
6174 break; | |
6175 } | |
6176 } | |
6177 else | |
6178 { | |
6179 val = Qnil; | |
6180 for (i = coding_category_raw_text - 1; i >= 0; i--) | |
6181 if (mask & (1 << coding_priorities[i])) | |
6182 val = Fcons (make_number (coding_priorities[i]), val); | |
6183 } | |
6184 | |
6185 { | |
6186 int one_byte_eol = -1, two_byte_eol = -1; | |
6187 Lisp_Object tail; | |
6188 | |
6189 for (tail = val; CONSP (tail); tail = XCDR (tail)) | |
6190 { | |
6191 struct coding_system *this | |
6192 = (NILP (coding_system) ? coding_categories + XINT (XCAR (tail)) | |
6193 : &coding); | |
6194 int this_eol; | |
6195 | |
6196 attrs = CODING_ID_ATTRS (this->id); | |
6197 eol_type = CODING_ID_EOL_TYPE (this->id); | |
6198 XSETCAR (tail, CODING_ID_NAME (this->id)); | |
6199 if (VECTORP (eol_type)) | |
6200 { | |
6201 if (EQ (CODING_ATTR_TYPE (attrs), Qutf_16)) | |
6202 { | |
6203 if (two_byte_eol < 0) | |
6204 two_byte_eol = detect_eol (this, coding.source, src_bytes); | |
6205 this_eol = two_byte_eol; | |
6206 } | |
6207 else | |
6208 { | |
6209 if (one_byte_eol < 0) | |
6210 one_byte_eol =detect_eol (this, coding.source, src_bytes); | |
6211 this_eol = one_byte_eol; | |
6212 } | |
6213 if (this_eol == EOL_SEEN_LF) | |
6214 XSETCAR (tail, AREF (eol_type, 0)); | |
6215 else if (this_eol == EOL_SEEN_CRLF) | |
6216 XSETCAR (tail, AREF (eol_type, 1)); | |
6217 else if (this_eol == EOL_SEEN_CR) | |
6218 XSETCAR (tail, AREF (eol_type, 2)); | |
6219 } | |
6220 } | |
6221 } | |
6222 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
6223 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
|
6224 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6225 |
88365 | 6226 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6227 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
|
6228 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
|
6229 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
|
6230 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
|
6231 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6232 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
|
6233 `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
|
6234 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
|
6235 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6236 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
|
6237 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6238 (start, end, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6239 Lisp_Object start, end, highest; |
17052 | 6240 { |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6241 int from, to; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6242 int from_byte, to_byte; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6243 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6244 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
|
6245 CHECK_NUMBER_COERCE_MARKER (end); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6246 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6247 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6248 from = XINT (start), to = XINT (end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6249 from_byte = CHAR_TO_BYTE (from); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6250 to_byte = CHAR_TO_BYTE (to); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6251 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6252 if (from < GPT && to >= GPT) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6253 move_gap_both (to, to_byte); |
88365 | 6254 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6255 return detect_coding_system (BYTE_POS_ADDR (from_byte), |
88365 | 6256 to_byte - from_byte, |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6257 !NILP (highest), |
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6258 !NILP (current_buffer |
88365 | 6259 ->enable_multibyte_characters), |
6260 Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6261 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6262 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6263 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
|
6264 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
|
6265 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
|
6266 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
|
6267 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6268 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
|
6269 `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
|
6270 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
|
6271 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6272 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
|
6273 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6274 (string, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6275 Lisp_Object string, highest; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6276 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6277 CHECK_STRING (string); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6278 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6279 return detect_coding_system (XSTRING (string)->data, |
88365 | 6280 STRING_BYTES (XSTRING (string)), |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6281 !NILP (highest), |
88365 | 6282 STRING_MULTIBYTE (string), |
6283 Qnil); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6284 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6285 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6286 |
88365 | 6287 static INLINE int |
6288 char_encodable_p (c, attrs) | |
6289 int c; | |
6290 Lisp_Object attrs; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6291 { |
88365 | 6292 Lisp_Object tail; |
6293 struct charset *charset; | |
6294 | |
6295 for (tail = CODING_ATTR_CHARSET_LIST (attrs); | |
6296 CONSP (tail); tail = XCDR (tail)) | |
6297 { | |
6298 charset = CHARSET_FROM_ID (XINT (XCAR (tail))); | |
6299 if (CHAR_CHARSET_P (c, charset)) | |
6300 break; | |
6301 } | |
6302 return (! NILP (tail)); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6303 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6304 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6305 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6306 /* Return a list of coding systems that safely encode the text between |
88365 | 6307 START and END. If EXCLUDE is non-nil, it is a list of coding |
6308 systems not to check. The returned list doesn't contain any such | |
6309 coding systems. In any case, If the text contains only ASCII or is | |
6310 unibyte, return t. */ | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6311 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6312 DEFUN ("find-coding-systems-region-internal", |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6313 Ffind_coding_systems_region_internal, |
88365 | 6314 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
|
6315 doc: /* Internal use only. */) |
88365 | 6316 (start, end, exclude) |
6317 Lisp_Object start, end, exclude; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6318 { |
88365 | 6319 Lisp_Object coding_attrs_list, safe_codings; |
6320 EMACS_INT start_byte, end_byte; | |
6321 unsigned char *p, *pbeg, *pend; | |
6322 int c; | |
6323 Lisp_Object tail, elt; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6324 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6325 if (STRINGP (start)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6326 { |
88365 | 6327 if (!STRING_MULTIBYTE (start) |
6328 && XSTRING (start)->size != STRING_BYTES (XSTRING (start))) | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6329 return Qt; |
88365 | 6330 start_byte = 0; |
6331 end_byte = STRING_BYTES (XSTRING (start)); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6332 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6333 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6334 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6335 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
|
6336 CHECK_NUMBER_COERCE_MARKER (end); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6337 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
|
6338 args_out_of_range (start, end); |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6339 if (NILP (current_buffer->enable_multibyte_characters)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6340 return Qt; |
88365 | 6341 start_byte = CHAR_TO_BYTE (XINT (start)); |
6342 end_byte = CHAR_TO_BYTE (XINT (end)); | |
6343 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
6344 return Qt; | |
6345 | |
6346 if (start < GPT && end > GPT) | |
6347 { | |
6348 if ((GPT - start) < (end - GPT)) | |
6349 move_gap_both (start, start_byte); | |
6350 else | |
6351 move_gap_both (end, end_byte); | |
6352 } | |
6353 } | |
6354 | |
6355 coding_attrs_list = Qnil; | |
6356 for (tail = Vcoding_system_list; CONSP (tail); tail = XCDR (tail)) | |
6357 if (NILP (exclude) | |
6358 || NILP (Fmemq (XCAR (tail), exclude))) | |
6359 { | |
6360 Lisp_Object attrs; | |
6361 | |
6362 attrs = AREF (CODING_SYSTEM_SPEC (XCAR (tail)), 0); | |
6363 if (EQ (XCAR (tail), CODING_ATTR_BASE_NAME (attrs)) | |
6364 && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided)) | |
6365 coding_attrs_list = Fcons (attrs, coding_attrs_list); | |
6366 } | |
6367 | |
6368 if (STRINGP (start)) | |
6369 p = pbeg = XSTRING (start)->data; | |
6370 else | |
6371 p = pbeg = BYTE_POS_ADDR (start_byte); | |
6372 pend = p + (end_byte - start_byte); | |
6373 | |
6374 while (p < pend && ASCII_BYTE_P (*p)) p++; | |
6375 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
6376 | |
6377 while (p < pend) | |
6378 { | |
6379 if (ASCII_BYTE_P (*p)) | |
6380 p++; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6381 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6382 { |
88365 | 6383 c = STRING_CHAR_ADVANCE (p); |
6384 | |
6385 charset_map_loaded = 0; | |
6386 for (tail = coding_attrs_list; CONSP (tail);) | |
6387 { | |
6388 elt = XCAR (tail); | |
6389 if (NILP (elt)) | |
6390 tail = XCDR (tail); | |
6391 else if (char_encodable_p (c, elt)) | |
6392 tail = XCDR (tail); | |
6393 else if (CONSP (XCDR (tail))) | |
6394 { | |
6395 XSETCAR (tail, XCAR (XCDR (tail))); | |
6396 XSETCDR (tail, XCDR (XCDR (tail))); | |
6397 } | |
6398 else | |
6399 { | |
6400 XSETCAR (tail, Qnil); | |
6401 tail = XCDR (tail); | |
6402 } | |
6403 } | |
6404 if (charset_map_loaded) | |
6405 { | |
6406 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
6407 | |
6408 if (STRINGP (start)) | |
6409 pbeg = XSTRING (start)->data; | |
6410 else | |
6411 pbeg = BYTE_POS_ADDR (start_byte); | |
6412 p = pbeg + p_offset; | |
6413 pend = pbeg + pend_offset; | |
6414 } | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6415 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6416 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6417 |
88365 | 6418 safe_codings = Qnil; |
6419 for (tail = coding_attrs_list; CONSP (tail); tail = XCDR (tail)) | |
6420 if (! NILP (XCAR (tail))) | |
6421 safe_codings = Fcons (CODING_ATTR_BASE_NAME (XCAR (tail)), safe_codings); | |
6422 | |
6423 return safe_codings; | |
6424 } | |
6425 | |
6426 | |
6427 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region, | |
6428 Scheck_coding_systems_region, 3, 3, 0, | |
6429 doc: /* Check if the region is encodable by coding systems. | |
6430 | |
6431 START and END are buffer positions specifying the region. | |
6432 CODING-SYSTEM-LIST is a list of coding systems to check. | |
6433 | |
6434 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where | |
6435 CODING-SYSTEM is a member of CODING-SYSTEM-LIst and can't encode the | |
6436 whole region, POS0, POS1, ... are buffer positions where non-encodable | |
6437 characters are found. | |
6438 | |
6439 If all coding systems in CODING-SYSTEM-LIST can encode the region, the | |
6440 value is nil. | |
6441 | |
6442 START may be a string. In that case, check if the string is | |
6443 encodable, and the value contains indices to the string instead of | |
6444 buffer positions. END is ignored. */) | |
6445 (start, end, coding_system_list) | |
6446 Lisp_Object start, end, coding_system_list; | |
6447 { | |
6448 Lisp_Object list; | |
6449 EMACS_INT start_byte, end_byte; | |
6450 int pos; | |
6451 unsigned char *p, *pbeg, *pend; | |
6452 int c; | |
6453 Lisp_Object tail, elt; | |
6454 | |
6455 if (STRINGP (start)) | |
6456 { | |
6457 if (!STRING_MULTIBYTE (start) | |
6458 && XSTRING (start)->size != STRING_BYTES (XSTRING (start))) | |
6459 return Qnil; | |
6460 start_byte = 0; | |
6461 end_byte = STRING_BYTES (XSTRING (start)); | |
6462 pos = 0; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6463 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6464 else |
88365 | 6465 { |
6466 CHECK_NUMBER_COERCE_MARKER (start); | |
6467 CHECK_NUMBER_COERCE_MARKER (end); | |
6468 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) | |
6469 args_out_of_range (start, end); | |
6470 if (NILP (current_buffer->enable_multibyte_characters)) | |
6471 return Qnil; | |
6472 start_byte = CHAR_TO_BYTE (XINT (start)); | |
6473 end_byte = CHAR_TO_BYTE (XINT (end)); | |
6474 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
6475 return Qt; | |
6476 | |
6477 if (start < GPT && end > GPT) | |
6478 { | |
6479 if ((GPT - start) < (end - GPT)) | |
6480 move_gap_both (start, start_byte); | |
6481 else | |
6482 move_gap_both (end, end_byte); | |
6483 } | |
6484 pos = start; | |
6485 } | |
6486 | |
6487 list = Qnil; | |
6488 for (tail = coding_system_list; CONSP (tail); tail = XCDR (tail)) | |
6489 { | |
6490 elt = XCAR (tail); | |
6491 list = Fcons (Fcons (elt, Fcons (AREF (CODING_SYSTEM_SPEC (elt), 0), | |
6492 Qnil)), | |
6493 list); | |
6494 } | |
6495 | |
6496 if (STRINGP (start)) | |
6497 p = pbeg = XSTRING (start)->data; | |
6498 else | |
6499 p = pbeg = BYTE_POS_ADDR (start_byte); | |
6500 pend = p + (end_byte - start_byte); | |
6501 | |
6502 while (p < pend && ASCII_BYTE_P (*p)) p++, pos++; | |
6503 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
6504 | |
6505 while (p < pend) | |
6506 { | |
6507 if (ASCII_BYTE_P (*p)) | |
6508 p++; | |
6509 else | |
6510 { | |
6511 c = STRING_CHAR_ADVANCE (p); | |
6512 | |
6513 charset_map_loaded = 0; | |
6514 for (tail = list; CONSP (tail); tail = XCDR (tail)) | |
6515 { | |
6516 elt = XCDR (XCAR (tail)); | |
6517 if (! char_encodable_p (c, XCAR (elt))) | |
6518 XSETCDR (elt, Fcons (make_number (pos), XCDR (elt))); | |
6519 } | |
6520 if (charset_map_loaded) | |
6521 { | |
6522 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
6523 | |
6524 if (STRINGP (start)) | |
6525 pbeg = XSTRING (start)->data; | |
6526 else | |
6527 pbeg = BYTE_POS_ADDR (start_byte); | |
6528 p = pbeg + p_offset; | |
6529 pend = pbeg + pend_offset; | |
6530 } | |
6531 } | |
6532 pos++; | |
6533 } | |
6534 | |
6535 tail = list; | |
6536 list = Qnil; | |
6537 for (; CONSP (tail); tail = XCDR (tail)) | |
6538 { | |
6539 elt = XCAR (tail); | |
6540 if (CONSP (XCDR (XCDR (elt)))) | |
6541 list = Fcons (Fcons (XCAR (elt), Fnreverse (XCDR (XCDR (elt)))), | |
6542 list); | |
6543 } | |
6544 | |
6545 return list; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6546 } |
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 |
88365 | 6549 |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6550 Lisp_Object |
88365 | 6551 code_convert_region (start, end, coding_system, dst_object, encodep, norecord) |
6552 Lisp_Object start, end, coding_system, dst_object; | |
6553 int encodep, norecord; | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6554 { |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6555 struct coding_system coding; |
88365 | 6556 EMACS_INT from, from_byte, to, to_byte; |
6557 Lisp_Object src_object; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6558 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6559 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
|
6560 CHECK_NUMBER_COERCE_MARKER (end); |
88365 | 6561 if (NILP (coding_system)) |
6562 coding_system = Qno_conversion; | |
6563 else | |
6564 CHECK_CODING_SYSTEM (coding_system); | |
6565 src_object = Fcurrent_buffer (); | |
6566 if (NILP (dst_object)) | |
6567 dst_object = src_object; | |
6568 else if (! EQ (dst_object, Qt)) | |
6569 CHECK_BUFFER (dst_object); | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6570 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6571 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6572 from = XFASTINT (start); |
88365 | 6573 from_byte = CHAR_TO_BYTE (from); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6574 to = XFASTINT (end); |
88365 | 6575 to_byte = CHAR_TO_BYTE (to); |
6576 | |
6577 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6578 coding.mode |= CODING_MODE_LAST_BLOCK; |
88365 | 6579 |
6580 if (encodep) | |
6581 encode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
6582 dst_object); | |
6583 else | |
6584 decode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
6585 dst_object); | |
6586 if (! norecord) | |
6587 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
6588 | |
6589 if (coding.result != CODING_RESULT_SUCCESS) | |
6590 error ("Code conversion error: %d", coding.result); | |
6591 | |
6592 return (BUFFERP (dst_object) | |
6593 ? make_number (coding.produced_char) | |
6594 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6595 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6596 |
88365 | 6597 |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6598 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, |
88365 | 6599 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
|
6600 doc: /* Decode the current region from the specified coding system. |
88365 | 6601 When called from a program, takes four arguments: |
6602 START, END, CODING-SYSTEM, and DESTINATION. | |
6603 START and END are buffer positions. | |
6604 | |
6605 Optional 4th arguments DESTINATION specifies where the decoded text goes. | |
6606 If nil, the region between START and END is replace by the decoded text. | |
6607 If buffer, the decoded text is inserted in the buffer. | |
6608 If t, the decoded text is returned. | |
6609 | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6610 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
|
6611 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
|
6612 not fully specified.) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6613 It returns the length of the decoded text. */) |
88365 | 6614 (start, end, coding_system, destination) |
6615 Lisp_Object start, end, coding_system, destination; | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6616 { |
88365 | 6617 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
|
6618 } |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6619 |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6620 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, |
88365 | 6621 3, 4, "r\nzCoding system: ", |
6622 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
|
6623 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
|
6624 START, END, and CODING-SYSTEM. START and END are buffer positions. |
88365 | 6625 |
6626 Optional 4th arguments DESTINATION specifies where the encoded text goes. | |
6627 If nil, the region between START and END is replace by the encoded text. | |
6628 If buffer, the encoded text is inserted in the buffer. | |
6629 If t, the encoded text is returned. | |
6630 | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6631 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
|
6632 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
|
6633 not fully specified.) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6634 It returns the length of the encoded text. */) |
88365 | 6635 (start, end, coding_system, destination) |
6636 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
|
6637 { |
88365 | 6638 return code_convert_region (start, end, coding_system, destination, 1, 0); |
17052 | 6639 } |
6640 | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6641 Lisp_Object |
88365 | 6642 code_convert_string (string, coding_system, dst_object, |
6643 encodep, nocopy, norecord) | |
6644 Lisp_Object string, coding_system, dst_object; | |
6645 int encodep, nocopy, norecord; | |
17052 | 6646 { |
6647 struct coding_system coding; | |
88365 | 6648 EMACS_INT chars, bytes; |
17052 | 6649 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6650 CHECK_STRING (string); |
88365 | 6651 if (NILP (coding_system)) |
6652 { | |
6653 if (! norecord) | |
6654 Vlast_coding_system_used = Qno_conversion; | |
6655 if (NILP (dst_object)) | |
6656 return (nocopy ? Fcopy_sequence (string) : string); | |
6657 } | |
17052 | 6658 |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6659 if (NILP (coding_system)) |
88365 | 6660 coding_system = Qno_conversion; |
6661 else | |
6662 CHECK_CODING_SYSTEM (coding_system); | |
6663 if (NILP (dst_object)) | |
6664 dst_object = Qt; | |
6665 else if (! EQ (dst_object, Qt)) | |
6666 CHECK_BUFFER (dst_object); | |
6667 | |
6668 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6669 coding.mode |= CODING_MODE_LAST_BLOCK; |
88365 | 6670 chars = XSTRING (string)->size; |
6671 bytes = STRING_BYTES (XSTRING (string)); | |
6672 if (encodep) | |
6673 encode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
6674 else | |
6675 decode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
6676 if (! norecord) | |
6677 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
6678 | |
6679 if (coding.result != CODING_RESULT_SUCCESS) | |
6680 error ("Code conversion error: %d", coding.result); | |
6681 | |
6682 return (BUFFERP (dst_object) | |
6683 ? make_number (coding.produced_char) | |
6684 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6685 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6686 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6687 |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6688 /* Encode or decode STRING according to CODING_SYSTEM. |
26847 | 6689 Do not set Vlast_coding_system_used. |
6690 | |
6691 This function is called only from macros DECODE_FILE and | |
6692 ENCODE_FILE, thus we ignore character composition. */ | |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6693 |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6694 Lisp_Object |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6695 code_convert_string_norecord (string, coding_system, encodep) |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6696 Lisp_Object string, coding_system; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6697 int encodep; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6698 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6699 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
|
6700 } |
88365 | 6701 |
6702 | |
6703 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
6704 2, 4, 0, | |
6705 doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | |
6706 | |
6707 Optional third arg NOCOPY non-nil means it is OK to return STRING itself | |
6708 if the decoding operation is trivial. | |
6709 | |
6710 Optional fourth arg BUFFER non-nil meant that the decoded text is | |
6711 inserted in BUFFER instead of returned as a astring. In this case, | |
6712 the return value is BUFFER. | |
6713 | |
6714 This function sets `last-coding-system-used' to the precise coding system | |
6715 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
6716 not fully specified. */) | |
6717 (string, coding_system, nocopy, buffer) | |
6718 Lisp_Object string, coding_system, nocopy, buffer; | |
6719 { | |
6720 return code_convert_string (string, coding_system, buffer, | |
6721 0, ! NILP (nocopy), 0); | |
6722 } | |
6723 | |
6724 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
6725 2, 4, 0, | |
6726 doc: /* Encode STRING to CODING-SYSTEM, and return the result. | |
6727 | |
6728 Optional third arg NOCOPY non-nil means it is OK to return STRING | |
6729 itself if the encoding operation is trivial. | |
6730 | |
6731 Optional fourth arg BUFFER non-nil meant that the encoded text is | |
6732 inserted in BUFFER instead of returned as a astring. In this case, | |
6733 the return value is BUFFER. | |
6734 | |
6735 This function sets `last-coding-system-used' to the precise coding system | |
6736 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
6737 not fully specified.) */) | |
6738 (string, coding_system, nocopy, buffer) | |
6739 Lisp_Object string, coding_system, nocopy, buffer; | |
6740 { | |
6741 return code_convert_string (string, coding_system, buffer, | |
6742 nocopy, ! NILP (nocopy), 1); | |
6743 } | |
6744 | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6745 |
17052 | 6746 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
|
6747 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
|
6748 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
|
6749 (code) |
17052 | 6750 Lisp_Object code; |
6751 { | |
88365 | 6752 Lisp_Object spec, attrs, val; |
6753 struct charset *charset_roman, *charset_kanji, *charset_kana, *charset; | |
6754 int c; | |
6755 | |
6756 CHECK_NATNUM (code); | |
6757 c = XFASTINT (code); | |
6758 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
6759 attrs = AREF (spec, 0); | |
6760 | |
6761 if (ASCII_BYTE_P (c) | |
6762 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
6763 return code; | |
6764 | |
6765 val = CODING_ATTR_CHARSET_LIST (attrs); | |
6766 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
6767 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
6768 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))); | |
6769 | |
6770 if (c <= 0x7F) | |
6771 charset = charset_roman; | |
6772 else if (c >= 0xA0 && c < 0xDF) | |
6773 { | |
6774 charset = charset_kana; | |
6775 c -= 0x80; | |
24065
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
6776 } |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
6777 else |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
6778 { |
88365 | 6779 int s1 = c >> 8, s2 = c & 0x7F; |
6780 | |
6781 if (s1 < 0x81 || (s1 > 0x9F && s1 < 0xE0) || s1 > 0xEF | |
6782 || s2 < 0x40 || s2 == 0x7F || s2 > 0xFC) | |
6783 error ("Invalid code: %d", code); | |
6784 SJIS_TO_JIS (c); | |
6785 charset = charset_kanji; | |
6786 } | |
6787 c = DECODE_CHAR (charset, c); | |
6788 if (c < 0) | |
6789 error ("Invalid code: %d", code); | |
6790 return make_number (c); | |
17052 | 6791 } |
6792 | |
88365 | 6793 |
17052 | 6794 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
|
6795 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
|
6796 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
|
6797 (ch) |
88365 | 6798 Lisp_Object ch; |
17052 | 6799 { |
88365 | 6800 Lisp_Object spec, attrs, charset_list; |
6801 int c; | |
6802 struct charset *charset; | |
6803 unsigned code; | |
6804 | |
6805 CHECK_CHARACTER (ch); | |
6806 c = XFASTINT (ch); | |
6807 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
6808 attrs = AREF (spec, 0); | |
6809 | |
6810 if (ASCII_CHAR_P (c) | |
6811 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
6812 return ch; | |
6813 | |
6814 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
6815 charset = char_charset (c, charset_list, &code); | |
6816 if (code == CHARSET_INVALID_CODE (charset)) | |
6817 error ("Can't encode by shift_jis encoding: %d", c); | |
6818 JIS_TO_SJIS (code); | |
6819 | |
6820 return make_number (code); | |
17052 | 6821 } |
6822 | |
6823 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
|
6824 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
|
6825 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
|
6826 (code) |
17052 | 6827 Lisp_Object code; |
6828 { | |
88365 | 6829 Lisp_Object spec, attrs, val; |
6830 struct charset *charset_roman, *charset_big5, *charset; | |
6831 int c; | |
6832 | |
6833 CHECK_NATNUM (code); | |
6834 c = XFASTINT (code); | |
6835 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
6836 attrs = AREF (spec, 0); | |
6837 | |
6838 if (ASCII_BYTE_P (c) | |
6839 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
6840 return code; | |
6841 | |
6842 val = CODING_ATTR_CHARSET_LIST (attrs); | |
6843 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
6844 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
6845 | |
6846 if (c <= 0x7F) | |
6847 charset = charset_roman; | |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
6848 else |
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
6849 { |
88365 | 6850 int b1 = c >> 8, b2 = c & 0x7F; |
6851 if (b1 < 0xA1 || b1 > 0xFE | |
6852 || b2 < 0x40 || (b2 > 0x7E && b2 < 0xA1) || b2 > 0xFE) | |
6853 error ("Invalid code: %d", code); | |
6854 charset = charset_big5; | |
6855 } | |
6856 c = DECODE_CHAR (charset, (unsigned )c); | |
6857 if (c < 0) | |
6858 error ("Invalid code: %d", code); | |
6859 return make_number (c); | |
17052 | 6860 } |
6861 | |
6862 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
|
6863 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
|
6864 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
|
6865 (ch) |
17052 | 6866 Lisp_Object ch; |
6867 { | |
88365 | 6868 Lisp_Object spec, attrs, charset_list; |
6869 struct charset *charset; | |
6870 int c; | |
6871 unsigned code; | |
6872 | |
6873 CHECK_CHARACTER (ch); | |
6874 c = XFASTINT (ch); | |
6875 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
6876 attrs = AREF (spec, 0); | |
6877 if (ASCII_CHAR_P (c) | |
6878 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
6879 return ch; | |
6880 | |
6881 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
6882 charset = char_charset (c, charset_list, &code); | |
6883 if (code == CHARSET_INVALID_CODE (charset)) | |
6884 error ("Can't encode by Big5 encoding: %d", c); | |
6885 | |
6886 return make_number (code); | |
17052 | 6887 } |
88365 | 6888 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6889 |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
6890 DEFUN ("set-terminal-coding-system-internal", |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
6891 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
|
6892 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
|
6893 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
|
6894 (coding_system) |
17052 | 6895 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6896 CHECK_SYMBOL (coding_system); |
88365 | 6897 setup_coding_system (Fcheck_coding_system (coding_system), |
6898 &terminal_coding); | |
6899 | |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
6900 /* We had better not send unsafe characters to terminal. */ |
88365 | 6901 terminal_coding.mode |= CODING_MODE_SAFE_ENCODING; |
6902 /* Characer composition should be disabled. */ | |
6903 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
|
6904 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
|
6905 terminal_coding.dst_multibyte = 0; |
17052 | 6906 return Qnil; |
6907 } | |
6908 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6909 DEFUN ("set-safe-terminal-coding-system-internal", |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6910 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
|
6911 Sset_safe_terminal_coding_system_internal, 1, 1, 0, |
41006 | 6912 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
|
6913 (coding_system) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6914 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6915 CHECK_SYMBOL (coding_system); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6916 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
|
6917 &safe_terminal_coding); |
88365 | 6918 /* Characer composition should be disabled. */ |
6919 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
|
6920 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
|
6921 safe_terminal_coding.dst_multibyte = 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6922 return Qnil; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6923 } |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
6924 |
17052 | 6925 DEFUN ("terminal-coding-system", |
6926 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
|
6927 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
|
6928 () |
17052 | 6929 { |
88365 | 6930 return CODING_ID_NAME (terminal_coding.id); |
17052 | 6931 } |
6932 | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
6933 DEFUN ("set-keyboard-coding-system-internal", |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
6934 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
|
6935 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
|
6936 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
|
6937 (coding_system) |
17052 | 6938 Lisp_Object coding_system; |
6939 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6940 CHECK_SYMBOL (coding_system); |
88365 | 6941 setup_coding_system (Fcheck_coding_system (coding_system), |
6942 &keyboard_coding); | |
6943 /* Characer composition should be disabled. */ | |
6944 keyboard_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
17052 | 6945 return Qnil; |
6946 } | |
6947 | |
6948 DEFUN ("keyboard-coding-system", | |
6949 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
|
6950 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
|
6951 () |
17052 | 6952 { |
88365 | 6953 return CODING_ID_NAME (keyboard_coding.id); |
17052 | 6954 } |
6955 | |
6956 | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
6957 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
|
6958 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
|
6959 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
|
6960 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
|
6961 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
|
6962 \(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
|
6963 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
|
6964 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6965 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
|
6966 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
|
6967 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
|
6968 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
|
6969 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6970 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
|
6971 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
|
6972 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
|
6973 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
|
6974 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6975 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
|
6976 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
|
6977 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
|
6978 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
|
6979 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6980 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
|
6981 `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
|
6982 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
|
6983 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
|
6984 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
|
6985 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
|
6986 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
|
6987 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6988 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
|
6989 (nargs, args) |
17052 | 6990 int nargs; |
6991 Lisp_Object *args; | |
6992 { | |
6993 Lisp_Object operation, target_idx, target, val; | |
6994 register Lisp_Object chain; | |
6995 | |
6996 if (nargs < 2) | |
6997 error ("Too few arguments"); | |
6998 operation = args[0]; | |
6999 if (!SYMBOLP (operation) | |
7000 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx))) | |
88365 | 7001 error ("Invalid first arguement"); |
17052 | 7002 if (nargs < 1 + XINT (target_idx)) |
7003 error ("Too few arguments for operation: %s", | |
7004 XSYMBOL (operation)->name->data); | |
7005 target = args[XINT (target_idx) + 1]; | |
7006 if (!(STRINGP (target) | |
7007 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) | |
88365 | 7008 error ("Invalid %dth argument", XINT (target_idx) + 1); |
17052 | 7009 |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
7010 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
|
7011 || EQ (operation, Qwrite_region)) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7012 ? 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
|
7013 : (EQ (operation, Qopen_network_stream) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7014 ? Vnetwork_coding_system_alist |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7015 : Vprocess_coding_system_alist)); |
17052 | 7016 if (NILP (chain)) |
7017 return Qnil; | |
7018 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7019 for (; CONSP (chain); chain = XCDR (chain)) |
17052 | 7020 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
7021 Lisp_Object elt; |
88365 | 7022 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7023 elt = XCAR (chain); |
17052 | 7024 if (CONSP (elt) |
7025 && ((STRINGP (target) | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7026 && STRINGP (XCAR (elt)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7027 && 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
|
7028 || (INTEGERP (target) && EQ (target, XCAR (elt))))) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7029 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7030 val = XCDR (elt); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7031 /* 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
|
7032 function symbol, we return VAL as a coding system. */ |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7033 if (CONSP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7034 return val; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7035 if (! SYMBOLP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7036 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7037 if (! NILP (Fcoding_system_p (val))) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7038 return Fcons (val, val); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7039 if (! NILP (Ffboundp (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7040 { |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7041 val = call1 (val, Flist (nargs, args)); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7042 if (CONSP (val)) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7043 return val; |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7044 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
|
7045 return Fcons (val, val); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7046 } |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7047 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7048 } |
17052 | 7049 } |
7050 return Qnil; | |
7051 } | |
7052 | |
88365 | 7053 DEFUN ("set-coding-system-priority", Fset_coding_system_priority, |
7054 Sset_coding_system_priority, 1, MANY, 0, | |
7055 doc: /* Put higher priority to coding systems of the arguments. */) | |
7056 (nargs, args) | |
7057 int nargs; | |
7058 Lisp_Object *args; | |
7059 { | |
7060 int i, j; | |
7061 int changed[coding_category_max]; | |
7062 enum coding_category priorities[coding_category_max]; | |
7063 | |
7064 bzero (changed, sizeof changed); | |
7065 | |
7066 for (i = j = 0; i < nargs; i++) | |
7067 { | |
7068 enum coding_category category; | |
7069 Lisp_Object spec, attrs; | |
7070 | |
7071 CHECK_CODING_SYSTEM_GET_SPEC (args[i], spec); | |
7072 attrs = AREF (spec, 0); | |
7073 category = XINT (CODING_ATTR_CATEGORY (attrs)); | |
7074 if (changed[category]) | |
7075 /* Ignore this coding system because a coding system of the | |
7076 same category already had a higher priority. */ | |
7077 continue; | |
7078 changed[category] = 1; | |
7079 priorities[j++] = category; | |
7080 if (coding_categories[category].id >= 0 | |
7081 && ! EQ (args[i], CODING_ID_NAME (coding_categories[category].id))) | |
7082 setup_coding_system (args[i], &coding_categories[category]); | |
7083 } | |
7084 | |
7085 /* Now we have decided top J priorities. Reflect the order of the | |
7086 original priorities to the remaining priorities. */ | |
7087 | |
7088 for (i = j, j = 0; i < coding_category_max; i++, j++) | |
7089 { | |
7090 while (j < coding_category_max | |
7091 && changed[coding_priorities[j]]) | |
7092 j++; | |
7093 if (j == coding_category_max) | |
7094 abort (); | |
7095 priorities[i] = coding_priorities[j]; | |
7096 } | |
7097 | |
7098 bcopy (priorities, coding_priorities, sizeof priorities); | |
7099 return Qnil; | |
7100 } | |
7101 | |
7102 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, | |
7103 Scoding_system_priority_list, 0, 1, 0, | |
7104 doc: /* Return a list of coding systems ordered by their priorities. */) | |
7105 (highestp) | |
7106 Lisp_Object highestp; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7107 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7108 int i; |
88365 | 7109 Lisp_Object val; |
7110 | |
7111 for (i = 0, val = Qnil; i < coding_category_max; i++) | |
7112 { | |
7113 enum coding_category category = coding_priorities[i]; | |
7114 int id = coding_categories[category].id; | |
7115 Lisp_Object attrs; | |
7116 | |
7117 if (id < 0) | |
7118 continue; | |
7119 attrs = CODING_ID_ATTRS (id); | |
7120 if (! NILP (highestp)) | |
7121 return CODING_ATTR_BASE_NAME (attrs); | |
7122 val = Fcons (CODING_ATTR_BASE_NAME (attrs), val); | |
7123 } | |
7124 return Fnreverse (val); | |
7125 } | |
7126 | |
7127 static Lisp_Object | |
7128 make_subsidiaries (base) | |
7129 Lisp_Object base; | |
7130 { | |
7131 Lisp_Object subsidiaries; | |
7132 char *suffixes[] = { "-unix", "-dos", "-mac" }; | |
7133 int base_name_len = STRING_BYTES (XSYMBOL (base)->name); | |
7134 char *buf = (char *) alloca (base_name_len + 6); | |
7135 int i; | |
7136 | |
7137 bcopy (XSYMBOL (base)->name->data, buf, base_name_len); | |
7138 subsidiaries = Fmake_vector (make_number (3), Qnil); | |
7139 for (i = 0; i < 3; i++) | |
7140 { | |
7141 bcopy (suffixes[i], buf + base_name_len, strlen (suffixes[i]) + 1); | |
7142 ASET (subsidiaries, i, intern (buf)); | |
7143 } | |
7144 return subsidiaries; | |
7145 } | |
7146 | |
7147 | |
7148 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, | |
7149 Sdefine_coding_system_internal, coding_arg_max, MANY, 0, | |
7150 doc: /* For internal use only. */) | |
7151 (nargs, args) | |
7152 int nargs; | |
7153 Lisp_Object *args; | |
7154 { | |
7155 Lisp_Object name; | |
7156 Lisp_Object spec_vec; /* [ ATTRS ALIASE EOL_TYPE ] */ | |
7157 Lisp_Object attrs; /* Vector of attributes. */ | |
7158 Lisp_Object eol_type; | |
7159 Lisp_Object aliases; | |
7160 Lisp_Object coding_type, charset_list, safe_charsets; | |
7161 enum coding_category category; | |
7162 Lisp_Object tail, val; | |
7163 int max_charset_id = 0; | |
7164 int i; | |
7165 | |
7166 if (nargs < coding_arg_max) | |
7167 goto short_args; | |
7168 | |
7169 attrs = Fmake_vector (make_number (coding_attr_last_index), Qnil); | |
7170 | |
7171 name = args[coding_arg_name]; | |
7172 CHECK_SYMBOL (name); | |
7173 CODING_ATTR_BASE_NAME (attrs) = name; | |
7174 | |
7175 val = args[coding_arg_mnemonic]; | |
7176 if (! STRINGP (val)) | |
7177 CHECK_CHARACTER (val); | |
7178 CODING_ATTR_MNEMONIC (attrs) = val; | |
7179 | |
7180 coding_type = args[coding_arg_coding_type]; | |
7181 CHECK_SYMBOL (coding_type); | |
7182 CODING_ATTR_TYPE (attrs) = coding_type; | |
7183 | |
7184 charset_list = args[coding_arg_charset_list]; | |
7185 if (SYMBOLP (charset_list)) | |
7186 { | |
7187 if (EQ (charset_list, Qiso_2022)) | |
7188 { | |
7189 if (! EQ (coding_type, Qiso_2022)) | |
7190 error ("Invalid charset-list"); | |
7191 charset_list = Viso_2022_charset_list; | |
7192 } | |
7193 else if (EQ (charset_list, Qemacs_mule)) | |
7194 { | |
7195 if (! EQ (coding_type, Qemacs_mule)) | |
7196 error ("Invalid charset-list"); | |
7197 charset_list = Vemacs_mule_charset_list; | |
7198 } | |
7199 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
7200 if (max_charset_id < XFASTINT (XCAR (tail))) | |
7201 max_charset_id = XFASTINT (XCAR (tail)); | |
7202 } | |
7203 else | |
7204 { | |
7205 charset_list = Fcopy_sequence (charset_list); | |
7206 for (tail = charset_list; !NILP (tail); tail = Fcdr (tail)) | |
7207 { | |
7208 struct charset *charset; | |
7209 | |
7210 val = Fcar (tail); | |
7211 CHECK_CHARSET_GET_CHARSET (val, charset); | |
7212 if (EQ (coding_type, Qiso_2022) | |
7213 ? CHARSET_ISO_FINAL (charset) < 0 | |
7214 : EQ (coding_type, Qemacs_mule) | |
7215 ? CHARSET_EMACS_MULE_ID (charset) < 0 | |
7216 : 0) | |
7217 error ("Can't handle charset `%s'", | |
7218 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7219 | |
7220 XCAR (tail) = make_number (charset->id); | |
7221 if (max_charset_id < charset->id) | |
7222 max_charset_id = charset->id; | |
7223 } | |
7224 } | |
7225 CODING_ATTR_CHARSET_LIST (attrs) = charset_list; | |
7226 | |
7227 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
7228 make_number (255)); | |
7229 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
7230 XSTRING (safe_charsets)->data[XFASTINT (XCAR (tail))] = 0; | |
7231 CODING_ATTR_SAFE_CHARSETS (attrs) = safe_charsets; | |
7232 | |
7233 val = args[coding_arg_decode_translation_table]; | |
7234 if (! NILP (val)) | |
7235 CHECK_CHAR_TABLE (val); | |
7236 CODING_ATTR_DECODE_TBL (attrs) = val; | |
7237 | |
7238 val = args[coding_arg_encode_translation_table]; | |
7239 if (! NILP (val)) | |
7240 CHECK_CHAR_TABLE (val); | |
7241 CODING_ATTR_ENCODE_TBL (attrs) = val; | |
7242 | |
7243 val = args[coding_arg_post_read_conversion]; | |
7244 CHECK_SYMBOL (val); | |
7245 CODING_ATTR_POST_READ (attrs) = val; | |
7246 | |
7247 val = args[coding_arg_pre_write_conversion]; | |
7248 CHECK_SYMBOL (val); | |
7249 CODING_ATTR_PRE_WRITE (attrs) = val; | |
7250 | |
7251 val = args[coding_arg_default_char]; | |
7252 if (NILP (val)) | |
7253 CODING_ATTR_DEFAULT_CHAR (attrs) = make_number (' '); | |
7254 else | |
7255 { | |
7256 CHECK_CHARACTER (val); | |
7257 CODING_ATTR_DEFAULT_CHAR (attrs) = val; | |
7258 } | |
7259 | |
7260 val = args[coding_arg_plist]; | |
7261 CHECK_LIST (val); | |
7262 CODING_ATTR_PLIST (attrs) = val; | |
7263 | |
7264 if (EQ (coding_type, Qcharset)) | |
7265 { | |
7266 val = Fmake_vector (make_number (256), Qnil); | |
7267 | |
7268 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
7269 { | |
7270 struct charset *charset = CHARSET_FROM_ID (XINT (XCAR (tail))); | |
7271 | |
7272 for (i = charset->code_space[0]; i <= charset->code_space[1]; i++) | |
7273 if (NILP (AREF (val, i))) | |
7274 ASET (val, i, XCAR (tail)); | |
7275 } | |
7276 ASET (attrs, coding_attr_charset_valids, val); | |
7277 category = coding_category_charset; | |
7278 } | |
7279 else if (EQ (coding_type, Qccl)) | |
7280 { | |
7281 Lisp_Object valids; | |
7282 | |
7283 if (nargs < coding_arg_ccl_max) | |
7284 goto short_args; | |
7285 | |
7286 val = args[coding_arg_ccl_decoder]; | |
7287 CHECK_CCL_PROGRAM (val); | |
7288 if (VECTORP (val)) | |
7289 val = Fcopy_sequence (val); | |
7290 ASET (attrs, coding_attr_ccl_decoder, val); | |
7291 | |
7292 val = args[coding_arg_ccl_encoder]; | |
7293 CHECK_CCL_PROGRAM (val); | |
7294 if (VECTORP (val)) | |
7295 val = Fcopy_sequence (val); | |
7296 ASET (attrs, coding_attr_ccl_encoder, val); | |
7297 | |
7298 val = args[coding_arg_ccl_valids]; | |
7299 valids = Fmake_string (make_number (256), make_number (0)); | |
7300 for (tail = val; !NILP (tail); tail = Fcdr (tail)) | |
7301 { | |
7302 val = Fcar (tail); | |
7303 if (INTEGERP (val)) | |
7304 ASET (valids, XINT (val), 1); | |
7305 else | |
7306 { | |
7307 int from, to; | |
7308 | |
7309 CHECK_CONS (val); | |
7310 CHECK_NUMBER (XCAR (val)); | |
7311 CHECK_NUMBER (XCDR (val)); | |
7312 from = XINT (XCAR (val)); | |
7313 to = XINT (XCDR (val)); | |
7314 for (i = from; i <= to; i++) | |
7315 ASET (valids, i, 1); | |
7316 } | |
7317 } | |
7318 ASET (attrs, coding_attr_ccl_valids, valids); | |
7319 | |
7320 category = coding_category_ccl; | |
7321 } | |
7322 else if (EQ (coding_type, Qutf_16)) | |
7323 { | |
7324 Lisp_Object bom, endian; | |
7325 | |
7326 if (nargs < coding_arg_utf16_max) | |
7327 goto short_args; | |
7328 | |
7329 bom = args[coding_arg_utf16_bom]; | |
7330 if (! NILP (bom) && ! EQ (bom, Qt)) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7331 { |
88365 | 7332 CHECK_CONS (bom); |
7333 CHECK_CODING_SYSTEM (XCAR (bom)); | |
7334 CHECK_CODING_SYSTEM (XCDR (bom)); | |
7335 } | |
7336 ASET (attrs, coding_attr_utf_16_bom, bom); | |
7337 | |
7338 endian = args[coding_arg_utf16_endian]; | |
7339 ASET (attrs, coding_attr_utf_16_endian, endian); | |
7340 | |
7341 category = (CONSP (bom) | |
7342 ? coding_category_utf_16_auto | |
7343 : NILP (bom) | |
7344 ? (NILP (endian) | |
7345 ? coding_category_utf_16_be_nosig | |
7346 : coding_category_utf_16_le_nosig) | |
7347 : (NILP (endian) | |
7348 ? coding_category_utf_16_be | |
7349 : coding_category_utf_16_le)); | |
7350 } | |
7351 else if (EQ (coding_type, Qiso_2022)) | |
7352 { | |
7353 Lisp_Object initial, reg_usage, request, flags; | |
7354 struct charset *charset; | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
7355 int i, id; |
88365 | 7356 |
7357 if (nargs < coding_arg_iso2022_max) | |
7358 goto short_args; | |
7359 | |
7360 initial = Fcopy_sequence (args[coding_arg_iso2022_initial]); | |
7361 CHECK_VECTOR (initial); | |
7362 for (i = 0; i < 4; i++) | |
7363 { | |
7364 val = Faref (initial, make_number (i)); | |
7365 if (! NILP (val)) | |
7366 { | |
7367 CHECK_CHARSET_GET_ID (val, id); | |
7368 ASET (initial, i, make_number (id)); | |
7369 } | |
7370 else | |
7371 ASET (initial, i, make_number (-1)); | |
7372 } | |
7373 | |
7374 reg_usage = args[coding_arg_iso2022_reg_usage]; | |
7375 CHECK_CONS (reg_usage); | |
7376 CHECK_NATNUM (XCAR (reg_usage)); | |
7377 CHECK_NATNUM (XCDR (reg_usage)); | |
7378 | |
7379 request = Fcopy_sequence (args[coding_arg_iso2022_request]); | |
7380 for (tail = request; ! NILP (tail); tail = Fcdr (tail)) | |
7381 { | |
7382 int id; | |
7383 | |
7384 val = Fcar (tail); | |
7385 CHECK_CONS (val); | |
7386 CHECK_CHARSET_GET_ID (XCAR (val), id); | |
7387 CHECK_NATNUM (XCDR (val)); | |
7388 if (XINT (XCDR (val)) >= 4) | |
7389 error ("Invalid graphic register number: %d", XINT (XCDR (val))); | |
7390 XCAR (val) = make_number (id); | |
7391 } | |
7392 | |
7393 flags = args[coding_arg_iso2022_flags]; | |
7394 CHECK_NATNUM (flags); | |
7395 i = XINT (flags); | |
7396 if (EQ (args[coding_arg_charset_list], Qiso_2022)) | |
7397 flags = make_number (i | CODING_ISO_FLAG_FULL_SUPPORT); | |
7398 | |
7399 ASET (attrs, coding_attr_iso_initial, initial); | |
7400 ASET (attrs, coding_attr_iso_usage, reg_usage); | |
7401 ASET (attrs, coding_attr_iso_request, request); | |
7402 ASET (attrs, coding_attr_iso_flags, flags); | |
7403 setup_iso_safe_charsets (attrs); | |
7404 | |
7405 if (i & CODING_ISO_FLAG_SEVEN_BITS) | |
7406 category = ((i & (CODING_ISO_FLAG_LOCKING_SHIFT | |
7407 | CODING_ISO_FLAG_SINGLE_SHIFT)) | |
7408 ? coding_category_iso_7_else | |
7409 : EQ (args[coding_arg_charset_list], Qiso_2022) | |
7410 ? coding_category_iso_7 | |
7411 : coding_category_iso_7_tight); | |
7412 else | |
7413 { | |
7414 int id = XINT (AREF (initial, 1)); | |
7415 | |
7416 category = (((i & (CODING_ISO_FLAG_LOCKING_SHIFT | |
7417 | CODING_ISO_FLAG_SINGLE_SHIFT)) | |
7418 || EQ (args[coding_arg_charset_list], Qiso_2022) | |
7419 || id < 0) | |
7420 ? coding_category_iso_8_else | |
7421 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id)) == 1) | |
7422 ? coding_category_iso_8_1 | |
7423 : coding_category_iso_8_2); | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7424 } |
88365 | 7425 } |
7426 else if (EQ (coding_type, Qemacs_mule)) | |
7427 { | |
7428 if (EQ (args[coding_arg_charset_list], Qemacs_mule)) | |
7429 ASET (attrs, coding_attr_emacs_mule_full, Qt); | |
7430 | |
7431 category = coding_category_emacs_mule; | |
7432 } | |
7433 else if (EQ (coding_type, Qshift_jis)) | |
7434 { | |
7435 | |
7436 struct charset *charset; | |
7437 | |
7438 if (XINT (Flength (charset_list)) != 3) | |
7439 error ("There should be just three charsets"); | |
7440 | |
7441 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7442 if (CHARSET_DIMENSION (charset) != 1) | |
7443 error ("Dimension of charset %s is not one", | |
7444 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7445 | |
7446 charset_list = XCDR (charset_list); | |
7447 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7448 if (CHARSET_DIMENSION (charset) != 1) | |
7449 error ("Dimension of charset %s is not one", | |
7450 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7451 | |
7452 charset_list = XCDR (charset_list); | |
7453 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7454 if (CHARSET_DIMENSION (charset) != 2) | |
7455 error ("Dimension of charset %s is not two", | |
7456 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7457 | |
7458 category = coding_category_sjis; | |
7459 Vsjis_coding_system = name; | |
7460 } | |
7461 else if (EQ (coding_type, Qbig5)) | |
7462 { | |
7463 struct charset *charset; | |
7464 | |
7465 if (XINT (Flength (charset_list)) != 2) | |
7466 error ("There should be just two charsets"); | |
7467 | |
7468 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7469 if (CHARSET_DIMENSION (charset) != 1) | |
7470 error ("Dimension of charset %s is not one", | |
7471 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7472 | |
7473 charset_list = XCDR (charset_list); | |
7474 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
7475 if (CHARSET_DIMENSION (charset) != 2) | |
7476 error ("Dimension of charset %s is not two", | |
7477 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
7478 | |
7479 category = coding_category_big5; | |
7480 Vbig5_coding_system = name; | |
7481 } | |
7482 else if (EQ (coding_type, Qraw_text)) | |
7483 category = coding_category_raw_text; | |
7484 else if (EQ (coding_type, Qutf_8)) | |
7485 category = coding_category_utf_8; | |
7486 else if (EQ (coding_type, Qundecided)) | |
7487 category = coding_category_undecided; | |
7488 else | |
7489 error ("Invalid coding system type: %s", | |
7490 XSYMBOL (coding_type)->name->data); | |
7491 | |
7492 CODING_ATTR_CATEGORY (attrs) = make_number (category); | |
7493 | |
7494 eol_type = args[coding_arg_eol_type]; | |
7495 if (! NILP (eol_type) | |
7496 && ! EQ (eol_type, Qunix) | |
7497 && ! EQ (eol_type, Qdos) | |
7498 && ! EQ (eol_type, Qmac)) | |
7499 error ("Invalid eol-type"); | |
7500 | |
7501 aliases = Fcons (name, Qnil); | |
7502 | |
7503 if (NILP (eol_type)) | |
7504 { | |
7505 eol_type = make_subsidiaries (name); | |
7506 for (i = 0; i < 3; i++) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7507 { |
88365 | 7508 Lisp_Object this_spec, this_name, this_aliases, this_eol_type; |
7509 | |
7510 this_name = AREF (eol_type, i); | |
7511 this_aliases = Fcons (this_name, Qnil); | |
7512 this_eol_type = (i == 0 ? Qunix : i == 1 ? Qdos : Qmac); | |
7513 this_spec = Fmake_vector (make_number (3), attrs); | |
7514 ASET (this_spec, 1, this_aliases); | |
7515 ASET (this_spec, 2, this_eol_type); | |
7516 Fputhash (this_name, this_spec, Vcoding_system_hash_table); | |
7517 Vcoding_system_list = Fcons (this_name, Vcoding_system_list); | |
7518 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (this_name), Qnil), | |
7519 Vcoding_system_alist); | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7520 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7521 } |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7522 |
88365 | 7523 spec_vec = Fmake_vector (make_number (3), attrs); |
7524 ASET (spec_vec, 1, aliases); | |
7525 ASET (spec_vec, 2, eol_type); | |
7526 | |
7527 Fputhash (name, spec_vec, Vcoding_system_hash_table); | |
7528 Vcoding_system_list = Fcons (name, Vcoding_system_list); | |
7529 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil), | |
7530 Vcoding_system_alist); | |
7531 | |
7532 { | |
7533 int id = coding_categories[category].id; | |
7534 | |
7535 if (id < 0 || EQ (name, CODING_ID_NAME (id))) | |
7536 setup_coding_system (name, &coding_categories[category]); | |
7537 } | |
7538 | |
7539 return Qnil; | |
7540 | |
7541 short_args: | |
7542 return Fsignal (Qwrong_number_of_arguments, | |
7543 Fcons (intern ("define-coding-system-internal"), | |
7544 make_number (nargs))); | |
7545 } | |
7546 | |
7547 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, | |
7548 Sdefine_coding_system_alias, 2, 2, 0, | |
7549 doc: /* Define ALIAS as an alias for CODING-SYSTEM. */) | |
7550 (alias, coding_system) | |
7551 Lisp_Object alias, coding_system; | |
7552 { | |
7553 Lisp_Object spec, aliases, eol_type; | |
7554 | |
7555 CHECK_SYMBOL (alias); | |
7556 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7557 aliases = AREF (spec, 1); | |
7558 while (!NILP (XCDR (aliases))) | |
7559 aliases = XCDR (aliases); | |
7560 XCDR (aliases) = Fcons (alias, Qnil); | |
7561 | |
7562 eol_type = AREF (spec, 2); | |
7563 if (VECTORP (eol_type)) | |
7564 { | |
7565 Lisp_Object subsidiaries; | |
7566 int i; | |
7567 | |
7568 subsidiaries = make_subsidiaries (alias); | |
7569 for (i = 0; i < 3; i++) | |
7570 Fdefine_coding_system_alias (AREF (subsidiaries, i), | |
7571 AREF (eol_type, i)); | |
7572 | |
7573 ASET (spec, 2, subsidiaries); | |
7574 } | |
7575 | |
7576 Fputhash (alias, spec, Vcoding_system_hash_table); | |
7577 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7578 return Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7579 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7580 |
88365 | 7581 DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
7582 1, 1, 0, | |
7583 doc: /* Return the base of CODING-SYSTEM. | |
7584 Any alias or subsidiary coding systems are not base coding system. */) | |
7585 (coding_system) | |
7586 Lisp_Object coding_system; | |
7587 { | |
7588 Lisp_Object spec, attrs; | |
7589 | |
7590 if (NILP (coding_system)) | |
7591 return (Qno_conversion); | |
7592 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7593 attrs = AREF (spec, 0); | |
7594 return CODING_ATTR_BASE_NAME (attrs); | |
7595 } | |
7596 | |
7597 DEFUN ("coding-system-plist", Fcoding_system_plist, Scoding_system_plist, | |
7598 1, 1, 0, | |
7599 doc: "Return the property list of CODING-SYSTEM.") | |
7600 (coding_system) | |
7601 Lisp_Object coding_system; | |
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7602 { |
88365 | 7603 Lisp_Object spec, attrs; |
7604 | |
7605 if (NILP (coding_system)) | |
7606 coding_system = Qno_conversion; | |
7607 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7608 attrs = AREF (spec, 0); | |
7609 return CODING_ATTR_PLIST (attrs); | |
7610 } | |
7611 | |
7612 | |
7613 DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |
7614 1, 1, 0, | |
7615 doc: /* Return the list of aliases of CODING-SYSTEM. | |
7616 A base coding system is what made by `define-coding-system'. | |
7617 Any alias nor subsidiary coding systems are not base coding system. */) | |
7618 (coding_system) | |
7619 Lisp_Object coding_system; | |
7620 { | |
7621 Lisp_Object spec; | |
7622 | |
7623 if (NILP (coding_system)) | |
7624 coding_system = Qno_conversion; | |
7625 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
7626 return AREF (spec, 2); | |
7627 } | |
7628 | |
7629 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, | |
7630 Scoding_system_eol_type, 1, 1, 0, | |
7631 doc: /* Return eol-type of CODING-SYSTEM. | |
7632 An eol-type is integer 0, 1, 2, or a vector of coding systems. | |
7633 | |
7634 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF, | |
7635 and CR respectively. | |
7636 | |
7637 A vector value indicates that a format of end-of-line should be | |
7638 detected automatically. Nth element of the vector is the subsidiary | |
7639 coding system whose eol-type is N. */) | |
7640 (coding_system) | |
7641 Lisp_Object coding_system; | |
7642 { | |
7643 Lisp_Object spec, eol_type; | |
7644 int n; | |
7645 | |
7646 if (NILP (coding_system)) | |
7647 coding_system = Qno_conversion; | |
7648 if (! CODING_SYSTEM_P (coding_system)) | |
7649 return Qnil; | |
7650 spec = CODING_SYSTEM_SPEC (coding_system); | |
7651 eol_type = AREF (spec, 2); | |
7652 if (VECTORP (eol_type)) | |
7653 return Fcopy_sequence (eol_type); | |
7654 n = EQ (eol_type, Qunix) ? 0 : EQ (eol_type, Qdos) ? 1 : 2; | |
7655 return make_number (n); | |
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7656 } |
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7657 |
17052 | 7658 #endif /* emacs */ |
7659 | |
7660 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7661 /*** 9. Post-amble ***/ |
17052 | 7662 |
21514 | 7663 void |
17052 | 7664 init_coding_once () |
7665 { | |
7666 int i; | |
7667 | |
88365 | 7668 for (i = 0; i < coding_category_max; i++) |
7669 { | |
7670 coding_categories[i].id = -1; | |
7671 coding_priorities[i] = i; | |
7672 } | |
17052 | 7673 |
7674 /* ISO2022 specific initialize routine. */ | |
7675 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
|
7676 iso_code_class[i] = ISO_control_0; |
17052 | 7677 for (i = 0x21; i < 0x7F; i++) |
7678 iso_code_class[i] = ISO_graphic_plane_0; | |
7679 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
|
7680 iso_code_class[i] = ISO_control_1; |
17052 | 7681 for (i = 0xA1; i < 0xFF; i++) |
7682 iso_code_class[i] = ISO_graphic_plane_1; | |
7683 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
7684 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
7685 iso_code_class[ISO_CODE_CR] = ISO_carriage_return; | |
7686 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
7687 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
7688 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
7689 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
7690 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
7691 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
7692 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
7693 | |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
7694 inhibit_pre_post_conversion = 0; |
88365 | 7695 |
7696 for (i = 0; i < 256; i++) | |
7697 { | |
7698 emacs_mule_bytes[i] = 1; | |
7699 } | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7700 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7701 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7702 #ifdef emacs |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7703 |
21514 | 7704 void |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7705 syms_of_coding () |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7706 { |
88365 | 7707 staticpro (&Vcoding_system_hash_table); |
7708 Vcoding_system_hash_table = Fmakehash (Qeq); | |
7709 | |
7710 staticpro (&Vsjis_coding_system); | |
7711 Vsjis_coding_system = Qnil; | |
7712 | |
7713 staticpro (&Vbig5_coding_system); | |
7714 Vbig5_coding_system = Qnil; | |
7715 | |
7716 staticpro (&Vcode_conversion_work_buf_list); | |
7717 Vcode_conversion_work_buf_list = Qnil; | |
7718 | |
7719 staticpro (&Vcode_conversion_reused_work_buf); | |
7720 Vcode_conversion_reused_work_buf = Qnil; | |
7721 | |
7722 DEFSYM (Qcharset, "charset"); | |
7723 DEFSYM (Qtarget_idx, "target-idx"); | |
7724 DEFSYM (Qcoding_system_history, "coding-system-history"); | |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
7725 Fset (Qcoding_system_history, Qnil); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
7726 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7727 /* 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
|
7728 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
|
7729 /* 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
|
7730 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
|
7731 |
88365 | 7732 DEFSYM (Qcall_process, "call-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7733 /* 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
|
7734 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
|
7735 |
88365 | 7736 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
|
7737 /* 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
|
7738 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
|
7739 |
88365 | 7740 DEFSYM (Qstart_process, "start-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7741 /* 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
|
7742 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
|
7743 |
88365 | 7744 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
|
7745 /* 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
|
7746 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
|
7747 |
88365 | 7748 DEFSYM (Qcoding_system, "coding-system"); |
7749 DEFSYM (Qcoding_aliases, "coding-aliases"); | |
7750 | |
7751 DEFSYM (Qeol_type, "eol-type"); | |
7752 DEFSYM (Qunix, "unix"); | |
7753 DEFSYM (Qdos, "dos"); | |
7754 DEFSYM (Qmac, "mac"); | |
7755 | |
7756 DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system"); | |
7757 DEFSYM (Qpost_read_conversion, "post-read-conversion"); | |
7758 DEFSYM (Qpre_write_conversion, "pre-write-conversion"); | |
7759 DEFSYM (Qdefault_char, "default-char"); | |
7760 DEFSYM (Qundecided, "undecided"); | |
7761 DEFSYM (Qno_conversion, "no-conversion"); | |
7762 DEFSYM (Qraw_text, "raw-text"); | |
7763 | |
7764 DEFSYM (Qiso_2022, "iso-2022"); | |
7765 | |
7766 DEFSYM (Qutf_8, "utf-8"); | |
7767 | |
7768 DEFSYM (Qutf_16, "utf-16"); | |
7769 DEFSYM (Qutf_16_be, "utf-16-be"); | |
7770 DEFSYM (Qutf_16_be_nosig, "utf-16-be-nosig"); | |
7771 DEFSYM (Qutf_16_le, "utf-16-l3"); | |
7772 DEFSYM (Qutf_16_le_nosig, "utf-16-le-nosig"); | |
7773 DEFSYM (Qsignature, "signature"); | |
7774 DEFSYM (Qendian, "endian"); | |
7775 DEFSYM (Qbig, "big"); | |
7776 DEFSYM (Qlittle, "little"); | |
7777 | |
7778 DEFSYM (Qshift_jis, "shift-jis"); | |
7779 DEFSYM (Qbig5, "big5"); | |
7780 | |
7781 DEFSYM (Qcoding_system_p, "coding-system-p"); | |
7782 | |
7783 DEFSYM (Qcoding_system_error, "coding-system-error"); | |
17052 | 7784 Fput (Qcoding_system_error, Qerror_conditions, |
7785 Fcons (Qcoding_system_error, Fcons (Qerror, Qnil))); | |
7786 Fput (Qcoding_system_error, Qerror_message, | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7787 build_string ("Invalid coding system")); |
17052 | 7788 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
7789 /* 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
|
7790 Setting this variable twice is harmless. |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
7791 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
|
7792 Qchar_table_extra_slots = intern ("char-table-extra-slots"); |
88365 | 7793 |
7794 DEFSYM (Qtranslation_table, "translation-table"); | |
7795 Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (1)); | |
7796 DEFSYM (Qtranslation_table_id, "translation-table-id"); | |
7797 DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); | |
7798 DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); | |
7799 | |
7800 DEFSYM (Qchar_coding_system, "char-coding-system"); | |
7801 | |
41678
5aa97e545399
(syms_of_coding) <Qchar_coding_system>: Give it an
Dave Love <fx@gnu.org>
parents:
41624
diff
changeset
|
7802 Fput (Qchar_coding_system, Qchar_table_extra_slots, make_number (2)); |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
7803 |
88365 | 7804 DEFSYM (Qvalid_codes, "valid-codes"); |
7805 | |
7806 DEFSYM (Qemacs_mule, "emacs-mule"); | |
7807 | |
7808 Vcoding_category_table | |
7809 = Fmake_vector (make_number (coding_category_max), Qnil); | |
7810 staticpro (&Vcoding_category_table); | |
7811 /* Followings are target of code detection. */ | |
7812 ASET (Vcoding_category_table, coding_category_iso_7, | |
7813 intern ("coding-category-iso-7")); | |
7814 ASET (Vcoding_category_table, coding_category_iso_7_tight, | |
7815 intern ("coding-category-iso-7-tight")); | |
7816 ASET (Vcoding_category_table, coding_category_iso_8_1, | |
7817 intern ("coding-category-iso-8-1")); | |
7818 ASET (Vcoding_category_table, coding_category_iso_8_2, | |
7819 intern ("coding-category-iso-8-2")); | |
7820 ASET (Vcoding_category_table, coding_category_iso_7_else, | |
7821 intern ("coding-category-iso-7-else")); | |
7822 ASET (Vcoding_category_table, coding_category_iso_8_else, | |
7823 intern ("coding-category-iso-8-else")); | |
7824 ASET (Vcoding_category_table, coding_category_utf_8, | |
7825 intern ("coding-category-utf-8")); | |
7826 ASET (Vcoding_category_table, coding_category_utf_16_be, | |
7827 intern ("coding-category-utf-16-be")); | |
7828 ASET (Vcoding_category_table, coding_category_utf_16_le, | |
7829 intern ("coding-category-utf-16-le")); | |
7830 ASET (Vcoding_category_table, coding_category_utf_16_be_nosig, | |
7831 intern ("coding-category-utf-16-be-nosig")); | |
7832 ASET (Vcoding_category_table, coding_category_utf_16_le_nosig, | |
7833 intern ("coding-category-utf-16-le-nosig")); | |
7834 ASET (Vcoding_category_table, coding_category_charset, | |
7835 intern ("coding-category-charset")); | |
7836 ASET (Vcoding_category_table, coding_category_sjis, | |
7837 intern ("coding-category-sjis")); | |
7838 ASET (Vcoding_category_table, coding_category_big5, | |
7839 intern ("coding-category-big5")); | |
7840 ASET (Vcoding_category_table, coding_category_ccl, | |
7841 intern ("coding-category-ccl")); | |
7842 ASET (Vcoding_category_table, coding_category_emacs_mule, | |
7843 intern ("coding-category-emacs-mule")); | |
7844 /* Followings are NOT target of code detection. */ | |
7845 ASET (Vcoding_category_table, coding_category_raw_text, | |
7846 intern ("coding-category-raw-text")); | |
7847 ASET (Vcoding_category_table, coding_category_undecided, | |
7848 intern ("coding-category-undecided")); | |
7849 | |
7850 { | |
7851 Lisp_Object args[coding_arg_max]; | |
7852 Lisp_Object plist[14]; | |
7853 int i; | |
7854 | |
7855 for (i = 0; i < coding_arg_max; i++) | |
7856 args[i] = Qnil; | |
7857 | |
7858 plist[0] = intern (":name"); | |
7859 plist[1] = args[coding_arg_name] = Qno_conversion; | |
7860 plist[2] = intern (":mnemonic"); | |
7861 plist[3] = args[coding_arg_mnemonic] = make_number ('='); | |
7862 plist[4] = intern (":coding-type"); | |
7863 plist[5] = args[coding_arg_coding_type] = Qraw_text; | |
7864 plist[6] = intern (":ascii-compatible-p"); | |
7865 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; | |
7866 plist[8] = intern (":default-char"); | |
7867 plist[9] = args[coding_arg_default_char] = make_number (0); | |
7868 plist[10] = intern (":docstring"); | |
7869 plist[11] = build_string ("Do no conversion.\n\ | |
7870 \n\ | |
7871 When you visit a file with this coding, the file is read into a\n\ | |
7872 unibyte buffer as is, thus each byte of a file is treated as a\n\ | |
7873 character."); | |
7874 plist[12] = intern (":eol-type"); | |
7875 plist[13] = args[coding_arg_eol_type] = Qunix; | |
7876 args[coding_arg_plist] = Flist (14, plist); | |
7877 Fdefine_coding_system_internal (coding_arg_max, args); | |
7878 } | |
7879 | |
7880 setup_coding_system (Qno_conversion, &keyboard_coding); | |
7881 setup_coding_system (Qno_conversion, &terminal_coding); | |
7882 setup_coding_system (Qno_conversion, &safe_terminal_coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7883 |
17052 | 7884 defsubr (&Scoding_system_p); |
7885 defsubr (&Sread_coding_system); | |
7886 defsubr (&Sread_non_nil_coding_system); | |
7887 defsubr (&Scheck_coding_system); | |
7888 defsubr (&Sdetect_coding_region); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7889 defsubr (&Sdetect_coding_string); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
7890 defsubr (&Sfind_coding_systems_region_internal); |
88365 | 7891 defsubr (&Scheck_coding_systems_region); |
17052 | 7892 defsubr (&Sdecode_coding_region); |
7893 defsubr (&Sencode_coding_region); | |
7894 defsubr (&Sdecode_coding_string); | |
7895 defsubr (&Sencode_coding_string); | |
7896 defsubr (&Sdecode_sjis_char); | |
7897 defsubr (&Sencode_sjis_char); | |
7898 defsubr (&Sdecode_big5_char); | |
7899 defsubr (&Sencode_big5_char); | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7900 defsubr (&Sset_terminal_coding_system_internal); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7901 defsubr (&Sset_safe_terminal_coding_system_internal); |
17052 | 7902 defsubr (&Sterminal_coding_system); |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7903 defsubr (&Sset_keyboard_coding_system_internal); |
17052 | 7904 defsubr (&Skeyboard_coding_system); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
7905 defsubr (&Sfind_operation_coding_system); |
88365 | 7906 defsubr (&Sset_coding_system_priority); |
7907 defsubr (&Sdefine_coding_system_internal); | |
7908 defsubr (&Sdefine_coding_system_alias); | |
7909 defsubr (&Scoding_system_base); | |
7910 defsubr (&Scoding_system_plist); | |
7911 defsubr (&Scoding_system_aliases); | |
7912 defsubr (&Scoding_system_eol_type); | |
7913 defsubr (&Scoding_system_priority_list); | |
17052 | 7914 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
7915 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
|
7916 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
|
7917 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7918 Do not alter the value of this variable manually. This variable should be |
88365 | 7919 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
|
7920 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
7921 Vcoding_system_list = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
7922 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
7923 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
|
7924 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
|
7925 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
|
7926 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
|
7927 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7928 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
|
7929 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
|
7930 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
7931 Vcoding_system_alist = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
7932 |
17052 | 7933 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
|
7934 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
|
7935 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7936 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
|
7937 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
|
7938 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
|
7939 system bound to the corresponding coding-category is selected. */); |
17052 | 7940 { |
7941 int i; | |
7942 | |
7943 Vcoding_category_list = Qnil; | |
88365 | 7944 for (i = coding_category_max - 1; i >= 0; i--) |
17052 | 7945 Vcoding_category_list |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7946 = Fcons (XVECTOR (Vcoding_category_table)->contents[i], |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7947 Vcoding_category_list); |
17052 | 7948 } |
7949 | |
7950 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
|
7951 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
|
7952 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
|
7953 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
|
7954 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
|
7955 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
|
7956 `process-coding-system-alist', and `network-coding-system-alist'. */); |
17052 | 7957 Vcoding_system_for_read = Qnil; |
7958 | |
7959 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
|
7960 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
|
7961 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
|
7962 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
|
7963 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
|
7964 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7965 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
|
7966 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
|
7967 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
|
7968 `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
|
7969 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
|
7970 the value of `buffer-file-coding-system' is used. */); |
17052 | 7971 Vcoding_system_for_write = Qnil; |
7972 | |
7973 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
88365 | 7974 doc: /* |
7975 Coding system used in the latest file or process I/O. */); | |
17052 | 7976 Vlast_coding_system_used = Qnil; |
7977 | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7978 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
88365 | 7979 doc: /* |
7980 *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
|
7981 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
|
7982 such conversion. */); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7983 inhibit_eol_conversion = 0; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
7984 |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
7985 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system, |
88365 | 7986 doc: /* |
7987 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
|
7988 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
|
7989 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
|
7990 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
|
7991 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7992 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
88365 | 7993 doc: /* |
7994 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
|
7995 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
|
7996 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
|
7997 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
|
7998 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
|
7999 the file contents. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8000 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
|
8001 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
|
8002 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
|
8003 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
|
8004 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
|
8005 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8006 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
|
8007 and the variable `auto-coding-alist'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8008 Vfile_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8009 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8010 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
88365 | 8011 doc: /* |
8012 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
|
8013 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
|
8014 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
|
8015 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
|
8016 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
|
8017 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
|
8018 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
|
8019 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
|
8020 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
|
8021 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
|
8022 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8023 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8024 Vprocess_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8025 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8026 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
88365 | 8027 doc: /* |
8028 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
|
8029 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
|
8030 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
|
8031 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
|
8032 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
|
8033 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
|
8034 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
|
8035 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
|
8036 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
|
8037 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
|
8038 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
|
8039 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8040 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8041 Vnetwork_coding_system_alist = Qnil; |
17052 | 8042 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8043 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
|
8044 doc: /* Coding system to use with system messages. |
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
8045 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
|
8046 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
|
8047 |
29182
1d1c27067af4
(encode_eol): Add null statement after label.
Dave Love <fx@gnu.org>
parents:
29172
diff
changeset
|
8048 /* 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
|
8049 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix, |
88365 | 8050 doc: /* |
8051 *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
|
8052 eol_mnemonic_unix = build_string (":"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8053 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8054 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos, |
88365 | 8055 doc: /* |
8056 *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
|
8057 eol_mnemonic_dos = build_string ("\\"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8058 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8059 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac, |
88365 | 8060 doc: /* |
8061 *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
|
8062 eol_mnemonic_mac = build_string ("/"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8063 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8064 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided, |
88365 | 8065 doc: /* |
8066 *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
|
8067 eol_mnemonic_undecided = build_string (":"); |
17052 | 8068 |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8069 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation, |
88365 | 8070 doc: /* |
8071 *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
|
8072 Venable_character_translation = Qt; |
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8073 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8074 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
|
8075 &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
|
8076 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
|
8077 Vstandard_translation_table_for_decode = Qnil; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8078 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8079 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
|
8080 &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
|
8081 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
|
8082 Vstandard_translation_table_for_encode = Qnil; |
17052 | 8083 |
88365 | 8084 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
|
8085 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
|
8086 While encoding, if a charset (car part of an element) is found, |
88365 | 8087 designate it with the escape sequence identifying revision (cdr part |
8088 of the element). */); | |
8089 Vcharset_revision_table = Qnil; | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8090 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8091 DEFVAR_LISP ("default-process-coding-system", |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8092 &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
|
8093 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
|
8094 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
|
8095 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
|
8096 Vdefault_process_coding_system = Qnil; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
8097 |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
8098 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table, |
88365 | 8099 doc: /* |
8100 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
|
8101 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
|
8102 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
|
8103 \(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
|
8104 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
|
8105 `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
|
8106 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
|
8107 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
|
8108 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
|
8109 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8110 DEFVAR_LISP ("select-safe-coding-system-function", |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8111 &Vselect_safe_coding_system_function, |
88365 | 8112 doc: /* |
8113 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
|
8114 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8115 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
|
8116 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
|
8117 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
|
8118 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8119 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
|
8120 Vselect_safe_coding_system_function = Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8121 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8122 DEFVAR_LISP ("char-coding-system-table", &Vchar_coding_system_table, |
88365 | 8123 doc: /* |
8124 Char-table containing safe coding systems of each characters. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8125 Each element doesn't include such generic coding systems that can |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8126 encode any characters. They are in the first extra slot. */); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8127 Vchar_coding_system_table = Fmake_char_table (Qchar_coding_system, Qnil); |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8128 |
30292
14a9937df1f5
(syms_of_coding): Fix typo in spelling of variable
Gerd Moellmann <gerd@gnu.org>
parents:
30263
diff
changeset
|
8129 DEFVAR_BOOL ("inhibit-iso-escape-detection", |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
8130 &inhibit_iso_escape_detection, |
88365 | 8131 doc: /* |
8132 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
|
8133 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8134 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
|
8135 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
|
8136 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
|
8137 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
|
8138 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
|
8139 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8140 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
|
8141 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
|
8142 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
|
8143 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
|
8144 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
|
8145 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8146 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
|
8147 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
|
8148 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
|
8149 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
|
8150 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
|
8151 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8152 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
|
8153 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
|
8154 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
|
8155 inhibit_iso_escape_detection = 0; |
17052 | 8156 } |
8157 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8158 char * |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8159 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
|
8160 int error_number; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8161 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8162 char *str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8163 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26240
diff
changeset
|
8164 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
|
8165 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
|
8166 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8167 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
|
8168 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8169 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
|
8170 Vlocale_coding_system, |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8171 0); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8172 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
|
8173 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8174 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8175 return str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8176 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8177 |
17052 | 8178 #endif /* emacs */ |