Mercurial > emacs
annotate src/coding.c @ 89207:c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
attention to Vstandard_translation_table_for_decode.
(encode_coding): Fix args to translate_chars. Pay attention to
Vstandard_translation_table_for_encode.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Tue, 15 Oct 2002 01:15:52 +0000 |
| parents | 311d061195ef |
| children | 00d976320a16 |
| rev | line source |
|---|---|
| 88936 | 1 /* Coding system handler (conversion, detection, etc). |
| 20708 | 2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. |
|
18269
888bfd80db2c
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18180
diff
changeset
|
3 Licensed to the Free Software Foundation. |
|
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
4 Copyright (C) 2001, 2002 Free Software Foundation, Inc. |
| 88365 | 5 Copyright (C) 2001, 2002 |
| 6 National Institute of Advanced Industrial Science and Technology (AIST) | |
| 7 Registration Number H13PRO009 | |
| 17052 | 8 |
| 17071 | 9 This file is part of GNU Emacs. |
| 10 | |
| 11 GNU Emacs is free software; you can redistribute it and/or modify | |
| 12 it under the terms of the GNU General Public License as published by | |
| 13 the Free Software Foundation; either version 2, or (at your option) | |
| 14 any later version. | |
| 15 | |
| 16 GNU Emacs is distributed in the hope that it will be useful, | |
| 17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 GNU General Public License for more details. | |
| 20 | |
| 21 You should have received a copy of the GNU General Public License | |
| 22 along with GNU Emacs; see the file COPYING. If not, write to | |
| 23 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 24 Boston, MA 02111-1307, USA. */ | |
| 17052 | 25 |
| 26 /*** TABLE OF CONTENTS *** | |
| 27 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
28 0. General comments |
| 17052 | 29 1. Preamble |
| 88365 | 30 2. Emacs' internal format (emacs-utf-8) handlers |
| 31 3. UTF-8 handlers | |
| 32 4. UTF-16 handlers | |
| 33 5. Charset-base coding systems handlers | |
| 34 6. emacs-mule (old Emacs' internal format) handlers | |
| 35 7. ISO2022 handlers | |
| 36 8. Shift-JIS and BIG5 handlers | |
| 37 9. CCL handlers | |
| 38 10. C library functions | |
| 39 11. Emacs Lisp library functions | |
| 40 12. Postamble | |
| 17052 | 41 |
| 42 */ | |
| 43 | |
| 88365 | 44 /*** 0. General comments *** |
| 45 | |
| 46 | |
| 47 CODING SYSTEM | |
| 48 | |
| 88485 | 49 A coding system is an object for an encoding mechanism that contains |
| 50 information about how to convert byte sequences to character | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
51 sequences and vice versa. When we say "decode", it means converting |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
52 a byte sequence of a specific coding system into a character |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
53 sequence that is represented by Emacs' internal coding system |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
54 `emacs-utf-8', and when we say "encode", it means converting a |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
55 character sequence of emacs-utf-8 to a byte sequence of a specific |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
56 coding system. |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
57 |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
58 In Emacs Lisp, a coding system is represented by a Lisp symbol. In |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
59 C level, a coding system is represented by a vector of attributes |
| 88485 | 60 stored in the hash table Vcharset_hash_table. The conversion from |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
61 coding system symbol to attributes vector is done by looking up |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
62 Vcharset_hash_table by the symbol. |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
63 |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
64 Coding systems are classified into the following types depending on |
| 88485 | 65 the encoding mechanism. Here's a brief description of the types. |
| 88365 | 66 |
| 67 o UTF-8 | |
| 68 | |
| 69 o UTF-16 | |
| 70 | |
| 71 o Charset-base coding system | |
| 72 | |
| 73 A coding system defined by one or more (coded) character sets. | |
| 88485 | 74 Decoding and encoding are done by a code converter defined for each |
| 88365 | 75 character set. |
| 76 | |
| 88485 | 77 o Old Emacs internal format (emacs-mule) |
| 78 | |
| 79 The coding system adopted by old versions of Emacs (20 and 21). | |
| 88365 | 80 |
| 81 o ISO2022-base coding system | |
| 17052 | 82 |
| 83 The most famous coding system for multiple character sets. X's | |
| 88365 | 84 Compound Text, various EUCs (Extended Unix Code), and coding systems |
| 85 used in the Internet communication such as ISO-2022-JP are all | |
| 86 variants of ISO2022. | |
| 87 | |
| 88 o SJIS (or Shift-JIS or MS-Kanji-Code) | |
| 89 | |
| 17052 | 90 A coding system to encode character sets: ASCII, JISX0201, and |
| 91 JISX0208. Widely used for PC's in Japan. Details are described in | |
| 88365 | 92 section 8. |
| 93 | |
| 94 o BIG5 | |
| 95 | |
| 96 A coding system to encode character sets: ASCII and Big5. Widely | |
| 88771 | 97 used for Chinese (mainly in Taiwan and Hong Kong). Details are |
| 88365 | 98 described in section 8. In this file, when we write "big5" (all |
| 99 lowercase), we mean the coding system, and when we write "Big5" | |
| 100 (capitalized), we mean the character set. | |
| 101 | |
| 102 o CCL | |
| 103 | |
| 88485 | 104 If a user wants to decode/encode text encoded in a coding system |
| 88365 | 105 not listed above, he can supply a decoder and an encoder for it in |
| 106 CCL (Code Conversion Language) programs. Emacs executes the CCL | |
| 107 program while decoding/encoding. | |
| 108 | |
| 109 o Raw-text | |
| 110 | |
| 88771 | 111 A coding system for text containing raw eight-bit data. Emacs |
| 88485 | 112 treats each byte of source text as a character (except for |
| 88365 | 113 end-of-line conversion). |
| 114 | |
| 115 o No-conversion | |
| 116 | |
| 117 Like raw text, but don't do end-of-line conversion. | |
| 118 | |
| 119 | |
| 120 END-OF-LINE FORMAT | |
| 121 | |
| 88485 | 122 How text end-of-line is encoded depends on operating system. For |
| 88365 | 123 instance, Unix's format is just one byte of LF (line-feed) code, |
| 18766 | 124 whereas DOS's format is two-byte sequence of `carriage-return' and |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
125 `line-feed' codes. MacOS's format is usually one byte of |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
126 `carriage-return'. |
| 17052 | 127 |
| 88485 | 128 Since text character encoding and end-of-line encoding are |
| 88365 | 129 independent, any coding system described above can take any format |
| 130 of end-of-line (except for no-conversion). | |
| 17052 | 131 |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
132 STRUCT CODING_SYSTEM |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
133 |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
134 Before using a coding system for code conversion (i.e. decoding and |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
135 encoding), we setup a structure of type `struct coding_system'. |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
136 This structure keeps various information about a specific code |
| 88485 | 137 conversion (e.g. the location of source and destination data). |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
138 |
| 17052 | 139 */ |
| 140 | |
| 88365 | 141 /* COMMON MACROS */ |
| 142 | |
| 143 | |
| 17052 | 144 /*** GENERAL NOTES on `detect_coding_XXX ()' functions *** |
| 145 | |
| 88365 | 146 These functions check if a byte sequence specified as a source in |
| 147 CODING conforms to the format of XXX. Return 1 if the data contains | |
| 148 a byte sequence which can be decoded into non-ASCII characters by | |
| 149 the coding system. Otherwize (i.e. the data contains only ASCII | |
| 150 characters or invalid sequence) return 0. | |
| 151 | |
| 152 It also resets some bits of an integer pointed by MASK. The macros | |
| 153 CATEGORY_MASK_XXX specifies each bit of this integer. | |
| 154 | |
| 155 Below is the template of these functions. */ | |
| 156 | |
| 17052 | 157 #if 0 |
| 88365 | 158 static int |
| 159 detect_coding_XXX (coding, mask) | |
| 160 struct coding_system *coding; | |
| 161 int *mask; | |
| 17052 | 162 { |
| 88365 | 163 unsigned char *src = coding->source; |
| 164 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 165 int multibytep = coding->src_multibyte; | |
| 166 int c; | |
| 167 int found = 0; | |
| 168 ...; | |
| 169 | |
| 170 while (1) | |
| 171 { | |
| 172 /* Get one byte from the source. If the souce is exausted, jump | |
| 173 to no_more_source:. */ | |
| 174 ONE_MORE_BYTE (c); | |
| 175 /* Check if it conforms to XXX. If not, break the loop. */ | |
| 176 } | |
| 177 /* As the data is invalid for XXX, reset a proper bits. */ | |
| 178 *mask &= ~CODING_CATEGORY_XXX; | |
| 179 return 0; | |
| 180 no_more_source: | |
| 181 /* The source exausted. */ | |
| 182 if (!found) | |
| 183 /* ASCII characters only. */ | |
| 184 return 0; | |
| 185 /* Some data should be decoded into non-ASCII characters. */ | |
| 186 *mask &= CODING_CATEGORY_XXX; | |
| 187 return 1; | |
| 17052 | 188 } |
| 189 #endif | |
| 190 | |
| 191 /*** GENERAL NOTES on `decode_coding_XXX ()' functions *** | |
| 192 | |
| 88365 | 193 These functions decode a byte sequence specified as a source by |
| 194 CODING. The resulting multibyte text goes to a place pointed to by | |
| 195 CODING->charbuf, the length of which should not exceed | |
| 196 CODING->charbuf_size; | |
| 197 | |
| 198 These functions set the information of original and decoded texts in | |
| 199 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used. | |
| 200 They also set CODING->result to one of CODING_RESULT_XXX indicating | |
| 201 how the decoding is finished. | |
| 202 | |
| 203 Below is the template of these functions. */ | |
| 204 | |
| 17052 | 205 #if 0 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
206 static void |
| 88365 | 207 decode_coding_XXXX (coding) |
| 17052 | 208 struct coding_system *coding; |
| 209 { | |
| 88365 | 210 unsigned char *src = coding->source + coding->consumed; |
| 211 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 212 /* SRC_BASE remembers the start position in source in each loop. | |
| 213 The loop will be exited when there's not enough source code, or | |
| 214 when there's no room in CHARBUF for a decoded character. */ | |
| 215 unsigned char *src_base; | |
| 216 /* A buffer to produce decoded characters. */ | |
| 217 int *charbuf = coding->charbuf; | |
| 218 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 219 int multibytep = coding->src_multibyte; | |
| 220 | |
| 221 while (1) | |
| 222 { | |
| 223 src_base = src; | |
| 224 if (charbuf < charbuf_end) | |
| 225 /* No more room to produce a decoded character. */ | |
| 226 break; | |
| 227 ONE_MORE_BYTE (c); | |
| 228 /* Decode it. */ | |
| 229 } | |
| 230 | |
| 231 no_more_source: | |
| 232 if (src_base < src_end | |
| 233 && coding->mode & CODING_MODE_LAST_BLOCK) | |
| 234 /* If the source ends by partial bytes to construct a character, | |
| 235 treat them as eight-bit raw data. */ | |
| 236 while (src_base < src_end && charbuf < charbuf_end) | |
| 237 *charbuf++ = *src_base++; | |
| 238 /* Remember how many bytes and characters we consumed. If the | |
| 239 source is multibyte, the bytes and chars are not identical. */ | |
| 240 coding->consumed = coding->consumed_char = src_base - coding->source; | |
| 241 /* Remember how many characters we produced. */ | |
| 242 coding->charbuf_used = charbuf - coding->charbuf; | |
| 17052 | 243 } |
| 244 #endif | |
| 245 | |
| 246 /*** GENERAL NOTES on `encode_coding_XXX ()' functions *** | |
| 247 | |
| 88365 | 248 These functions encode SRC_BYTES length text at SOURCE of Emacs' |
| 249 internal multibyte format by CODING. The resulting byte sequence | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
250 goes to a place pointed to by DESTINATION, the length of which |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
251 should not exceed DST_BYTES. |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
252 |
| 88365 | 253 These functions set the information of original and encoded texts in |
| 254 the members produced, produced_char, consumed, and consumed_char of | |
| 255 the structure *CODING. They also set the member result to one of | |
| 256 CODING_RESULT_XXX indicating how the encoding finished. | |
| 257 | |
| 258 DST_BYTES zero means that source area and destination area are | |
| 259 overlapped, which means that we can produce a encoded text until it | |
| 260 reaches at the head of not-yet-encoded source text. | |
| 261 | |
| 262 Below is a template of these functions. */ | |
| 17052 | 263 #if 0 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
264 static void |
| 88365 | 265 encode_coding_XXX (coding) |
| 17052 | 266 struct coding_system *coding; |
| 267 { | |
| 88365 | 268 int multibytep = coding->dst_multibyte; |
| 269 int *charbuf = coding->charbuf; | |
| 270 int *charbuf_end = charbuf->charbuf + coding->charbuf_used; | |
| 271 unsigned char *dst = coding->destination + coding->produced; | |
| 272 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 273 unsigned char *adjusted_dst_end = dst_end - _MAX_BYTES_PRODUCED_IN_LOOP_; | |
| 274 int produced_chars = 0; | |
| 275 | |
| 276 for (; charbuf < charbuf_end && dst < adjusted_dst_end; charbuf++) | |
| 277 { | |
| 278 int c = *charbuf; | |
| 279 /* Encode C into DST, and increment DST. */ | |
| 280 } | |
| 281 label_no_more_destination: | |
| 282 /* How many chars and bytes we produced. */ | |
| 283 coding->produced_char += produced_chars; | |
| 284 coding->produced = dst - coding->destination; | |
| 17052 | 285 } |
| 286 #endif | |
| 287 | |
| 288 | |
| 289 /*** 1. Preamble ***/ | |
| 290 | |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
291 #include <config.h> |
| 17052 | 292 #include <stdio.h> |
| 293 | |
| 294 #include "lisp.h" | |
| 295 #include "buffer.h" | |
| 88365 | 296 #include "character.h" |
| 17052 | 297 #include "charset.h" |
| 88365 | 298 #include "ccl.h" |
| 26847 | 299 #include "composite.h" |
| 17052 | 300 #include "coding.h" |
| 301 #include "window.h" | |
| 302 | |
| 88365 | 303 Lisp_Object Vcoding_system_hash_table; |
| 304 | |
| 305 Lisp_Object Qcoding_system, Qcoding_aliases, Qeol_type; | |
|
88646
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
306 Lisp_Object Qunix, Qdos; |
|
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
307 extern Lisp_Object Qmac; /* frame.c */ |
| 17052 | 308 Lisp_Object Qbuffer_file_coding_system; |
| 309 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
| 88365 | 310 Lisp_Object Qdefault_char; |
|
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
311 Lisp_Object Qno_conversion, Qundecided; |
| 88365 | 312 Lisp_Object Qcharset, Qiso_2022, Qutf_8, Qutf_16, Qshift_jis, Qbig5; |
| 313 Lisp_Object Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig, Qutf_16_le; | |
| 314 Lisp_Object Qsignature, Qendian, Qbig, Qlittle; | |
|
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
315 Lisp_Object Qcoding_system_history; |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
316 Lisp_Object Qvalid_codes; |
| 17052 | 317 |
| 318 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
| 319 Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
| 320 Lisp_Object Qstart_process, Qopen_network_stream; | |
| 321 Lisp_Object Qtarget_idx; | |
| 322 | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
323 Lisp_Object Vselect_safe_coding_system_function; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
324 |
|
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
325 /* Mnemonic string for each format of end-of-line. */ |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
326 Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
327 /* Mnemonic string to indicate format of end-of-line is not yet |
| 17052 | 328 decided. */ |
|
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
329 Lisp_Object eol_mnemonic_undecided; |
| 17052 | 330 |
| 331 #ifdef emacs | |
| 332 | |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
333 Lisp_Object Vcoding_system_list, Vcoding_system_alist; |
|
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
334 |
|
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
335 Lisp_Object Qcoding_system_p, Qcoding_system_error; |
| 17052 | 336 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
337 /* Coding system emacs-mule and raw-text are for converting only |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
338 end-of-line format. */ |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
339 Lisp_Object Qemacs_mule, Qraw_text; |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
340 |
| 17052 | 341 /* Coding-systems are handed between Emacs Lisp programs and C internal |
| 342 routines by the following three variables. */ | |
| 343 /* Coding-system for reading files and receiving data from process. */ | |
| 344 Lisp_Object Vcoding_system_for_read; | |
| 345 /* Coding-system for writing files and sending data to process. */ | |
| 346 Lisp_Object Vcoding_system_for_write; | |
| 347 /* Coding-system actually used in the latest I/O. */ | |
| 348 Lisp_Object Vlast_coding_system_used; | |
| 349 | |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
350 /* A vector of length 256 which contains information about special |
| 22529 | 351 Latin codes (especially for dealing with Microsoft codes). */ |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
352 Lisp_Object Vlatin_extra_code_table; |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
353 |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
354 /* Flag to inhibit code conversion of end-of-line format. */ |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
355 int inhibit_eol_conversion; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
356 |
|
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
357 /* Flag to inhibit ISO2022 escape sequence detection. */ |
|
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
358 int inhibit_iso_escape_detection; |
|
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
359 |
|
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
360 /* Flag to make buffer-file-coding-system inherit from process-coding. */ |
|
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
361 int inherit_process_coding_system; |
|
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
362 |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
363 /* Coding system to be used to encode text for terminal display. */ |
| 17052 | 364 struct coding_system terminal_coding; |
| 365 | |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
366 /* Coding system to be used to encode text for terminal display when |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
367 terminal coding system is nil. */ |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
368 struct coding_system safe_terminal_coding; |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
369 |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
370 /* Coding system of what is sent from terminal keyboard. */ |
| 17052 | 371 struct coding_system keyboard_coding; |
| 372 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
373 Lisp_Object Vfile_coding_system_alist; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
374 Lisp_Object Vprocess_coding_system_alist; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
375 Lisp_Object Vnetwork_coding_system_alist; |
| 17052 | 376 |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
377 Lisp_Object Vlocale_coding_system; |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
378 |
| 17052 | 379 #endif /* emacs */ |
| 380 | |
|
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
381 /* Flag to tell if we look up translation table on character code |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
382 conversion. */ |
|
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
383 Lisp_Object Venable_character_translation; |
|
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
384 /* Standard translation table to look up on decoding (reading). */ |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
385 Lisp_Object Vstandard_translation_table_for_decode; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
386 /* Standard translation table to look up on encoding (writing). */ |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
387 Lisp_Object Vstandard_translation_table_for_encode; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
388 |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
389 Lisp_Object Qtranslation_table; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
390 Lisp_Object Qtranslation_table_id; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
391 Lisp_Object Qtranslation_table_for_decode; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
392 Lisp_Object Qtranslation_table_for_encode; |
| 17052 | 393 |
| 394 /* Alist of charsets vs revision number. */ | |
| 88365 | 395 static Lisp_Object Vcharset_revision_table; |
| 17052 | 396 |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
397 /* Default coding systems used for process I/O. */ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
398 Lisp_Object Vdefault_process_coding_system; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
399 |
|
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
400 /* Global flag to tell that we can't call post-read-conversion and |
|
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
401 pre-write-conversion functions. Usually the value is zero, but it |
|
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
402 is set to 1 temporarily while such functions are running. This is |
|
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
403 to avoid infinite recursive call. */ |
|
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
404 static int inhibit_pre_post_conversion; |
|
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
405 |
| 88365 | 406 /* Two special coding systems. */ |
| 407 Lisp_Object Vsjis_coding_system; | |
| 408 Lisp_Object Vbig5_coding_system; | |
| 409 | |
| 410 | |
| 411 static int detect_coding_utf_8 P_ ((struct coding_system *, int *)); | |
| 412 static void decode_coding_utf_8 P_ ((struct coding_system *)); | |
| 413 static int encode_coding_utf_8 P_ ((struct coding_system *)); | |
| 414 | |
| 415 static int detect_coding_utf_16 P_ ((struct coding_system *, int *)); | |
| 416 static void decode_coding_utf_16 P_ ((struct coding_system *)); | |
| 417 static int encode_coding_utf_16 P_ ((struct coding_system *)); | |
| 418 | |
| 419 static int detect_coding_iso_2022 P_ ((struct coding_system *, int *)); | |
| 420 static void decode_coding_iso_2022 P_ ((struct coding_system *)); | |
| 421 static int encode_coding_iso_2022 P_ ((struct coding_system *)); | |
| 422 | |
| 423 static int detect_coding_emacs_mule P_ ((struct coding_system *, int *)); | |
| 424 static void decode_coding_emacs_mule P_ ((struct coding_system *)); | |
| 425 static int encode_coding_emacs_mule P_ ((struct coding_system *)); | |
| 426 | |
| 427 static int detect_coding_sjis P_ ((struct coding_system *, int *)); | |
| 428 static void decode_coding_sjis P_ ((struct coding_system *)); | |
| 429 static int encode_coding_sjis P_ ((struct coding_system *)); | |
| 430 | |
| 431 static int detect_coding_big5 P_ ((struct coding_system *, int *)); | |
| 432 static void decode_coding_big5 P_ ((struct coding_system *)); | |
| 433 static int encode_coding_big5 P_ ((struct coding_system *)); | |
| 434 | |
| 435 static int detect_coding_ccl P_ ((struct coding_system *, int *)); | |
| 436 static void decode_coding_ccl P_ ((struct coding_system *)); | |
| 437 static int encode_coding_ccl P_ ((struct coding_system *)); | |
| 438 | |
| 439 static void decode_coding_raw_text P_ ((struct coding_system *)); | |
| 440 static int encode_coding_raw_text P_ ((struct coding_system *)); | |
| 441 | |
| 442 | |
| 443 /* ISO2022 section */ | |
| 444 | |
| 445 #define CODING_ISO_INITIAL(coding, reg) \ | |
| 446 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \ | |
| 447 coding_attr_iso_initial), \ | |
| 448 reg))) | |
| 449 | |
| 450 | |
| 451 #define CODING_ISO_REQUEST(coding, charset_id) \ | |
| 452 ((charset_id <= (coding)->max_charset_id \ | |
| 453 ? (coding)->safe_charsets[charset_id] \ | |
| 454 : -1)) | |
| 455 | |
| 456 | |
| 457 #define CODING_ISO_FLAGS(coding) \ | |
| 458 ((coding)->spec.iso_2022.flags) | |
| 459 #define CODING_ISO_DESIGNATION(coding, reg) \ | |
| 460 ((coding)->spec.iso_2022.current_designation[reg]) | |
| 461 #define CODING_ISO_INVOCATION(coding, plane) \ | |
| 462 ((coding)->spec.iso_2022.current_invocation[plane]) | |
| 463 #define CODING_ISO_SINGLE_SHIFTING(coding) \ | |
| 464 ((coding)->spec.iso_2022.single_shifting) | |
| 465 #define CODING_ISO_BOL(coding) \ | |
| 466 ((coding)->spec.iso_2022.bol) | |
| 467 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \ | |
| 468 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane))) | |
| 469 | |
| 470 /* Control characters of ISO2022. */ | |
| 471 /* code */ /* function */ | |
| 472 #define ISO_CODE_LF 0x0A /* line-feed */ | |
| 473 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
| 474 #define ISO_CODE_SO 0x0E /* shift-out */ | |
| 475 #define ISO_CODE_SI 0x0F /* shift-in */ | |
| 476 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
| 477 #define ISO_CODE_ESC 0x1B /* escape */ | |
| 478 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
| 479 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
| 480 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */ | |
| 481 | |
| 482 /* All code (1-byte) of ISO2022 is classified into one of the | |
| 483 followings. */ | |
| 484 enum iso_code_class_type | |
| 485 { | |
| 486 ISO_control_0, /* Control codes in the range | |
| 487 0x00..0x1F and 0x7F, except for the | |
| 488 following 5 codes. */ | |
| 489 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */ | |
| 490 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
| 491 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
| 492 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
| 493 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
| 494 ISO_control_1, /* Control codes in the range | |
| 495 0x80..0x9F, except for the | |
| 496 following 3 codes. */ | |
| 497 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
| 498 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
| 499 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
| 500 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
| 501 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
| 502 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
| 503 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
| 504 }; | |
| 505 | |
| 506 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the | |
| 507 `iso-flags' attribute of an iso2022 coding system. */ | |
| 508 | |
| 509 /* If set, produce long-form designation sequence (e.g. ESC $ ( A) | |
| 510 instead of the correct short-form sequence (e.g. ESC $ A). */ | |
| 511 #define CODING_ISO_FLAG_LONG_FORM 0x0001 | |
| 512 | |
| 513 /* If set, reset graphic planes and registers at end-of-line to the | |
| 514 initial state. */ | |
| 515 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002 | |
| 516 | |
| 517 /* If set, reset graphic planes and registers before any control | |
| 518 characters to the initial state. */ | |
| 519 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004 | |
| 520 | |
| 521 /* If set, encode by 7-bit environment. */ | |
| 522 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008 | |
| 523 | |
| 524 /* If set, use locking-shift function. */ | |
| 525 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010 | |
| 526 | |
| 527 /* If set, use single-shift function. Overwrite | |
| 528 CODING_ISO_FLAG_LOCKING_SHIFT. */ | |
| 529 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020 | |
| 530 | |
| 531 /* If set, use designation escape sequence. */ | |
| 532 #define CODING_ISO_FLAG_DESIGNATION 0x0040 | |
| 533 | |
| 534 /* If set, produce revision number sequence. */ | |
| 535 #define CODING_ISO_FLAG_REVISION 0x0080 | |
| 536 | |
| 537 /* If set, produce ISO6429's direction specifying sequence. */ | |
| 538 #define CODING_ISO_FLAG_DIRECTION 0x0100 | |
| 539 | |
| 540 /* If set, assume designation states are reset at beginning of line on | |
| 541 output. */ | |
| 542 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200 | |
| 543 | |
| 544 /* If set, designation sequence should be placed at beginning of line | |
| 545 on output. */ | |
| 546 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400 | |
| 547 | |
| 548 /* If set, do not encode unsafe charactes on output. */ | |
| 549 #define CODING_ISO_FLAG_SAFE 0x0800 | |
| 550 | |
| 551 /* If set, extra latin codes (128..159) are accepted as a valid code | |
| 552 on input. */ | |
| 553 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000 | |
| 554 | |
| 555 #define CODING_ISO_FLAG_COMPOSITION 0x2000 | |
| 556 | |
| 557 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 | |
| 558 | |
|
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
559 #define CODING_ISO_FLAG_USE_ROMAN 0x8000 |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
560 |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
561 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000 |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
562 |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
563 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000 |
| 88365 | 564 |
| 565 /* A character to be produced on output if encoding of the original | |
| 566 character is prohibited by CODING_ISO_FLAG_SAFE. */ | |
| 567 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?' | |
| 568 | |
| 569 | |
| 570 /* UTF-16 section */ | |
| 571 #define CODING_UTF_16_BOM(coding) \ | |
| 572 ((coding)->spec.utf_16.bom) | |
| 573 | |
| 574 #define CODING_UTF_16_ENDIAN(coding) \ | |
| 575 ((coding)->spec.utf_16.endian) | |
| 576 | |
| 577 #define CODING_UTF_16_SURROGATE(coding) \ | |
| 578 ((coding)->spec.utf_16.surrogate) | |
| 579 | |
| 580 | |
| 581 /* CCL section */ | |
| 582 #define CODING_CCL_DECODER(coding) \ | |
| 583 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder) | |
| 584 #define CODING_CCL_ENCODER(coding) \ | |
| 585 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder) | |
| 586 #define CODING_CCL_VALIDS(coding) \ | |
| 587 (XSTRING (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)) \ | |
| 588 ->data) | |
| 589 | |
| 88771 | 590 /* Index for each coding category in `coding_categories' */ |
| 88365 | 591 |
| 592 enum coding_category | |
| 593 { | |
| 594 coding_category_iso_7, | |
| 595 coding_category_iso_7_tight, | |
| 596 coding_category_iso_8_1, | |
| 597 coding_category_iso_8_2, | |
| 598 coding_category_iso_7_else, | |
| 599 coding_category_iso_8_else, | |
| 600 coding_category_utf_8, | |
| 601 coding_category_utf_16_auto, | |
| 602 coding_category_utf_16_be, | |
| 603 coding_category_utf_16_le, | |
| 604 coding_category_utf_16_be_nosig, | |
| 605 coding_category_utf_16_le_nosig, | |
| 606 coding_category_charset, | |
| 607 coding_category_sjis, | |
| 608 coding_category_big5, | |
| 609 coding_category_ccl, | |
| 610 coding_category_emacs_mule, | |
| 611 /* All above are targets of code detection. */ | |
| 612 coding_category_raw_text, | |
| 613 coding_category_undecided, | |
| 614 coding_category_max | |
| 615 }; | |
| 616 | |
| 617 /* Definitions of flag bits used in detect_coding_XXXX. */ | |
| 618 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7) | |
| 619 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight) | |
| 620 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1) | |
| 621 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2) | |
| 622 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else) | |
| 623 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else) | |
| 624 #define CATEGORY_MASK_UTF_8 (1 << coding_category_utf_8) | |
| 625 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be) | |
| 626 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le) | |
| 627 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig) | |
| 628 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig) | |
| 629 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset) | |
| 630 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis) | |
| 631 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5) | |
| 632 #define CATEGORY_MASK_CCL (1 << coding_category_ccl) | |
| 633 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule) | |
| 634 | |
| 635 /* This value is returned if detect_coding_mask () find nothing other | |
| 636 than ASCII characters. */ | |
| 637 #define CATEGORY_MASK_ANY \ | |
| 638 (CATEGORY_MASK_ISO_7 \ | |
| 639 | CATEGORY_MASK_ISO_7_TIGHT \ | |
| 640 | CATEGORY_MASK_ISO_8_1 \ | |
| 641 | CATEGORY_MASK_ISO_8_2 \ | |
| 642 | CATEGORY_MASK_ISO_7_ELSE \ | |
| 643 | CATEGORY_MASK_ISO_8_ELSE \ | |
| 644 | CATEGORY_MASK_UTF_8 \ | |
| 645 | CATEGORY_MASK_UTF_16_BE \ | |
| 646 | CATEGORY_MASK_UTF_16_LE \ | |
| 647 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
| 648 | CATEGORY_MASK_UTF_16_LE_NOSIG \ | |
| 649 | CATEGORY_MASK_CHARSET \ | |
| 650 | CATEGORY_MASK_SJIS \ | |
| 651 | CATEGORY_MASK_BIG5 \ | |
| 652 | CATEGORY_MASK_CCL \ | |
| 653 | CATEGORY_MASK_EMACS_MULE) | |
| 654 | |
| 655 | |
| 656 #define CATEGORY_MASK_ISO_7BIT \ | |
| 657 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT) | |
| 658 | |
| 659 #define CATEGORY_MASK_ISO_8BIT \ | |
| 660 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2) | |
| 661 | |
| 662 #define CATEGORY_MASK_ISO_ELSE \ | |
| 663 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE) | |
| 664 | |
| 665 #define CATEGORY_MASK_ISO_ESCAPE \ | |
| 666 (CATEGORY_MASK_ISO_7 \ | |
| 667 | CATEGORY_MASK_ISO_7_TIGHT \ | |
| 668 | CATEGORY_MASK_ISO_7_ELSE \ | |
| 669 | CATEGORY_MASK_ISO_8_ELSE) | |
| 670 | |
| 671 #define CATEGORY_MASK_ISO \ | |
| 672 ( CATEGORY_MASK_ISO_7BIT \ | |
| 673 | CATEGORY_MASK_ISO_8BIT \ | |
| 674 | CATEGORY_MASK_ISO_ELSE) | |
| 675 | |
| 676 #define CATEGORY_MASK_UTF_16 \ | |
| 677 (CATEGORY_MASK_UTF_16_BE \ | |
| 678 | CATEGORY_MASK_UTF_16_LE \ | |
| 679 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
| 680 | CATEGORY_MASK_UTF_16_LE_NOSIG) | |
| 681 | |
| 682 | |
| 683 /* List of symbols `coding-category-xxx' ordered by priority. This | |
| 684 variable is exposed to Emacs Lisp. */ | |
| 685 static Lisp_Object Vcoding_category_list; | |
| 686 | |
| 687 /* Table of coding categories (Lisp symbols). This variable is for | |
| 688 internal use oly. */ | |
| 689 static Lisp_Object Vcoding_category_table; | |
| 690 | |
| 691 /* Table of coding-categories ordered by priority. */ | |
| 692 static enum coding_category coding_priorities[coding_category_max]; | |
| 693 | |
| 694 /* Nth element is a coding context for the coding system bound to the | |
| 695 Nth coding category. */ | |
| 696 static struct coding_system coding_categories[coding_category_max]; | |
| 697 | |
| 698 static int detected_mask[coding_category_raw_text] = | |
| 699 { CATEGORY_MASK_ISO, | |
| 700 CATEGORY_MASK_ISO, | |
| 701 CATEGORY_MASK_ISO, | |
| 702 CATEGORY_MASK_ISO, | |
| 703 CATEGORY_MASK_ISO, | |
| 704 CATEGORY_MASK_ISO, | |
| 705 CATEGORY_MASK_UTF_8, | |
| 706 CATEGORY_MASK_UTF_16, | |
| 707 CATEGORY_MASK_UTF_16, | |
| 708 CATEGORY_MASK_UTF_16, | |
| 709 CATEGORY_MASK_UTF_16, | |
| 710 CATEGORY_MASK_UTF_16, | |
| 711 CATEGORY_MASK_CHARSET, | |
| 712 CATEGORY_MASK_SJIS, | |
| 713 CATEGORY_MASK_BIG5, | |
| 714 CATEGORY_MASK_CCL, | |
| 715 CATEGORY_MASK_EMACS_MULE | |
| 716 }; | |
| 717 | |
| 718 /*** Commonly used macros and functions ***/ | |
| 719 | |
| 720 #ifndef min | |
| 721 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
| 722 #endif | |
| 723 #ifndef max | |
| 724 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
| 725 #endif | |
| 726 | |
| 727 #define CODING_GET_INFO(coding, attrs, eol_type, charset_list) \ | |
| 728 do { \ | |
| 729 attrs = CODING_ID_ATTRS (coding->id); \ | |
| 730 eol_type = CODING_ID_EOL_TYPE (coding->id); \ | |
| 731 if (VECTORP (eol_type)) \ | |
| 732 eol_type = Qunix; \ | |
| 733 charset_list = CODING_ATTR_CHARSET_LIST (attrs); \ | |
| 734 } while (0) | |
| 735 | |
| 736 | |
| 737 /* Safely get one byte from the source text pointed by SRC which ends | |
| 738 at SRC_END, and set C to that byte. If there are not enough bytes | |
| 739 in the source, it jumps to `no_more_source'. The caller | |
| 740 should declare and set these variables appropriately in advance: | |
| 741 src, src_end, multibytep | |
| 742 */ | |
| 743 | |
| 744 #define ONE_MORE_BYTE(c) \ | |
| 745 do { \ | |
| 746 if (src == src_end) \ | |
| 747 { \ | |
| 748 if (src_base < src) \ | |
| 749 coding->result = CODING_RESULT_INSUFFICIENT_SRC; \ | |
| 750 goto no_more_source; \ | |
| 751 } \ | |
| 752 c = *src++; \ | |
| 753 if (multibytep && (c & 0x80)) \ | |
| 754 { \ | |
| 755 if ((c & 0xFE) != 0xC0) \ | |
| 756 error ("Undecodable char found"); \ | |
| 757 c = ((c & 1) << 6) | *src++; \ | |
| 758 } \ | |
| 759 consumed_chars++; \ | |
| 760 } while (0) | |
| 761 | |
| 762 | |
| 763 #define ONE_MORE_BYTE_NO_CHECK(c) \ | |
| 764 do { \ | |
| 765 c = *src++; \ | |
| 766 if (multibytep && (c & 0x80)) \ | |
| 767 { \ | |
| 768 if ((c & 0xFE) != 0xC0) \ | |
| 769 error ("Undecodable char found"); \ | |
| 770 c = ((c & 1) << 6) | *src++; \ | |
| 771 } \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
772 consumed_chars++; \ |
| 88365 | 773 } while (0) |
| 774 | |
| 775 | |
| 776 /* Store a byte C in the place pointed by DST and increment DST to the | |
| 777 next free point, and increment PRODUCED_CHARS. The caller should | |
| 778 assure that C is 0..127, and declare and set the variable `dst' | |
| 779 appropriately in advance. | |
| 780 */ | |
| 781 | |
| 782 | |
| 783 #define EMIT_ONE_ASCII_BYTE(c) \ | |
| 784 do { \ | |
| 785 produced_chars++; \ | |
| 786 *dst++ = (c); \ | |
| 787 } while (0) | |
| 788 | |
| 789 | |
| 790 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */ | |
| 791 | |
| 792 #define EMIT_TWO_ASCII_BYTES(c1, c2) \ | |
| 793 do { \ | |
| 794 produced_chars += 2; \ | |
| 795 *dst++ = (c1), *dst++ = (c2); \ | |
| 796 } while (0) | |
| 797 | |
| 798 | |
| 799 /* Store a byte C in the place pointed by DST and increment DST to the | |
| 800 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is | |
| 801 nonzero, store in an appropriate multibyte from. The caller should | |
| 802 declare and set the variables `dst' and `multibytep' appropriately | |
| 803 in advance. */ | |
| 804 | |
| 805 #define EMIT_ONE_BYTE(c) \ | |
| 806 do { \ | |
| 807 produced_chars++; \ | |
| 808 if (multibytep) \ | |
| 809 { \ | |
| 810 int ch = (c); \ | |
| 811 if (ch >= 0x80) \ | |
| 812 ch = BYTE8_TO_CHAR (ch); \ | |
| 813 CHAR_STRING_ADVANCE (ch, dst); \ | |
| 814 } \ | |
| 815 else \ | |
| 816 *dst++ = (c); \ | |
| 817 } while (0) | |
| 818 | |
| 819 | |
| 820 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */ | |
| 821 | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
822 #define EMIT_TWO_BYTES(c1, c2) \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
823 do { \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
824 produced_chars += 2; \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
825 if (multibytep) \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
826 { \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
827 int ch; \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
828 \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
829 ch = (c1); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
830 if (ch >= 0x80) \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
831 ch = BYTE8_TO_CHAR (ch); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
832 CHAR_STRING_ADVANCE (ch, dst); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
833 ch = (c2); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
834 if (ch >= 0x80) \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
835 ch = BYTE8_TO_CHAR (ch); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
836 CHAR_STRING_ADVANCE (ch, dst); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
837 } \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
838 else \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
839 { \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
840 *dst++ = (c1); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
841 *dst++ = (c2); \ |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
842 } \ |
| 88365 | 843 } while (0) |
| 844 | |
| 845 | |
| 846 #define EMIT_THREE_BYTES(c1, c2, c3) \ | |
| 847 do { \ | |
| 848 EMIT_ONE_BYTE (c1); \ | |
| 849 EMIT_TWO_BYTES (c2, c3); \ | |
| 850 } while (0) | |
| 851 | |
| 852 | |
| 853 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \ | |
| 854 do { \ | |
| 855 EMIT_TWO_BYTES (c1, c2); \ | |
| 856 EMIT_TWO_BYTES (c3, c4); \ | |
| 857 } while (0) | |
| 858 | |
| 859 | |
| 860 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \ | |
| 861 do { \ | |
| 862 charset_map_loaded = 0; \ | |
| 863 c = DECODE_CHAR (charset, code); \ | |
| 864 if (charset_map_loaded) \ | |
| 865 { \ | |
| 866 unsigned char *orig = coding->source; \ | |
| 867 EMACS_INT offset; \ | |
| 868 \ | |
| 869 coding_set_source (coding); \ | |
| 870 offset = coding->source - orig; \ | |
| 871 src += offset; \ | |
| 872 src_base += offset; \ | |
| 873 src_end += offset; \ | |
| 874 } \ | |
| 875 } while (0) | |
| 876 | |
| 877 | |
| 878 #define ASSURE_DESTINATION(bytes) \ | |
| 879 do { \ | |
| 880 if (dst + (bytes) >= dst_end) \ | |
| 881 { \ | |
| 882 int more_bytes = charbuf_end - charbuf + (bytes); \ | |
| 883 \ | |
| 884 dst = alloc_destination (coding, more_bytes, dst); \ | |
| 885 dst_end = coding->destination + coding->dst_bytes; \ | |
| 886 } \ | |
| 887 } while (0) | |
| 888 | |
| 889 | |
| 890 | |
| 891 static void | |
| 892 coding_set_source (coding) | |
| 893 struct coding_system *coding; | |
| 894 { | |
| 895 if (BUFFERP (coding->src_object)) | |
| 896 { | |
| 897 if (coding->src_pos < 0) | |
| 898 coding->source = GAP_END_ADDR + coding->src_pos_byte; | |
| 899 else | |
| 900 { | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
901 struct buffer *buf = XBUFFER (coding->src_object); |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
902 EMACS_INT gpt_byte = BUF_GPT_BYTE (buf); |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
903 unsigned char *beg_addr = BUF_BEG_ADDR (buf); |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
904 |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
905 coding->source = beg_addr + coding->src_pos_byte - 1; |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
906 if (coding->src_pos_byte >= gpt_byte) |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
907 coding->source += BUF_GAP_SIZE (buf); |
| 88365 | 908 } |
| 909 } | |
| 910 else if (STRINGP (coding->src_object)) | |
| 911 { | |
| 912 coding->source = (XSTRING (coding->src_object)->data | |
| 913 + coding->src_pos_byte); | |
| 914 } | |
| 915 else | |
| 916 /* Otherwise, the source is C string and is never relocated | |
| 917 automatically. Thus we don't have to update anything. */ | |
| 918 ; | |
| 919 } | |
| 920 | |
| 921 static void | |
| 922 coding_set_destination (coding) | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
923 struct coding_system *coding; |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
924 { |
| 88365 | 925 if (BUFFERP (coding->dst_object)) |
| 926 { | |
| 927 if (coding->src_pos < 0) | |
|
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
928 { |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
929 coding->destination = BEG_ADDR + coding->dst_pos_byte - 1; |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
930 coding->dst_bytes = (GAP_END_ADDR |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
931 - (coding->src_bytes - coding->consumed) |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
932 - coding->destination); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
933 } |
| 88365 | 934 else |
|
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
935 { |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
936 /* We are sure that coding->dst_pos_byte is before the gap |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
937 of the buffer. */ |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
938 coding->destination = (BUF_BEG_ADDR (XBUFFER (coding->dst_object)) |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
939 + coding->dst_pos_byte - 1); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
940 coding->dst_bytes = (BUF_GAP_END_ADDR (XBUFFER (coding->dst_object)) |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
941 - coding->destination); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
942 } |
| 88365 | 943 } |
| 944 else | |
| 945 /* Otherwise, the destination is C string and is never relocated | |
| 946 automatically. Thus we don't have to update anything. */ | |
| 947 ; | |
| 948 } | |
| 949 | |
| 950 | |
| 951 static void | |
| 952 coding_alloc_by_realloc (coding, bytes) | |
| 953 struct coding_system *coding; | |
| 954 EMACS_INT bytes; | |
| 955 { | |
| 956 coding->destination = (unsigned char *) xrealloc (coding->destination, | |
| 957 coding->dst_bytes + bytes); | |
| 958 coding->dst_bytes += bytes; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
959 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
960 |
| 88365 | 961 static void |
| 962 coding_alloc_by_making_gap (coding, bytes) | |
| 963 struct coding_system *coding; | |
| 964 EMACS_INT bytes; | |
| 965 { | |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
966 if (BUFFERP (coding->dst_object) |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
967 && EQ (coding->src_object, coding->dst_object)) |
| 88365 | 968 { |
| 969 EMACS_INT add = coding->src_bytes - coding->consumed; | |
| 970 | |
| 971 GAP_SIZE -= add; ZV += add; Z += add; ZV_BYTE += add; Z_BYTE += add; | |
| 972 make_gap (bytes); | |
| 973 GAP_SIZE += add; ZV -= add; Z -= add; ZV_BYTE -= add; Z_BYTE -= add; | |
| 974 } | |
| 975 else | |
| 976 { | |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
977 Lisp_Object this_buffer; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
978 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
979 this_buffer = Fcurrent_buffer (); |
| 88365 | 980 set_buffer_internal (XBUFFER (coding->dst_object)); |
| 981 make_gap (bytes); | |
| 982 set_buffer_internal (XBUFFER (this_buffer)); | |
| 983 } | |
| 984 } | |
| 985 | |
| 986 | |
| 987 static unsigned char * | |
| 988 alloc_destination (coding, nbytes, dst) | |
| 989 struct coding_system *coding; | |
| 990 int nbytes; | |
| 991 unsigned char *dst; | |
| 992 { | |
| 993 EMACS_INT offset = dst - coding->destination; | |
| 994 | |
| 995 if (BUFFERP (coding->dst_object)) | |
| 996 coding_alloc_by_making_gap (coding, nbytes); | |
| 997 else | |
| 998 coding_alloc_by_realloc (coding, nbytes); | |
| 999 coding->result = CODING_RESULT_SUCCESS; | |
| 1000 coding_set_destination (coding); | |
| 1001 dst = coding->destination + offset; | |
| 1002 return dst; | |
| 1003 } | |
| 1004 | |
| 1005 | |
| 1006 /*** 2. Emacs' internal format (emacs-utf-8) ***/ | |
| 1007 | |
| 1008 | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1009 |
| 17052 | 1010 |
| 88365 | 1011 /*** 3. UTF-8 ***/ |
| 1012 | |
| 1013 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 1014 Check if a text is encoded in UTF-8. If it is, return | |
| 1015 CATEGORY_MASK_UTF_8, else return 0. */ | |
| 1016 | |
| 1017 #define UTF_8_1_OCTET_P(c) ((c) < 0x80) | |
| 1018 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80) | |
| 1019 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0) | |
| 1020 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0) | |
| 1021 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0) | |
| 1022 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8) | |
| 1023 | |
| 1024 static int | |
| 1025 detect_coding_utf_8 (coding, mask) | |
| 1026 struct coding_system *coding; | |
| 1027 int *mask; | |
| 1028 { | |
| 1029 unsigned char *src = coding->source, *src_base = src; | |
| 1030 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 1031 int multibytep = coding->src_multibyte; | |
| 1032 int consumed_chars = 0; | |
| 1033 int found = 0; | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1034 int incomplete; |
| 88365 | 1035 |
| 1036 /* A coding system of this category is always ASCII compatible. */ | |
| 1037 src += coding->head_ascii; | |
| 1038 | |
| 1039 while (1) | |
| 1040 { | |
| 1041 int c, c1, c2, c3, c4; | |
| 1042 | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1043 incomplete = 0; |
| 88365 | 1044 ONE_MORE_BYTE (c); |
| 1045 if (UTF_8_1_OCTET_P (c)) | |
| 1046 continue; | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1047 incomplete = 1; |
| 88365 | 1048 ONE_MORE_BYTE (c1); |
| 1049 if (! UTF_8_EXTRA_OCTET_P (c1)) | |
| 1050 break; | |
| 1051 if (UTF_8_2_OCTET_LEADING_P (c)) | |
| 1052 { | |
| 1053 found++; | |
| 1054 continue; | |
| 1055 } | |
| 1056 ONE_MORE_BYTE (c2); | |
| 1057 if (! UTF_8_EXTRA_OCTET_P (c2)) | |
| 1058 break; | |
| 1059 if (UTF_8_3_OCTET_LEADING_P (c)) | |
| 1060 { | |
| 1061 found++; | |
| 1062 continue; | |
| 1063 } | |
| 1064 ONE_MORE_BYTE (c3); | |
| 1065 if (! UTF_8_EXTRA_OCTET_P (c3)) | |
| 1066 break; | |
| 1067 if (UTF_8_4_OCTET_LEADING_P (c)) | |
| 1068 { | |
| 1069 found++; | |
| 1070 continue; | |
| 1071 } | |
| 1072 ONE_MORE_BYTE (c4); | |
| 1073 if (! UTF_8_EXTRA_OCTET_P (c4)) | |
| 1074 break; | |
| 1075 if (UTF_8_5_OCTET_LEADING_P (c)) | |
| 1076 { | |
| 1077 found++; | |
| 1078 continue; | |
| 1079 } | |
| 1080 break; | |
| 1081 } | |
| 1082 *mask &= ~CATEGORY_MASK_UTF_8; | |
| 1083 return 0; | |
| 1084 | |
| 1085 no_more_source: | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1086 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1087 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1088 *mask &= ~CATEGORY_MASK_UTF_8; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1089 return 0; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1090 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1091 return found; |
| 88365 | 1092 } |
| 1093 | |
| 1094 | |
| 1095 static void | |
| 1096 decode_coding_utf_8 (coding) | |
| 1097 struct coding_system *coding; | |
| 1098 { | |
| 1099 unsigned char *src = coding->source + coding->consumed; | |
| 1100 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 1101 unsigned char *src_base; | |
| 1102 int *charbuf = coding->charbuf; | |
| 1103 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 1104 int consumed_chars = 0, consumed_chars_base; | |
| 1105 int multibytep = coding->src_multibyte; | |
| 1106 Lisp_Object attr, eol_type, charset_list; | |
| 1107 | |
| 1108 CODING_GET_INFO (coding, attr, eol_type, charset_list); | |
| 1109 | |
| 1110 while (1) | |
| 1111 { | |
| 1112 int c, c1, c2, c3, c4, c5; | |
| 1113 | |
| 1114 src_base = src; | |
| 1115 consumed_chars_base = consumed_chars; | |
| 1116 | |
| 1117 if (charbuf >= charbuf_end) | |
| 1118 break; | |
| 1119 | |
| 1120 ONE_MORE_BYTE (c1); | |
| 1121 if (UTF_8_1_OCTET_P(c1)) | |
| 1122 { | |
| 1123 c = c1; | |
| 1124 if (c == '\r') | |
| 1125 { | |
| 1126 if (EQ (eol_type, Qdos)) | |
| 1127 { | |
| 1128 if (src == src_end) | |
| 1129 goto no_more_source; | |
| 1130 if (*src == '\n') | |
| 1131 ONE_MORE_BYTE (c); | |
| 1132 } | |
| 1133 else if (EQ (eol_type, Qmac)) | |
| 1134 c = '\n'; | |
| 1135 } | |
| 1136 } | |
| 1137 else | |
| 1138 { | |
| 1139 ONE_MORE_BYTE (c2); | |
| 1140 if (! UTF_8_EXTRA_OCTET_P (c2)) | |
| 1141 goto invalid_code; | |
| 1142 if (UTF_8_2_OCTET_LEADING_P (c1)) | |
|
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1143 { |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1144 c = ((c1 & 0x1F) << 6) | (c2 & 0x3F); |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1145 /* Reject overlong sequences here and below. Encoders |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1146 producing them are incorrect, they can be misleading, |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1147 and they mess up read/write invariance. */ |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1148 if (c < 128) |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1149 goto invalid_code; |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1150 } |
| 88365 | 1151 else |
| 1152 { | |
| 1153 ONE_MORE_BYTE (c3); | |
| 1154 if (! UTF_8_EXTRA_OCTET_P (c3)) | |
| 1155 goto invalid_code; | |
| 1156 if (UTF_8_3_OCTET_LEADING_P (c1)) | |
|
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1157 { |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1158 c = (((c1 & 0xF) << 12) |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1159 | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); |
|
89184
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1160 if (c < 0x800 |
|
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1161 || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */ |
|
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1162 goto invalid_code; |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1163 } |
| 88365 | 1164 else |
| 1165 { | |
| 1166 ONE_MORE_BYTE (c4); | |
| 1167 if (! UTF_8_EXTRA_OCTET_P (c4)) | |
| 1168 goto invalid_code; | |
| 1169 if (UTF_8_4_OCTET_LEADING_P (c1)) | |
|
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1170 { |
| 88365 | 1171 c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12) |
| 1172 | ((c3 & 0x3F) << 6) | (c4 & 0x3F)); | |
|
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1173 if (c < 0x10000) |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1174 goto invalid_code; |
|
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1175 } |
| 88365 | 1176 else |
| 1177 { | |
| 1178 ONE_MORE_BYTE (c5); | |
| 1179 if (! UTF_8_EXTRA_OCTET_P (c5)) | |
| 1180 goto invalid_code; | |
| 1181 if (UTF_8_5_OCTET_LEADING_P (c1)) | |
| 1182 { | |
| 1183 c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18) | |
| 1184 | ((c3 & 0x3F) << 12) | ((c4 & 0x3F) << 6) | |
| 1185 | (c5 & 0x3F)); | |
|
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1186 if ((c > MAX_CHAR) || (c < 0x200000)) |
| 88365 | 1187 goto invalid_code; |
| 1188 } | |
| 1189 else | |
| 1190 goto invalid_code; | |
| 1191 } | |
| 1192 } | |
| 1193 } | |
| 1194 } | |
| 1195 | |
| 1196 *charbuf++ = c; | |
| 1197 continue; | |
| 1198 | |
| 1199 invalid_code: | |
| 1200 src = src_base; | |
| 1201 consumed_chars = consumed_chars_base; | |
| 1202 ONE_MORE_BYTE (c); | |
| 1203 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
| 1204 coding->errors++; | |
| 1205 } | |
| 1206 | |
| 1207 no_more_source: | |
| 1208 coding->consumed_char += consumed_chars_base; | |
| 1209 coding->consumed = src_base - coding->source; | |
| 1210 coding->charbuf_used = charbuf - coding->charbuf; | |
| 1211 } | |
| 1212 | |
| 1213 | |
| 1214 static int | |
| 1215 encode_coding_utf_8 (coding) | |
| 1216 struct coding_system *coding; | |
| 1217 { | |
| 1218 int multibytep = coding->dst_multibyte; | |
| 1219 int *charbuf = coding->charbuf; | |
| 1220 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 1221 unsigned char *dst = coding->destination + coding->produced; | |
| 1222 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1223 int produced_chars = 0; |
| 88365 | 1224 int c; |
| 1225 | |
| 1226 if (multibytep) | |
| 1227 { | |
| 1228 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
| 1229 | |
| 1230 while (charbuf < charbuf_end) | |
| 1231 { | |
| 1232 unsigned char str[MAX_MULTIBYTE_LENGTH], *p, *pend = str; | |
| 1233 | |
| 1234 ASSURE_DESTINATION (safe_room); | |
| 1235 c = *charbuf++; | |
|
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1236 if (CHAR_BYTE8_P (c)) |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1237 { |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1238 c = CHAR_TO_BYTE8 (c); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1239 EMIT_ONE_BYTE (c); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1240 } |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1241 else |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1242 { |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1243 CHAR_STRING_ADVANCE (c, pend); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1244 for (p = str; p < pend; p++) |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1245 EMIT_ONE_BYTE (*p); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1246 } |
| 88365 | 1247 } |
| 1248 } | |
| 1249 else | |
| 1250 { | |
| 1251 int safe_room = MAX_MULTIBYTE_LENGTH; | |
| 1252 | |
| 1253 while (charbuf < charbuf_end) | |
| 1254 { | |
| 1255 ASSURE_DESTINATION (safe_room); | |
| 1256 c = *charbuf++; | |
| 1257 dst += CHAR_STRING (c, dst); | |
| 1258 produced_chars++; | |
| 1259 } | |
| 1260 } | |
| 1261 coding->result = CODING_RESULT_SUCCESS; | |
| 1262 coding->produced_char += produced_chars; | |
| 1263 coding->produced = dst - coding->destination; | |
| 1264 return 0; | |
| 1265 } | |
| 1266 | |
| 1267 | |
| 1268 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 1269 Check if a text is encoded in UTF-16 Big Endian (endian == 1) or | |
| 1270 Little Endian (otherwise). If it is, return | |
| 1271 CATEGORY_MASK_UTF_16_BE or CATEGORY_MASK_UTF_16_LE, | |
| 1272 else return 0. */ | |
| 1273 | |
| 1274 #define UTF_16_HIGH_SURROGATE_P(val) \ | |
| 1275 (((val) & 0xFC00) == 0xD800) | |
| 1276 | |
| 1277 #define UTF_16_LOW_SURROGATE_P(val) \ | |
| 1278 (((val) & 0xFC00) == 0xDC00) | |
| 1279 | |
| 1280 #define UTF_16_INVALID_P(val) \ | |
| 1281 (((val) == 0xFFFE) \ | |
| 1282 || ((val) == 0xFFFF) \ | |
| 1283 || UTF_16_LOW_SURROGATE_P (val)) | |
| 1284 | |
| 1285 | |
| 1286 static int | |
| 1287 detect_coding_utf_16 (coding, mask) | |
| 1288 struct coding_system *coding; | |
| 1289 int *mask; | |
| 1290 { | |
| 1291 unsigned char *src = coding->source, *src_base = src; | |
| 1292 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 1293 int multibytep = coding->src_multibyte; | |
| 1294 int consumed_chars = 0; | |
| 1295 int c1, c2; | |
| 1296 | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1297 *mask &= ~CATEGORY_MASK_UTF_16; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1298 |
| 88365 | 1299 ONE_MORE_BYTE (c1); |
| 1300 ONE_MORE_BYTE (c2); | |
| 1301 | |
| 1302 if ((c1 == 0xFF) && (c2 == 0xFE)) | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1303 *mask |= CATEGORY_MASK_UTF_16_LE; |
| 88365 | 1304 else if ((c1 == 0xFE) && (c2 == 0xFF)) |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1305 *mask |= CATEGORY_MASK_UTF_16_BE; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1306 else |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1307 *mask |= CATEGORY_MASK_UTF_16_BE_NOSIG | CATEGORY_MASK_UTF_16_LE_NOSIG; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1308 return 1; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1309 |
| 88365 | 1310 no_more_source: |
| 1311 return 0; | |
| 1312 } | |
| 1313 | |
| 1314 static void | |
| 1315 decode_coding_utf_16 (coding) | |
| 1316 struct coding_system *coding; | |
| 1317 { | |
| 1318 unsigned char *src = coding->source + coding->consumed; | |
| 1319 unsigned char *src_end = coding->source + coding->src_bytes; | |
|
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
1320 unsigned char *src_base; |
| 88365 | 1321 int *charbuf = coding->charbuf; |
| 1322 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 1323 int consumed_chars = 0, consumed_chars_base; | |
| 1324 int multibytep = coding->src_multibyte; | |
| 1325 enum utf_16_bom_type bom = CODING_UTF_16_BOM (coding); | |
| 1326 enum utf_16_endian_type endian = CODING_UTF_16_ENDIAN (coding); | |
| 1327 int surrogate = CODING_UTF_16_SURROGATE (coding); | |
| 1328 Lisp_Object attr, eol_type, charset_list; | |
| 1329 | |
| 1330 CODING_GET_INFO (coding, attr, eol_type, charset_list); | |
| 1331 | |
| 1332 if (bom != utf_16_without_bom) | |
| 1333 { | |
| 1334 int c, c1, c2; | |
| 1335 | |
| 1336 src_base = src; | |
| 1337 ONE_MORE_BYTE (c1); | |
| 1338 ONE_MORE_BYTE (c2); | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1339 c = (c1 << 8) | c2; |
| 88365 | 1340 if (bom == utf_16_with_bom) |
| 1341 { | |
| 1342 if (endian == utf_16_big_endian | |
| 1343 ? c != 0xFFFE : c != 0xFEFF) | |
| 1344 { | |
| 1345 /* We are sure that there's enouph room at CHARBUF. */ | |
| 1346 *charbuf++ = c1; | |
| 1347 *charbuf++ = c2; | |
| 1348 coding->errors++; | |
| 1349 } | |
| 1350 } | |
| 1351 else | |
| 1352 { | |
| 1353 if (c == 0xFFFE) | |
| 1354 CODING_UTF_16_ENDIAN (coding) | |
| 1355 = endian = utf_16_big_endian; | |
| 1356 else if (c == 0xFEFF) | |
| 1357 CODING_UTF_16_ENDIAN (coding) | |
| 1358 = endian = utf_16_little_endian; | |
| 1359 else | |
| 1360 { | |
| 1361 CODING_UTF_16_ENDIAN (coding) | |
| 1362 = endian = utf_16_big_endian; | |
| 1363 src = src_base; | |
| 1364 } | |
| 1365 } | |
| 1366 CODING_UTF_16_BOM (coding) = utf_16_with_bom; | |
| 1367 } | |
| 1368 | |
| 1369 while (1) | |
| 1370 { | |
| 1371 int c, c1, c2; | |
| 1372 | |
| 1373 src_base = src; | |
| 1374 consumed_chars_base = consumed_chars; | |
| 1375 | |
| 1376 if (charbuf + 2 >= charbuf_end) | |
| 1377 break; | |
| 1378 | |
| 1379 ONE_MORE_BYTE (c1); | |
| 1380 ONE_MORE_BYTE (c2); | |
| 1381 c = (endian == utf_16_big_endian | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1382 ? ((c1 << 8) | c2) : ((c2 << 8) | c1)); |
| 88365 | 1383 if (surrogate) |
| 1384 { | |
| 1385 if (! UTF_16_LOW_SURROGATE_P (c)) | |
| 1386 { | |
| 1387 if (endian == utf_16_big_endian) | |
| 1388 c1 = surrogate >> 8, c2 = surrogate & 0xFF; | |
| 1389 else | |
| 1390 c1 = surrogate & 0xFF, c2 = surrogate >> 8; | |
| 1391 *charbuf++ = c1; | |
| 1392 *charbuf++ = c2; | |
| 1393 coding->errors++; | |
| 1394 if (UTF_16_HIGH_SURROGATE_P (c)) | |
| 1395 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
| 1396 else | |
| 1397 *charbuf++ = c; | |
| 1398 } | |
| 1399 else | |
| 1400 { | |
| 1401 c = ((surrogate - 0xD800) << 10) | (c - 0xDC00); | |
| 1402 CODING_UTF_16_SURROGATE (coding) = surrogate = 0; | |
| 1403 *charbuf++ = c; | |
| 1404 } | |
| 1405 } | |
| 1406 else | |
| 1407 { | |
| 1408 if (UTF_16_HIGH_SURROGATE_P (c)) | |
| 1409 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
| 1410 else | |
| 1411 *charbuf++ = c; | |
| 1412 } | |
| 1413 } | |
| 1414 | |
| 1415 no_more_source: | |
| 1416 coding->consumed_char += consumed_chars_base; | |
| 1417 coding->consumed = src_base - coding->source; | |
| 1418 coding->charbuf_used = charbuf - coding->charbuf; | |
| 1419 } | |
| 1420 | |
| 1421 static int | |
| 1422 encode_coding_utf_16 (coding) | |
| 1423 struct coding_system *coding; | |
| 1424 { | |
| 1425 int multibytep = coding->dst_multibyte; | |
| 1426 int *charbuf = coding->charbuf; | |
| 1427 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 1428 unsigned char *dst = coding->destination + coding->produced; | |
| 1429 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 1430 int safe_room = 8; | |
| 1431 enum utf_16_bom_type bom = CODING_UTF_16_BOM (coding); | |
| 1432 int big_endian = CODING_UTF_16_ENDIAN (coding) == utf_16_big_endian; | |
| 1433 int produced_chars = 0; | |
| 1434 Lisp_Object attrs, eol_type, charset_list; | |
| 1435 int c; | |
| 1436 | |
| 1437 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 1438 | |
| 1439 if (bom == utf_16_with_bom) | |
| 1440 { | |
| 1441 ASSURE_DESTINATION (safe_room); | |
| 1442 if (big_endian) | |
| 1443 EMIT_TWO_BYTES (0xFF, 0xFE); | |
| 1444 else | |
| 1445 EMIT_TWO_BYTES (0xFE, 0xFF); | |
| 1446 CODING_UTF_16_BOM (coding) = utf_16_without_bom; | |
| 1447 } | |
| 1448 | |
| 1449 while (charbuf < charbuf_end) | |
| 1450 { | |
| 1451 ASSURE_DESTINATION (safe_room); | |
| 1452 c = *charbuf++; | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1453 if (c >= MAX_UNICODE_CHAR) |
|
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1454 c = coding->default_char; |
| 88365 | 1455 |
| 1456 if (c < 0x10000) | |
| 1457 { | |
| 1458 if (big_endian) | |
| 1459 EMIT_TWO_BYTES (c >> 8, c & 0xFF); | |
| 1460 else | |
| 1461 EMIT_TWO_BYTES (c & 0xFF, c >> 8); | |
| 1462 } | |
| 1463 else | |
| 1464 { | |
| 1465 int c1, c2; | |
| 1466 | |
| 1467 c -= 0x10000; | |
| 1468 c1 = (c >> 10) + 0xD800; | |
| 1469 c2 = (c & 0x3FF) + 0xDC00; | |
| 1470 if (big_endian) | |
| 1471 EMIT_FOUR_BYTES (c1 >> 8, c1 & 0xFF, c2 >> 8, c2 & 0xFF); | |
| 1472 else | |
| 1473 EMIT_FOUR_BYTES (c1 & 0xFF, c1 >> 8, c2 & 0xFF, c2 >> 8); | |
| 1474 } | |
| 1475 } | |
| 1476 coding->result = CODING_RESULT_SUCCESS; | |
| 1477 coding->produced = dst - coding->destination; | |
| 1478 coding->produced_char += produced_chars; | |
| 1479 return 0; | |
| 1480 } | |
| 1481 | |
| 1482 | |
| 1483 /*** 6. Old Emacs' internal format (emacs-mule) ***/ | |
| 17052 | 1484 |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1485 /* Emacs' internal format for representation of multiple character |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1486 sets is a kind of multi-byte encoding, i.e. characters are |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1487 represented by variable-length sequences of one-byte codes. |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1488 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1489 ASCII characters and control characters (e.g. `tab', `newline') are |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1490 represented by one-byte sequences which are their ASCII codes, in |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1491 the range 0x00 through 0x7F. |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1492 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1493 8-bit characters of the range 0x80..0x9F are represented by |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1494 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1495 code + 0x20). |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1496 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1497 8-bit characters of the range 0xA0..0xFF are represented by |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1498 one-byte sequences which are their 8-bit code. |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1499 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1500 The other characters are represented by a sequence of `base |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1501 leading-code', optional `extended leading-code', and one or two |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1502 `position-code's. The length of the sequence is determined by the |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1503 base leading-code. Leading-code takes the range 0x81 through 0x9D, |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1504 whereas extended leading-code and position-code take the range 0xA0 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1505 through 0xFF. See `charset.h' for more details about leading-code |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1506 and position-code. |
| 18766 | 1507 |
| 17052 | 1508 --- CODE RANGE of Emacs' internal format --- |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1509 character set range |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1510 ------------- ----- |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1511 ascii 0x00..0x7F |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1512 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1513 eight-bit-graphic 0xA0..0xBF |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1514 ELSE 0x81..0x9D + [0xA0..0xFF]+ |
| 17052 | 1515 --------------------------------------------- |
| 1516 | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1517 As this is the internal character representation, the format is |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1518 usually not used externally (i.e. in a file or in a data sent to a |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1519 process). But, it is possible to have a text externally in this |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1520 format (i.e. by encoding by the coding system `emacs-mule'). |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1521 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1522 In that case, a sequence of one-byte codes has a slightly different |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1523 form. |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1524 |
| 88365 | 1525 At first, all characters in eight-bit-control are represented by |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1526 one-byte sequences which are their 8-bit code. |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1527 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1528 Next, character composition data are represented by the byte |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1529 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ..., |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1530 where, |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1531 METHOD is 0xF0 plus one of composition method (enum |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1532 composition_method), |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1533 |
| 88365 | 1534 BYTES is 0xA0 plus a byte length of this composition data, |
| 1535 | |
| 1536 CHARS is 0x20 plus a number of characters composed by this | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1537 data, |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1538 |
| 88365 | 1539 COMPONENTs are characters of multibye form or composition |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1540 rules encoded by two-byte of ASCII codes. |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1541 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1542 In addition, for backward compatibility, the following formats are |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1543 also recognized as composition data on decoding. |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1544 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1545 0x80 MSEQ ... |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1546 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1547 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1548 Here, |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1549 MSEQ is a multibyte form but in these special format: |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1550 ASCII: 0xA0 ASCII_CODE+0x80, |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1551 other: LEADING_CODE+0x20 FOLLOWING-BYTE ..., |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1552 RULE is a one byte code of the range 0xA0..0xF0 that |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1553 represents a composition rule. |
| 17052 | 1554 */ |
| 1555 | |
| 88365 | 1556 char emacs_mule_bytes[256]; |
| 1557 | |
| 1558 int | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1559 emacs_mule_char (coding, src, nbytes, nchars) |
| 88365 | 1560 struct coding_system *coding; |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1561 unsigned char *src; |
| 88365 | 1562 int *nbytes, *nchars; |
| 1563 { | |
| 1564 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 1565 int multibytep = coding->src_multibyte; | |
| 1566 unsigned char *src_base = src; | |
| 1567 struct charset *charset; | |
| 1568 unsigned code; | |
| 1569 int c; | |
| 1570 int consumed_chars = 0; | |
| 1571 | |
| 1572 ONE_MORE_BYTE (c); | |
| 1573 switch (emacs_mule_bytes[c]) | |
| 1574 { | |
| 1575 case 2: | |
| 1576 if (! (charset = emacs_mule_charset[c])) | |
| 1577 goto invalid_code; | |
| 1578 ONE_MORE_BYTE (c); | |
| 1579 code = c & 0x7F; | |
| 1580 break; | |
| 1581 | |
| 1582 case 3: | |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
1583 if (c == EMACS_MULE_LEADING_CODE_PRIVATE_11 |
|
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
1584 || c == EMACS_MULE_LEADING_CODE_PRIVATE_12) |
| 88365 | 1585 { |
| 1586 ONE_MORE_BYTE (c); | |
| 1587 if (! (charset = emacs_mule_charset[c])) | |
| 1588 goto invalid_code; | |
| 1589 ONE_MORE_BYTE (c); | |
| 1590 code = c & 0x7F; | |
| 1591 } | |
| 1592 else | |
| 1593 { | |
| 1594 if (! (charset = emacs_mule_charset[c])) | |
| 1595 goto invalid_code; | |
| 1596 ONE_MORE_BYTE (c); | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1597 code = (c & 0x7F) << 8; |
| 88365 | 1598 ONE_MORE_BYTE (c); |
| 1599 code |= c & 0x7F; | |
| 1600 } | |
| 1601 break; | |
| 1602 | |
| 1603 case 4: | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1604 ONE_MORE_BYTE (c); |
| 88365 | 1605 if (! (charset = emacs_mule_charset[c])) |
| 1606 goto invalid_code; | |
| 1607 ONE_MORE_BYTE (c); | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1608 code = (c & 0x7F) << 8; |
| 88365 | 1609 ONE_MORE_BYTE (c); |
| 1610 code |= c & 0x7F; | |
| 1611 break; | |
| 1612 | |
| 1613 case 1: | |
| 1614 code = c; | |
|
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
1615 charset = CHARSET_FROM_ID (ASCII_BYTE_P (code) |
|
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
1616 ? charset_ascii : charset_eight_bit); |
| 88365 | 1617 break; |
| 1618 | |
| 1619 default: | |
| 1620 abort (); | |
| 1621 } | |
| 1622 c = DECODE_CHAR (charset, code); | |
| 1623 if (c < 0) | |
| 1624 goto invalid_code; | |
| 1625 *nbytes = src - src_base; | |
| 1626 *nchars = consumed_chars; | |
| 1627 return c; | |
| 1628 | |
| 1629 no_more_source: | |
| 1630 return -2; | |
| 1631 | |
| 1632 invalid_code: | |
| 1633 return -1; | |
| 1634 } | |
| 1635 | |
| 17052 | 1636 |
| 1637 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 88365 | 1638 Check if a text is encoded in `emacs-mule'. */ |
| 17052 | 1639 |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
1640 static int |
| 88365 | 1641 detect_coding_emacs_mule (coding, mask) |
| 1642 struct coding_system *coding; | |
| 1643 int *mask; | |
| 17052 | 1644 { |
| 88365 | 1645 unsigned char *src = coding->source, *src_base = src; |
| 1646 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 1647 int multibytep = coding->src_multibyte; | |
| 1648 int consumed_chars = 0; | |
| 1649 int c; | |
| 1650 int found = 0; | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1651 int incomplete; |
| 88365 | 1652 |
| 1653 /* A coding system of this category is always ASCII compatible. */ | |
| 1654 src += coding->head_ascii; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1655 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1656 while (1) |
| 17052 | 1657 { |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1658 incomplete = 0; |
| 88365 | 1659 ONE_MORE_BYTE (c); |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1660 incomplete = 1; |
| 88365 | 1661 |
| 1662 if (c == 0x80) | |
| 17052 | 1663 { |
| 88365 | 1664 /* Perhaps the start of composite character. We simple skip |
| 1665 it because analyzing it is too heavy for detecting. But, | |
| 1666 at least, we check that the composite character | |
| 1667 constitues of more than 4 bytes. */ | |
| 1668 unsigned char *src_base; | |
| 1669 | |
| 1670 repeat: | |
| 1671 src_base = src; | |
| 1672 do | |
| 1673 { | |
| 1674 ONE_MORE_BYTE (c); | |
| 1675 } | |
| 1676 while (c >= 0xA0); | |
| 1677 | |
| 1678 if (src - src_base <= 4) | |
| 1679 break; | |
| 1680 found = 1; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1681 if (c == 0x80) |
| 88365 | 1682 goto repeat; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1683 } |
| 88365 | 1684 |
| 1685 if (c < 0x80) | |
| 1686 { | |
| 1687 if (c < 0x20 | |
| 1688 && (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) | |
| 1689 break; | |
| 1690 } | |
| 1691 else | |
| 1692 { | |
| 1693 unsigned char *src_base = src - 1; | |
| 1694 | |
| 1695 do | |
| 1696 { | |
| 1697 ONE_MORE_BYTE (c); | |
| 1698 } | |
| 1699 while (c >= 0xA0); | |
| 1700 if (src - src_base != emacs_mule_bytes[*src_base]) | |
| 1701 break; | |
| 1702 found = 1; | |
| 1703 } | |
| 1704 } | |
| 1705 *mask &= ~CATEGORY_MASK_EMACS_MULE; | |
| 1706 return 0; | |
| 1707 | |
| 1708 no_more_source: | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1709 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1710 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1711 *mask &= ~CATEGORY_MASK_EMACS_MULE; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1712 return 0; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1713 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1714 return found; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1715 } |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1716 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1717 |
| 88365 | 1718 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1719 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1720 /* Decode a character represented as a component of composition |
| 88365 | 1721 sequence of Emacs 20/21 style at SRC. Set C to that character and |
| 1722 update SRC to the head of next character (or an encoded composition | |
| 1723 rule). If SRC doesn't points a composition component, set C to -1. | |
| 1724 If SRC points an invalid byte sequence, global exit by a return | |
| 1725 value 0. */ | |
| 1726 | |
| 1727 #define DECODE_EMACS_MULE_COMPOSITION_CHAR(buf) \ | |
| 1728 if (1) \ | |
| 1729 { \ | |
| 1730 int c; \ | |
| 1731 int nbytes, nchars; \ | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1732 \ |
| 88365 | 1733 if (src == src_end) \ |
| 1734 break; \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1735 c = emacs_mule_char (coding, src, &nbytes, &nchars); \ |
| 88365 | 1736 if (c < 0) \ |
| 1737 { \ | |
| 1738 if (c == -2) \ | |
| 1739 break; \ | |
| 1740 goto invalid_code; \ | |
| 1741 } \ | |
| 1742 *buf++ = c; \ | |
| 1743 src += nbytes; \ | |
| 1744 consumed_chars += nchars; \ | |
| 1745 } \ | |
| 1746 else | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1747 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1748 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1749 /* Decode a composition rule represented as a component of composition |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1750 sequence of Emacs 20 style at SRC. Store the decoded rule in *BUF, |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1751 and increment BUF. If SRC points an invalid byte sequence, set C |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1752 to -1. */ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1753 |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1754 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(buf) \ |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1755 do { \ |
| 88365 | 1756 int c, gref, nref; \ |
| 1757 \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1758 if (src >= src_end) \ |
| 88365 | 1759 goto invalid_code; \ |
| 1760 ONE_MORE_BYTE_NO_CHECK (c); \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1761 c -= 0x20; \ |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1762 if (c < 0 || c >= 81) \ |
| 88365 | 1763 goto invalid_code; \ |
| 1764 \ | |
| 1765 gref = c / 9, nref = c % 9; \ | |
| 1766 *buf++ = COMPOSITION_ENCODE_RULE (gref, nref); \ | |
| 1767 } while (0) | |
| 1768 | |
| 1769 | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1770 /* Decode a composition rule represented as a component of composition |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1771 sequence of Emacs 21 style at SRC. Store the decoded rule in *BUF, |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1772 and increment BUF. If SRC points an invalid byte sequence, set C |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1773 to -1. */ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1774 |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1775 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(buf) \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1776 do { \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1777 int gref, nref; \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1778 \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1779 if (src + 1>= src_end) \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1780 goto invalid_code; \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1781 ONE_MORE_BYTE_NO_CHECK (gref); \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1782 gref -= 0x20; \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1783 ONE_MORE_BYTE_NO_CHECK (nref); \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1784 nref -= 0x20; \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1785 if (gref < 0 || gref >= 81 \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1786 || nref < 0 || nref >= 81) \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1787 goto invalid_code; \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1788 *buf++ = COMPOSITION_ENCODE_RULE (gref, nref); \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1789 } while (0) |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1790 |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1791 |
| 88365 | 1792 #define ADD_COMPOSITION_DATA(buf, method, nchars) \ |
| 1793 do { \ | |
| 1794 *buf++ = -5; \ | |
| 1795 *buf++ = coding->produced_char + char_offset; \ | |
| 1796 *buf++ = CODING_ANNOTATE_COMPOSITION_MASK; \ | |
| 1797 *buf++ = method; \ | |
| 1798 *buf++ = nchars; \ | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1799 } while (0) |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1800 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1801 |
| 88365 | 1802 #define DECODE_EMACS_MULE_21_COMPOSITION(c) \ |
| 1803 do { \ | |
| 1804 /* Emacs 21 style format. The first three bytes at SRC are \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1805 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is \ |
| 88365 | 1806 the byte length of this composition information, CHARS is the \ |
| 1807 number of characters composed by this composition. */ \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1808 enum composition_method method = c - 0xF2; \ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1809 int *charbuf_base = charbuf; \ |
| 88365 | 1810 int consumed_chars_limit; \ |
| 1811 int nbytes, nchars; \ | |
| 1812 \ | |
| 1813 ONE_MORE_BYTE (c); \ | |
| 1814 nbytes = c - 0xA0; \ | |
| 1815 if (nbytes < 3) \ | |
| 1816 goto invalid_code; \ | |
| 1817 ONE_MORE_BYTE (c); \ | |
| 1818 nchars = c - 0xA0; \ | |
| 1819 ADD_COMPOSITION_DATA (charbuf, method, nchars); \ | |
| 1820 consumed_chars_limit = consumed_chars_base + nbytes; \ | |
| 1821 if (method != COMPOSITION_RELATIVE) \ | |
| 1822 { \ | |
| 1823 int i = 0; \ | |
| 1824 while (consumed_chars < consumed_chars_limit) \ | |
| 1825 { \ | |
| 1826 if (i % 2 && method != COMPOSITION_WITH_ALTCHARS) \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1827 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (charbuf); \ |
| 88365 | 1828 else \ |
| 1829 DECODE_EMACS_MULE_COMPOSITION_CHAR (charbuf); \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1830 i++; \ |
| 88365 | 1831 } \ |
| 1832 if (consumed_chars < consumed_chars_limit) \ | |
| 1833 goto invalid_code; \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1834 charbuf_base[0] -= i; \ |
| 88365 | 1835 } \ |
| 1836 } while (0) | |
| 1837 | |
| 1838 | |
| 1839 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION(c) \ | |
| 1840 do { \ | |
| 1841 /* Emacs 20 style format for relative composition. */ \ | |
| 1842 /* Store multibyte form of characters to be composed. */ \ | |
| 1843 int components[MAX_COMPOSITION_COMPONENTS * 2 - 1]; \ | |
| 1844 int *buf = components; \ | |
| 1845 int i, j; \ | |
| 1846 \ | |
| 1847 src = src_base; \ | |
| 1848 ONE_MORE_BYTE (c); /* skip 0x80 */ \ | |
| 1849 for (i = 0; i < MAX_COMPOSITION_COMPONENTS; i++) \ | |
| 1850 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
| 1851 if (i < 2) \ | |
| 1852 goto invalid_code; \ | |
| 1853 ADD_COMPOSITION_DATA (charbuf, COMPOSITION_RELATIVE, i); \ | |
| 1854 for (j = 0; j < i; j++) \ | |
| 1855 *charbuf++ = components[j]; \ | |
| 1856 } while (0) | |
| 1857 | |
| 1858 | |
| 1859 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION(c) \ | |
| 1860 do { \ | |
| 1861 /* Emacs 20 style format for rule-base composition. */ \ | |
| 1862 /* Store multibyte form of characters to be composed. */ \ | |
| 1863 int components[MAX_COMPOSITION_COMPONENTS * 2 - 1]; \ | |
| 1864 int *buf = components; \ | |
| 1865 int i, j; \ | |
| 1866 \ | |
| 1867 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ | |
| 1868 for (i = 0; i < MAX_COMPOSITION_COMPONENTS; i++) \ | |
| 1869 { \ | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1870 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (buf); \ |
| 88365 | 1871 DECODE_EMACS_MULE_COMPOSITION_CHAR (buf); \ |
| 1872 } \ | |
| 1873 if (i < 1 || (buf - components) % 2 == 0) \ | |
| 1874 goto invalid_code; \ | |
| 1875 if (charbuf + i + (i / 2) + 1 < charbuf_end) \ | |
| 1876 goto no_more_source; \ | |
| 1877 ADD_COMPOSITION_DATA (buf, COMPOSITION_WITH_RULE, i); \ | |
| 1878 for (j = 0; j < i; j++) \ | |
| 1879 *charbuf++ = components[j]; \ | |
| 1880 for (j = 0; j < i; j += 2) \ | |
| 1881 *charbuf++ = components[j]; \ | |
| 1882 } while (0) | |
| 1883 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1884 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1885 static void |
| 88365 | 1886 decode_coding_emacs_mule (coding) |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1887 struct coding_system *coding; |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1888 { |
| 88365 | 1889 unsigned char *src = coding->source + coding->consumed; |
| 1890 unsigned char *src_end = coding->source + coding->src_bytes; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1891 unsigned char *src_base; |
| 88365 | 1892 int *charbuf = coding->charbuf; |
| 1893 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 1894 int consumed_chars = 0, consumed_chars_base; | |
| 1895 int char_offset = 0; | |
| 1896 int multibytep = coding->src_multibyte; | |
| 1897 Lisp_Object attrs, eol_type, charset_list; | |
| 1898 | |
| 1899 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 1900 | |
| 1901 while (1) | |
| 1902 { | |
| 1903 int c; | |
| 1904 | |
| 1905 src_base = src; | |
| 1906 consumed_chars_base = consumed_chars; | |
| 1907 | |
| 1908 if (charbuf >= charbuf_end) | |
| 1909 break; | |
| 1910 | |
| 1911 ONE_MORE_BYTE (c); | |
| 1912 | |
| 1913 if (c < 0x80) | |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1914 { |
| 88365 | 1915 if (c == '\r') |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1916 { |
| 88365 | 1917 if (EQ (eol_type, Qdos)) |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1918 { |
| 88365 | 1919 if (src == src_end) |
| 1920 goto no_more_source; | |
| 1921 if (*src == '\n') | |
| 1922 ONE_MORE_BYTE (c); | |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1923 } |
| 88365 | 1924 else if (EQ (eol_type, Qmac)) |
| 1925 c = '\n'; | |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1926 } |
| 88365 | 1927 *charbuf++ = c; |
| 1928 char_offset++; | |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1929 } |
| 88365 | 1930 else if (c == 0x80) |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1931 { |
| 88365 | 1932 if (charbuf + 5 + (MAX_COMPOSITION_COMPONENTS * 2) - 1 > charbuf_end) |
| 1933 break; | |
| 1934 ONE_MORE_BYTE (c); | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1935 if (c - 0xF2 >= COMPOSITION_RELATIVE |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1936 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) |
| 88365 | 1937 DECODE_EMACS_MULE_21_COMPOSITION (c); |
| 1938 else if (c < 0xC0) | |
| 1939 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (c); | |
| 1940 else if (c == 0xFF) | |
| 1941 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (c); | |
| 1942 else | |
| 1943 goto invalid_code; | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1944 coding->annotated = 1; |
|
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
1945 } |
| 88365 | 1946 else if (c < 0xA0 && emacs_mule_bytes[c] > 1) |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1947 { |
| 88365 | 1948 int nbytes, nchars; |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1949 src = src_base; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1950 consumed_chars = consumed_chars_base; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1951 c = emacs_mule_char (coding, src, &nbytes, &nchars); |
| 88365 | 1952 if (c < 0) |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1953 { |
| 88365 | 1954 if (c == -2) |
| 1955 break; | |
| 1956 goto invalid_code; | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1957 } |
| 88365 | 1958 *charbuf++ = c; |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1959 src += nbytes; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
1960 consumed_chars += nchars; |
| 88365 | 1961 char_offset++; |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1962 } |
| 88365 | 1963 continue; |
| 1964 | |
| 1965 invalid_code: | |
| 1966 src = src_base; | |
| 1967 consumed_chars = consumed_chars_base; | |
| 1968 ONE_MORE_BYTE (c); | |
| 1969 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
| 1970 coding->errors++; | |
| 1971 } | |
| 1972 | |
| 1973 no_more_source: | |
| 1974 coding->consumed_char += consumed_chars_base; | |
| 1975 coding->consumed = src_base - coding->source; | |
| 1976 coding->charbuf_used = charbuf - coding->charbuf; | |
| 1977 } | |
| 1978 | |
| 1979 | |
| 1980 #define EMACS_MULE_LEADING_CODES(id, codes) \ | |
| 1981 do { \ | |
| 1982 if (id < 0xA0) \ | |
| 1983 codes[0] = id, codes[1] = 0; \ | |
| 1984 else if (id < 0xE0) \ | |
| 1985 codes[0] = 0x9A, codes[1] = id; \ | |
| 1986 else if (id < 0xF0) \ | |
| 1987 codes[0] = 0x9B, codes[1] = id; \ | |
| 1988 else if (id < 0xF5) \ | |
| 1989 codes[0] = 0x9C, codes[1] = id; \ | |
| 1990 else \ | |
| 1991 codes[0] = 0x9D, codes[1] = id; \ | |
| 1992 } while (0); | |
| 1993 | |
| 1994 | |
| 1995 static int | |
| 1996 encode_coding_emacs_mule (coding) | |
| 1997 struct coding_system *coding; | |
| 1998 { | |
| 1999 int multibytep = coding->dst_multibyte; | |
| 2000 int *charbuf = coding->charbuf; | |
| 2001 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 2002 unsigned char *dst = coding->destination + coding->produced; | |
| 2003 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 2004 int safe_room = 8; | |
| 2005 int produced_chars = 0; | |
| 2006 Lisp_Object attrs, eol_type, charset_list; | |
| 2007 int c; | |
| 2008 | |
| 2009 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 2010 | |
| 2011 while (charbuf < charbuf_end) | |
| 2012 { | |
| 2013 ASSURE_DESTINATION (safe_room); | |
| 2014 c = *charbuf++; | |
| 2015 if (ASCII_CHAR_P (c)) | |
| 2016 EMIT_ONE_ASCII_BYTE (c); | |
|
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2017 else if (CHAR_BYTE8_P (c)) |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2018 { |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2019 c = CHAR_TO_BYTE8 (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2020 EMIT_ONE_BYTE (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2021 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2022 else |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2023 { |
| 88365 | 2024 struct charset *charset; |
| 2025 unsigned code; | |
| 2026 int dimension; | |
| 2027 int emacs_mule_id; | |
| 2028 unsigned char leading_codes[2]; | |
| 2029 | |
| 2030 charset = char_charset (c, charset_list, &code); | |
| 2031 if (! charset) | |
| 2032 { | |
| 2033 c = coding->default_char; | |
| 2034 if (ASCII_CHAR_P (c)) | |
| 2035 { | |
| 2036 EMIT_ONE_ASCII_BYTE (c); | |
| 2037 continue; | |
| 2038 } | |
| 2039 charset = char_charset (c, charset_list, &code); | |
| 2040 } | |
| 2041 dimension = CHARSET_DIMENSION (charset); | |
| 2042 emacs_mule_id = CHARSET_EMACS_MULE_ID (charset); | |
| 2043 EMACS_MULE_LEADING_CODES (emacs_mule_id, leading_codes); | |
| 2044 EMIT_ONE_BYTE (leading_codes[0]); | |
| 2045 if (leading_codes[1]) | |
| 2046 EMIT_ONE_BYTE (leading_codes[1]); | |
| 2047 if (dimension == 1) | |
| 2048 EMIT_ONE_BYTE (code); | |
| 2049 else | |
| 2050 { | |
| 2051 EMIT_ONE_BYTE (code >> 8); | |
| 2052 EMIT_ONE_BYTE (code & 0xFF); | |
| 2053 } | |
| 17052 | 2054 } |
| 88365 | 2055 } |
| 2056 coding->result = CODING_RESULT_SUCCESS; | |
| 2057 coding->produced_char += produced_chars; | |
| 2058 coding->produced = dst - coding->destination; | |
| 2059 return 0; | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2060 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2061 |
| 17052 | 2062 |
| 88365 | 2063 /*** 7. ISO2022 handlers ***/ |
| 17052 | 2064 |
| 2065 /* The following note describes the coding system ISO2022 briefly. | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2066 Since the intention of this note is to help understand the |
| 88771 | 2067 functions in this file, some parts are NOT ACCURATE or are OVERLY |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2068 SIMPLIFIED. For thorough understanding, please refer to the |
| 88771 | 2069 original document of ISO2022. This is equivalent to the standard |
| 2070 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*). | |
| 17052 | 2071 |
| 2072 ISO2022 provides many mechanisms to encode several character sets | |
| 88771 | 2073 in 7-bit and 8-bit environments. For 7-bit environments, all text |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2074 is encoded using bytes less than 128. This may make the encoded |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2075 text a little bit longer, but the text passes more easily through |
| 88771 | 2076 several types of gateway, some of which strip off the MSB (Most |
| 2077 Significant Bit). | |
| 2078 | |
| 2079 There are two kinds of character sets: control character sets and | |
| 2080 graphic character sets. The former contain control characters such | |
| 17052 | 2081 as `newline' and `escape' to provide control functions (control |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2082 functions are also provided by escape sequences). The latter |
| 88771 | 2083 contain graphic characters such as 'A' and '-'. Emacs recognizes |
| 17052 | 2084 two control character sets and many graphic character sets. |
| 2085 | |
| 2086 Graphic character sets are classified into one of the following | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2087 four classes, according to the number of bytes (DIMENSION) and |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2088 number of characters in one dimension (CHARS) of the set: |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2089 - DIMENSION1_CHARS94 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2090 - DIMENSION1_CHARS96 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2091 - DIMENSION2_CHARS94 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2092 - DIMENSION2_CHARS96 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2093 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2094 In addition, each character set is assigned an identification tag, |
| 88771 | 2095 unique for each set, called the "final character" (denoted as <F> |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2096 hereafter). The <F> of each character set is decided by ECMA(*) |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2097 when it is registered in ISO. The code range of <F> is 0x30..0x7F |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2098 (0x30..0x3F are for private use only). |
| 17052 | 2099 |
| 2100 Note (*): ECMA = European Computer Manufacturers Association | |
| 2101 | |
| 88771 | 2102 Here are examples of graphic character sets [NAME(<F>)]: |
| 17052 | 2103 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... |
| 2104 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
| 2105 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
| 2106 o DIMENSION2_CHARS96 -- none for the moment | |
| 2107 | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2108 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR. |
| 17052 | 2109 C0 [0x00..0x1F] -- control character plane 0 |
| 2110 GL [0x20..0x7F] -- graphic character plane 0 | |
| 2111 C1 [0x80..0x9F] -- control character plane 1 | |
| 2112 GR [0xA0..0xFF] -- graphic character plane 1 | |
| 2113 | |
| 2114 A control character set is directly designated and invoked to C0 or | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2115 C1 by an escape sequence. The most common case is that: |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2116 - ISO646's control character set is designated/invoked to C0, and |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2117 - ISO6429's control character set is designated/invoked to C1, |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2118 and usually these designations/invocations are omitted in encoded |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2119 text. In a 7-bit environment, only C0 can be used, and a control |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2120 character for C1 is encoded by an appropriate escape sequence to |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2121 fit into the environment. All control characters for C1 are |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2122 defined to have corresponding escape sequences. |
| 17052 | 2123 |
| 2124 A graphic character set is at first designated to one of four | |
| 2125 graphic registers (G0 through G3), then these graphic registers are | |
| 2126 invoked to GL or GR. These designations and invocations can be | |
| 2127 done independently. The most common case is that G0 is invoked to | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2128 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2129 these invocations and designations are omitted in encoded text. |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2130 In a 7-bit environment, only GL can be used. |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2131 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2132 When a graphic character set of CHARS94 is invoked to GL, codes |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2133 0x20 and 0x7F of the GL area work as control characters SPACE and |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2134 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2135 be used. |
| 17052 | 2136 |
| 2137 There are two ways of invocation: locking-shift and single-shift. | |
| 2138 With locking-shift, the invocation lasts until the next different | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2139 invocation, whereas with single-shift, the invocation affects the |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2140 following character only and doesn't affect the locking-shift |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2141 state. Invocations are done by the following control characters or |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2142 escape sequences: |
| 17052 | 2143 |
| 2144 ---------------------------------------------------------------------- | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2145 abbrev function cntrl escape seq description |
| 17052 | 2146 ---------------------------------------------------------------------- |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2147 SI/LS0 (shift-in) 0x0F none invoke G0 into GL |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2148 SO/LS1 (shift-out) 0x0E none invoke G1 into GL |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2149 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2150 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2151 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*) |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2152 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*) |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2153 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*) |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2154 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2155 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char |
| 17052 | 2156 ---------------------------------------------------------------------- |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2157 (*) These are not used by any known coding system. |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2158 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2159 Control characters for these functions are defined by macros |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2160 ISO_CODE_XXX in `coding.h'. |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2161 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2162 Designations are done by the following escape sequences: |
| 17052 | 2163 ---------------------------------------------------------------------- |
| 2164 escape sequence description | |
| 2165 ---------------------------------------------------------------------- | |
| 2166 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
| 2167 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
| 2168 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
| 2169 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
| 2170 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
| 2171 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
| 2172 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
| 2173 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
| 2174 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
| 2175 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
| 2176 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
| 2177 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
| 2178 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
| 2179 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
| 2180 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
| 2181 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
| 2182 ---------------------------------------------------------------------- | |
| 2183 | |
| 2184 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2185 of dimension 1, chars 94, and final character <F>, etc... |
| 17052 | 2186 |
| 2187 Note (*): Although these designations are not allowed in ISO2022, | |
| 2188 Emacs accepts them on decoding, and produces them on encoding | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2189 CHARS96 character sets in a coding system which is characterized as |
| 17052 | 2190 7-bit environment, non-locking-shift, and non-single-shift. |
| 2191 | |
| 2192 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
| 88365 | 2193 '(' must be omitted. We refer to this as "short-form" hereafter. |
| 2194 | |
| 88771 | 2195 Now you may notice that there are a lot of ways of encoding the |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2196 same multilingual text in ISO2022. Actually, there exist many |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2197 coding systems such as Compound Text (used in X11's inter client |
| 88771 | 2198 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR |
| 2199 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian | |
| 17052 | 2200 localized platforms), and all of these are variants of ISO2022. |
| 2201 | |
| 2202 In addition to the above, Emacs handles two more kinds of escape | |
| 2203 sequences: ISO6429's direction specification and Emacs' private | |
| 2204 sequence for specifying character composition. | |
| 2205 | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2206 ISO6429's direction specification takes the following form: |
| 17052 | 2207 o CSI ']' -- end of the current direction |
| 2208 o CSI '0' ']' -- end of the current direction | |
| 2209 o CSI '1' ']' -- start of left-to-right text | |
| 2210 o CSI '2' ']' -- start of right-to-left text | |
| 2211 The control character CSI (0x9B: control sequence introducer) is | |
|
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2212 abbreviated to the escape sequence ESC '[' in a 7-bit environment. |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2213 |
|
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2214 Character composition specification takes the following form: |
| 26847 | 2215 o ESC '0' -- start relative composition |
| 2216 o ESC '1' -- end composition | |
| 2217 o ESC '2' -- start rule-base composition (*) | |
| 2218 o ESC '3' -- start relative composition with alternate chars (**) | |
| 2219 o ESC '4' -- start rule-base composition with alternate chars (**) | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2220 Since these are not standard escape sequences of any ISO standard, |
| 88771 | 2221 the use of them with these meanings is restricted to Emacs only. |
| 2222 | |
| 2223 (*) This form is used only in Emacs 20.7 and older versions, | |
| 2224 but newer versions can safely decode it. | |
| 2225 (**) This form is used only in Emacs 21.1 and newer versions, | |
| 2226 and older versions can't decode it. | |
| 2227 | |
| 2228 Here's a list of example usages of these composition escape | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2229 sequences (categorized by `enum composition_method'). |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2230 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2231 COMPOSITION_RELATIVE: |
| 26847 | 2232 ESC 0 CHAR [ CHAR ] ESC 1 |
| 88771 | 2233 COMPOSITION_WITH_RULE: |
| 26847 | 2234 ESC 2 CHAR [ RULE CHAR ] ESC 1 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2235 COMPOSITION_WITH_ALTCHARS: |
| 26847 | 2236 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2237 COMPOSITION_WITH_RULE_ALTCHARS: |
| 26847 | 2238 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */ |
| 17052 | 2239 |
| 2240 enum iso_code_class_type iso_code_class[256]; | |
| 2241 | |
| 88365 | 2242 #define SAFE_CHARSET_P(coding, id) \ |
| 2243 ((id) <= (coding)->max_charset_id \ | |
| 2244 && (coding)->safe_charsets[id] >= 0) | |
| 2245 | |
| 2246 | |
| 2247 #define SHIFT_OUT_OK(category) \ | |
| 2248 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) | |
| 2249 | |
| 2250 static void | |
|
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
2251 setup_iso_safe_charsets (attrs) |
|
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
2252 Lisp_Object attrs; |
| 88365 | 2253 { |
| 2254 Lisp_Object charset_list, safe_charsets; | |
| 2255 Lisp_Object request; | |
| 2256 Lisp_Object reg_usage; | |
| 2257 Lisp_Object tail; | |
| 2258 int reg94, reg96; | |
| 2259 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
| 2260 int max_charset_id; | |
| 2261 | |
| 2262 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
| 2263 if ((flags & CODING_ISO_FLAG_FULL_SUPPORT) | |
| 2264 && ! EQ (charset_list, Viso_2022_charset_list)) | |
| 2265 { | |
| 2266 CODING_ATTR_CHARSET_LIST (attrs) | |
| 2267 = charset_list = Viso_2022_charset_list; | |
| 2268 ASET (attrs, coding_attr_safe_charsets, Qnil); | |
| 2269 } | |
| 2270 | |
| 2271 if (STRINGP (AREF (attrs, coding_attr_safe_charsets))) | |
| 2272 return; | |
| 2273 | |
| 2274 max_charset_id = 0; | |
| 2275 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
| 2276 { | |
| 2277 int id = XINT (XCAR (tail)); | |
| 2278 if (max_charset_id < id) | |
| 2279 max_charset_id = id; | |
| 2280 } | |
| 2281 | |
| 2282 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
| 2283 make_number (255)); | |
| 2284 request = AREF (attrs, coding_attr_iso_request); | |
| 2285 reg_usage = AREF (attrs, coding_attr_iso_usage); | |
| 2286 reg94 = XINT (XCAR (reg_usage)); | |
| 2287 reg96 = XINT (XCDR (reg_usage)); | |
| 2288 | |
| 2289 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
| 2290 { | |
| 2291 Lisp_Object id; | |
| 2292 Lisp_Object reg; | |
| 2293 struct charset *charset; | |
| 2294 | |
| 2295 id = XCAR (tail); | |
| 2296 charset = CHARSET_FROM_ID (XINT (id)); | |
|
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2297 reg = Fcdr (Fassq (id, request)); |
| 88365 | 2298 if (! NILP (reg)) |
| 2299 XSTRING (safe_charsets)->data[XINT (id)] = XINT (reg); | |
| 2300 else if (charset->iso_chars_96) | |
| 2301 { | |
| 2302 if (reg96 < 4) | |
| 2303 XSTRING (safe_charsets)->data[XINT (id)] = reg96; | |
| 2304 } | |
| 2305 else | |
| 2306 { | |
| 2307 if (reg94 < 4) | |
| 2308 XSTRING (safe_charsets)->data[XINT (id)] = reg94; | |
| 2309 } | |
| 2310 } | |
| 2311 ASET (attrs, coding_attr_safe_charsets, safe_charsets); | |
| 2312 } | |
| 2313 | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2314 |
| 17052 | 2315 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
| 88365 | 2316 Check if a text is encoded in ISO2022. If it is, returns an |
| 17052 | 2317 integer in which appropriate flag bits any of: |
| 88365 | 2318 CATEGORY_MASK_ISO_7 |
| 2319 CATEGORY_MASK_ISO_7_TIGHT | |
| 2320 CATEGORY_MASK_ISO_8_1 | |
| 2321 CATEGORY_MASK_ISO_8_2 | |
| 2322 CATEGORY_MASK_ISO_7_ELSE | |
| 2323 CATEGORY_MASK_ISO_8_ELSE | |
| 17052 | 2324 are set. If a code which should never appear in ISO2022 is found, |
| 2325 returns 0. */ | |
| 2326 | |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
2327 static int |
| 88365 | 2328 detect_coding_iso_2022 (coding, mask) |
| 2329 struct coding_system *coding; | |
| 2330 int *mask; | |
| 17052 | 2331 { |
| 88365 | 2332 unsigned char *src = coding->source, *src_base = src; |
| 2333 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 2334 int multibytep = coding->src_multibyte; | |
| 2335 int mask_iso = CATEGORY_MASK_ISO; | |
| 2336 int mask_found = 0, mask_8bit_found = 0; | |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2337 int reg[4], shift_out = 0, single_shifting = 0; |
| 88365 | 2338 int id; |
| 2339 int c, c1; | |
| 2340 int consumed_chars = 0; | |
| 2341 int i; | |
| 2342 | |
| 2343 for (i = coding_category_iso_7; i <= coding_category_iso_8_else; i++) | |
| 2344 { | |
| 2345 struct coding_system *this = &(coding_categories[i]); | |
| 2346 Lisp_Object attrs, val; | |
| 2347 | |
| 2348 attrs = CODING_ID_ATTRS (this->id); | |
| 2349 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT | |
| 2350 && ! EQ (CODING_ATTR_SAFE_CHARSETS (attrs), Viso_2022_charset_list)) | |
| 2351 setup_iso_safe_charsets (attrs); | |
| 2352 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
| 2353 this->max_charset_id = XSTRING (val)->size - 1; | |
| 2354 this->safe_charsets = (char *) XSTRING (val)->data; | |
| 2355 } | |
| 2356 | |
| 2357 /* A coding system of this category is always ASCII compatible. */ | |
| 2358 src += coding->head_ascii; | |
| 2359 | |
| 2360 reg[0] = charset_ascii, reg[1] = reg[2] = reg[3] = -1; | |
| 2361 while (mask_iso && src < src_end) | |
| 2362 { | |
| 2363 ONE_MORE_BYTE (c); | |
| 17052 | 2364 switch (c) |
| 2365 { | |
| 2366 case ISO_CODE_ESC: | |
|
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2367 if (inhibit_iso_escape_detection) |
|
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2368 break; |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2369 single_shifting = 0; |
| 88365 | 2370 ONE_MORE_BYTE (c); |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2371 if (c >= '(' && c <= '/') |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2372 { |
|
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2373 /* Designation sequence for a charset of dimension 1. */ |
| 88365 | 2374 ONE_MORE_BYTE (c1); |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2375 if (c1 < ' ' || c1 >= 0x80 |
| 88365 | 2376 || (id = iso_charset_table[0][c >= ','][c1]) < 0) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2377 /* Invalid designation sequence. Just ignore. */ |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2378 break; |
| 88365 | 2379 reg[(c - '(') % 4] = id; |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2380 } |
|
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2381 else if (c == '$') |
| 17052 | 2382 { |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2383 /* Designation sequence for a charset of dimension 2. */ |
| 88365 | 2384 ONE_MORE_BYTE (c); |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2385 if (c >= '@' && c <= 'B') |
|
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2386 /* Designation for JISX0208.1978, GB2312, or JISX0208. */ |
| 88365 | 2387 reg[0] = id = iso_charset_table[1][0][c]; |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2388 else if (c >= '(' && c <= '/') |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2389 { |
| 88365 | 2390 ONE_MORE_BYTE (c1); |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2391 if (c1 < ' ' || c1 >= 0x80 |
| 88365 | 2392 || (id = iso_charset_table[1][c >= ','][c1]) < 0) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2393 /* Invalid designation sequence. Just ignore. */ |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2394 break; |
| 88365 | 2395 reg[(c - '(') % 4] = id; |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2396 } |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2397 else |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2398 /* Invalid designation sequence. Just ignore. */ |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2399 break; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2400 } |
|
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2401 else if (c == 'N' || c == 'O') |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2402 { |
|
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2403 /* ESC <Fe> for SS2 or SS3. */ |
| 88365 | 2404 mask_iso &= CATEGORY_MASK_ISO_7_ELSE; |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2405 break; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2406 } |
| 26847 | 2407 else if (c >= '0' && c <= '4') |
| 2408 { | |
| 2409 /* ESC <Fp> for start/end composition. */ | |
| 88365 | 2410 mask_found |= CATEGORY_MASK_ISO; |
| 26847 | 2411 break; |
| 2412 } | |
|
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
2413 else |
| 88365 | 2414 { |
| 2415 /* Invalid escape sequence. */ | |
| 2416 mask_iso &= ~CATEGORY_MASK_ISO_ESCAPE; | |
| 2417 break; | |
| 2418 } | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2419 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2420 /* We found a valid designation sequence for CHARSET. */ |
| 88365 | 2421 mask_iso &= ~CATEGORY_MASK_ISO_8BIT; |
| 2422 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7], | |
| 2423 id)) | |
| 2424 mask_found |= CATEGORY_MASK_ISO_7; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2425 else |
| 88365 | 2426 mask_iso &= ~CATEGORY_MASK_ISO_7; |
| 2427 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_tight], | |
| 2428 id)) | |
| 2429 mask_found |= CATEGORY_MASK_ISO_7_TIGHT; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2430 else |
| 88365 | 2431 mask_iso &= ~CATEGORY_MASK_ISO_7_TIGHT; |
| 2432 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_else], | |
| 2433 id)) | |
| 2434 mask_found |= CATEGORY_MASK_ISO_7_ELSE; | |
|
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2435 else |
| 88365 | 2436 mask_iso &= ~CATEGORY_MASK_ISO_7_ELSE; |
| 2437 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_8_else], | |
| 2438 id)) | |
| 2439 mask_found |= CATEGORY_MASK_ISO_8_ELSE; | |
|
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
2440 else |
| 88365 | 2441 mask_iso &= ~CATEGORY_MASK_ISO_8_ELSE; |
| 17052 | 2442 break; |
| 2443 | |
| 2444 case ISO_CODE_SO: | |
|
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2445 if (inhibit_iso_escape_detection) |
|
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2446 break; |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2447 single_shifting = 0; |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2448 if (shift_out == 0 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2449 && (reg[1] >= 0 |
| 88365 | 2450 || SHIFT_OUT_OK (coding_category_iso_7_else) |
| 2451 || SHIFT_OUT_OK (coding_category_iso_8_else))) | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2452 { |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2453 /* Locking shift out. */ |
| 88365 | 2454 mask_iso &= ~CATEGORY_MASK_ISO_7BIT; |
| 2455 mask_found |= CATEGORY_MASK_ISO_ELSE; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2456 } |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2457 break; |
| 88365 | 2458 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2459 case ISO_CODE_SI: |
|
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2460 if (inhibit_iso_escape_detection) |
|
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2461 break; |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2462 single_shifting = 0; |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2463 if (shift_out == 1) |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2464 { |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2465 /* Locking shift in. */ |
| 88365 | 2466 mask_iso &= ~CATEGORY_MASK_ISO_7BIT; |
| 2467 mask_found |= CATEGORY_MASK_ISO_ELSE; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2468 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2469 break; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2470 |
| 17052 | 2471 case ISO_CODE_CSI: |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2472 single_shifting = 0; |
| 17052 | 2473 case ISO_CODE_SS2: |
| 2474 case ISO_CODE_SS3: | |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2475 { |
| 88365 | 2476 int newmask = CATEGORY_MASK_ISO_8_ELSE; |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2477 |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
2478 mask_8bit_found = 1; |
|
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2479 if (inhibit_iso_escape_detection) |
|
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
2480 break; |
|
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2481 if (c != ISO_CODE_CSI) |
|
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2482 { |
| 88365 | 2483 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
| 2484 & CODING_ISO_FLAG_SINGLE_SHIFT) | |
| 2485 newmask |= CATEGORY_MASK_ISO_8_1; | |
| 2486 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
| 2487 & CODING_ISO_FLAG_SINGLE_SHIFT) | |
| 2488 newmask |= CATEGORY_MASK_ISO_8_2; | |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2489 single_shifting = 1; |
|
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
2490 } |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2491 if (VECTORP (Vlatin_extra_code_table) |
|
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2492 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
|
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2493 { |
| 88365 | 2494 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
| 2495 & CODING_ISO_FLAG_LATIN_EXTRA) | |
| 2496 newmask |= CATEGORY_MASK_ISO_8_1; | |
| 2497 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
| 2498 & CODING_ISO_FLAG_LATIN_EXTRA) | |
| 2499 newmask |= CATEGORY_MASK_ISO_8_2; | |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2500 } |
| 88365 | 2501 mask_iso &= newmask; |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2502 mask_found |= newmask; |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2503 } |
|
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2504 break; |
| 17052 | 2505 |
| 2506 default: | |
| 2507 if (c < 0x80) | |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2508 { |
|
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2509 single_shifting = 0; |
|
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2510 break; |
|
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2511 } |
| 17052 | 2512 else if (c < 0xA0) |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2513 { |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2514 single_shifting = 0; |
| 88365 | 2515 mask_8bit_found = 1; |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2516 if (VECTORP (Vlatin_extra_code_table) |
|
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2517 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2518 { |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2519 int newmask = 0; |
|
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2520 |
| 88365 | 2521 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
| 2522 & CODING_ISO_FLAG_LATIN_EXTRA) | |
| 2523 newmask |= CATEGORY_MASK_ISO_8_1; | |
| 2524 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) | |
| 2525 & CODING_ISO_FLAG_LATIN_EXTRA) | |
| 2526 newmask |= CATEGORY_MASK_ISO_8_2; | |
| 2527 mask_iso &= newmask; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2528 mask_found |= newmask; |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2529 } |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2530 else |
|
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2531 return 0; |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2532 } |
| 17052 | 2533 else |
| 2534 { | |
| 88365 | 2535 mask_iso &= ~(CATEGORY_MASK_ISO_7BIT |
| 2536 | CATEGORY_MASK_ISO_7_ELSE); | |
| 2537 mask_found |= CATEGORY_MASK_ISO_8_1; | |
| 2538 mask_8bit_found = 1; | |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2539 /* Check the length of succeeding codes of the range |
|
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2540 0xA0..0FF. If the byte length is odd, we exclude |
| 88365 | 2541 CATEGORY_MASK_ISO_8_2. We can check this only |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2542 when we are not single shifting. */ |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2543 if (!single_shifting |
| 88365 | 2544 && mask_iso & CATEGORY_MASK_ISO_8_2) |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2545 { |
|
29299
b33b38d81020
(detect_coding_iso2022): Fix code for checking
Kenichi Handa <handa@m17n.org>
parents:
29275
diff
changeset
|
2546 int i = 1; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2547 while (src < src_end) |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2548 { |
| 88365 | 2549 ONE_MORE_BYTE (c); |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2550 if (c < 0xA0) |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2551 break; |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2552 i++; |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2553 } |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2554 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2555 if (i & 1 && src < src_end) |
| 88365 | 2556 mask_iso &= ~CATEGORY_MASK_ISO_8_2; |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2557 else |
| 88365 | 2558 mask_found |= CATEGORY_MASK_ISO_8_2; |
|
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
2559 } |
| 17052 | 2560 } |
| 2561 break; | |
| 2562 } | |
| 2563 } | |
| 88365 | 2564 no_more_source: |
| 2565 if (!mask_iso) | |
| 2566 { | |
| 2567 *mask &= ~CATEGORY_MASK_ISO; | |
| 2568 return 0; | |
| 2569 } | |
| 2570 if (!mask_found) | |
| 2571 return 0; | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
2572 *mask &= ~CATEGORY_MASK_ISO; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
2573 *mask |= mask_iso & mask_found; |
| 88365 | 2574 if (! mask_8bit_found) |
| 2575 *mask &= ~(CATEGORY_MASK_ISO_8BIT | CATEGORY_MASK_ISO_8_ELSE); | |
| 2576 return 1; | |
| 17052 | 2577 } |
| 2578 | |
| 2579 | |
| 2580 /* Set designation state into CODING. */ | |
| 88365 | 2581 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \ |
| 2582 do { \ | |
| 2583 int id, prev; \ | |
| 2584 \ | |
| 2585 if (final < '0' || final >= 128 \ | |
| 2586 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \ | |
| 2587 || !SAFE_CHARSET_P (coding, id)) \ | |
| 2588 { \ | |
| 2589 CODING_ISO_DESIGNATION (coding, reg) = -2; \ | |
| 2590 goto invalid_code; \ | |
| 2591 } \ | |
| 2592 prev = CODING_ISO_DESIGNATION (coding, reg); \ | |
|
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2593 if (id == charset_jisx0201_roman) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2594 { \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2595 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2596 id = charset_ascii; \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2597 } \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2598 else if (id == charset_jisx0208_1978) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2599 { \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2600 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2601 id = charset_jisx0208; \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
2602 } \ |
| 88365 | 2603 CODING_ISO_DESIGNATION (coding, reg) = id; \ |
| 2604 /* If there was an invalid designation to REG previously, and this \ | |
| 2605 designation is ASCII to REG, we should keep this designation \ | |
| 2606 sequence. */ \ | |
| 2607 if (prev == -2 && id == charset_ascii) \ | |
| 2608 goto invalid_code; \ | |
| 17052 | 2609 } while (0) |
| 2610 | |
| 88365 | 2611 |
| 2612 #define MAYBE_FINISH_COMPOSITION() \ | |
| 2613 do { \ | |
| 2614 int i; \ | |
| 2615 if (composition_state == COMPOSING_NO) \ | |
| 2616 break; \ | |
| 2617 /* It is assured that we have enough room for producing \ | |
| 2618 characters stored in the table `components'. */ \ | |
| 2619 if (charbuf + component_idx > charbuf_end) \ | |
| 2620 goto no_more_source; \ | |
| 2621 composition_state = COMPOSING_NO; \ | |
| 2622 if (method == COMPOSITION_RELATIVE \ | |
| 2623 || method == COMPOSITION_WITH_ALTCHARS) \ | |
| 2624 { \ | |
| 2625 for (i = 0; i < component_idx; i++) \ | |
| 2626 *charbuf++ = components[i]; \ | |
| 2627 char_offset += component_idx; \ | |
| 2628 } \ | |
| 2629 else \ | |
| 2630 { \ | |
| 2631 for (i = 0; i < component_idx; i += 2) \ | |
| 2632 *charbuf++ = components[i]; \ | |
| 2633 char_offset += (component_idx / 2) + 1; \ | |
| 2634 } \ | |
| 2635 } while (0) | |
| 2636 | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2637 |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2638 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4. |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2639 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1 |
|
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2640 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1 |
| 88365 | 2641 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1 |
| 2642 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1 | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2643 */ |
| 26847 | 2644 |
| 88365 | 2645 #define DECODE_COMPOSITION_START(c1) \ |
| 26847 | 2646 do { \ |
| 88365 | 2647 if (c1 == '0' \ |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2648 && composition_state == COMPOSING_COMPONENT_RULE) \ |
| 26847 | 2649 { \ |
| 88365 | 2650 component_len = component_idx; \ |
| 2651 composition_state = COMPOSING_CHAR; \ | |
| 26847 | 2652 } \ |
| 2653 else \ | |
| 2654 { \ | |
| 88365 | 2655 unsigned char *p; \ |
| 2656 \ | |
| 2657 MAYBE_FINISH_COMPOSITION (); \ | |
| 2658 if (charbuf + MAX_COMPOSITION_COMPONENTS > charbuf_end) \ | |
| 2659 goto no_more_source; \ | |
| 2660 for (p = src; p < src_end - 1; p++) \ | |
| 2661 if (*p == ISO_CODE_ESC && p[1] == '1') \ | |
| 2662 break; \ | |
| 2663 if (p == src_end - 1) \ | |
| 2664 { \ | |
| 2665 if (coding->mode & CODING_MODE_LAST_BLOCK) \ | |
| 2666 goto invalid_code; \ | |
| 2667 goto no_more_source; \ | |
| 2668 } \ | |
| 2669 \ | |
| 2670 /* This is surely the start of a composition. */ \ | |
| 2671 method = (c1 == '0' ? COMPOSITION_RELATIVE \ | |
| 2672 : c1 == '2' ? COMPOSITION_WITH_RULE \ | |
| 2673 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \ | |
| 2674 : COMPOSITION_WITH_RULE_ALTCHARS); \ | |
| 2675 composition_state = (c1 <= '2' ? COMPOSING_CHAR \ | |
| 2676 : COMPOSING_COMPONENT_CHAR); \ | |
| 2677 component_idx = component_len = 0; \ | |
| 26847 | 2678 } \ |
| 2679 } while (0) | |
| 2680 | |
| 88365 | 2681 |
| 2682 /* Handle compositoin end sequence ESC 1. */ | |
| 2683 | |
| 2684 #define DECODE_COMPOSITION_END() \ | |
| 2685 do { \ | |
| 2686 int nchars = (component_len > 0 ? component_idx - component_len \ | |
| 2687 : method == COMPOSITION_RELATIVE ? component_idx \ | |
| 2688 : (component_idx + 1) / 2); \ | |
| 2689 int i; \ | |
| 2690 int *saved_charbuf = charbuf; \ | |
| 2691 \ | |
| 2692 ADD_COMPOSITION_DATA (charbuf, method, nchars); \ | |
| 2693 if (method != COMPOSITION_RELATIVE) \ | |
| 2694 { \ | |
| 2695 if (component_len == 0) \ | |
| 2696 for (i = 0; i < component_idx; i++) \ | |
| 2697 *charbuf++ = components[i]; \ | |
| 2698 else \ | |
| 2699 for (i = 0; i < component_len; i++) \ | |
| 2700 *charbuf++ = components[i]; \ | |
| 2701 *saved_charbuf = saved_charbuf - charbuf; \ | |
| 2702 } \ | |
| 2703 if (method == COMPOSITION_WITH_RULE) \ | |
| 2704 for (i = 0; i < component_idx; i += 2, char_offset++) \ | |
| 2705 *charbuf++ = components[i]; \ | |
| 2706 else \ | |
| 2707 for (i = component_len; i < component_idx; i++, char_offset++) \ | |
| 2708 *charbuf++ = components[i]; \ | |
| 2709 coding->annotated = 1; \ | |
| 2710 composition_state = COMPOSING_NO; \ | |
| 2711 } while (0) | |
| 2712 | |
| 2713 | |
| 26847 | 2714 /* Decode a composition rule from the byte C1 (and maybe one more byte |
| 2715 from SRC) and store one encoded composition rule in | |
| 2716 coding->cmp_data. */ | |
| 2717 | |
| 2718 #define DECODE_COMPOSITION_RULE(c1) \ | |
| 2719 do { \ | |
| 2720 (c1) -= 32; \ | |
| 2721 if (c1 < 81) /* old format (before ver.21) */ \ | |
| 2722 { \ | |
| 2723 int gref = (c1) / 9; \ | |
| 2724 int nref = (c1) % 9; \ | |
| 2725 if (gref == 4) gref = 10; \ | |
| 2726 if (nref == 4) nref = 10; \ | |
| 88365 | 2727 c1 = COMPOSITION_ENCODE_RULE (gref, nref); \ |
| 26847 | 2728 } \ |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2729 else if (c1 < 93) /* new format (after ver.21) */ \ |
| 26847 | 2730 { \ |
| 2731 ONE_MORE_BYTE (c2); \ | |
| 88365 | 2732 c1 = COMPOSITION_ENCODE_RULE (c1 - 81, c2 - 32); \ |
| 26847 | 2733 } \ |
| 88365 | 2734 else \ |
| 2735 c1 = 0; \ | |
| 26847 | 2736 } while (0) |
| 2737 | |
| 2738 | |
| 17052 | 2739 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
| 2740 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2741 static void |
| 88365 | 2742 decode_coding_iso_2022 (coding) |
| 17052 | 2743 struct coding_system *coding; |
| 2744 { | |
| 88365 | 2745 unsigned char *src = coding->source + coding->consumed; |
| 2746 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 2747 unsigned char *src_base; | |
| 2748 int *charbuf = coding->charbuf; | |
| 2749 int *charbuf_end = charbuf + coding->charbuf_size - 4; | |
| 2750 int consumed_chars = 0, consumed_chars_base; | |
| 2751 int char_offset = 0; | |
| 2752 int multibytep = coding->src_multibyte; | |
| 17052 | 2753 /* Charsets invoked to graphic plane 0 and 1 respectively. */ |
| 88365 | 2754 int charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
| 2755 int charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
| 2756 struct charset *charset; | |
| 2757 int c; | |
| 2758 /* For handling composition sequence. */ | |
| 2759 #define COMPOSING_NO 0 | |
| 2760 #define COMPOSING_CHAR 1 | |
| 2761 #define COMPOSING_RULE 2 | |
| 2762 #define COMPOSING_COMPONENT_CHAR 3 | |
| 2763 #define COMPOSING_COMPONENT_RULE 4 | |
| 2764 | |
| 2765 int composition_state = COMPOSING_NO; | |
| 2766 enum composition_method method; | |
| 2767 int components[MAX_COMPOSITION_COMPONENTS * 2 + 1]; | |
| 2768 int component_idx; | |
| 2769 int component_len; | |
| 2770 Lisp_Object attrs, eol_type, charset_list; | |
| 2771 | |
| 2772 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 2773 setup_iso_safe_charsets (attrs); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2774 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2775 while (1) |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2776 { |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2777 int c1, c2; |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2778 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2779 src_base = src; |
| 88365 | 2780 consumed_chars_base = consumed_chars; |
| 2781 | |
| 2782 if (charbuf >= charbuf_end) | |
| 2783 break; | |
| 2784 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2785 ONE_MORE_BYTE (c1); |
| 17052 | 2786 |
| 26847 | 2787 /* We produce no character or one character. */ |
| 17052 | 2788 switch (iso_code_class [c1]) |
| 2789 { | |
| 2790 case ISO_0x20_or_0x7F: | |
| 88365 | 2791 if (composition_state != COMPOSING_NO) |
| 26847 | 2792 { |
| 88365 | 2793 if (composition_state == COMPOSING_RULE |
| 2794 || composition_state == COMPOSING_COMPONENT_RULE) | |
| 2795 { | |
| 2796 DECODE_COMPOSITION_RULE (c1); | |
| 2797 components[component_idx++] = c1; | |
| 2798 composition_state--; | |
| 2799 continue; | |
| 2800 } | |
| 26847 | 2801 } |
| 88365 | 2802 if (charset_id_0 < 0 |
| 2803 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0))) | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2804 /* This is SPACE or DEL. */ |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2805 charset = CHARSET_FROM_ID (charset_ascii); |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2806 else |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2807 charset = CHARSET_FROM_ID (charset_id_0); |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2808 break; |
| 17052 | 2809 |
| 2810 case ISO_graphic_plane_0: | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2811 if (composition_state != COMPOSING_NO) |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2812 { |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2813 if (composition_state == COMPOSING_RULE |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2814 || composition_state == COMPOSING_COMPONENT_RULE) |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2815 { |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2816 DECODE_COMPOSITION_RULE (c1); |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2817 components[component_idx++] = c1; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2818 composition_state--; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2819 continue; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2820 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2821 } |
| 88365 | 2822 charset = CHARSET_FROM_ID (charset_id_0); |
| 17052 | 2823 break; |
| 2824 | |
| 2825 case ISO_0xA0_or_0xFF: | |
| 88365 | 2826 if (charset_id_1 < 0 |
| 2827 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1)) | |
| 2828 || CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) | |
| 2829 goto invalid_code; | |
| 17052 | 2830 /* This is a graphic character, we fall down ... */ |
| 2831 | |
| 2832 case ISO_graphic_plane_1: | |
| 88365 | 2833 if (charset_id_1 < 0) |
| 2834 goto invalid_code; | |
| 2835 charset = CHARSET_FROM_ID (charset_id_1); | |
| 17052 | 2836 break; |
| 2837 | |
| 88365 | 2838 case ISO_carriage_return: |
| 2839 if (c1 == '\r') | |
| 2840 { | |
| 2841 if (EQ (eol_type, Qdos)) | |
| 2842 { | |
| 2843 if (src == src_end) | |
| 2844 goto no_more_source; | |
| 2845 if (*src == '\n') | |
| 2846 ONE_MORE_BYTE (c1); | |
| 2847 } | |
| 2848 else if (EQ (eol_type, Qmac)) | |
| 2849 c1 = '\n'; | |
| 2850 } | |
| 2851 /* fall through */ | |
| 2852 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2853 case ISO_control_0: |
| 88365 | 2854 MAYBE_FINISH_COMPOSITION (); |
| 2855 charset = CHARSET_FROM_ID (charset_ascii); | |
| 17052 | 2856 break; |
| 2857 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2858 case ISO_control_1: |
| 88365 | 2859 MAYBE_FINISH_COMPOSITION (); |
| 2860 goto invalid_code; | |
| 17052 | 2861 |
| 2862 case ISO_shift_out: | |
| 88365 | 2863 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
| 2864 || CODING_ISO_DESIGNATION (coding, 1) < 0) | |
| 2865 goto invalid_code; | |
| 2866 CODING_ISO_INVOCATION (coding, 0) = 1; | |
| 2867 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2868 continue; |
| 17052 | 2869 |
| 2870 case ISO_shift_in: | |
| 88365 | 2871 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)) |
| 2872 goto invalid_code; | |
| 2873 CODING_ISO_INVOCATION (coding, 0) = 0; | |
| 2874 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2875 continue; |
| 17052 | 2876 |
| 2877 case ISO_single_shift_2_7: | |
| 2878 case ISO_single_shift_2: | |
| 88365 | 2879 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
| 2880 goto invalid_code; | |
| 17052 | 2881 /* SS2 is handled as an escape sequence of ESC 'N' */ |
| 2882 c1 = 'N'; | |
| 2883 goto label_escape_sequence; | |
| 2884 | |
| 2885 case ISO_single_shift_3: | |
| 88365 | 2886 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
| 2887 goto invalid_code; | |
| 17052 | 2888 /* SS2 is handled as an escape sequence of ESC 'O' */ |
| 2889 c1 = 'O'; | |
| 2890 goto label_escape_sequence; | |
| 2891 | |
| 2892 case ISO_control_sequence_introducer: | |
| 2893 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
| 2894 c1 = '['; | |
| 2895 goto label_escape_sequence; | |
| 2896 | |
| 2897 case ISO_escape: | |
| 2898 ONE_MORE_BYTE (c1); | |
| 2899 label_escape_sequence: | |
| 88365 | 2900 /* Escape sequences handled here are invocation, |
| 17052 | 2901 designation, direction specification, and character |
| 2902 composition specification. */ | |
| 2903 switch (c1) | |
| 2904 { | |
| 2905 case '&': /* revision of following character set */ | |
| 2906 ONE_MORE_BYTE (c1); | |
| 2907 if (!(c1 >= '@' && c1 <= '~')) | |
| 88365 | 2908 goto invalid_code; |
| 17052 | 2909 ONE_MORE_BYTE (c1); |
| 2910 if (c1 != ISO_CODE_ESC) | |
| 88365 | 2911 goto invalid_code; |
| 17052 | 2912 ONE_MORE_BYTE (c1); |
| 2913 goto label_escape_sequence; | |
| 2914 | |
| 2915 case '$': /* designation of 2-byte character set */ | |
| 88365 | 2916 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
| 2917 goto invalid_code; | |
| 17052 | 2918 ONE_MORE_BYTE (c1); |
| 2919 if (c1 >= '@' && c1 <= 'B') | |
| 2920 { /* designation of JISX0208.1978, GB2312.1980, | |
|
23339
2da87b489590
(check_composing_code): Fix previous change. Now it
Kenichi Handa <handa@m17n.org>
parents:
23325
diff
changeset
|
2921 or JISX0208.1980 */ |
| 88365 | 2922 DECODE_DESIGNATION (0, 2, 0, c1); |
| 17052 | 2923 } |
| 2924 else if (c1 >= 0x28 && c1 <= 0x2B) | |
| 2925 { /* designation of DIMENSION2_CHARS94 character set */ | |
| 2926 ONE_MORE_BYTE (c2); | |
| 88365 | 2927 DECODE_DESIGNATION (c1 - 0x28, 2, 0, c2); |
| 17052 | 2928 } |
| 2929 else if (c1 >= 0x2C && c1 <= 0x2F) | |
| 2930 { /* designation of DIMENSION2_CHARS96 character set */ | |
| 2931 ONE_MORE_BYTE (c2); | |
| 88365 | 2932 DECODE_DESIGNATION (c1 - 0x2C, 2, 1, c2); |
| 17052 | 2933 } |
| 2934 else | |
| 88365 | 2935 goto invalid_code; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2936 /* We must update these variables now. */ |
| 88365 | 2937 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
| 2938 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2939 continue; |
| 17052 | 2940 |
| 2941 case 'n': /* invocation of locking-shift-2 */ | |
| 88365 | 2942 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
| 2943 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
| 2944 goto invalid_code; | |
| 2945 CODING_ISO_INVOCATION (coding, 0) = 2; | |
| 2946 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2947 continue; |
| 17052 | 2948 |
| 2949 case 'o': /* invocation of locking-shift-3 */ | |
| 88365 | 2950 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
| 2951 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
| 2952 goto invalid_code; | |
| 2953 CODING_ISO_INVOCATION (coding, 0) = 3; | |
| 2954 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2955 continue; |
| 17052 | 2956 |
| 2957 case 'N': /* invocation of single-shift-2 */ | |
| 88365 | 2958 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
| 2959 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
| 2960 goto invalid_code; | |
| 2961 charset = CHARSET_FROM_ID (CODING_ISO_DESIGNATION (coding, 2)); | |
| 17052 | 2962 ONE_MORE_BYTE (c1); |
|
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
2963 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
| 88365 | 2964 goto invalid_code; |
| 17052 | 2965 break; |
| 2966 | |
| 2967 case 'O': /* invocation of single-shift-3 */ | |
| 88365 | 2968 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
| 2969 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
| 2970 goto invalid_code; | |
| 2971 charset = CHARSET_FROM_ID (CODING_ISO_DESIGNATION (coding, 3)); | |
| 17052 | 2972 ONE_MORE_BYTE (c1); |
|
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
2973 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
| 88365 | 2974 goto invalid_code; |
| 17052 | 2975 break; |
| 2976 | |
| 26847 | 2977 case '0': case '2': case '3': case '4': /* start composition */ |
| 88365 | 2978 if (! (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK)) |
| 2979 goto invalid_code; | |
| 26847 | 2980 DECODE_COMPOSITION_START (c1); |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2981 continue; |
| 17052 | 2982 |
| 26847 | 2983 case '1': /* end composition */ |
| 88365 | 2984 if (composition_state == COMPOSING_NO) |
| 2985 goto invalid_code; | |
| 2986 DECODE_COMPOSITION_END (); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2987 continue; |
| 17052 | 2988 |
| 2989 case '[': /* specification of direction */ | |
| 88365 | 2990 if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION) |
| 2991 goto invalid_code; | |
| 17052 | 2992 /* For the moment, nested direction is not supported. |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2993 So, `coding->mode & CODING_MODE_DIRECTION' zero means |
| 88365 | 2994 left-to-right, and nozero means right-to-left. */ |
| 17052 | 2995 ONE_MORE_BYTE (c1); |
| 2996 switch (c1) | |
| 2997 { | |
| 2998 case ']': /* end of the current direction */ | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2999 coding->mode &= ~CODING_MODE_DIRECTION; |
| 17052 | 3000 |
| 3001 case '0': /* end of the current direction */ | |
| 3002 case '1': /* start of left-to-right direction */ | |
| 3003 ONE_MORE_BYTE (c1); | |
| 3004 if (c1 == ']') | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3005 coding->mode &= ~CODING_MODE_DIRECTION; |
| 17052 | 3006 else |
| 88365 | 3007 goto invalid_code; |
| 17052 | 3008 break; |
| 3009 | |
| 3010 case '2': /* start of right-to-left direction */ | |
| 3011 ONE_MORE_BYTE (c1); | |
| 3012 if (c1 == ']') | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3013 coding->mode |= CODING_MODE_DIRECTION; |
| 17052 | 3014 else |
| 88365 | 3015 goto invalid_code; |
| 17052 | 3016 break; |
| 3017 | |
| 3018 default: | |
| 88365 | 3019 goto invalid_code; |
| 17052 | 3020 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3021 continue; |
| 17052 | 3022 |
| 3023 default: | |
| 88365 | 3024 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
| 3025 goto invalid_code; | |
| 17052 | 3026 if (c1 >= 0x28 && c1 <= 0x2B) |
| 3027 { /* designation of DIMENSION1_CHARS94 character set */ | |
| 3028 ONE_MORE_BYTE (c2); | |
| 88365 | 3029 DECODE_DESIGNATION (c1 - 0x28, 1, 0, c2); |
| 17052 | 3030 } |
| 3031 else if (c1 >= 0x2C && c1 <= 0x2F) | |
| 3032 { /* designation of DIMENSION1_CHARS96 character set */ | |
| 3033 ONE_MORE_BYTE (c2); | |
| 88365 | 3034 DECODE_DESIGNATION (c1 - 0x2C, 1, 1, c2); |
| 17052 | 3035 } |
| 3036 else | |
| 88365 | 3037 goto invalid_code; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3038 /* We must update these variables now. */ |
| 88365 | 3039 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
| 3040 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3041 continue; |
| 17052 | 3042 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3043 } |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3044 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3045 /* Now we know CHARSET and 1st position code C1 of a character. |
| 88365 | 3046 Produce a decoded character while getting 2nd position code |
| 3047 C2 if necessary. */ | |
| 3048 c1 &= 0x7F; | |
| 3049 if (CHARSET_DIMENSION (charset) > 1) | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3050 { |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3051 ONE_MORE_BYTE (c2); |
| 88365 | 3052 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0)) |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3053 /* C2 is not in a valid range. */ |
| 88365 | 3054 goto invalid_code; |
| 3055 c1 = (c1 << 8) | (c2 & 0x7F); | |
| 3056 if (CHARSET_DIMENSION (charset) > 2) | |
| 3057 { | |
| 3058 ONE_MORE_BYTE (c2); | |
| 3059 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0)) | |
| 3060 /* C2 is not in a valid range. */ | |
| 3061 goto invalid_code; | |
| 3062 c1 = (c1 << 8) | (c2 & 0x7F); | |
| 3063 } | |
| 17052 | 3064 } |
| 88365 | 3065 |
| 3066 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); | |
| 3067 if (c < 0) | |
| 3068 { | |
| 3069 MAYBE_FINISH_COMPOSITION (); | |
| 3070 for (; src_base < src; src_base++, char_offset++) | |
| 3071 { | |
| 3072 if (ASCII_BYTE_P (*src_base)) | |
| 3073 *charbuf++ = *src_base; | |
| 3074 else | |
| 3075 *charbuf++ = BYTE8_TO_CHAR (*src_base); | |
| 3076 } | |
| 3077 } | |
| 3078 else if (composition_state == COMPOSING_NO) | |
| 3079 { | |
| 3080 *charbuf++ = c; | |
| 3081 char_offset++; | |
| 3082 } | |
| 3083 else | |
|
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3084 { |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3085 components[component_idx++] = c; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3086 if (method == COMPOSITION_WITH_RULE |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3087 || (method == COMPOSITION_WITH_RULE_ALTCHARS |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3088 && composition_state == COMPOSING_COMPONENT_CHAR)) |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3089 composition_state++; |
|
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3090 } |
| 17052 | 3091 continue; |
| 3092 | |
| 88365 | 3093 invalid_code: |
| 3094 MAYBE_FINISH_COMPOSITION (); | |
| 3095 src = src_base; | |
| 3096 consumed_chars = consumed_chars_base; | |
| 3097 ONE_MORE_BYTE (c); | |
| 3098 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3099 coding->errors++; |
| 88365 | 3100 } |
| 3101 | |
| 3102 no_more_source: | |
| 3103 coding->consumed_char += consumed_chars_base; | |
| 3104 coding->consumed = src_base - coding->source; | |
| 3105 coding->charbuf_used = charbuf - coding->charbuf; | |
| 17052 | 3106 } |
| 3107 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3108 |
| 18766 | 3109 /* ISO2022 encoding stuff. */ |
| 17052 | 3110 |
| 3111 /* | |
| 18766 | 3112 It is not enough to say just "ISO2022" on encoding, we have to |
| 88365 | 3113 specify more details. In Emacs, each coding system of ISO2022 |
| 17052 | 3114 variant has the following specifications: |
| 88365 | 3115 1. Initial designation to G0 thru G3. |
| 17052 | 3116 2. Allows short-form designation? |
| 3117 3. ASCII should be designated to G0 before control characters? | |
| 3118 4. ASCII should be designated to G0 at end of line? | |
| 3119 5. 7-bit environment or 8-bit environment? | |
| 3120 6. Use locking-shift? | |
| 3121 7. Use Single-shift? | |
| 3122 And the following two are only for Japanese: | |
| 3123 8. Use ASCII in place of JIS0201-1976-Roman? | |
| 3124 9. Use JISX0208-1983 in place of JISX0208-1978? | |
| 88365 | 3125 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits |
| 3126 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more | |
| 18766 | 3127 details. |
| 17052 | 3128 */ |
| 3129 | |
| 3130 /* Produce codes (escape sequence) for designating CHARSET to graphic | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3131 register REG at DST, and increment DST. If <final-char> of CHARSET is |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3132 '@', 'A', or 'B' and the coding system CODING allows, produce |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3133 designation sequence of short-form. */ |
| 17052 | 3134 |
| 3135 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
| 3136 do { \ | |
| 88365 | 3137 unsigned char final_char = CHARSET_ISO_FINAL (charset); \ |
| 17052 | 3138 char *intermediate_char_94 = "()*+"; \ |
| 3139 char *intermediate_char_96 = ",-./"; \ | |
| 88365 | 3140 int revision = -1; \ |
| 3141 int c; \ | |
| 3142 \ | |
| 3143 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \ | |
| 88856 | 3144 revision = CHARSET_ISO_REVISION (charset); \ |
| 88365 | 3145 \ |
| 3146 if (revision >= 0) \ | |
|
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
3147 { \ |
| 88365 | 3148 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \ |
| 3149 EMIT_ONE_BYTE ('@' + revision); \ | |
| 17052 | 3150 } \ |
| 88365 | 3151 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \ |
| 17052 | 3152 if (CHARSET_DIMENSION (charset) == 1) \ |
| 3153 { \ | |
| 88365 | 3154 if (! CHARSET_ISO_CHARS_96 (charset)) \ |
| 3155 c = intermediate_char_94[reg]; \ | |
| 17052 | 3156 else \ |
| 88365 | 3157 c = intermediate_char_96[reg]; \ |
| 3158 EMIT_ONE_ASCII_BYTE (c); \ | |
| 17052 | 3159 } \ |
| 3160 else \ | |
| 3161 { \ | |
| 88365 | 3162 EMIT_ONE_ASCII_BYTE ('$'); \ |
| 3163 if (! CHARSET_ISO_CHARS_96 (charset)) \ | |
| 17052 | 3164 { \ |
| 88365 | 3165 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \ |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3166 || reg != 0 \ |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3167 || final_char < '@' || final_char > 'B') \ |
| 88365 | 3168 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \ |
| 17052 | 3169 } \ |
| 3170 else \ | |
| 88365 | 3171 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \ |
| 17052 | 3172 } \ |
| 88365 | 3173 EMIT_ONE_ASCII_BYTE (final_char); \ |
| 3174 \ | |
| 3175 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \ | |
| 17052 | 3176 } while (0) |
| 3177 | |
| 88365 | 3178 |
| 17052 | 3179 /* The following two macros produce codes (control character or escape |
| 3180 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
| 3181 single-shift-3). */ | |
| 3182 | |
| 88365 | 3183 #define ENCODE_SINGLE_SHIFT_2 \ |
| 3184 do { \ | |
| 3185 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
| 3186 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \ | |
| 3187 else \ | |
| 3188 EMIT_ONE_BYTE (ISO_CODE_SS2); \ | |
| 3189 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
| 17052 | 3190 } while (0) |
| 3191 | |
| 88365 | 3192 |
| 3193 #define ENCODE_SINGLE_SHIFT_3 \ | |
| 3194 do { \ | |
| 3195 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
| 3196 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \ | |
| 3197 else \ | |
| 3198 EMIT_ONE_BYTE (ISO_CODE_SS3); \ | |
| 3199 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
| 17052 | 3200 } while (0) |
| 3201 | |
| 88365 | 3202 |
| 17052 | 3203 /* The following four macros produce codes (control character or |
| 3204 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
| 3205 shift-out, locking-shift-2, and locking-shift-3). */ | |
| 3206 | |
| 88365 | 3207 #define ENCODE_SHIFT_IN \ |
| 3208 do { \ | |
| 3209 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \ | |
| 3210 CODING_ISO_INVOCATION (coding, 0) = 0; \ | |
| 17052 | 3211 } while (0) |
| 3212 | |
| 88365 | 3213 |
| 3214 #define ENCODE_SHIFT_OUT \ | |
| 3215 do { \ | |
| 3216 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \ | |
| 3217 CODING_ISO_INVOCATION (coding, 0) = 1; \ | |
| 17052 | 3218 } while (0) |
| 3219 | |
| 88365 | 3220 |
| 3221 #define ENCODE_LOCKING_SHIFT_2 \ | |
| 3222 do { \ | |
| 3223 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
| 3224 CODING_ISO_INVOCATION (coding, 0) = 2; \ | |
| 17052 | 3225 } while (0) |
| 3226 | |
| 88365 | 3227 |
| 3228 #define ENCODE_LOCKING_SHIFT_3 \ | |
| 3229 do { \ | |
| 3230 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
| 3231 CODING_ISO_INVOCATION (coding, 0) = 3; \ | |
| 17052 | 3232 } while (0) |
| 3233 | |
| 88365 | 3234 |
| 18766 | 3235 /* Produce codes for a DIMENSION1 character whose character set is |
| 3236 CHARSET and whose position-code is C1. Designation and invocation | |
| 17052 | 3237 sequences are also produced in advance if necessary. */ |
| 3238 | |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3239 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3240 do { \ |
| 88365 | 3241 int id = CHARSET_ID (charset); \ |
|
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3242 \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3243 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3244 && id == charset_ascii) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3245 { \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3246 id = charset_jisx0201_roman; \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3247 charset = CHARSET_FROM_ID (id); \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3248 } \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3249 \ |
| 88365 | 3250 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3251 { \ |
| 88365 | 3252 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ |
| 3253 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ | |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3254 else \ |
| 88365 | 3255 EMIT_ONE_BYTE (c1 | 0x80); \ |
| 3256 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3257 break; \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3258 } \ |
| 88365 | 3259 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3260 { \ |
| 88365 | 3261 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3262 break; \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3263 } \ |
| 88365 | 3264 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3265 { \ |
| 88365 | 3266 EMIT_ONE_BYTE (c1 | 0x80); \ |
|
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3267 break; \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3268 } \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3269 else \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3270 /* Since CHARSET is not yet invoked to any graphic planes, we \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3271 must invoke it, or, at first, designate it to some graphic \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3272 register. Then repeat the loop to actually produce the \ |
|
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3273 character. */ \ |
| 88365 | 3274 dst = encode_invocation_designation (charset, coding, dst, \ |
| 3275 &produced_chars); \ | |
| 17052 | 3276 } while (1) |
| 3277 | |
| 88365 | 3278 |
| 3279 /* Produce codes for a DIMENSION2 character whose character set is | |
| 3280 CHARSET and whose position-codes are C1 and C2. Designation and | |
| 3281 invocation codes are also produced in advance if necessary. */ | |
| 3282 | |
| 3283 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \ | |
|
24506
219c99669e4b
(ENCODE_ISO_CHARACTER): Check validity of CHARSET. If
Kenichi Handa <handa@m17n.org>
parents:
24460
diff
changeset
|
3284 do { \ |
| 88365 | 3285 int id = CHARSET_ID (charset); \ |
|
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3286 \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3287 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3288 && id == charset_jisx0208) \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3289 { \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3290 id = charset_jisx0208_1978; \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3291 charset = CHARSET_FROM_ID (id); \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3292 } \ |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3293 \ |
| 88365 | 3294 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
| 3295 { \ | |
| 3296 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
| 3297 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
| 3298 else \ | |
| 3299 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
| 3300 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
| 3301 break; \ | |
| 3302 } \ | |
| 3303 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ | |
| 3304 { \ | |
| 3305 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
| 3306 break; \ | |
| 3307 } \ | |
| 3308 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ | |
| 3309 { \ | |
| 3310 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
| 3311 break; \ | |
| 3312 } \ | |
| 3313 else \ | |
| 3314 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
| 3315 must invoke it, or, at first, designate it to some graphic \ | |
| 3316 register. Then repeat the loop to actually produce the \ | |
| 3317 character. */ \ | |
| 3318 dst = encode_invocation_designation (charset, coding, dst, \ | |
| 3319 &produced_chars); \ | |
| 3320 } while (1) | |
| 3321 | |
| 3322 | |
| 3323 #define ENCODE_ISO_CHARACTER(charset, c) \ | |
| 3324 do { \ | |
| 3325 int code = ENCODE_CHAR ((charset),(c)); \ | |
| 3326 \ | |
| 3327 if (CHARSET_DIMENSION (charset) == 1) \ | |
| 3328 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \ | |
| 3329 else \ | |
| 3330 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \ | |
|
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
3331 } while (0) |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3332 |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
3333 |
| 17052 | 3334 /* Produce designation and invocation codes at a place pointed by DST |
| 88365 | 3335 to use CHARSET. The element `spec.iso_2022' of *CODING is updated. |
| 17052 | 3336 Return new DST. */ |
| 3337 | |
| 3338 unsigned char * | |
| 88365 | 3339 encode_invocation_designation (charset, coding, dst, p_nchars) |
| 3340 struct charset *charset; | |
| 17052 | 3341 struct coding_system *coding; |
| 3342 unsigned char *dst; | |
| 88365 | 3343 int *p_nchars; |
| 17052 | 3344 { |
| 88365 | 3345 int multibytep = coding->dst_multibyte; |
| 3346 int produced_chars = *p_nchars; | |
| 17052 | 3347 int reg; /* graphic register number */ |
| 88365 | 3348 int id = CHARSET_ID (charset); |
| 17052 | 3349 |
| 3350 /* At first, check designations. */ | |
| 3351 for (reg = 0; reg < 4; reg++) | |
| 88365 | 3352 if (id == CODING_ISO_DESIGNATION (coding, reg)) |
| 17052 | 3353 break; |
| 3354 | |
| 3355 if (reg >= 4) | |
| 3356 { | |
| 3357 /* CHARSET is not yet designated to any graphic registers. */ | |
| 3358 /* At first check the requested designation. */ | |
| 88365 | 3359 reg = CODING_ISO_REQUEST (coding, id); |
| 3360 if (reg < 0) | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3361 /* Since CHARSET requests no special designation, designate it |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3362 to graphic register 0. */ |
| 17052 | 3363 reg = 0; |
| 3364 | |
| 3365 ENCODE_DESIGNATION (charset, reg, coding); | |
| 3366 } | |
| 3367 | |
| 88365 | 3368 if (CODING_ISO_INVOCATION (coding, 0) != reg |
| 3369 && CODING_ISO_INVOCATION (coding, 1) != reg) | |
| 17052 | 3370 { |
| 3371 /* Since the graphic register REG is not invoked to any graphic | |
| 3372 planes, invoke it to graphic plane 0. */ | |
| 3373 switch (reg) | |
| 3374 { | |
| 3375 case 0: /* graphic register 0 */ | |
| 3376 ENCODE_SHIFT_IN; | |
| 3377 break; | |
| 3378 | |
| 3379 case 1: /* graphic register 1 */ | |
| 3380 ENCODE_SHIFT_OUT; | |
| 3381 break; | |
| 3382 | |
| 3383 case 2: /* graphic register 2 */ | |
| 88365 | 3384 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
| 17052 | 3385 ENCODE_SINGLE_SHIFT_2; |
| 3386 else | |
| 3387 ENCODE_LOCKING_SHIFT_2; | |
| 3388 break; | |
| 3389 | |
| 3390 case 3: /* graphic register 3 */ | |
| 88365 | 3391 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
| 17052 | 3392 ENCODE_SINGLE_SHIFT_3; |
| 3393 else | |
| 3394 ENCODE_LOCKING_SHIFT_3; | |
| 3395 break; | |
| 3396 } | |
| 3397 } | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3398 |
| 88365 | 3399 *p_nchars = produced_chars; |
| 17052 | 3400 return dst; |
| 3401 } | |
| 3402 | |
| 3403 /* The following three macros produce codes for indicating direction | |
| 3404 of text. */ | |
| 88365 | 3405 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ |
| 3406 do { \ | |
| 3407 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \ | |
| 3408 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \ | |
| 3409 else \ | |
| 3410 EMIT_ONE_BYTE (ISO_CODE_CSI); \ | |
| 17052 | 3411 } while (0) |
| 3412 | |
| 88365 | 3413 |
| 3414 #define ENCODE_DIRECTION_R2L() \ | |
| 3415 do { \ | |
| 3416 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
| 3417 EMIT_TWO_ASCII_BYTES ('2', ']'); \ | |
| 3418 } while (0) | |
| 3419 | |
| 3420 | |
| 3421 #define ENCODE_DIRECTION_L2R() \ | |
| 3422 do { \ | |
| 3423 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
| 3424 EMIT_TWO_ASCII_BYTES ('0', ']'); \ | |
| 3425 } while (0) | |
| 3426 | |
| 17052 | 3427 |
| 3428 /* Produce codes for designation and invocation to reset the graphic | |
| 3429 planes and registers to initial state. */ | |
| 88365 | 3430 #define ENCODE_RESET_PLANE_AND_REGISTER() \ |
| 3431 do { \ | |
| 3432 int reg; \ | |
| 3433 struct charset *charset; \ | |
| 3434 \ | |
| 3435 if (CODING_ISO_INVOCATION (coding, 0) != 0) \ | |
| 3436 ENCODE_SHIFT_IN; \ | |
| 3437 for (reg = 0; reg < 4; reg++) \ | |
| 3438 if (CODING_ISO_INITIAL (coding, reg) >= 0 \ | |
| 3439 && (CODING_ISO_DESIGNATION (coding, reg) \ | |
| 3440 != CODING_ISO_INITIAL (coding, reg))) \ | |
| 3441 { \ | |
| 3442 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \ | |
| 3443 ENCODE_DESIGNATION (charset, reg, coding); \ | |
| 3444 } \ | |
| 17052 | 3445 } while (0) |
| 3446 | |
| 88365 | 3447 |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3448 /* Produce designation sequences of charsets in the line started from |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3449 SRC to a place pointed by DST, and return updated DST. |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3450 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3451 If the current block ends before any end-of-line, we may fail to |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3452 find all the necessary designations. */ |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3453 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3454 static unsigned char * |
| 88365 | 3455 encode_designation_at_bol (coding, charbuf, charbuf_end, dst) |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3456 struct coding_system *coding; |
| 88365 | 3457 int *charbuf, *charbuf_end; |
| 3458 unsigned char *dst; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3459 { |
| 88365 | 3460 struct charset *charset; |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3461 /* Table of charsets to be designated to each graphic register. */ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3462 int r[4]; |
| 88365 | 3463 int c, found = 0, reg; |
| 3464 int produced_chars = 0; | |
| 3465 int multibytep = coding->dst_multibyte; | |
| 3466 Lisp_Object attrs; | |
| 3467 Lisp_Object charset_list; | |
| 3468 | |
| 3469 attrs = CODING_ID_ATTRS (coding->id); | |
| 3470 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
| 3471 if (EQ (charset_list, Qiso_2022)) | |
| 3472 charset_list = Viso_2022_charset_list; | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3473 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3474 for (reg = 0; reg < 4; reg++) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3475 r[reg] = -1; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3476 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3477 while (found < 4) |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3478 { |
| 88365 | 3479 int id; |
| 3480 | |
| 3481 c = *charbuf++; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3482 if (c == '\n') |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3483 break; |
| 88365 | 3484 charset = char_charset (c, charset_list, NULL); |
| 3485 id = CHARSET_ID (charset); | |
| 3486 reg = CODING_ISO_REQUEST (coding, id); | |
| 3487 if (reg >= 0 && r[reg] < 0) | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3488 { |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3489 found++; |
| 88365 | 3490 r[reg] = id; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3491 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3492 } |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3493 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3494 if (found) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3495 { |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3496 for (reg = 0; reg < 4; reg++) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3497 if (r[reg] >= 0 |
| 88365 | 3498 && CODING_ISO_DESIGNATION (coding, reg) != r[reg]) |
| 3499 ENCODE_DESIGNATION (CHARSET_FROM_ID (r[reg]), reg, coding); | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3500 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3501 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3502 return dst; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3503 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3504 |
| 17052 | 3505 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
| 3506 | |
| 88365 | 3507 static int |
| 3508 encode_coding_iso_2022 (coding) | |
| 17052 | 3509 struct coding_system *coding; |
| 3510 { | |
| 88365 | 3511 int multibytep = coding->dst_multibyte; |
| 3512 int *charbuf = coding->charbuf; | |
| 3513 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 3514 unsigned char *dst = coding->destination + coding->produced; | |
| 3515 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 3516 int safe_room = 16; | |
| 3517 int bol_designation | |
| 3518 = (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL | |
| 3519 && CODING_ISO_BOL (coding)); | |
| 3520 int produced_chars = 0; | |
| 3521 Lisp_Object attrs, eol_type, charset_list; | |
| 3522 int ascii_compatible; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3523 int c; |
| 88365 | 3524 |
| 3525 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
|
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
3526 setup_iso_safe_charsets (attrs); |
|
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
3527 coding->safe_charsets |
|
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
3528 = (char *) XSTRING (CODING_ATTR_SAFE_CHARSETS(attrs))->data; |
| 88365 | 3529 |
| 3530 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
| 3531 | |
| 3532 while (charbuf < charbuf_end) | |
| 3533 { | |
| 3534 ASSURE_DESTINATION (safe_room); | |
| 3535 | |
| 3536 if (bol_designation) | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3537 { |
| 88365 | 3538 unsigned char *dst_prev = dst; |
| 3539 | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3540 /* We have to produce designation sequences if any now. */ |
| 88365 | 3541 dst = encode_designation_at_bol (coding, charbuf, charbuf_end, dst); |
| 3542 bol_designation = 0; | |
| 3543 /* We are sure that designation sequences are all ASCII bytes. */ | |
| 3544 produced_chars += dst - dst_prev; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3545 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3546 |
| 88365 | 3547 c = *charbuf++; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3548 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3549 /* Now encode the character C. */ |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3550 if (c < 0x20 || c == 0x7F) |
| 17052 | 3551 { |
| 88365 | 3552 if (c == '\n' |
| 3553 || (c == '\r' && EQ (eol_type, Qmac))) | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3554 { |
| 88365 | 3555 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) |
| 3556 ENCODE_RESET_PLANE_AND_REGISTER (); | |
| 3557 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_INIT_AT_BOL) | |
| 3558 { | |
| 3559 int i; | |
| 3560 | |
| 3561 for (i = 0; i < 4; i++) | |
| 3562 CODING_ISO_DESIGNATION (coding, i) | |
| 3563 = CODING_ISO_INITIAL (coding, i); | |
| 3564 } | |
| 3565 bol_designation | |
| 3566 = CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL; | |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
3567 } |
| 88365 | 3568 else if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_CNTL) |
| 3569 ENCODE_RESET_PLANE_AND_REGISTER (); | |
| 3570 EMIT_ONE_ASCII_BYTE (c); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3571 } |
| 88365 | 3572 else if (ASCII_CHAR_P (c)) |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3573 { |
| 88365 | 3574 if (ascii_compatible) |
| 3575 EMIT_ONE_ASCII_BYTE (c); | |
| 3576 else | |
|
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3577 { |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3578 struct charset *charset = CHARSET_FROM_ID (charset_ascii); |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3579 ENCODE_ISO_CHARACTER (charset, c); |
|
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3580 } |
| 17052 | 3581 } |
|
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3582 else if (CHAR_BYTE8_P (c)) |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3583 { |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3584 c = CHAR_TO_BYTE8 (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3585 EMIT_ONE_BYTE (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3586 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3587 else |
| 88365 | 3588 { |
| 3589 struct charset *charset = char_charset (c, charset_list, NULL); | |
| 3590 | |
| 3591 if (!charset) | |
| 3592 { | |
|
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3593 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3594 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3595 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3596 charset = CHARSET_FROM_ID (charset_ascii); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3597 } |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3598 else |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3599 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3600 c = coding->default_char; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3601 charset = char_charset (c, charset_list, NULL); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3602 } |
| 88365 | 3603 } |
| 3604 ENCODE_ISO_CHARACTER (charset, c); | |
| 3605 } | |
| 3606 } | |
| 3607 | |
| 3608 if (coding->mode & CODING_MODE_LAST_BLOCK | |
| 3609 && CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) | |
| 3610 { | |
| 3611 ASSURE_DESTINATION (safe_room); | |
| 3612 ENCODE_RESET_PLANE_AND_REGISTER (); | |
| 3613 } | |
| 3614 coding->result = CODING_RESULT_SUCCESS; | |
| 3615 CODING_ISO_BOL (coding) = bol_designation; | |
| 3616 coding->produced_char += produced_chars; | |
| 3617 coding->produced = dst - coding->destination; | |
| 3618 return 0; | |
| 17052 | 3619 } |
| 3620 | |
| 3621 | |
| 88365 | 3622 /*** 8,9. SJIS and BIG5 handlers ***/ |
| 3623 | |
| 3624 /* Although SJIS and BIG5 are not ISO's coding system, they are used | |
| 17052 | 3625 quite widely. So, for the moment, Emacs supports them in the bare |
| 3626 C code. But, in the future, they may be supported only by CCL. */ | |
| 3627 | |
| 3628 /* SJIS is a coding system encoding three character sets: ASCII, right | |
| 3629 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
| 3630 as is. A character of charset katakana-jisx0201 is encoded by | |
| 3631 "position-code + 0x80". A character of charset japanese-jisx0208 | |
| 3632 is encoded in 2-byte but two position-codes are divided and shifted | |
| 88365 | 3633 so that it fit in the range below. |
| 17052 | 3634 |
| 3635 --- CODE RANGE of SJIS --- | |
| 3636 (character set) (range) | |
| 3637 ASCII 0x00 .. 0x7F | |
| 88365 | 3638 KATAKANA-JISX0201 0xA0 .. 0xDF |
|
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
3639 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF |
|
23564
6eb3e346d1fd
(DECODE_CHARACTER_ASCII): Check validity of inserted
Kenichi Handa <handa@m17n.org>
parents:
23542
diff
changeset
|
3640 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC |
| 17052 | 3641 ------------------------------- |
| 3642 | |
| 3643 */ | |
| 3644 | |
| 3645 /* BIG5 is a coding system encoding two character sets: ASCII and | |
| 3646 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
| 88365 | 3647 character set and is encoded in two-byte. |
| 17052 | 3648 |
| 3649 --- CODE RANGE of BIG5 --- | |
| 3650 (character set) (range) | |
| 3651 ASCII 0x00 .. 0x7F | |
| 3652 Big5 (1st byte) 0xA1 .. 0xFE | |
| 3653 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
| 3654 -------------------------- | |
| 3655 | |
| 88365 | 3656 */ |
| 17052 | 3657 |
| 3658 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 3659 Check if a text is encoded in SJIS. If it is, return | |
| 88365 | 3660 CATEGORY_MASK_SJIS, else return 0. */ |
| 17052 | 3661 |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3662 static int |
| 88365 | 3663 detect_coding_sjis (coding, mask) |
| 3664 struct coding_system *coding; | |
| 3665 int *mask; | |
| 17052 | 3666 { |
| 88365 | 3667 unsigned char *src = coding->source, *src_base = src; |
| 3668 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 3669 int multibytep = coding->src_multibyte; | |
| 3670 int consumed_chars = 0; | |
| 3671 int found = 0; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3672 int c; |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3673 int incomplete; |
| 88365 | 3674 |
| 3675 /* A coding system of this category is always ASCII compatible. */ | |
| 3676 src += coding->head_ascii; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3677 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3678 while (1) |
| 17052 | 3679 { |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3680 incomplete = 0; |
| 88365 | 3681 ONE_MORE_BYTE (c); |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3682 incomplete = 1; |
|
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3683 if (c < 0x80) |
|
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3684 continue; |
| 88365 | 3685 if ((c >= 0x81 && c <= 0x9F) || (c >= 0xE0 && c <= 0xEF)) |
| 17052 | 3686 { |
| 88365 | 3687 ONE_MORE_BYTE (c); |
|
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
3688 if (c < 0x40 || c == 0x7F || c > 0xFC) |
| 88365 | 3689 break; |
| 3690 found = 1; | |
| 17052 | 3691 } |
| 88365 | 3692 else if (c >= 0xA0 && c < 0xE0) |
| 3693 found = 1; | |
| 3694 else | |
| 3695 break; | |
| 3696 } | |
| 3697 *mask &= ~CATEGORY_MASK_SJIS; | |
| 3698 return 0; | |
| 3699 | |
| 3700 no_more_source: | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3701 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3702 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3703 *mask &= ~CATEGORY_MASK_SJIS; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3704 return 0; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3705 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3706 return found; |
| 17052 | 3707 } |
| 3708 | |
| 3709 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 3710 Check if a text is encoded in BIG5. If it is, return | |
| 88365 | 3711 CATEGORY_MASK_BIG5, else return 0. */ |
| 17052 | 3712 |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3713 static int |
| 88365 | 3714 detect_coding_big5 (coding, mask) |
| 3715 struct coding_system *coding; | |
| 3716 int *mask; | |
| 17052 | 3717 { |
| 88365 | 3718 unsigned char *src = coding->source, *src_base = src; |
| 3719 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 3720 int multibytep = coding->src_multibyte; | |
| 3721 int consumed_chars = 0; | |
| 3722 int found = 0; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3723 int c; |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3724 int incomplete; |
| 88365 | 3725 |
| 3726 /* A coding system of this category is always ASCII compatible. */ | |
| 3727 src += coding->head_ascii; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3728 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3729 while (1) |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3730 { |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3731 incomplete = 0; |
| 88365 | 3732 ONE_MORE_BYTE (c); |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3733 incomplete = 1; |
| 88365 | 3734 if (c < 0x80) |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3735 continue; |
| 88365 | 3736 if (c >= 0xA1) |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3737 { |
| 88365 | 3738 ONE_MORE_BYTE (c); |
| 3739 if (c < 0x40 || (c >= 0x7F && c <= 0xA0)) | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3740 return 0; |
| 88365 | 3741 found = 1; |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3742 } |
| 88365 | 3743 else |
| 3744 break; | |
| 3745 } | |
| 3746 *mask &= ~CATEGORY_MASK_BIG5; | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3747 return 0; |
| 88365 | 3748 |
| 3749 no_more_source: | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3750 if (incomplete && coding->mode & CODING_MODE_LAST_BLOCK) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3751 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3752 *mask &= ~CATEGORY_MASK_BIG5; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3753 return 0; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3754 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3755 return found; |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3756 } |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
3757 |
| 17052 | 3758 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". |
| 3759 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
| 3760 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3761 static void |
| 88365 | 3762 decode_coding_sjis (coding) |
| 17052 | 3763 struct coding_system *coding; |
| 3764 { | |
| 88365 | 3765 unsigned char *src = coding->source + coding->consumed; |
| 3766 unsigned char *src_end = coding->source + coding->src_bytes; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3767 unsigned char *src_base; |
| 88365 | 3768 int *charbuf = coding->charbuf; |
| 3769 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 3770 int consumed_chars = 0, consumed_chars_base; | |
| 3771 int multibytep = coding->src_multibyte; | |
| 3772 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
| 3773 Lisp_Object attrs, eol_type, charset_list, val; | |
| 3774 | |
| 3775 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 3776 | |
| 3777 val = charset_list; | |
| 3778 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3779 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3780 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); |
| 88365 | 3781 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3782 while (1) |
| 17052 | 3783 { |
| 88365 | 3784 int c, c1; |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3785 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3786 src_base = src; |
| 88365 | 3787 consumed_chars_base = consumed_chars; |
| 3788 | |
| 3789 if (charbuf >= charbuf_end) | |
| 3790 break; | |
| 3791 | |
| 3792 ONE_MORE_BYTE (c); | |
| 3793 | |
| 3794 if (c == '\r') | |
| 17052 | 3795 { |
| 88365 | 3796 if (EQ (eol_type, Qdos)) |
| 17052 | 3797 { |
| 88365 | 3798 if (src == src_end) |
| 3799 goto no_more_source; | |
| 3800 if (*src == '\n') | |
| 3801 ONE_MORE_BYTE (c); | |
| 17052 | 3802 } |
| 88365 | 3803 else if (EQ (eol_type, Qmac)) |
| 3804 c = '\n'; | |
| 17052 | 3805 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3806 else |
| 88365 | 3807 { |
| 3808 struct charset *charset; | |
| 3809 | |
| 3810 if (c < 0x80) | |
| 3811 charset = charset_roman; | |
| 3812 else | |
| 17052 | 3813 { |
| 88365 | 3814 if (c >= 0xF0) |
| 3815 goto invalid_code; | |
| 3816 if (c < 0xA0 || c >= 0xE0) | |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3817 { |
|
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
3818 /* SJIS -> JISX0208 */ |
| 88365 | 3819 ONE_MORE_BYTE (c1); |
| 3820 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC) | |
| 3821 goto invalid_code; | |
| 3822 c = (c << 8) | c1; | |
| 3823 SJIS_TO_JIS (c); | |
| 3824 charset = charset_kanji; | |
|
24870
b0f6eab5deeb
(decode_coding_sjis_big5): Avoid compiler warning.
Kenichi Handa <handa@m17n.org>
parents:
24822
diff
changeset
|
3825 } |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3826 else |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3827 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3828 /* SJIS -> JISX0201-Kana */ |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3829 c &= 0x7F; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3830 charset = charset_kana; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
3831 } |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3832 } |
| 88365 | 3833 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
| 3834 } | |
| 3835 *charbuf++ = c; | |
| 3836 continue; | |
| 3837 | |
| 3838 invalid_code: | |
| 3839 src = src_base; | |
| 3840 consumed_chars = consumed_chars_base; | |
| 3841 ONE_MORE_BYTE (c); | |
| 3842 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
| 3843 coding->errors++; | |
| 3844 } | |
| 3845 | |
| 3846 no_more_source: | |
| 3847 coding->consumed_char += consumed_chars_base; | |
| 3848 coding->consumed = src_base - coding->source; | |
| 3849 coding->charbuf_used = charbuf - coding->charbuf; | |
| 3850 } | |
| 3851 | |
| 3852 static void | |
| 3853 decode_coding_big5 (coding) | |
| 3854 struct coding_system *coding; | |
| 3855 { | |
| 3856 unsigned char *src = coding->source + coding->consumed; | |
| 3857 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 3858 unsigned char *src_base; | |
| 3859 int *charbuf = coding->charbuf; | |
| 3860 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 3861 int consumed_chars = 0, consumed_chars_base; | |
| 3862 int multibytep = coding->src_multibyte; | |
| 3863 struct charset *charset_roman, *charset_big5; | |
| 3864 Lisp_Object attrs, eol_type, charset_list, val; | |
| 3865 | |
| 3866 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 3867 val = charset_list; | |
| 3868 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
| 3869 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
| 3870 | |
| 3871 while (1) | |
| 3872 { | |
| 3873 int c, c1; | |
| 3874 | |
| 3875 src_base = src; | |
| 3876 consumed_chars_base = consumed_chars; | |
| 3877 | |
| 3878 if (charbuf >= charbuf_end) | |
| 3879 break; | |
| 3880 | |
| 3881 ONE_MORE_BYTE (c); | |
| 3882 | |
| 3883 if (c == '\r') | |
| 3884 { | |
| 3885 if (EQ (eol_type, Qdos)) | |
| 3886 { | |
| 3887 if (src == src_end) | |
| 3888 goto no_more_source; | |
| 3889 if (*src == '\n') | |
| 3890 ONE_MORE_BYTE (c); | |
| 3891 } | |
| 3892 else if (EQ (eol_type, Qmac)) | |
| 3893 c = '\n'; | |
| 3894 } | |
| 3895 else | |
| 3896 { | |
| 3897 struct charset *charset; | |
| 3898 if (c < 0x80) | |
| 3899 charset = charset_roman; | |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3900 else |
|
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3901 { |
|
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
3902 /* BIG5 -> Big5 */ |
| 88365 | 3903 if (c < 0xA1 || c > 0xFE) |
| 3904 goto invalid_code; | |
| 3905 ONE_MORE_BYTE (c1); | |
| 3906 if (c1 < 0x40 || (c1 > 0x7E && c1 < 0xA1) || c1 > 0xFE) | |
| 3907 goto invalid_code; | |
| 3908 c = c << 8 | c1; | |
| 3909 charset = charset_big5; | |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3910 } |
| 88365 | 3911 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3912 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3913 |
| 88365 | 3914 *charbuf++ = c; |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3915 continue; |
|
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
3916 |
| 88365 | 3917 invalid_code: |
| 17052 | 3918 src = src_base; |
| 88365 | 3919 consumed_chars = consumed_chars_base; |
| 3920 ONE_MORE_BYTE (c); | |
| 3921 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
| 3922 coding->errors++; | |
| 3923 } | |
| 3924 | |
| 3925 no_more_source: | |
| 3926 coding->consumed_char += consumed_chars_base; | |
| 3927 coding->consumed = src_base - coding->source; | |
| 3928 coding->charbuf_used = charbuf - coding->charbuf; | |
| 17052 | 3929 } |
| 3930 | |
| 3931 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3932 This function can encode charsets `ascii', `katakana-jisx0201', |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3933 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3934 are sure that all these charsets are registered as official charset |
| 17052 | 3935 (i.e. do not have extended leading-codes). Characters of other |
| 3936 charsets are produced without any encoding. If SJIS_P is 1, encode | |
| 3937 SJIS text, else encode BIG5 text. */ | |
| 3938 | |
| 88365 | 3939 static int |
| 3940 encode_coding_sjis (coding) | |
| 17052 | 3941 struct coding_system *coding; |
| 3942 { | |
| 88365 | 3943 int multibytep = coding->dst_multibyte; |
| 3944 int *charbuf = coding->charbuf; | |
| 3945 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 3946 unsigned char *dst = coding->destination + coding->produced; | |
| 3947 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 3948 int safe_room = 4; | |
| 3949 int produced_chars = 0; | |
| 3950 Lisp_Object attrs, eol_type, charset_list, val; | |
| 3951 int ascii_compatible; | |
| 3952 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
| 3953 int c; | |
| 3954 | |
| 3955 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 3956 val = charset_list; | |
| 3957 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
| 3958 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
| 3959 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); | |
| 3960 | |
| 3961 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
| 3962 | |
| 3963 while (charbuf < charbuf_end) | |
| 3964 { | |
| 3965 ASSURE_DESTINATION (safe_room); | |
| 3966 c = *charbuf++; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3967 /* Now encode the character C. */ |
| 88365 | 3968 if (ASCII_CHAR_P (c) && ascii_compatible) |
| 3969 EMIT_ONE_ASCII_BYTE (c); | |
|
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3970 else if (CHAR_BYTE8_P (c)) |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3971 { |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3972 c = CHAR_TO_BYTE8 (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3973 EMIT_ONE_BYTE (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
3974 } |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3975 else |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3976 { |
| 88365 | 3977 unsigned code; |
| 3978 struct charset *charset = char_charset (c, charset_list, &code); | |
| 3979 | |
| 3980 if (!charset) | |
| 3981 { | |
|
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3982 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3983 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3984 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3985 charset = CHARSET_FROM_ID (charset_ascii); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3986 } |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3987 else |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3988 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3989 c = coding->default_char; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3990 charset = char_charset (c, charset_list, &code); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
3991 } |
| 88365 | 3992 } |
| 3993 if (code == CHARSET_INVALID_CODE (charset)) | |
| 3994 abort (); | |
| 3995 if (charset == charset_kanji) | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3996 { |
| 88365 | 3997 int c1, c2; |
| 3998 JIS_TO_SJIS (code); | |
| 3999 c1 = code >> 8, c2 = code & 0xFF; | |
| 4000 EMIT_TWO_BYTES (c1, c2); | |
| 4001 } | |
| 4002 else if (charset == charset_kana) | |
| 4003 EMIT_ONE_BYTE (code | 0x80); | |
| 4004 else | |
| 4005 EMIT_ONE_ASCII_BYTE (code & 0x7F); | |
| 4006 } | |
| 4007 } | |
| 4008 coding->result = CODING_RESULT_SUCCESS; | |
| 4009 coding->produced_char += produced_chars; | |
| 4010 coding->produced = dst - coding->destination; | |
| 4011 return 0; | |
| 4012 } | |
| 4013 | |
| 4014 static int | |
| 4015 encode_coding_big5 (coding) | |
| 4016 struct coding_system *coding; | |
| 4017 { | |
| 4018 int multibytep = coding->dst_multibyte; | |
| 4019 int *charbuf = coding->charbuf; | |
| 4020 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 4021 unsigned char *dst = coding->destination + coding->produced; | |
| 4022 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 4023 int safe_room = 4; | |
| 4024 int produced_chars = 0; | |
| 4025 Lisp_Object attrs, eol_type, charset_list, val; | |
| 4026 int ascii_compatible; | |
| 4027 struct charset *charset_roman, *charset_big5; | |
| 4028 int c; | |
| 4029 | |
| 4030 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 4031 val = charset_list; | |
| 4032 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
| 4033 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
| 4034 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
| 4035 | |
| 4036 while (charbuf < charbuf_end) | |
| 4037 { | |
| 4038 ASSURE_DESTINATION (safe_room); | |
| 4039 c = *charbuf++; | |
| 4040 /* Now encode the character C. */ | |
| 4041 if (ASCII_CHAR_P (c) && ascii_compatible) | |
| 4042 EMIT_ONE_ASCII_BYTE (c); | |
|
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4043 else if (CHAR_BYTE8_P (c)) |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4044 { |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4045 c = CHAR_TO_BYTE8 (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4046 EMIT_ONE_BYTE (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4047 } |
| 88365 | 4048 else |
| 4049 { | |
| 4050 unsigned code; | |
| 4051 struct charset *charset = char_charset (c, charset_list, &code); | |
| 4052 | |
| 4053 if (! charset) | |
| 4054 { | |
|
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4055 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4056 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4057 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4058 charset = CHARSET_FROM_ID (charset_ascii); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4059 } |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4060 else |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4061 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4062 c = coding->default_char; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4063 charset = char_charset (c, charset_list, &code); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4064 } |
| 88365 | 4065 } |
| 4066 if (code == CHARSET_INVALID_CODE (charset)) | |
| 4067 abort (); | |
| 4068 if (charset == charset_big5) | |
| 4069 { | |
| 4070 int c1, c2; | |
| 4071 | |
| 4072 c1 = code >> 8, c2 = code & 0xFF; | |
| 4073 EMIT_TWO_BYTES (c1, c2); | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4074 } |
| 17052 | 4075 else |
| 88365 | 4076 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
| 17052 | 4077 } |
| 88365 | 4078 } |
| 4079 coding->result = CODING_RESULT_SUCCESS; | |
| 4080 coding->produced_char += produced_chars; | |
| 4081 coding->produced = dst - coding->destination; | |
| 4082 return 0; | |
| 17052 | 4083 } |
| 4084 | |
| 4085 | |
| 88365 | 4086 /*** 10. CCL handlers ***/ |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4087 |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4088 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4089 Check if a text is encoded in a coding system of which |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4090 encoder/decoder are written in CCL program. If it is, return |
| 88365 | 4091 CATEGORY_MASK_CCL, else return 0. */ |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4092 |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
4093 static int |
| 88365 | 4094 detect_coding_ccl (coding, mask) |
| 4095 struct coding_system *coding; | |
| 4096 int *mask; | |
| 4097 { | |
| 4098 unsigned char *src = coding->source, *src_base = src; | |
| 4099 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 4100 int multibytep = coding->src_multibyte; | |
| 4101 int consumed_chars = 0; | |
| 4102 int found = 0; | |
| 4103 unsigned char *valids = CODING_CCL_VALIDS (coding); | |
| 4104 int head_ascii = coding->head_ascii; | |
| 4105 Lisp_Object attrs; | |
| 4106 | |
| 4107 coding = &coding_categories[coding_category_ccl]; | |
| 4108 attrs = CODING_ID_ATTRS (coding->id); | |
| 4109 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
| 4110 src += head_ascii; | |
| 4111 | |
| 4112 while (1) | |
| 4113 { | |
| 4114 int c; | |
| 4115 ONE_MORE_BYTE (c); | |
| 4116 if (! valids[c]) | |
| 4117 break; | |
| 4118 if (!found && valids[c] > 1) | |
| 4119 found = 1; | |
| 4120 } | |
| 4121 *mask &= ~CATEGORY_MASK_CCL; | |
| 4122 return 0; | |
| 4123 | |
| 4124 no_more_source: | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4125 return found; |
| 88365 | 4126 } |
| 4127 | |
| 4128 static void | |
| 4129 decode_coding_ccl (coding) | |
| 4130 struct coding_system *coding; | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4131 { |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
4132 const unsigned char *src = coding->source + coding->consumed; |
| 88365 | 4133 unsigned char *src_end = coding->source + coding->src_bytes; |
| 4134 int *charbuf = coding->charbuf; | |
| 4135 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 4136 int consumed_chars = 0; | |
| 4137 int multibytep = coding->src_multibyte; | |
| 4138 struct ccl_program ccl; | |
| 4139 int source_charbuf[1024]; | |
| 4140 int source_byteidx[1024]; | |
| 4141 | |
| 4142 setup_ccl_program (&ccl, CODING_CCL_DECODER (coding)); | |
| 4143 | |
| 4144 while (src < src_end) | |
| 4145 { | |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
4146 const unsigned char *p = src; |
| 88365 | 4147 int *source, *source_end; |
| 4148 int i = 0; | |
| 4149 | |
| 4150 if (multibytep) | |
| 4151 while (i < 1024 && p < src_end) | |
| 4152 { | |
| 4153 source_byteidx[i] = p - src; | |
| 4154 source_charbuf[i++] = STRING_CHAR_ADVANCE (p); | |
| 4155 } | |
| 4156 else | |
| 4157 while (i < 1024 && p < src_end) | |
| 4158 source_charbuf[i++] = *p++; | |
| 4159 | |
| 4160 if (p == src_end && coding->mode & CODING_MODE_LAST_BLOCK) | |
| 4161 ccl.last_block = 1; | |
| 4162 | |
| 4163 source = source_charbuf; | |
| 4164 source_end = source + i; | |
| 4165 while (source < source_end) | |
| 4166 { | |
| 4167 ccl_driver (&ccl, source, charbuf, | |
| 4168 source_end - source, charbuf_end - charbuf); | |
| 4169 source += ccl.consumed; | |
| 4170 charbuf += ccl.produced; | |
| 4171 if (ccl.status != CCL_STAT_SUSPEND_BY_DST) | |
| 4172 break; | |
| 4173 } | |
| 4174 if (source < source_end) | |
| 4175 src += source_byteidx[source - source_charbuf]; | |
| 4176 else | |
| 4177 src = p; | |
| 4178 consumed_chars += source - source_charbuf; | |
| 4179 | |
| 4180 if (ccl.status != CCL_STAT_SUSPEND_BY_SRC | |
| 4181 && ccl.status != CODING_RESULT_INSUFFICIENT_SRC) | |
| 4182 break; | |
| 4183 } | |
| 4184 | |
| 4185 switch (ccl.status) | |
| 4186 { | |
| 4187 case CCL_STAT_SUSPEND_BY_SRC: | |
| 4188 coding->result = CODING_RESULT_INSUFFICIENT_SRC; | |
| 4189 break; | |
| 4190 case CCL_STAT_SUSPEND_BY_DST: | |
| 4191 break; | |
| 4192 case CCL_STAT_QUIT: | |
| 4193 case CCL_STAT_INVALID_CMD: | |
| 4194 coding->result = CODING_RESULT_INTERRUPT; | |
| 4195 break; | |
| 4196 default: | |
| 4197 coding->result = CODING_RESULT_SUCCESS; | |
| 4198 break; | |
| 4199 } | |
| 4200 coding->consumed_char += consumed_chars; | |
| 4201 coding->consumed = src - coding->source; | |
| 4202 coding->charbuf_used = charbuf - coding->charbuf; | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4203 } |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4204 |
| 88365 | 4205 static int |
| 4206 encode_coding_ccl (coding) | |
| 4207 struct coding_system *coding; | |
| 4208 { | |
| 4209 struct ccl_program ccl; | |
| 4210 int multibytep = coding->dst_multibyte; | |
| 4211 int *charbuf = coding->charbuf; | |
| 4212 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 4213 unsigned char *dst = coding->destination + coding->produced; | |
| 4214 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 4215 unsigned char *adjusted_dst_end = dst_end - 1; | |
| 4216 int destination_charbuf[1024]; | |
| 4217 int i, produced_chars = 0; | |
| 4218 | |
| 4219 setup_ccl_program (&ccl, CODING_CCL_ENCODER (coding)); | |
| 4220 | |
| 4221 ccl.last_block = coding->mode & CODING_MODE_LAST_BLOCK; | |
| 4222 ccl.dst_multibyte = coding->dst_multibyte; | |
| 4223 | |
| 4224 while (charbuf < charbuf_end && dst < adjusted_dst_end) | |
| 4225 { | |
| 4226 int dst_bytes = dst_end - dst; | |
| 4227 if (dst_bytes > 1024) | |
| 4228 dst_bytes = 1024; | |
| 4229 | |
| 4230 ccl_driver (&ccl, charbuf, destination_charbuf, | |
| 4231 charbuf_end - charbuf, dst_bytes); | |
| 4232 charbuf += ccl.consumed; | |
| 4233 if (multibytep) | |
| 4234 for (i = 0; i < ccl.produced; i++) | |
| 4235 EMIT_ONE_BYTE (destination_charbuf[i] & 0xFF); | |
| 4236 else | |
| 4237 { | |
| 4238 for (i = 0; i < ccl.produced; i++) | |
| 4239 *dst++ = destination_charbuf[i] & 0xFF; | |
| 4240 produced_chars += ccl.produced; | |
| 4241 } | |
| 4242 } | |
| 4243 | |
| 4244 switch (ccl.status) | |
| 4245 { | |
| 4246 case CCL_STAT_SUSPEND_BY_SRC: | |
| 4247 coding->result = CODING_RESULT_INSUFFICIENT_SRC; | |
| 4248 break; | |
| 4249 case CCL_STAT_SUSPEND_BY_DST: | |
| 4250 coding->result = CODING_RESULT_INSUFFICIENT_DST; | |
| 4251 break; | |
| 4252 case CCL_STAT_QUIT: | |
| 4253 case CCL_STAT_INVALID_CMD: | |
| 4254 coding->result = CODING_RESULT_INTERRUPT; | |
| 4255 break; | |
| 4256 default: | |
| 4257 coding->result = CODING_RESULT_SUCCESS; | |
| 4258 break; | |
| 4259 } | |
| 4260 | |
| 4261 coding->produced_char += produced_chars; | |
| 4262 coding->produced = dst - coding->destination; | |
| 4263 return 0; | |
| 4264 } | |
| 4265 | |
| 4266 | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4267 |
| 88365 | 4268 /*** 10, 11. no-conversion handlers ***/ |
| 17052 | 4269 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4270 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4271 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4272 static void |
| 88365 | 4273 decode_coding_raw_text (coding) |
| 17052 | 4274 struct coding_system *coding; |
| 4275 { | |
| 88365 | 4276 coding->chars_at_source = 1; |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
4277 coding->consumed_char = 0; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
4278 coding->consumed = 0; |
| 88365 | 4279 coding->result = CODING_RESULT_SUCCESS; |
| 4280 } | |
| 4281 | |
| 4282 static int | |
| 4283 encode_coding_raw_text (coding) | |
| 4284 struct coding_system *coding; | |
| 4285 { | |
| 4286 int multibytep = coding->dst_multibyte; | |
| 4287 int *charbuf = coding->charbuf; | |
| 4288 int *charbuf_end = coding->charbuf + coding->charbuf_used; | |
| 4289 unsigned char *dst = coding->destination + coding->produced; | |
| 4290 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 4291 int produced_chars = 0; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4292 int c; |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4293 |
| 88365 | 4294 if (multibytep) |
| 4295 { | |
| 4296 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
| 4297 | |
| 4298 if (coding->src_multibyte) | |
| 4299 while (charbuf < charbuf_end) | |
| 4300 { | |
| 4301 ASSURE_DESTINATION (safe_room); | |
| 4302 c = *charbuf++; | |
| 4303 if (ASCII_CHAR_P (c)) | |
| 4304 EMIT_ONE_ASCII_BYTE (c); | |
| 4305 else if (CHAR_BYTE8_P (c)) | |
| 4306 { | |
| 4307 c = CHAR_TO_BYTE8 (c); | |
| 4308 EMIT_ONE_BYTE (c); | |
| 4309 } | |
| 4310 else | |
| 4311 { | |
| 4312 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str; | |
| 4313 | |
| 4314 CHAR_STRING_ADVANCE (c, p1); | |
| 4315 while (p0 < p1) | |
|
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4316 { |
|
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4317 EMIT_ONE_BYTE (*p0); |
|
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4318 p0++; |
|
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
4319 } |
| 88365 | 4320 } |
| 4321 } | |
| 4322 else | |
| 4323 while (charbuf < charbuf_end) | |
| 4324 { | |
| 4325 ASSURE_DESTINATION (safe_room); | |
| 4326 c = *charbuf++; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4327 EMIT_ONE_BYTE (c); |
| 88365 | 4328 } |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4329 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4330 else |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4331 { |
| 88365 | 4332 if (coding->src_multibyte) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4333 { |
| 88365 | 4334 int safe_room = MAX_MULTIBYTE_LENGTH; |
| 4335 | |
| 4336 while (charbuf < charbuf_end) | |
| 4337 { | |
| 4338 ASSURE_DESTINATION (safe_room); | |
| 4339 c = *charbuf++; | |
| 4340 if (ASCII_CHAR_P (c)) | |
| 4341 *dst++ = c; | |
| 4342 else if (CHAR_BYTE8_P (c)) | |
| 4343 *dst++ = CHAR_TO_BYTE8 (c); | |
| 4344 else | |
| 4345 CHAR_STRING_ADVANCE (c, dst); | |
| 4346 produced_chars++; | |
| 4347 } | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4348 } |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4349 else |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4350 { |
| 88365 | 4351 ASSURE_DESTINATION (charbuf_end - charbuf); |
| 4352 while (charbuf < charbuf_end && dst < dst_end) | |
| 4353 *dst++ = *charbuf++; | |
| 4354 produced_chars = dst - (coding->destination + coding->dst_bytes); | |
| 4355 } | |
| 4356 } | |
| 4357 coding->result = CODING_RESULT_SUCCESS; | |
| 4358 coding->produced_char += produced_chars; | |
| 4359 coding->produced = dst - coding->destination; | |
| 4360 return 0; | |
| 4361 } | |
| 4362 | |
| 4363 static int | |
| 4364 detect_coding_charset (coding, mask) | |
| 4365 struct coding_system *coding; | |
| 4366 int *mask; | |
| 4367 { | |
| 4368 unsigned char *src = coding->source, *src_base = src; | |
| 4369 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 4370 int multibytep = coding->src_multibyte; | |
| 4371 int consumed_chars = 0; | |
| 4372 Lisp_Object attrs, valids; | |
| 4373 | |
| 4374 coding = &coding_categories[coding_category_charset]; | |
| 4375 attrs = CODING_ID_ATTRS (coding->id); | |
| 4376 valids = AREF (attrs, coding_attr_charset_valids); | |
| 4377 | |
| 4378 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
| 4379 src += coding->head_ascii; | |
| 4380 | |
| 4381 while (1) | |
| 4382 { | |
| 4383 int c; | |
| 4384 | |
| 4385 ONE_MORE_BYTE (c); | |
| 4386 if (NILP (AREF (valids, c))) | |
| 4387 break; | |
| 4388 } | |
| 4389 *mask &= ~CATEGORY_MASK_CHARSET; | |
| 4390 return 0; | |
| 4391 | |
| 4392 no_more_source: | |
| 4393 return 1; | |
| 4394 } | |
| 4395 | |
| 4396 static void | |
| 4397 decode_coding_charset (coding) | |
| 4398 struct coding_system *coding; | |
| 4399 { | |
| 4400 unsigned char *src = coding->source + coding->consumed; | |
| 4401 unsigned char *src_end = coding->source + coding->src_bytes; | |
| 4402 unsigned char *src_base; | |
| 4403 int *charbuf = coding->charbuf; | |
| 4404 int *charbuf_end = charbuf + coding->charbuf_size; | |
| 4405 int consumed_chars = 0, consumed_chars_base; | |
| 4406 int multibytep = coding->src_multibyte; | |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4407 Lisp_Object attrs, eol_type, charset_list, valids; |
| 88365 | 4408 |
| 4409 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4410 valids = AREF (attrs, coding_attr_charset_valids); |
| 88365 | 4411 |
| 4412 while (1) | |
| 4413 { | |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4414 int c; |
| 88365 | 4415 |
| 4416 src_base = src; | |
| 4417 consumed_chars_base = consumed_chars; | |
| 4418 | |
| 4419 if (charbuf >= charbuf_end) | |
| 4420 break; | |
| 4421 | |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4422 ONE_MORE_BYTE (c); |
| 88365 | 4423 if (c == '\r') |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4424 { |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4425 /* Here we assume that no charset maps '\r' to something |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4426 else. */ |
| 88365 | 4427 if (EQ (eol_type, Qdos)) |
| 4428 { | |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4429 if (src < src_end |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4430 && *src == '\n') |
| 88365 | 4431 ONE_MORE_BYTE (c); |
| 4432 } | |
| 4433 else if (EQ (eol_type, Qmac)) | |
| 4434 c = '\n'; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4435 } |
| 88365 | 4436 else |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4437 { |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4438 Lisp_Object val; |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4439 struct charset *charset; |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4440 int dim; |
|
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4441 int len = 1; |
|
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4442 unsigned code = c; |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4443 |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4444 val = AREF (valids, c); |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4445 if (NILP (val)) |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4446 goto invalid_code; |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4447 if (INTEGERP (val)) |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4448 { |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4449 charset = CHARSET_FROM_ID (XFASTINT (val)); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4450 dim = CHARSET_DIMENSION (charset); |
|
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4451 while (len < dim) |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4452 { |
|
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4453 ONE_MORE_BYTE (c); |
|
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4454 code = (code << 8) | c; |
|
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4455 len++; |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4456 } |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4457 CODING_DECODE_CHAR (coding, src, src_base, src_end, |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4458 charset, code, c); |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4459 } |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4460 else |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4461 { |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4462 /* VAL is a list of charset IDs. It is assured that the |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4463 list is sorted by charset dimensions (smaller one |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4464 comes first). */ |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4465 while (CONSP (val)) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4466 { |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4467 charset = CHARSET_FROM_ID (XFASTINT (XCAR (val))); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4468 dim = CHARSET_DIMENSION (charset); |
|
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4469 while (len < dim) |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4470 { |
|
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4471 ONE_MORE_BYTE (c); |
|
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
4472 code = (code << 8) | c; |
|
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
4473 len++; |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4474 } |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4475 CODING_DECODE_CHAR (coding, src, src_base, |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4476 src_end, charset, code, c); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4477 if (c >= 0) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4478 break; |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4479 val = XCDR (val); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4480 } |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
4481 } |
| 88365 | 4482 if (c < 0) |
| 4483 goto invalid_code; | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4484 } |
| 88365 | 4485 *charbuf++ = c; |
| 4486 continue; | |
| 4487 | |
| 4488 invalid_code: | |
| 4489 src = src_base; | |
| 4490 consumed_chars = consumed_chars_base; | |
| 4491 ONE_MORE_BYTE (c); | |
| 4492 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
| 4493 coding->errors++; | |
| 4494 } | |
| 4495 | |
| 4496 no_more_source: | |
| 4497 coding->consumed_char += consumed_chars_base; | |
| 4498 coding->consumed = src_base - coding->source; | |
| 4499 coding->charbuf_used = charbuf - coding->charbuf; | |
| 4500 } | |
| 4501 | |
| 4502 static int | |
| 4503 encode_coding_charset (coding) | |
| 4504 struct coding_system *coding; | |
| 4505 { | |
| 4506 int multibytep = coding->dst_multibyte; | |
| 4507 int *charbuf = coding->charbuf; | |
| 4508 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 4509 unsigned char *dst = coding->destination + coding->produced; | |
| 4510 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 4511 int safe_room = MAX_MULTIBYTE_LENGTH; | |
| 4512 int produced_chars = 0; | |
| 4513 Lisp_Object attrs, eol_type, charset_list; | |
| 4514 int ascii_compatible; | |
| 4515 int c; | |
| 4516 | |
| 4517 CODING_GET_INFO (coding, attrs, eol_type, charset_list); | |
| 4518 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
| 4519 | |
| 4520 while (charbuf < charbuf_end) | |
| 4521 { | |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4522 struct charset *charset; |
| 88365 | 4523 unsigned code; |
| 4524 | |
| 4525 ASSURE_DESTINATION (safe_room); | |
| 4526 c = *charbuf++; | |
| 4527 if (ascii_compatible && ASCII_CHAR_P (c)) | |
| 4528 EMIT_ONE_ASCII_BYTE (c); | |
|
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4529 else if (CHAR_BYTE8_P (c)) |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4530 { |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4531 c = CHAR_TO_BYTE8 (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4532 EMIT_ONE_BYTE (c); |
|
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4533 } |
| 88365 | 4534 else |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4535 { |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4536 charset = char_charset (c, charset_list, &code); |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4537 if (charset) |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4538 { |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4539 if (CHARSET_DIMENSION (charset) == 1) |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4540 EMIT_ONE_BYTE (code); |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4541 else if (CHARSET_DIMENSION (charset) == 2) |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4542 EMIT_TWO_BYTES (code >> 8, code & 0xFF); |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4543 else if (CHARSET_DIMENSION (charset) == 3) |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4544 EMIT_THREE_BYTES (code >> 16, (code >> 8) & 0xFF, code & 0xFF); |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4545 else |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4546 EMIT_FOUR_BYTES (code >> 24, (code >> 16) & 0xFF, |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4547 (code >> 8) & 0xFF, code & 0xFF); |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4548 } |
|
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4549 else |
|
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4550 { |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4551 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4552 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4553 else |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4554 c = coding->default_char; |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4555 EMIT_ONE_BYTE (c); |
|
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4556 } |
|
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
4557 } |
| 88365 | 4558 } |
| 4559 | |
| 4560 coding->result = CODING_RESULT_SUCCESS; | |
| 4561 coding->produced_char += produced_chars; | |
| 4562 coding->produced = dst - coding->destination; | |
| 4563 return 0; | |
| 17052 | 4564 } |
| 4565 | |
| 4566 | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4567 /*** 7. C library functions ***/ |
| 17052 | 4568 |
| 88365 | 4569 /* Setup coding context CODING from information about CODING_SYSTEM. |
| 4570 If CODING_SYSTEM is nil, `no-conversion' is assumed. If | |
| 4571 CODING_SYSTEM is invalid, signal an error. */ | |
| 4572 | |
| 4573 void | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4574 setup_coding_system (coding_system, coding) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4575 Lisp_Object coding_system; |
| 17052 | 4576 struct coding_system *coding; |
| 4577 { | |
| 88365 | 4578 Lisp_Object attrs; |
| 4579 Lisp_Object eol_type; | |
| 4580 Lisp_Object coding_type; | |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
4581 Lisp_Object val; |
| 17052 | 4582 |
|
24460
be35d27a4bfb
(setup_coding_system): Check for CODING_SYSTEM = nil.
Kenichi Handa <handa@m17n.org>
parents:
24425
diff
changeset
|
4583 if (NILP (coding_system)) |
| 88365 | 4584 coding_system = Qno_conversion; |
| 4585 | |
| 4586 CHECK_CODING_SYSTEM_GET_ID (coding_system, coding->id); | |
| 4587 | |
| 4588 attrs = CODING_ID_ATTRS (coding->id); | |
| 4589 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
| 4590 | |
| 4591 coding->mode = 0; | |
| 4592 coding->head_ascii = -1; | |
| 4593 coding->common_flags | |
| 4594 = (VECTORP (eol_type) ? CODING_REQUIRE_DETECTION_MASK : 0); | |
| 4595 | |
| 4596 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
| 4597 coding->max_charset_id = XSTRING (val)->size - 1; | |
| 4598 coding->safe_charsets = (char *) XSTRING (val)->data; | |
| 4599 coding->default_char = XINT (CODING_ATTR_DEFAULT_CHAR (attrs)); | |
| 4600 | |
| 4601 coding_type = CODING_ATTR_TYPE (attrs); | |
| 4602 if (EQ (coding_type, Qundecided)) | |
| 4603 { | |
| 4604 coding->detector = NULL; | |
| 4605 coding->decoder = decode_coding_raw_text; | |
| 4606 coding->encoder = encode_coding_raw_text; | |
| 4607 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; | |
| 4608 } | |
| 4609 else if (EQ (coding_type, Qiso_2022)) | |
| 4610 { | |
| 4611 int i; | |
| 4612 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
| 4613 | |
| 4614 /* Invoke graphic register 0 to plane 0. */ | |
| 4615 CODING_ISO_INVOCATION (coding, 0) = 0; | |
| 4616 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */ | |
| 4617 CODING_ISO_INVOCATION (coding, 1) | |
| 4618 = (flags & CODING_ISO_FLAG_SEVEN_BITS ? -1 : 1); | |
| 4619 /* Setup the initial status of designation. */ | |
| 4620 for (i = 0; i < 4; i++) | |
| 4621 CODING_ISO_DESIGNATION (coding, i) = CODING_ISO_INITIAL (coding, i); | |
| 4622 /* Not single shifting initially. */ | |
| 4623 CODING_ISO_SINGLE_SHIFTING (coding) = 0; | |
| 4624 /* Beginning of buffer should also be regarded as bol. */ | |
| 4625 CODING_ISO_BOL (coding) = 1; | |
| 4626 coding->detector = detect_coding_iso_2022; | |
| 4627 coding->decoder = decode_coding_iso_2022; | |
| 4628 coding->encoder = encode_coding_iso_2022; | |
| 4629 if (flags & CODING_ISO_FLAG_SAFE) | |
| 4630 coding->mode |= CODING_MODE_SAFE_ENCODING; | |
|
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4631 coding->common_flags |
| 88365 | 4632 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
| 4633 | CODING_REQUIRE_FLUSHING_MASK); | |
| 4634 if (flags & CODING_ISO_FLAG_COMPOSITION) | |
| 4635 coding->common_flags |= CODING_ANNOTATE_COMPOSITION_MASK; | |
| 4636 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
|
4637 { |
| 88365 | 4638 setup_iso_safe_charsets (attrs); |
| 4639 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
| 4640 coding->max_charset_id = XSTRING (val)->size - 1; | |
| 4641 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
|
4642 } |
| 88365 | 4643 CODING_ISO_FLAGS (coding) = flags; |
| 4644 } | |
| 4645 else if (EQ (coding_type, Qcharset)) | |
| 4646 { | |
| 4647 coding->detector = detect_coding_charset; | |
| 4648 coding->decoder = decode_coding_charset; | |
| 4649 coding->encoder = encode_coding_charset; | |
| 4650 coding->common_flags | |
| 4651 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
| 4652 } | |
| 4653 else if (EQ (coding_type, Qutf_8)) | |
| 4654 { | |
| 4655 coding->detector = detect_coding_utf_8; | |
| 4656 coding->decoder = decode_coding_utf_8; | |
| 4657 coding->encoder = encode_coding_utf_8; | |
|
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
4658 coding->common_flags |
| 88365 | 4659 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
| 4660 } | |
| 4661 else if (EQ (coding_type, Qutf_16)) | |
| 4662 { | |
| 4663 val = AREF (attrs, coding_attr_utf_16_bom); | |
| 4664 CODING_UTF_16_BOM (coding) = (CONSP (val) ? utf_16_detect_bom | |
| 4665 : EQ (val, Qt) ? utf_16_with_bom | |
| 4666 : utf_16_without_bom); | |
| 4667 val = AREF (attrs, coding_attr_utf_16_endian); | |
| 4668 CODING_UTF_16_ENDIAN (coding) = (NILP (val) ? utf_16_big_endian | |
| 4669 : utf_16_little_endian); | |
|
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
4670 CODING_UTF_16_SURROGATE (coding) = 0; |
| 88365 | 4671 coding->detector = detect_coding_utf_16; |
| 4672 coding->decoder = decode_coding_utf_16; | |
| 4673 coding->encoder = encode_coding_utf_16; | |
|
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4674 coding->common_flags |
| 88365 | 4675 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
| 4676 } | |
| 4677 else if (EQ (coding_type, Qccl)) | |
| 4678 { | |
| 4679 coding->detector = detect_coding_ccl; | |
| 4680 coding->decoder = decode_coding_ccl; | |
| 4681 coding->encoder = encode_coding_ccl; | |
|
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4682 coding->common_flags |
| 88365 | 4683 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
| 4684 | CODING_REQUIRE_FLUSHING_MASK); | |
| 4685 } | |
| 4686 else if (EQ (coding_type, Qemacs_mule)) | |
| 4687 { | |
| 4688 coding->detector = detect_coding_emacs_mule; | |
| 4689 coding->decoder = decode_coding_emacs_mule; | |
| 4690 coding->encoder = encode_coding_emacs_mule; | |
| 4691 coding->common_flags | |
| 4692 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
| 4693 if (! NILP (AREF (attrs, coding_attr_emacs_mule_full)) | |
| 4694 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Vemacs_mule_charset_list)) | |
| 4695 { | |
| 4696 Lisp_Object tail, safe_charsets; | |
| 4697 int max_charset_id = 0; | |
| 4698 | |
| 4699 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
| 4700 tail = XCDR (tail)) | |
| 4701 if (max_charset_id < XFASTINT (XCAR (tail))) | |
| 4702 max_charset_id = XFASTINT (XCAR (tail)); | |
| 4703 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
| 4704 make_number (255)); | |
| 4705 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
| 4706 tail = XCDR (tail)) | |
| 4707 XSTRING (safe_charsets)->data[XFASTINT (XCAR (tail))] = 0; | |
| 4708 coding->max_charset_id = max_charset_id; | |
| 4709 coding->safe_charsets = (char *) XSTRING (safe_charsets)->data; | |
| 4710 } | |
| 4711 } | |
| 4712 else if (EQ (coding_type, Qshift_jis)) | |
| 4713 { | |
| 4714 coding->detector = detect_coding_sjis; | |
| 4715 coding->decoder = decode_coding_sjis; | |
| 4716 coding->encoder = encode_coding_sjis; | |
| 4717 coding->common_flags | |
| 4718 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
| 4719 } | |
| 4720 else if (EQ (coding_type, Qbig5)) | |
| 4721 { | |
| 4722 coding->detector = detect_coding_big5; | |
| 4723 coding->decoder = decode_coding_big5; | |
| 4724 coding->encoder = encode_coding_big5; | |
|
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
4725 coding->common_flags |
| 88365 | 4726 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
| 4727 } | |
| 4728 else /* EQ (coding_type, Qraw_text) */ | |
| 4729 { | |
| 4730 coding->detector = NULL; | |
| 4731 coding->decoder = decode_coding_raw_text; | |
| 4732 coding->encoder = encode_coding_raw_text; | |
| 4733 coding->common_flags |= CODING_FOR_UNIBYTE_MASK; | |
| 4734 } | |
| 4735 | |
| 4736 return; | |
| 17052 | 4737 } |
| 4738 | |
| 88365 | 4739 /* Return raw-text or one of its subsidiaries that has the same |
| 4740 eol_type as CODING-SYSTEM. */ | |
| 4741 | |
| 4742 Lisp_Object | |
| 4743 raw_text_coding_system (coding_system) | |
| 4744 Lisp_Object coding_system; | |
| 26847 | 4745 { |
|
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
4746 Lisp_Object spec, attrs; |
| 88365 | 4747 Lisp_Object eol_type, raw_text_eol_type; |
| 4748 | |
| 4749 spec = CODING_SYSTEM_SPEC (coding_system); | |
| 4750 attrs = AREF (spec, 0); | |
| 4751 | |
| 4752 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) | |
| 4753 return coding_system; | |
| 4754 | |
| 4755 eol_type = AREF (spec, 2); | |
| 4756 if (VECTORP (eol_type)) | |
| 4757 return Qraw_text; | |
| 4758 spec = CODING_SYSTEM_SPEC (Qraw_text); | |
| 4759 raw_text_eol_type = AREF (spec, 2); | |
| 4760 return (EQ (eol_type, Qunix) ? AREF (raw_text_eol_type, 0) | |
| 4761 : EQ (eol_type, Qdos) ? AREF (raw_text_eol_type, 1) | |
| 4762 : AREF (raw_text_eol_type, 2)); | |
| 26847 | 4763 } |
| 4764 | |
| 88365 | 4765 |
| 4766 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT | |
| 4767 does, return one of the subsidiary that has the same eol-spec as | |
| 4768 PARENT. Otherwise, return CODING_SYSTEM. */ | |
| 4769 | |
| 4770 Lisp_Object | |
| 4771 coding_inherit_eol_type (coding_system, parent) | |
| 88473 | 4772 Lisp_Object coding_system, parent; |
|
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4773 { |
| 88365 | 4774 Lisp_Object spec, attrs, eol_type; |
| 4775 | |
| 4776 spec = CODING_SYSTEM_SPEC (coding_system); | |
| 4777 attrs = AREF (spec, 0); | |
| 4778 eol_type = AREF (spec, 2); | |
| 4779 if (VECTORP (eol_type)) | |
| 4780 { | |
| 4781 Lisp_Object parent_spec; | |
| 4782 Lisp_Object parent_eol_type; | |
| 4783 | |
| 4784 parent_spec | |
| 4785 = CODING_SYSTEM_SPEC (buffer_defaults.buffer_file_coding_system); | |
| 4786 parent_eol_type = AREF (parent_spec, 2); | |
| 4787 if (EQ (parent_eol_type, Qunix)) | |
| 4788 coding_system = AREF (eol_type, 0); | |
| 4789 else if (EQ (parent_eol_type, Qdos)) | |
| 4790 coding_system = AREF (eol_type, 1); | |
| 4791 else if (EQ (parent_eol_type, Qmac)) | |
| 4792 coding_system = AREF (eol_type, 2); | |
| 4793 } | |
| 4794 return coding_system; | |
|
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4795 } |
|
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
4796 |
| 17052 | 4797 /* Emacs has a mechanism to automatically detect a coding system if it |
| 4798 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
| 4799 it's impossible to distinguish some coding systems accurately | |
| 4800 because they use the same range of codes. So, at first, coding | |
| 4801 systems are categorized into 7, those are: | |
| 4802 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
4803 o coding-category-emacs-mule |
| 17052 | 4804 |
| 4805 The category for a coding system which has the same code range | |
| 4806 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
|
4807 symbol) `emacs-mule' by default. |
| 17052 | 4808 |
| 4809 o coding-category-sjis | |
| 4810 | |
| 4811 The category for a coding system which has the same code range | |
| 4812 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
|
4813 symbol) `japanese-shift-jis' by default. |
| 17052 | 4814 |
| 4815 o coding-category-iso-7 | |
| 4816 | |
| 4817 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
|
4818 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
|
4819 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
|
4820 charsets. Assigned the coding-system (Lisp symbol) |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4821 `iso-2022-7bit' by default. |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4822 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4823 o coding-category-iso-7-tight |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4824 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4825 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
|
4826 encode/decode only the specified charsets. |
| 17052 | 4827 |
| 4828 o coding-category-iso-8-1 | |
| 4829 | |
| 4830 The category for a coding system which has the same code range | |
| 4831 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
|
4832 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
|
4833 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
|
4834 symbol) `iso-latin-1' by default. |
| 17052 | 4835 |
| 4836 o coding-category-iso-8-2 | |
| 4837 | |
| 4838 The category for a coding system which has the same code range | |
| 4839 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
|
4840 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
|
4841 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
|
4842 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
|
4843 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4844 o coding-category-iso-7-else |
| 17052 | 4845 |
| 4846 The category for a coding system which has the same code range | |
| 88365 | 4847 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
|
4848 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
|
4849 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
|
4850 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4851 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
|
4852 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
4853 The category for a coding system which has the same code range |
| 88365 | 4854 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
|
4855 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
|
4856 symbol) `iso-2022-8bit-ss2' by default. |
| 17052 | 4857 |
| 4858 o coding-category-big5 | |
| 4859 | |
| 4860 The category for a coding system which has the same code range | |
| 4861 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
|
4862 `cn-big5' by default. |
| 17052 | 4863 |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4864 o coding-category-utf-8 |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4865 |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4866 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
|
4867 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
|
4868 symbol) `utf-8' by default. |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4869 |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4870 o coding-category-utf-16-be |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4871 |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4872 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
|
4873 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
|
4874 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
|
4875 `utf-16-be' by default. |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4876 |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4877 o coding-category-utf-16-le |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4878 |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4879 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
|
4880 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
|
4881 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
|
4882 symbol) `utf-16-le' by default. |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4883 |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4884 o coding-category-ccl |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4885 |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4886 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
|
4887 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
|
4888 coding system is assigned. |
|
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
4889 |
| 17052 | 4890 o coding-category-binary |
| 4891 | |
| 4892 The category for a coding system not categorized in any of the | |
| 4893 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
|
4894 `no-conversion' by default. |
| 17052 | 4895 |
| 4896 Each of them is a Lisp symbol and the value is an actual | |
| 88365 | 4897 `coding-system's (this is also a Lisp symbol) assigned by a user. |
| 17052 | 4898 What Emacs does actually is to detect a category of coding system. |
| 4899 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
| 88365 | 4900 decide only one possible category, it selects a category of the |
| 17052 | 4901 highest priority. Priorities of categories are also specified by a |
| 4902 user in a Lisp variable `coding-category-list'. | |
| 4903 | |
| 4904 */ | |
| 4905 | |
| 88365 | 4906 #define EOL_SEEN_NONE 0 |
| 4907 #define EOL_SEEN_LF 1 | |
| 4908 #define EOL_SEEN_CR 2 | |
| 4909 #define EOL_SEEN_CRLF 4 | |
| 4910 | |
| 4911 /* Detect how end-of-line of a text of length CODING->src_bytes | |
| 4912 pointed by CODING->source is encoded. Return one of | |
| 4913 EOL_SEEN_XXX. */ | |
| 17052 | 4914 |
|
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
4915 #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
|
4916 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4917 static int |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4918 detect_eol (source, src_bytes, category) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4919 unsigned char *source; |
| 88365 | 4920 EMACS_INT src_bytes; |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4921 enum coding_category category; |
| 17052 | 4922 { |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4923 unsigned char *src = source, *src_end = src + src_bytes; |
| 17052 | 4924 unsigned char c; |
| 88365 | 4925 int total = 0; |
| 4926 int eol_seen = EOL_SEEN_NONE; | |
| 4927 | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4928 if ((1 << category) & CATEGORY_MASK_UTF_16) |
| 88365 | 4929 { |
| 4930 int msb, lsb; | |
| 4931 | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4932 msb = category == (coding_category_utf_16_le |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4933 | coding_category_utf_16_le_nosig); |
| 88365 | 4934 lsb = 1 - msb; |
| 4935 | |
| 4936 while (src + 1 < src_end) | |
| 17052 | 4937 { |
| 88365 | 4938 c = src[lsb]; |
| 4939 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
|
4940 { |
| 88365 | 4941 int this_eol; |
| 4942 | |
| 4943 if (c == '\n') | |
| 4944 this_eol = EOL_SEEN_LF; | |
| 4945 else if (src + 3 >= src_end | |
| 4946 || src[msb + 2] != 0 | |
| 4947 || src[lsb + 2] != '\n') | |
| 4948 this_eol = EOL_SEEN_CR; | |
| 4949 else | |
| 4950 this_eol = EOL_SEEN_CRLF; | |
| 4951 | |
| 4952 if (eol_seen == EOL_SEEN_NONE) | |
| 4953 /* This is the first end-of-line. */ | |
| 4954 eol_seen = this_eol; | |
| 4955 else if (eol_seen != this_eol) | |
| 4956 { | |
| 4957 /* The found type is different from what found before. */ | |
| 4958 eol_seen = EOL_SEEN_LF; | |
| 4959 break; | |
| 4960 } | |
| 4961 if (++total == MAX_EOL_CHECK_COUNT) | |
| 4962 break; | |
| 4963 } | |
| 4964 src += 2; | |
| 4965 } | |
| 4966 } | |
| 4967 else | |
| 4968 { | |
| 4969 while (src < src_end) | |
| 4970 { | |
| 4971 c = *src++; | |
| 4972 if (c == '\n' || c == '\r') | |
| 4973 { | |
| 4974 int this_eol; | |
| 4975 | |
| 4976 if (c == '\n') | |
| 4977 this_eol = EOL_SEEN_LF; | |
| 4978 else if (src >= src_end || *src != '\n') | |
| 4979 this_eol = EOL_SEEN_CR; | |
| 4980 else | |
| 4981 this_eol = EOL_SEEN_CRLF, src++; | |
| 4982 | |
| 4983 if (eol_seen == EOL_SEEN_NONE) | |
| 4984 /* This is the first end-of-line. */ | |
| 4985 eol_seen = this_eol; | |
| 4986 else if (eol_seen != this_eol) | |
| 4987 { | |
| 4988 /* The found type is different from what found before. */ | |
| 4989 eol_seen = EOL_SEEN_LF; | |
| 4990 break; | |
| 4991 } | |
| 4992 if (++total == MAX_EOL_CHECK_COUNT) | |
| 4993 break; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4994 } |
| 17052 | 4995 } |
| 4996 } | |
| 88365 | 4997 return eol_seen; |
| 17052 | 4998 } |
| 4999 | |
| 88365 | 5000 |
| 5001 static void | |
| 5002 adjust_coding_eol_type (coding, eol_seen) | |
| 5003 struct coding_system *coding; | |
| 5004 int eol_seen; | |
| 5005 { | |
|
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
5006 Lisp_Object eol_type; |
| 88365 | 5007 |
| 5008 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
| 5009 if (eol_seen & EOL_SEEN_LF) | |
| 5010 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 0)); | |
|
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
5011 else if (eol_seen & EOL_SEEN_CRLF) |
| 88365 | 5012 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 1)); |
|
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
5013 else if (eol_seen & EOL_SEEN_CR) |
| 88365 | 5014 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 2)); |
| 5015 } | |
| 5016 | |
| 5017 /* Detect how a text specified in CODING is encoded. If a coding | |
| 5018 system is detected, update fields of CODING by the detected coding | |
| 5019 system. */ | |
| 5020 | |
| 5021 void | |
| 5022 detect_coding (coding) | |
| 5023 struct coding_system *coding; | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5024 { |
| 88365 | 5025 unsigned char *src, *src_end; |
| 5026 Lisp_Object attrs, coding_type; | |
| 5027 | |
| 5028 coding->consumed = coding->consumed_char = 0; | |
| 5029 coding->produced = coding->produced_char = 0; | |
| 5030 coding_set_source (coding); | |
| 5031 | |
| 5032 src_end = coding->source + coding->src_bytes; | |
| 5033 | |
| 5034 /* If we have not yet decided the text encoding type, detect it | |
| 5035 now. */ | |
| 5036 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qundecided)) | |
| 5037 { | |
| 5038 int mask = CATEGORY_MASK_ANY; | |
| 5039 int c, i; | |
| 5040 | |
| 5041 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
|
5042 { |
| 88365 | 5043 c = *src; |
| 5044 if (c & 0x80 || (c < 0x20 && (c == ISO_CODE_ESC | |
| 5045 || c == ISO_CODE_SI | |
| 5046 || c == ISO_CODE_SO))) | |
| 5047 break; | |
| 5048 } | |
| 5049 coding->head_ascii = src - (coding->source + coding->consumed); | |
| 5050 | |
| 5051 if (coding->head_ascii < coding->src_bytes) | |
| 5052 { | |
| 5053 int detected = 0; | |
| 5054 | |
| 5055 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
|
5056 { |
| 88365 | 5057 enum coding_category category = coding_priorities[i]; |
| 5058 struct coding_system *this = coding_categories + category; | |
| 5059 | |
| 5060 if (this->id < 0) | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5061 { |
| 88365 | 5062 /* No coding system of this category is defined. */ |
| 5063 mask &= ~(1 << category); | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5064 } |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5065 else if (category >= coding_category_raw_text |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5066 || detected & (1 << category)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5067 continue; |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5068 else |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5069 { |
| 88365 | 5070 detected |= detected_mask[category]; |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5071 if ((*(this->detector)) (coding, &mask) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5072 && (mask & (1 << category))) |
| 88365 | 5073 break; |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5074 } |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5075 } |
| 88365 | 5076 if (! mask) |
| 5077 setup_coding_system (Qraw_text, coding); | |
| 5078 else if (mask != CATEGORY_MASK_ANY) | |
| 5079 for (i = 0; i < coding_category_raw_text; i++) | |
| 5080 { | |
| 5081 enum coding_category category = coding_priorities[i]; | |
| 5082 struct coding_system *this = coding_categories + category; | |
| 5083 | |
| 5084 if (mask & (1 << category)) | |
| 5085 { | |
| 5086 setup_coding_system (CODING_ID_NAME (this->id), coding); | |
| 5087 break; | |
| 5088 } | |
| 5089 } | |
| 5090 } | |
| 5091 } | |
| 5092 | |
| 5093 attrs = CODING_ID_ATTRS (coding->id); | |
| 5094 coding_type = CODING_ATTR_TYPE (attrs); | |
| 5095 | |
| 5096 /* If we have not yet decided the EOL type, detect it now. But, the | |
| 5097 detection is impossible for a CCL based coding system, in which | |
| 5098 case, we detct the EOL type after decoding. */ | |
| 5099 if (VECTORP (CODING_ID_EOL_TYPE (coding->id)) | |
| 5100 && ! EQ (coding_type, Qccl)) | |
| 5101 { | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5102 int eol_seen = detect_eol (coding->source, coding->src_bytes, |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
5103 XINT (CODING_ATTR_CATEGORY (attrs))); |
| 88365 | 5104 |
| 5105 if (eol_seen != EOL_SEEN_NONE) | |
| 5106 adjust_coding_eol_type (coding, eol_seen); | |
| 5107 } | |
| 5108 } | |
| 5109 | |
| 5110 | |
| 5111 static void | |
| 5112 decode_eol (coding) | |
| 5113 struct coding_system *coding; | |
| 5114 { | |
| 5115 if (VECTORP (CODING_ID_EOL_TYPE (coding->id))) | |
| 5116 { | |
| 5117 unsigned char *p = CHAR_POS_ADDR (coding->dst_pos); | |
| 5118 unsigned char *pend = p + coding->produced; | |
| 5119 int eol_seen = EOL_SEEN_NONE; | |
| 5120 | |
| 5121 for (; p < pend; p++) | |
| 5122 { | |
| 5123 if (*p == '\n') | |
| 5124 eol_seen |= EOL_SEEN_LF; | |
| 5125 else if (*p == '\r') | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5126 { |
| 88365 | 5127 if (p + 1 < pend && *(p + 1) == '\n') |
| 5128 { | |
| 5129 eol_seen |= EOL_SEEN_CRLF; | |
| 5130 p++; | |
| 5131 } | |
| 5132 else | |
| 5133 eol_seen |= EOL_SEEN_CR; | |
|
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5134 } |
|
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
5135 } |
| 88365 | 5136 if (eol_seen != EOL_SEEN_NONE) |
| 5137 adjust_coding_eol_type (coding, eol_seen); | |
| 5138 } | |
| 5139 | |
| 5140 if (EQ (CODING_ID_EOL_TYPE (coding->id), Qmac)) | |
| 5141 { | |
| 5142 unsigned char *p = CHAR_POS_ADDR (coding->dst_pos); | |
| 5143 unsigned char *pend = p + coding->produced; | |
| 5144 | |
| 5145 for (; p < pend; p++) | |
| 5146 if (*p == '\r') | |
| 5147 *p = '\n'; | |
| 5148 } | |
| 5149 else if (EQ (CODING_ID_EOL_TYPE (coding->id), Qdos)) | |
| 5150 { | |
| 5151 unsigned char *p, *pbeg, *pend; | |
| 5152 Lisp_Object undo_list; | |
| 5153 | |
| 5154 move_gap_both (coding->dst_pos + coding->produced_char, | |
| 5155 coding->dst_pos_byte + coding->produced); | |
| 5156 undo_list = current_buffer->undo_list; | |
| 5157 current_buffer->undo_list = Qt; | |
| 88856 | 5158 del_range_2 (coding->dst_pos, coding->dst_pos_byte, GPT, GPT_BYTE, 0); |
| 88365 | 5159 current_buffer->undo_list = undo_list; |
| 5160 pbeg = GPT_ADDR; | |
| 5161 pend = pbeg + coding->produced; | |
| 5162 | |
| 5163 for (p = pend - 1; p >= pbeg; p--) | |
| 5164 if (*p == '\r') | |
| 5165 { | |
| 5166 safe_bcopy ((char *) (p + 1), (char *) p, pend - p - 1); | |
| 5167 pend--; | |
| 5168 } | |
| 5169 coding->produced_char -= coding->produced - (pend - pbeg); | |
| 5170 coding->produced = pend - pbeg; | |
| 5171 insert_from_gap (coding->produced_char, coding->produced); | |
| 17052 | 5172 } |
| 5173 } | |
| 5174 | |
| 88365 | 5175 static void |
| 5176 translate_chars (coding, table) | |
| 17052 | 5177 struct coding_system *coding; |
| 88365 | 5178 Lisp_Object table; |
| 17052 | 5179 { |
| 88365 | 5180 int *charbuf = coding->charbuf; |
| 5181 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 5182 int c; | |
| 5183 | |
| 5184 if (coding->chars_at_source) | |
| 5185 return; | |
| 5186 | |
| 5187 while (charbuf < charbuf_end) | |
| 5188 { | |
| 5189 c = *charbuf; | |
| 5190 if (c < 0) | |
| 5191 charbuf += c; | |
| 5192 else | |
| 5193 *charbuf++ = translate_char (table, c); | |
| 5194 } | |
| 17052 | 5195 } |
| 5196 | |
| 88365 | 5197 static int |
| 5198 produce_chars (coding) | |
| 5199 struct coding_system *coding; | |
| 17052 | 5200 { |
| 88365 | 5201 unsigned char *dst = coding->destination + coding->produced; |
| 5202 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
| 5203 int produced; | |
| 5204 int produced_chars = 0; | |
| 5205 | |
| 5206 if (! coding->chars_at_source) | |
| 5207 { | |
| 5208 /* Characters are in coding->charbuf. */ | |
| 5209 int *buf = coding->charbuf; | |
| 5210 int *buf_end = buf + coding->charbuf_used; | |
| 5211 unsigned char *adjusted_dst_end; | |
| 5212 | |
| 5213 if (BUFFERP (coding->src_object) | |
| 5214 && EQ (coding->src_object, coding->dst_object)) | |
| 5215 dst_end = coding->source + coding->consumed; | |
| 5216 adjusted_dst_end = dst_end - MAX_MULTIBYTE_LENGTH; | |
| 5217 | |
| 5218 while (buf < buf_end) | |
| 5219 { | |
| 5220 int c = *buf++; | |
| 5221 | |
| 5222 if (dst >= adjusted_dst_end) | |
| 5223 { | |
| 5224 dst = alloc_destination (coding, | |
| 5225 buf_end - buf + MAX_MULTIBYTE_LENGTH, | |
| 5226 dst); | |
| 5227 dst_end = coding->destination + coding->dst_bytes; | |
| 5228 adjusted_dst_end = dst_end - MAX_MULTIBYTE_LENGTH; | |
| 5229 } | |
| 5230 if (c >= 0) | |
| 5231 { | |
| 5232 if (coding->dst_multibyte | |
| 5233 || ! CHAR_BYTE8_P (c)) | |
| 5234 CHAR_STRING_ADVANCE (c, dst); | |
| 5235 else | |
| 5236 *dst++ = CHAR_TO_BYTE8 (c); | |
| 5237 produced_chars++; | |
| 5238 } | |
| 5239 else | |
| 5240 /* This is an annotation data. */ | |
| 5241 buf -= c + 1; | |
| 5242 } | |
|
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5243 } |
|
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5244 else |
|
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
5245 { |
| 88365 | 5246 unsigned char *src = coding->source; |
| 5247 unsigned char *src_end = src + coding->src_bytes; | |
| 5248 Lisp_Object eol_type; | |
| 5249 | |
| 5250 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
| 5251 | |
| 5252 if (coding->src_multibyte != coding->dst_multibyte) | |
|
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5253 { |
| 88365 | 5254 if (coding->src_multibyte) |
|
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5255 { |
|
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5256 int multibytep = 1; |
| 88365 | 5257 int consumed_chars; |
| 5258 | |
| 5259 while (1) | |
|
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5260 { |
| 88365 | 5261 unsigned char *src_base = src; |
| 5262 int c; | |
| 5263 | |
| 5264 ONE_MORE_BYTE (c); | |
| 5265 if (c == '\r') | |
| 5266 { | |
| 5267 if (EQ (eol_type, Qdos)) | |
| 5268 { | |
| 5269 if (src < src_end | |
| 5270 && *src == '\n') | |
| 5271 c = *src++; | |
| 5272 } | |
| 5273 else if (EQ (eol_type, Qmac)) | |
| 5274 c = '\n'; | |
| 5275 } | |
| 5276 if (dst == dst_end) | |
| 5277 { | |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5278 coding->consumed = src - coding->source; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5279 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5280 if (EQ (coding->src_object, coding->dst_object)) |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5281 dst_end = src; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5282 if (dst == dst_end) |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5283 { |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5284 dst = alloc_destination (coding, src_end - src + 1, |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5285 dst); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5286 dst_end = coding->destination + coding->dst_bytes; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5287 coding_set_source (coding); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5288 src = coding->source + coding->consumed; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5289 src_end = coding->source + coding->src_bytes; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5290 } |
| 88365 | 5291 } |
| 5292 *dst++ = c; | |
| 5293 produced_chars++; | |
| 5294 } | |
| 5295 no_more_source: | |
| 5296 ; | |
| 5297 } | |
| 5298 else | |
| 5299 while (src < src_end) | |
| 5300 { | |
|
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5301 int multibytep = 1; |
| 88365 | 5302 int c = *src++; |
| 5303 | |
| 5304 if (c == '\r') | |
| 5305 { | |
| 5306 if (EQ (eol_type, Qdos)) | |
| 5307 { | |
| 5308 if (src < src_end | |
| 5309 && *src == '\n') | |
| 5310 c = *src++; | |
| 5311 } | |
| 5312 else if (EQ (eol_type, Qmac)) | |
| 5313 c = '\n'; | |
| 5314 } | |
| 5315 if (dst >= dst_end - 1) | |
| 5316 { | |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5317 coding->consumed = src - coding->source; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5318 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5319 if (EQ (coding->src_object, coding->dst_object)) |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5320 dst_end = src; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5321 if (dst >= dst_end - 1) |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5322 { |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5323 dst = alloc_destination (coding, src_end - src + 2, |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5324 dst); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5325 dst_end = coding->destination + coding->dst_bytes; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5326 coding_set_source (coding); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5327 src = coding->source + coding->consumed; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5328 src_end = coding->source + coding->src_bytes; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5329 } |
| 88365 | 5330 } |
| 5331 EMIT_ONE_BYTE (c); | |
| 5332 } | |
| 5333 } | |
| 5334 else | |
| 5335 { | |
| 5336 if (!EQ (coding->src_object, coding->dst_object)) | |
| 5337 { | |
| 5338 int require = coding->src_bytes - coding->dst_bytes; | |
| 5339 | |
| 5340 if (require > 0) | |
| 5341 { | |
| 5342 EMACS_INT offset = src - coding->source; | |
| 5343 | |
| 5344 dst = alloc_destination (coding, require, dst); | |
| 5345 coding_set_source (coding); | |
| 5346 src = coding->source + offset; | |
| 5347 src_end = coding->source + coding->src_bytes; | |
|
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5348 } |
|
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5349 } |
| 88365 | 5350 produced_chars = coding->src_chars; |
| 5351 while (src < src_end) | |
|
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5352 { |
| 88365 | 5353 int c = *src++; |
| 5354 | |
| 5355 if (c == '\r') | |
| 5356 { | |
| 5357 if (EQ (eol_type, Qdos)) | |
| 5358 { | |
| 5359 if (src < src_end | |
| 5360 && *src == '\n') | |
| 5361 c = *src++; | |
| 5362 produced_chars--; | |
| 5363 } | |
| 5364 else if (EQ (eol_type, Qmac)) | |
| 5365 c = '\n'; | |
| 5366 } | |
| 5367 *dst++ = c; | |
|
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5368 } |
|
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
5369 } |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5370 coding->consumed = coding->src_bytes; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
5371 coding->consumed_char = coding->src_chars; |
| 88365 | 5372 } |
| 5373 | |
| 5374 produced = dst - (coding->destination + coding->produced); | |
| 5375 if (BUFFERP (coding->dst_object)) | |
| 5376 insert_from_gap (produced_chars, produced); | |
| 5377 coding->produced += produced; | |
| 5378 coding->produced_char += produced_chars; | |
| 5379 return produced_chars; | |
| 5380 } | |
| 5381 | |
| 5382 /* [ -LENGTH CHAR_POS_OFFSET MASK METHOD COMP_LEN ] | |
| 5383 or | |
| 5384 [ -LENGTH CHAR_POS_OFFSET MASK METHOD COMP_LEN COMPONENTS... ] | |
| 5385 */ | |
| 5386 | |
| 5387 static INLINE void | |
| 5388 produce_composition (coding, charbuf) | |
| 5389 struct coding_system *coding; | |
| 5390 int *charbuf; | |
| 5391 { | |
| 5392 Lisp_Object buffer; | |
| 5393 int len; | |
| 5394 EMACS_INT pos; | |
| 5395 enum composition_method method; | |
| 5396 int cmp_len; | |
| 5397 Lisp_Object components; | |
| 5398 | |
| 5399 buffer = coding->dst_object; | |
| 5400 len = -charbuf[0]; | |
| 5401 pos = coding->dst_pos + charbuf[1]; | |
| 5402 method = (enum composition_method) (charbuf[3]); | |
| 5403 cmp_len = charbuf[4]; | |
| 5404 | |
| 5405 if (method == COMPOSITION_RELATIVE) | |
| 5406 components = Qnil; | |
| 5407 else | |
| 5408 { | |
| 5409 Lisp_Object args[MAX_COMPOSITION_COMPONENTS * 2 - 1]; | |
| 5410 int i; | |
| 5411 | |
| 5412 len -= 5; | |
| 5413 charbuf += 5; | |
| 5414 for (i = 0; i < len; i++) | |
| 5415 args[i] = make_number (charbuf[i]); | |
| 5416 components = (method == COMPOSITION_WITH_ALTCHARS | |
| 5417 ? Fstring (len, args) : Fvector (len, args)); | |
| 5418 } | |
| 5419 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
|
5420 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5421 |
| 88365 | 5422 static int * |
| 5423 save_composition_data (buf, buf_end, prop) | |
| 5424 int *buf, *buf_end; | |
| 5425 Lisp_Object prop; | |
| 5426 { | |
| 5427 enum composition_method method = COMPOSITION_METHOD (prop); | |
| 5428 int cmp_len = COMPOSITION_LENGTH (prop); | |
| 5429 | |
| 5430 if (buf + 4 + (MAX_COMPOSITION_COMPONENTS * 2 - 1) > buf_end) | |
| 5431 return NULL; | |
| 5432 | |
| 5433 buf[1] = CODING_ANNOTATE_COMPOSITION_MASK; | |
| 5434 buf[2] = method; | |
| 5435 buf[3] = cmp_len; | |
| 5436 | |
| 5437 if (method == COMPOSITION_RELATIVE) | |
| 5438 buf[0] = 4; | |
| 5439 else | |
| 5440 { | |
| 5441 Lisp_Object components; | |
| 5442 int len, i; | |
| 5443 | |
| 5444 components = COMPOSITION_COMPONENTS (prop); | |
| 5445 if (VECTORP (components)) | |
| 5446 { | |
| 5447 len = XVECTOR (components)->size; | |
| 5448 for (i = 0; i < len; i++) | |
| 5449 buf[4 + i] = XINT (AREF (components, i)); | |
| 5450 } | |
| 5451 else if (STRINGP (components)) | |
| 5452 { | |
| 5453 int i_byte; | |
| 5454 | |
| 5455 len = XSTRING (components)->size; | |
| 5456 i = i_byte = 0; | |
| 5457 while (i < len) | |
| 5458 FETCH_STRING_CHAR_ADVANCE (buf[4 + i], components, i, i_byte); | |
| 5459 } | |
| 5460 else if (INTEGERP (components)) | |
| 5461 { | |
| 5462 len = 1; | |
| 5463 buf[4] = XINT (components); | |
| 5464 } | |
| 5465 else if (CONSP (components)) | |
| 5466 { | |
| 5467 for (len = 0; CONSP (components); | |
| 5468 len++, components = XCDR (components)) | |
| 5469 buf[4 + len] = XINT (XCAR (components)); | |
| 5470 } | |
| 5471 else | |
| 5472 abort (); | |
| 5473 buf[0] = 4 + len; | |
| 5474 } | |
| 5475 return (buf + buf[0]); | |
| 5476 } | |
| 5477 | |
| 5478 #define CHARBUF_SIZE 0x4000 | |
| 5479 | |
| 5480 #define ALLOC_CONVERSION_WORK_AREA(coding) \ | |
| 5481 do { \ | |
| 5482 int size = CHARBUF_SIZE;; \ | |
| 5483 \ | |
| 5484 coding->charbuf = NULL; \ | |
| 5485 while (size > 1024) \ | |
| 5486 { \ | |
| 5487 coding->charbuf = (int *) alloca (sizeof (int) * size); \ | |
| 5488 if (coding->charbuf) \ | |
| 5489 break; \ | |
| 5490 size >>= 1; \ | |
| 5491 } \ | |
| 5492 if (! coding->charbuf) \ | |
| 5493 { \ | |
| 5494 coding->result = CODING_RESULT_INSUFFICIENT_MEM; \ | |
| 5495 return coding->result; \ | |
| 5496 } \ | |
| 5497 coding->charbuf_size = size; \ | |
| 5498 } while (0) | |
| 5499 | |
|
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5500 |
|
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5501 static void |
| 88365 | 5502 produce_annotation (coding) |
|
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5503 struct coding_system *coding; |
|
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5504 { |
| 88365 | 5505 int *charbuf = coding->charbuf; |
| 5506 int *charbuf_end = charbuf + coding->charbuf_used; | |
| 5507 | |
| 5508 while (charbuf < charbuf_end) | |
| 5509 { | |
| 5510 if (*charbuf >= 0) | |
| 5511 charbuf++; | |
| 5512 else | |
|
29877
7b43e1fb478a
(decode_eol_post_ccl): Special handling for undecided
Eli Zaretskii <eliz@gnu.org>
parents:
29725
diff
changeset
|
5513 { |
| 88365 | 5514 int len = -*charbuf; |
| 5515 switch (charbuf[2]) | |
|
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5516 { |
| 88365 | 5517 case CODING_ANNOTATE_COMPOSITION_MASK: |
| 5518 produce_composition (coding, charbuf); | |
| 5519 break; | |
| 5520 default: | |
| 5521 abort (); | |
|
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5522 } |
| 88365 | 5523 charbuf += len; |
|
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5524 } |
|
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5525 } |
|
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5526 } |
|
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5527 |
| 88365 | 5528 /* Decode the data at CODING->src_object into CODING->dst_object. |
| 5529 CODING->src_object is a buffer, a string, or nil. | |
| 5530 CODING->dst_object is a buffer. | |
| 5531 | |
| 5532 If CODING->src_object is a buffer, it must be the current buffer. | |
| 5533 In this case, if CODING->src_pos is positive, it is a position of | |
| 5534 the source text in the buffer, otherwise, the source text is in the | |
| 5535 gap area of the buffer, and CODING->src_pos specifies the offset of | |
| 5536 the text from GPT (which must be the same as PT). If this is the | |
| 5537 same buffer as CODING->dst_object, CODING->src_pos must be | |
| 5538 negative. | |
| 5539 | |
| 5540 If CODING->src_object is a string, CODING->src_pos in an index to | |
| 5541 that string. | |
| 5542 | |
| 5543 If CODING->src_object is nil, CODING->source must already point to | |
| 5544 the non-relocatable memory area. In this case, CODING->src_pos is | |
| 5545 an offset from CODING->source. | |
| 5546 | |
| 5547 The decoded data is inserted at the current point of the buffer | |
| 5548 CODING->dst_object. | |
| 5549 */ | |
| 5550 | |
| 5551 static int | |
| 5552 decode_coding (coding) | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5553 struct coding_system *coding; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5554 { |
| 88365 | 5555 Lisp_Object attrs; |
| 5556 | |
| 5557 if (BUFFERP (coding->src_object) | |
| 5558 && coding->src_pos > 0 | |
| 5559 && coding->src_pos < GPT | |
| 5560 && coding->src_pos + coding->src_chars > GPT) | |
| 5561 move_gap_both (coding->src_pos, coding->src_pos_byte); | |
| 5562 | |
| 5563 if (BUFFERP (coding->dst_object)) | |
| 5564 { | |
| 5565 if (current_buffer != XBUFFER (coding->dst_object)) | |
| 5566 set_buffer_internal (XBUFFER (coding->dst_object)); | |
| 5567 if (GPT != PT) | |
| 5568 move_gap_both (PT, PT_BYTE); | |
| 5569 } | |
| 5570 | |
| 5571 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
|
5572 coding->produced = coding->produced_char = 0; |
| 88365 | 5573 coding->chars_at_source = 0; |
| 5574 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
|
5575 coding->errors = 0; |
| 88365 | 5576 |
| 5577 ALLOC_CONVERSION_WORK_AREA (coding); | |
| 5578 | |
| 5579 attrs = CODING_ID_ATTRS (coding->id); | |
| 5580 | |
| 5581 do | |
| 5582 { | |
| 5583 coding_set_source (coding); | |
| 5584 coding->annotated = 0; | |
| 5585 (*(coding->decoder)) (coding); | |
| 5586 if (!NILP (CODING_ATTR_DECODE_TBL (attrs))) | |
|
89207
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5587 translate_chars (coding, CODING_ATTR_DECODE_TBL (attrs)); |
|
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5588 else if (!NILP (Vstandard_translation_table_for_decode)) |
|
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5589 translate_chars (coding, Vstandard_translation_table_for_decode); |
| 88365 | 5590 coding_set_destination (coding); |
| 5591 produce_chars (coding); | |
| 5592 if (coding->annotated) | |
| 5593 produce_annotation (coding); | |
| 5594 } | |
| 5595 while (coding->consumed < coding->src_bytes | |
| 5596 && ! coding->result); | |
| 5597 | |
| 5598 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qccl) | |
| 5599 && SYMBOLP (CODING_ID_EOL_TYPE (coding->id)) | |
| 5600 && ! EQ (CODING_ID_EOL_TYPE (coding->id), Qunix)) | |
| 5601 decode_eol (coding); | |
| 5602 | |
| 5603 coding->carryover_bytes = 0; | |
| 5604 if (coding->consumed < coding->src_bytes) | |
| 5605 { | |
| 5606 int nbytes = coding->src_bytes - coding->consumed; | |
| 5607 unsigned char *src; | |
| 5608 | |
| 5609 coding_set_source (coding); | |
| 5610 coding_set_destination (coding); | |
| 5611 src = coding->source + coding->consumed; | |
| 5612 | |
| 5613 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
|
5614 { |
| 88365 | 5615 /* Flush out unprocessed data as binary chars. We are sure |
| 5616 that the number of data is less than the size of | |
| 5617 coding->charbuf. */ | |
| 5618 int *charbuf = coding->charbuf; | |
| 5619 | |
| 5620 while (nbytes-- > 0) | |
| 5621 { | |
| 5622 int c = *src++; | |
| 5623 *charbuf++ = (c & 0x80 ? - c : c); | |
| 5624 } | |
| 5625 produce_chars (coding); | |
|
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
5626 } |
| 88365 | 5627 else |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5628 { |
| 88365 | 5629 /* Record unprocessed bytes in coding->carryover. We are |
| 5630 sure that the number of data is less than the size of | |
| 5631 coding->carryover. */ | |
| 5632 unsigned char *p = coding->carryover; | |
| 5633 | |
| 5634 coding->carryover_bytes = nbytes; | |
| 5635 while (nbytes-- > 0) | |
| 5636 *p++ = *src++; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5637 } |
| 88365 | 5638 coding->consumed = coding->src_bytes; |
| 5639 } | |
| 5640 | |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5641 return coding->result; |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5642 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5643 |
| 88365 | 5644 static void |
| 5645 consume_chars (coding) | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5646 struct coding_system *coding; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5647 { |
| 88365 | 5648 int *buf = coding->charbuf; |
| 5649 /* -1 is to compensate for CRLF. */ | |
| 5650 int *buf_end = coding->charbuf + coding->charbuf_size - 1; | |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
5651 const unsigned char *src = coding->source + coding->consumed; |
| 88365 | 5652 int pos = coding->src_pos + coding->consumed_char; |
| 5653 int end_pos = coding->src_pos + coding->src_chars; | |
| 5654 int multibytep = coding->src_multibyte; | |
| 5655 Lisp_Object eol_type; | |
| 5656 int c; | |
| 5657 int start, end, stop; | |
| 5658 Lisp_Object object, prop; | |
| 5659 | |
| 5660 eol_type = CODING_ID_EOL_TYPE (coding->id); | |
| 5661 if (VECTORP (eol_type)) | |
| 5662 eol_type = Qunix; | |
| 5663 | |
| 5664 object = coding->src_object; | |
| 5665 | |
| 5666 /* Note: composition handling is not yet implemented. */ | |
| 5667 coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
| 5668 | |
| 5669 if (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK | |
| 5670 && find_composition (pos, end_pos, &start, &end, &prop, object) | |
| 5671 && end <= end_pos | |
| 5672 && (start >= pos | |
| 5673 || (find_composition (end, end_pos, &start, &end, &prop, object) | |
| 5674 && end <= end_pos))) | |
| 5675 stop = start; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5676 else |
| 88365 | 5677 stop = end_pos; |
| 5678 | |
| 5679 while (buf < buf_end) | |
| 5680 { | |
| 5681 if (pos == stop) | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5682 { |
| 88365 | 5683 int *p; |
| 5684 | |
| 5685 if (pos == end_pos) | |
| 5686 break; | |
| 5687 p = save_composition_data (buf, buf_end, prop); | |
| 5688 if (p == NULL) | |
| 5689 break; | |
| 5690 buf = p; | |
| 5691 if (find_composition (end, end_pos, &start, &end, &prop, object) | |
| 5692 && end <= end_pos) | |
| 5693 stop = start; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5694 else |
| 88365 | 5695 stop = end_pos; |
| 5696 } | |
| 5697 | |
| 5698 if (! multibytep) | |
| 5699 c = *src++; | |
| 5700 else | |
| 5701 c = STRING_CHAR_ADVANCE (src); | |
| 5702 if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) | |
| 5703 c = '\n'; | |
| 5704 if (! EQ (eol_type, Qunix)) | |
| 5705 { | |
| 5706 if (c == '\n') | |
| 5707 { | |
| 5708 if (EQ (eol_type, Qdos)) | |
| 5709 *buf++ = '\r'; | |
| 5710 else | |
| 5711 c = '\r'; | |
| 5712 } | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5713 } |
| 88365 | 5714 *buf++ = c; |
| 5715 pos++; | |
| 5716 } | |
| 5717 | |
| 5718 coding->consumed = src - coding->source; | |
| 5719 coding->consumed_char = pos - coding->src_pos; | |
| 5720 coding->charbuf_used = buf - coding->charbuf; | |
| 5721 coding->chars_at_source = 0; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5722 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5723 |
| 88365 | 5724 |
| 5725 /* Encode the text at CODING->src_object into CODING->dst_object. | |
| 5726 CODING->src_object is a buffer or a string. | |
| 5727 CODING->dst_object is a buffer or nil. | |
| 5728 | |
| 5729 If CODING->src_object is a buffer, it must be the current buffer. | |
| 5730 In this case, if CODING->src_pos is positive, it is a position of | |
| 5731 the source text in the buffer, otherwise. the source text is in the | |
| 5732 gap area of the buffer, and coding->src_pos specifies the offset of | |
| 5733 the text from GPT (which must be the same as PT). If this is the | |
| 5734 same buffer as CODING->dst_object, CODING->src_pos must be | |
| 5735 negative and CODING should not have `pre-write-conversion'. | |
| 5736 | |
| 5737 If CODING->src_object is a string, CODING should not have | |
| 5738 `pre-write-conversion'. | |
| 5739 | |
| 5740 If CODING->dst_object is a buffer, the encoded data is inserted at | |
| 5741 the current point of that buffer. | |
| 5742 | |
| 5743 If CODING->dst_object is nil, the encoded data is placed at the | |
| 5744 memory area specified by CODING->destination. */ | |
| 5745 | |
| 5746 static int | |
| 5747 encode_coding (coding) | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5748 struct coding_system *coding; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5749 { |
| 88365 | 5750 Lisp_Object attrs; |
| 5751 | |
| 5752 attrs = CODING_ID_ATTRS (coding->id); | |
| 5753 | |
| 5754 if (BUFFERP (coding->dst_object)) | |
| 5755 { | |
| 5756 set_buffer_internal (XBUFFER (coding->dst_object)); | |
| 5757 coding->dst_multibyte | |
| 5758 = ! NILP (current_buffer->enable_multibyte_characters); | |
| 5759 } | |
| 5760 | |
| 5761 coding->consumed = coding->consumed_char = 0; | |
| 5762 coding->produced = coding->produced_char = 0; | |
| 5763 coding->result = CODING_RESULT_SUCCESS; | |
| 5764 coding->errors = 0; | |
| 5765 | |
| 5766 ALLOC_CONVERSION_WORK_AREA (coding); | |
| 5767 | |
| 5768 do { | |
| 5769 coding_set_source (coding); | |
| 5770 consume_chars (coding); | |
| 5771 | |
| 5772 if (!NILP (CODING_ATTR_ENCODE_TBL (attrs))) | |
|
89207
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5773 translate_chars (coding, CODING_ATTR_ENCODE_TBL (attrs)); |
|
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5774 else if (!NILP (Vstandard_translation_table_for_encode)) |
|
c232917f49f7
(decode_coding): Fix args to translate_chars. Pay
Kenichi Handa <handa@m17n.org>
parents:
89193
diff
changeset
|
5775 translate_chars (coding, Vstandard_translation_table_for_encode); |
| 88365 | 5776 |
| 5777 coding_set_destination (coding); | |
| 5778 (*(coding->encoder)) (coding); | |
| 5779 } while (coding->consumed_char < coding->src_chars); | |
| 5780 | |
| 5781 if (BUFFERP (coding->dst_object)) | |
| 5782 insert_from_gap (coding->produced_char, coding->produced); | |
| 5783 | |
| 5784 return (coding->result); | |
| 5785 } | |
| 5786 | |
| 5787 /* Work buffer */ | |
| 5788 | |
| 5789 /* List of currently used working buffer. */ | |
| 5790 Lisp_Object Vcode_conversion_work_buf_list; | |
| 5791 | |
| 5792 /* A working buffer used by the top level conversion. */ | |
| 5793 Lisp_Object Vcode_conversion_reused_work_buf; | |
| 5794 | |
| 5795 | |
| 5796 /* Return a working buffer that can be freely used by the following | |
| 5797 code conversion. MULTIBYTEP specifies the multibyteness of the | |
| 5798 buffer. */ | |
| 5799 | |
| 5800 Lisp_Object | |
| 5801 make_conversion_work_buffer (multibytep) | |
| 5802 int multibytep; | |
| 5803 { | |
| 5804 struct buffer *current = current_buffer; | |
| 5805 Lisp_Object buf; | |
| 5806 | |
| 5807 if (NILP (Vcode_conversion_work_buf_list)) | |
| 5808 { | |
| 5809 if (NILP (Vcode_conversion_reused_work_buf)) | |
| 5810 Vcode_conversion_reused_work_buf | |
| 5811 = Fget_buffer_create (build_string (" *code-conversion-work*")); | |
| 5812 Vcode_conversion_work_buf_list | |
| 5813 = 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
|
5814 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5815 else |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5816 { |
| 88856 | 5817 int depth = XINT (Flength (Vcode_conversion_work_buf_list)); |
| 88365 | 5818 char str[128]; |
| 5819 | |
| 5820 sprintf (str, " *code-conversion-work*<%d>", depth); | |
| 5821 Vcode_conversion_work_buf_list | |
| 5822 = Fcons (Fget_buffer_create (build_string (str)), | |
| 5823 Vcode_conversion_work_buf_list); | |
| 5824 } | |
| 5825 | |
| 5826 buf = XCAR (Vcode_conversion_work_buf_list); | |
| 5827 set_buffer_internal (XBUFFER (buf)); | |
| 5828 current_buffer->undo_list = Qt; | |
| 5829 Ferase_buffer (); | |
|
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5830 Fset_buffer_multibyte (multibytep ? Qt : Qnil, Qnil); |
| 88365 | 5831 set_buffer_internal (current); |
| 5832 return buf; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5833 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5834 |
| 88365 | 5835 static struct coding_system *saved_coding; |
| 5836 | |
| 5837 Lisp_Object | |
| 5838 code_conversion_restore (info) | |
| 5839 Lisp_Object info; | |
|
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5840 { |
| 88856 | 5841 int depth = XINT (Flength (Vcode_conversion_work_buf_list)); |
| 88365 | 5842 Lisp_Object buf; |
| 5843 | |
| 5844 if (depth > 0) | |
| 5845 { | |
| 5846 buf = XCAR (Vcode_conversion_work_buf_list); | |
| 5847 Vcode_conversion_work_buf_list = XCDR (Vcode_conversion_work_buf_list); | |
| 5848 if (depth > 1 && !NILP (Fbuffer_live_p (buf))) | |
| 5849 Fkill_buffer (buf); | |
| 5850 } | |
| 5851 | |
| 88856 | 5852 if (EQ (saved_coding->dst_object, Qt) |
| 88365 | 5853 && saved_coding->destination) |
| 5854 xfree (saved_coding->destination); | |
| 5855 | |
| 5856 return save_excursion_restore (info); | |
|
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5857 } |
|
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
5858 |
| 88365 | 5859 |
| 5860 int | |
| 5861 decode_coding_gap (coding, chars, bytes) | |
| 26847 | 5862 struct coding_system *coding; |
| 88365 | 5863 EMACS_INT chars, bytes; |
| 5864 { | |
| 5865 int count = specpdl_ptr - specpdl; | |
| 5866 | |
| 5867 saved_coding = coding; | |
| 5868 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
| 5869 | |
| 5870 coding->src_object = Fcurrent_buffer (); | |
| 5871 coding->src_chars = chars; | |
| 5872 coding->src_bytes = bytes; | |
| 5873 coding->src_pos = -chars; | |
| 5874 coding->src_pos_byte = -bytes; | |
| 5875 coding->src_multibyte = chars < bytes; | |
| 5876 coding->dst_object = coding->src_object; | |
| 5877 coding->dst_pos = PT; | |
| 5878 coding->dst_pos_byte = PT_BYTE; | |
|
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
5879 coding->dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
| 88365 | 5880 |
| 5881 if (CODING_REQUIRE_DETECTION (coding)) | |
| 5882 detect_coding (coding); | |
| 5883 | |
| 5884 decode_coding (coding); | |
| 5885 | |
| 5886 unbind_to (count, Qnil); | |
| 5887 return coding->result; | |
| 5888 } | |
| 5889 | |
| 5890 int | |
| 5891 encode_coding_gap (coding, chars, bytes) | |
| 5892 struct coding_system *coding; | |
| 5893 EMACS_INT chars, bytes; | |
| 26847 | 5894 { |
| 88365 | 5895 int count = specpdl_ptr - specpdl; |
| 5896 Lisp_Object buffer; | |
| 5897 | |
| 5898 saved_coding = coding; | |
| 5899 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
| 5900 | |
| 5901 buffer = Fcurrent_buffer (); | |
| 5902 coding->src_object = buffer; | |
| 5903 coding->src_chars = chars; | |
| 5904 coding->src_bytes = bytes; | |
| 5905 coding->src_pos = -chars; | |
| 5906 coding->src_pos_byte = -bytes; | |
| 5907 coding->src_multibyte = chars < bytes; | |
| 5908 coding->dst_object = coding->src_object; | |
| 5909 coding->dst_pos = PT; | |
| 5910 coding->dst_pos_byte = PT_BYTE; | |
| 5911 | |
| 5912 encode_coding (coding); | |
| 5913 | |
| 5914 unbind_to (count, Qnil); | |
| 5915 return coding->result; | |
| 26847 | 5916 } |
| 5917 | |
| 88365 | 5918 |
| 5919 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in | |
| 5920 SRC_OBJECT into DST_OBJECT by coding context CODING. | |
| 5921 | |
| 5922 SRC_OBJECT is a buffer, a string, or Qnil. | |
| 5923 | |
| 5924 If it is a buffer, the text is at point of the buffer. FROM and TO | |
| 5925 are positions in the buffer. | |
| 5926 | |
| 5927 If it is a string, the text is at the beginning of the string. | |
| 5928 FROM and TO are indices to the string. | |
| 5929 | |
| 5930 If it is nil, the text is at coding->source. FROM and TO are | |
| 5931 indices to coding->source. | |
| 5932 | |
| 5933 DST_OBJECT is a buffer, Qt, or Qnil. | |
| 5934 | |
| 5935 If it is a buffer, the decoded text is inserted at point of the | |
| 5936 buffer. If the buffer is the same as SRC_OBJECT, the source text | |
| 5937 is deleted. | |
| 5938 | |
| 5939 If it is Qt, a string is made from the decoded text, and | |
| 5940 set in CODING->dst_object. | |
| 5941 | |
| 5942 If it is Qnil, the decoded text is stored at CODING->destination. | |
| 5943 The called must allocate CODING->dst_bytes bytes at | |
| 5944 CODING->destination by xmalloc. If the decoded text is longer than | |
| 5945 CODING->dst_bytes, CODING->destination is relocated by xrealloc. | |
| 5946 */ | |
| 26847 | 5947 |
|
29275
b4ea9178e480
(DECODE_COMPOSITION_START): If coding->cmp_data is not
Kenichi Handa <handa@m17n.org>
parents:
29247
diff
changeset
|
5948 void |
| 88365 | 5949 decode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
| 5950 dst_object) | |
| 26847 | 5951 struct coding_system *coding; |
| 88365 | 5952 Lisp_Object src_object; |
| 5953 EMACS_INT from, from_byte, to, to_byte; | |
| 5954 Lisp_Object dst_object; | |
| 26847 | 5955 { |
| 88365 | 5956 int count = specpdl_ptr - specpdl; |
| 5957 unsigned char *destination; | |
| 5958 EMACS_INT dst_bytes; | |
| 5959 EMACS_INT chars = to - from; | |
| 5960 EMACS_INT bytes = to_byte - from_byte; | |
| 5961 Lisp_Object attrs; | |
| 5962 | |
| 5963 saved_coding = coding; | |
| 5964 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
| 5965 | |
| 5966 if (NILP (dst_object)) | |
| 5967 { | |
| 5968 destination = coding->destination; | |
| 5969 dst_bytes = coding->dst_bytes; | |
| 5970 } | |
| 5971 | |
| 5972 coding->src_object = src_object; | |
| 5973 coding->src_chars = chars; | |
| 5974 coding->src_bytes = bytes; | |
| 5975 coding->src_multibyte = chars < bytes; | |
| 5976 | |
| 5977 if (STRINGP (src_object)) | |
| 5978 { | |
| 5979 coding->src_pos = from; | |
| 5980 coding->src_pos_byte = from_byte; | |
| 5981 } | |
| 5982 else if (BUFFERP (src_object)) | |
| 5983 { | |
| 5984 set_buffer_internal (XBUFFER (src_object)); | |
| 5985 if (from != GPT) | |
| 5986 move_gap_both (from, from_byte); | |
| 5987 if (EQ (src_object, dst_object)) | |
| 26847 | 5988 { |
| 88365 | 5989 TEMP_SET_PT_BOTH (from, from_byte); |
| 5990 del_range_both (from, from_byte, to, to_byte, 1); | |
| 5991 coding->src_pos = -chars; | |
| 5992 coding->src_pos_byte = -bytes; | |
|
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5993 } |
|
42661
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
5994 else |
|
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
5995 { |
| 88365 | 5996 coding->src_pos = from; |
| 5997 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
|
5998 } |
| 88365 | 5999 } |
| 6000 | |
| 6001 if (CODING_REQUIRE_DETECTION (coding)) | |
| 6002 detect_coding (coding); | |
| 6003 attrs = CODING_ID_ATTRS (coding->id); | |
| 6004 | |
| 6005 if (! NILP (CODING_ATTR_POST_READ (attrs)) | |
| 6006 || EQ (dst_object, Qt)) | |
| 6007 { | |
| 6008 coding->dst_object = make_conversion_work_buffer (1); | |
| 6009 coding->dst_pos = BEG; | |
| 6010 coding->dst_pos_byte = BEG_BYTE; | |
| 6011 coding->dst_multibyte = 1; | |
| 6012 } | |
| 6013 else if (BUFFERP (dst_object)) | |
| 6014 { | |
| 6015 coding->dst_object = dst_object; | |
| 6016 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); | |
| 6017 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); | |
| 6018 coding->dst_multibyte | |
| 6019 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
| 6020 } | |
| 6021 else | |
| 6022 { | |
| 6023 coding->dst_object = Qnil; | |
| 6024 coding->dst_multibyte = 1; | |
| 6025 } | |
| 6026 | |
| 6027 decode_coding (coding); | |
| 6028 | |
| 6029 if (BUFFERP (coding->dst_object)) | |
| 6030 set_buffer_internal (XBUFFER (coding->dst_object)); | |
| 6031 | |
| 6032 if (! NILP (CODING_ATTR_POST_READ (attrs))) | |
| 6033 { | |
| 6034 struct gcpro gcpro1, gcpro2; | |
| 6035 EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; | |
| 6036 Lisp_Object val; | |
| 6037 | |
|
88506
a7f0d13affa5
(decode_coding_object): Move point to coding->dst_pos before
Kenichi Handa <handa@m17n.org>
parents:
88497
diff
changeset
|
6038 TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); |
| 88365 | 6039 GCPRO2 (coding->src_object, coding->dst_object); |
| 6040 val = call1 (CODING_ATTR_POST_READ (attrs), | |
| 6041 make_number (coding->produced_char)); | |
| 6042 UNGCPRO; | |
| 6043 CHECK_NATNUM (val); | |
| 6044 coding->produced_char += Z - prev_Z; | |
| 6045 coding->produced += Z_BYTE - prev_Z_BYTE; | |
| 6046 } | |
| 6047 | |
| 6048 if (EQ (dst_object, Qt)) | |
| 6049 { | |
| 6050 coding->dst_object = Fbuffer_string (); | |
| 6051 } | |
| 6052 else if (NILP (dst_object) && BUFFERP (coding->dst_object)) | |
| 6053 { | |
| 6054 set_buffer_internal (XBUFFER (coding->dst_object)); | |
| 6055 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
|
6056 { |
| 88365 | 6057 destination |
| 6058 = (unsigned char *) xrealloc (destination, coding->produced); | |
| 6059 if (! destination) | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6060 { |
| 88365 | 6061 coding->result = CODING_RESULT_INSUFFICIENT_DST; |
| 6062 unbind_to (count, Qnil); | |
| 6063 return; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6064 } |
| 88365 | 6065 if (BEGV < GPT && GPT < BEGV + coding->produced_char) |
| 6066 move_gap_both (BEGV, BEGV_BYTE); | |
| 6067 bcopy (BEGV_ADDR, destination, coding->produced); | |
| 6068 coding->destination = destination; | |
|
23279
ca159e828a68
(ccl_coding_driver): If ccl_driver is interrupted by a
Kenichi Handa <handa@m17n.org>
parents:
23258
diff
changeset
|
6069 } |
| 88365 | 6070 } |
| 6071 | |
| 6072 unbind_to (count, Qnil); | |
| 6073 } | |
| 6074 | |
| 6075 | |
| 6076 void | |
| 6077 encode_coding_object (coding, src_object, from, from_byte, to, to_byte, | |
| 6078 dst_object) | |
| 6079 struct coding_system *coding; | |
| 6080 Lisp_Object src_object; | |
| 6081 EMACS_INT from, from_byte, to, to_byte; | |
| 6082 Lisp_Object dst_object; | |
| 6083 { | |
| 6084 int count = specpdl_ptr - specpdl; | |
| 6085 EMACS_INT chars = to - from; | |
| 6086 EMACS_INT bytes = to_byte - from_byte; | |
| 6087 Lisp_Object attrs; | |
| 6088 | |
| 6089 saved_coding = coding; | |
| 6090 record_unwind_protect (code_conversion_restore, save_excursion_save ()); | |
| 6091 | |
| 6092 coding->src_object = src_object; | |
| 6093 coding->src_chars = chars; | |
| 6094 coding->src_bytes = bytes; | |
| 6095 coding->src_multibyte = chars < bytes; | |
| 6096 | |
| 6097 attrs = CODING_ID_ATTRS (coding->id); | |
| 6098 | |
| 6099 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
|
6100 { |
| 88365 | 6101 coding->src_object = make_conversion_work_buffer (coding->src_multibyte); |
| 6102 set_buffer_internal (XBUFFER (coding->src_object)); | |
| 6103 if (STRINGP (src_object)) | |
| 6104 insert_from_string (src_object, from, from_byte, chars, bytes, 0); | |
| 6105 else if (BUFFERP (src_object)) | |
| 6106 insert_from_buffer (XBUFFER (src_object), from, chars, 0); | |
| 6107 else | |
| 6108 insert_1_both (coding->source + from, chars, bytes, 0, 0, 0); | |
| 6109 | |
| 6110 if (EQ (src_object, dst_object)) | |
| 6111 { | |
| 6112 set_buffer_internal (XBUFFER (src_object)); | |
| 6113 del_range_both (from, from_byte, to, to_byte, 1); | |
| 6114 set_buffer_internal (XBUFFER (coding->src_object)); | |
| 6115 } | |
| 6116 | |
|
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6117 call2 (CODING_ATTR_PRE_WRITE (attrs), |
|
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6118 make_number (BEG), make_number (Z)); |
|
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6119 coding->src_object = Fcurrent_buffer (); |
| 88365 | 6120 if (BEG != GPT) |
| 6121 move_gap_both (BEG, BEG_BYTE); | |
| 6122 coding->src_chars = Z - BEG; | |
| 6123 coding->src_bytes = Z_BYTE - BEG_BYTE; | |
| 6124 coding->src_pos = BEG; | |
| 6125 coding->src_pos_byte = BEG_BYTE; | |
| 6126 coding->src_multibyte = Z < Z_BYTE; | |
| 6127 } | |
| 6128 else if (STRINGP (src_object)) | |
| 6129 { | |
| 6130 coding->src_pos = from; | |
| 6131 coding->src_pos_byte = from_byte; | |
| 6132 } | |
| 6133 else if (BUFFERP (src_object)) | |
| 6134 { | |
| 6135 set_buffer_internal (XBUFFER (src_object)); | |
| 6136 if (from != GPT) | |
| 6137 move_gap_both (from, from_byte); | |
| 6138 if (EQ (src_object, dst_object)) | |
| 6139 { | |
| 6140 del_range_both (from, from_byte, to, to_byte, 1); | |
| 6141 coding->src_pos = -chars; | |
| 6142 coding->src_pos_byte = -bytes; | |
| 6143 } | |
|
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
6144 else |
| 88365 | 6145 { |
| 6146 coding->src_pos = from; | |
| 6147 coding->src_pos_byte = from_byte; | |
| 6148 } | |
| 6149 } | |
| 6150 | |
| 6151 if (BUFFERP (dst_object)) | |
| 6152 { | |
| 6153 coding->dst_object = dst_object; | |
|
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6154 if (EQ (src_object, dst_object)) |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6155 { |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6156 coding->dst_pos = from; |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6157 coding->dst_pos_byte = from_byte; |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6158 } |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6159 else |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6160 { |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6161 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6162 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); |
|
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
6163 } |
| 88365 | 6164 coding->dst_multibyte |
| 6165 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
| 6166 } | |
| 6167 else if (EQ (dst_object, Qt)) | |
| 6168 { | |
| 6169 coding->dst_object = Qnil; | |
| 6170 coding->dst_bytes = coding->src_chars; | |
|
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6171 if (coding->dst_bytes == 0) |
|
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6172 coding->dst_bytes = 1; |
|
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
6173 coding->destination = (unsigned char *) xmalloc (coding->dst_bytes); |
| 88365 | 6174 coding->dst_multibyte = 0; |
| 6175 } | |
| 6176 else | |
| 6177 { | |
| 6178 coding->dst_object = Qnil; | |
| 6179 coding->dst_multibyte = 0; | |
| 6180 } | |
| 6181 | |
| 6182 encode_coding (coding); | |
| 6183 | |
| 6184 if (EQ (dst_object, Qt)) | |
| 6185 { | |
| 6186 if (BUFFERP (coding->dst_object)) | |
| 6187 coding->dst_object = Fbuffer_string (); | |
| 6188 else | |
| 6189 { | |
| 6190 coding->dst_object | |
| 6191 = make_unibyte_string ((char *) coding->destination, | |
| 6192 coding->produced); | |
| 6193 xfree (coding->destination); | |
| 6194 } | |
| 6195 } | |
| 6196 | |
| 6197 unbind_to (count, Qnil); | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6198 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6199 |
|
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
6200 |
|
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
6201 Lisp_Object |
| 88365 | 6202 preferred_coding_system () |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6203 { |
| 88365 | 6204 int id = coding_categories[coding_priorities[0]].id; |
| 6205 | |
| 6206 return CODING_ID_NAME (id); | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6207 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6208 |
| 17052 | 6209 |
| 6210 #ifdef emacs | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6211 /*** 8. Emacs Lisp library functions ***/ |
| 17052 | 6212 |
| 6213 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
|
6214 doc: /* Return t if OBJECT is nil or a coding-system. |
| 88365 | 6215 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
|
6216 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
|
6217 (obj) |
| 17052 | 6218 Lisp_Object obj; |
| 6219 { | |
| 88365 | 6220 return ((NILP (obj) || CODING_SYSTEM_P (obj)) ? Qt : Qnil); |
| 17052 | 6221 } |
| 6222 | |
|
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6223 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
|
6224 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
|
6225 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
|
6226 (prompt) |
| 17052 | 6227 Lisp_Object prompt; |
| 6228 { | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6229 Lisp_Object val; |
|
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6230 do |
|
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6231 { |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6232 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
|
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6233 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
|
6234 } |
|
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
6235 while (XSTRING (val)->size == 0); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6236 return (Fintern (val, Qnil)); |
| 17052 | 6237 } |
| 6238 | |
|
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6239 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
|
6240 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
|
6241 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
|
6242 (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
|
6243 Lisp_Object prompt, default_coding_system; |
| 17052 | 6244 { |
|
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
6245 Lisp_Object val; |
|
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
6246 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
|
6247 XSETSTRING (default_coding_system, XSYMBOL (default_coding_system)->name); |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
6248 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
|
6249 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
|
6250 default_coding_system, Qnil); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6251 return (XSTRING (val)->size == 0 ? Qnil : Fintern (val, Qnil)); |
| 17052 | 6252 } |
| 6253 | |
| 6254 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
| 6255 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
|
6256 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
|
6257 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
|
6258 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
|
6259 The value of property should be a vector of length 5. */) |
| 88365 | 6260 (coding_system) |
| 17052 | 6261 Lisp_Object coding_system; |
| 6262 { | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6263 CHECK_SYMBOL (coding_system); |
| 17052 | 6264 if (!NILP (Fcoding_system_p (coding_system))) |
| 6265 return coding_system; | |
| 6266 while (1) | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
6267 Fsignal (Qcoding_system_error, Fcons (coding_system, Qnil)); |
| 17052 | 6268 } |
| 88365 | 6269 |
|
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6270 |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6271 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6272 HIGHEST is nonzero, return the coding system of the highest |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6273 priority among the detected coding systems. Otherwize return a |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6274 list of detected coding systems sorted by their priorities. If |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6275 MULTIBYTEP is nonzero, it is assumed that the bytes are in correct |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6276 multibyte form but contains only ASCII and eight-bit chars. |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6277 Otherwise, the bytes are raw bytes. |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6278 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6279 CODING-SYSTEM controls the detection as below: |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6280 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6281 If it is nil, detect both text-format and eol-format. If the |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6282 text-format part of CODING-SYSTEM is already specified |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6283 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6284 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'), |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6285 detect only text-format. */ |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6286 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6287 Lisp_Object |
| 88365 | 6288 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
|
6289 unsigned char *src; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6290 int src_bytes, highest; |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6291 int multibytep; |
| 88365 | 6292 Lisp_Object coding_system; |
| 17052 | 6293 { |
| 88365 | 6294 unsigned char *src_end = src + src_bytes; |
| 6295 int mask = CATEGORY_MASK_ANY; | |
| 6296 int detected = 0; | |
| 6297 int c, i; | |
| 6298 Lisp_Object attrs, eol_type; | |
| 6299 Lisp_Object val; | |
| 6300 struct coding_system coding; | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6301 int id; |
| 88365 | 6302 |
| 6303 if (NILP (coding_system)) | |
| 6304 coding_system = Qundecided; | |
| 6305 setup_coding_system (coding_system, &coding); | |
| 6306 attrs = CODING_ID_ATTRS (coding.id); | |
| 6307 eol_type = CODING_ID_EOL_TYPE (coding.id); | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6308 coding_system = CODING_ATTR_BASE_NAME (attrs); |
| 88365 | 6309 |
| 6310 coding.source = src; | |
| 6311 coding.src_bytes = src_bytes; | |
| 6312 coding.src_multibyte = multibytep; | |
| 6313 coding.consumed = 0; | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6314 coding.mode |= CODING_MODE_LAST_BLOCK; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6315 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6316 /* At first, detect text-format if necessary. */ |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6317 if (XINT (CODING_ATTR_CATEGORY (attrs)) == coding_category_undecided) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6318 { |
| 88365 | 6319 for (; src < src_end; src++) |
| 17052 | 6320 { |
| 88365 | 6321 c = *src; |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6322 if (c & 0x80 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6323 || (c < 0x20 && (c == ISO_CODE_ESC |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6324 || c == ISO_CODE_SI |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6325 || c == ISO_CODE_SO |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6326 /* Most UTF-16 text contains '\0'. */ |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6327 || !c))) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6328 break; |
| 17052 | 6329 } |
| 88365 | 6330 coding.head_ascii = src - coding.source; |
| 6331 | |
| 6332 if (src < src_end) | |
| 6333 for (i = 0; i < coding_category_raw_text; i++) | |
| 6334 { | |
| 6335 enum coding_category category = coding_priorities[i]; | |
| 6336 struct coding_system *this = coding_categories + category; | |
| 6337 | |
| 6338 if (this->id < 0) | |
| 6339 { | |
| 6340 /* No coding system of this category is defined. */ | |
| 6341 mask &= ~(1 << category); | |
| 6342 } | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6343 else if (category >= coding_category_raw_text |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6344 || detected & (1 << category)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6345 continue; |
| 88365 | 6346 else |
| 6347 { | |
| 6348 detected |= detected_mask[category]; | |
| 6349 if ((*(coding_categories[category].detector)) (&coding, &mask) | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6350 && highest |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6351 && (mask & (1 << category))) |
| 88365 | 6352 { |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6353 mask = 1 << category; |
| 88365 | 6354 break; |
| 6355 } | |
| 6356 } | |
| 6357 } | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6358 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6359 if (!mask) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6360 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6361 id = coding_categories[coding_category_raw_text].id; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6362 val = Fcons (make_number (id), Qnil); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6363 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6364 else if (mask == CATEGORY_MASK_ANY) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6365 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6366 id = coding_categories[coding_category_undecided].id; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6367 val = Fcons (make_number (id), Qnil); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6368 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6369 else if (highest) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6370 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6371 for (i = 0; i < coding_category_raw_text; i++) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6372 if (mask & (1 << coding_priorities[i])) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6373 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6374 id = coding_categories[coding_priorities[i]].id; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6375 val = Fcons (make_number (id), Qnil); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6376 break; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6377 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6378 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6379 else |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6380 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6381 val = Qnil; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6382 for (i = coding_category_raw_text - 1; i >= 0; i--) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6383 if (mask & (1 << coding_priorities[i])) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6384 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6385 id = coding_categories[coding_priorities[i]].id; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6386 val = Fcons (make_number (id), val); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6387 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6388 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6389 } |
| 88365 | 6390 else |
| 6391 { | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6392 mask = 1 << XINT (CODING_ATTR_CATEGORY (attrs)); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6393 val = Fcons (make_number (coding.id), Qnil); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6394 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6395 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6396 /* Then, detect eol-format if necessary. */ |
| 88365 | 6397 { |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6398 int normal_eol = -1, utf_16_be_eol = -1, utf_16_le_eol; |
| 88365 | 6399 Lisp_Object tail; |
| 6400 | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6401 if (VECTORP (eol_type)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6402 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6403 if (mask & ~CATEGORY_MASK_UTF_16) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6404 normal_eol = detect_eol (coding.source, src_bytes, |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6405 coding_category_raw_text); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6406 if (mask & (CATEGORY_MASK_UTF_16_BE | CATEGORY_MASK_UTF_16_BE_NOSIG)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6407 utf_16_be_eol = detect_eol (coding.source, src_bytes, |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6408 coding_category_utf_16_be); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6409 if (mask & (CATEGORY_MASK_UTF_16_LE | CATEGORY_MASK_UTF_16_LE_NOSIG)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6410 utf_16_le_eol = detect_eol (coding.source, src_bytes, |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6411 coding_category_utf_16_le); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6412 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6413 else |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6414 { |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6415 if (EQ (eol_type, Qunix)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6416 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_LF; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6417 else if (EQ (eol_type, Qdos)) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6418 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CRLF; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6419 else |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6420 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CR; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6421 } |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6422 |
| 88365 | 6423 for (tail = val; CONSP (tail); tail = XCDR (tail)) |
| 6424 { | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6425 enum coding_category category; |
| 88365 | 6426 int this_eol; |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6427 |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6428 id = XINT (XCAR (tail)); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6429 attrs = CODING_ID_ATTRS (id); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6430 category = XINT (CODING_ATTR_CATEGORY (attrs)); |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6431 eol_type = CODING_ID_EOL_TYPE (id); |
| 88365 | 6432 if (VECTORP (eol_type)) |
| 6433 { | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6434 if (category == coding_category_utf_16_be |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6435 || category == coding_category_utf_16_be_nosig) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6436 this_eol = utf_16_be_eol; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6437 else if (category == coding_category_utf_16_le |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6438 || category == coding_category_utf_16_le_nosig) |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6439 this_eol = utf_16_le_eol; |
| 88365 | 6440 else |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6441 this_eol = normal_eol; |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6442 |
| 88365 | 6443 if (this_eol == EOL_SEEN_LF) |
| 6444 XSETCAR (tail, AREF (eol_type, 0)); | |
| 6445 else if (this_eol == EOL_SEEN_CRLF) | |
| 6446 XSETCAR (tail, AREF (eol_type, 1)); | |
| 6447 else if (this_eol == EOL_SEEN_CR) | |
| 6448 XSETCAR (tail, AREF (eol_type, 2)); | |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6449 else |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6450 XSETCAR (tail, CODING_ID_NAME (id)); |
| 88365 | 6451 } |
|
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6452 else |
|
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6453 XSETCAR (tail, CODING_ID_NAME (id)); |
| 88365 | 6454 } |
| 6455 } | |
| 6456 | |
|
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
6457 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
|
6458 } |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6459 |
| 88365 | 6460 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6461 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
|
6462 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
|
6463 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
|
6464 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
|
6465 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6466 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
|
6467 `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
|
6468 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
|
6469 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6470 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
|
6471 highest priority. */) |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6472 (start, end, highest) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6473 Lisp_Object start, end, highest; |
| 17052 | 6474 { |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6475 int from, to; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6476 int from_byte, to_byte; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6477 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6478 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
|
6479 CHECK_NUMBER_COERCE_MARKER (end); |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6480 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6481 validate_region (&start, &end); |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6482 from = XINT (start), to = XINT (end); |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6483 from_byte = CHAR_TO_BYTE (from); |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6484 to_byte = CHAR_TO_BYTE (to); |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6485 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6486 if (from < GPT && to >= GPT) |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6487 move_gap_both (to, to_byte); |
| 88365 | 6488 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6489 return detect_coding_system (BYTE_POS_ADDR (from_byte), |
| 88365 | 6490 to_byte - from_byte, |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6491 !NILP (highest), |
|
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6492 !NILP (current_buffer |
| 88365 | 6493 ->enable_multibyte_characters), |
| 6494 Qnil); | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6495 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6496 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6497 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
|
6498 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
|
6499 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
|
6500 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
|
6501 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6502 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
|
6503 `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
|
6504 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
|
6505 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6506 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
|
6507 highest priority. */) |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6508 (string, highest) |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6509 Lisp_Object string, highest; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6510 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6511 CHECK_STRING (string); |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6512 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6513 return detect_coding_system (XSTRING (string)->data, |
| 88365 | 6514 STRING_BYTES (XSTRING (string)), |
|
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
6515 !NILP (highest), |
| 88365 | 6516 STRING_MULTIBYTE (string), |
| 6517 Qnil); | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6518 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6519 |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6520 |
| 88365 | 6521 static INLINE int |
| 6522 char_encodable_p (c, attrs) | |
| 6523 int c; | |
| 6524 Lisp_Object attrs; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6525 { |
| 88365 | 6526 Lisp_Object tail; |
| 6527 struct charset *charset; | |
| 6528 | |
| 6529 for (tail = CODING_ATTR_CHARSET_LIST (attrs); | |
| 6530 CONSP (tail); tail = XCDR (tail)) | |
| 6531 { | |
| 6532 charset = CHARSET_FROM_ID (XINT (XCAR (tail))); | |
| 6533 if (CHAR_CHARSET_P (c, charset)) | |
| 6534 break; | |
| 6535 } | |
| 6536 return (! NILP (tail)); | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6537 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6538 |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6539 |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6540 /* Return a list of coding systems that safely encode the text between |
| 88365 | 6541 START and END. If EXCLUDE is non-nil, it is a list of coding |
| 6542 systems not to check. The returned list doesn't contain any such | |
|
88889
4548f224c603
(Ffind_coding_systems_region_internal): Detect an
Kenichi Handa <handa@m17n.org>
parents:
88876
diff
changeset
|
6543 coding systems. In any case, if the text contains only ASCII or is |
| 88365 | 6544 unibyte, return t. */ |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6545 |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6546 DEFUN ("find-coding-systems-region-internal", |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6547 Ffind_coding_systems_region_internal, |
| 88365 | 6548 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
|
6549 doc: /* Internal use only. */) |
| 88365 | 6550 (start, end, exclude) |
| 6551 Lisp_Object start, end, exclude; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6552 { |
| 88365 | 6553 Lisp_Object coding_attrs_list, safe_codings; |
| 6554 EMACS_INT start_byte, end_byte; | |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
6555 const unsigned char *p, *pbeg, *pend; |
| 88365 | 6556 int c; |
| 6557 Lisp_Object tail, elt; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6558 |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6559 if (STRINGP (start)) |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6560 { |
| 88365 | 6561 if (!STRING_MULTIBYTE (start) |
|
88889
4548f224c603
(Ffind_coding_systems_region_internal): Detect an
Kenichi Handa <handa@m17n.org>
parents:
88876
diff
changeset
|
6562 || XSTRING (start)->size == STRING_BYTES (XSTRING (start))) |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6563 return Qt; |
| 88365 | 6564 start_byte = 0; |
| 6565 end_byte = STRING_BYTES (XSTRING (start)); | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6566 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6567 else |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6568 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6569 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
|
6570 CHECK_NUMBER_COERCE_MARKER (end); |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6571 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
|
6572 args_out_of_range (start, end); |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6573 if (NILP (current_buffer->enable_multibyte_characters)) |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6574 return Qt; |
| 88365 | 6575 start_byte = CHAR_TO_BYTE (XINT (start)); |
| 6576 end_byte = CHAR_TO_BYTE (XINT (end)); | |
| 6577 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
| 6578 return Qt; | |
| 6579 | |
| 6580 if (start < GPT && end > GPT) | |
| 6581 { | |
| 6582 if ((GPT - start) < (end - GPT)) | |
| 6583 move_gap_both (start, start_byte); | |
| 6584 else | |
| 6585 move_gap_both (end, end_byte); | |
| 6586 } | |
| 6587 } | |
| 6588 | |
| 6589 coding_attrs_list = Qnil; | |
| 6590 for (tail = Vcoding_system_list; CONSP (tail); tail = XCDR (tail)) | |
| 6591 if (NILP (exclude) | |
| 6592 || NILP (Fmemq (XCAR (tail), exclude))) | |
| 6593 { | |
| 6594 Lisp_Object attrs; | |
| 6595 | |
| 6596 attrs = AREF (CODING_SYSTEM_SPEC (XCAR (tail)), 0); | |
| 6597 if (EQ (XCAR (tail), CODING_ATTR_BASE_NAME (attrs)) | |
| 6598 && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided)) | |
| 6599 coding_attrs_list = Fcons (attrs, coding_attrs_list); | |
| 6600 } | |
| 6601 | |
| 6602 if (STRINGP (start)) | |
| 6603 p = pbeg = XSTRING (start)->data; | |
| 6604 else | |
| 6605 p = pbeg = BYTE_POS_ADDR (start_byte); | |
| 6606 pend = p + (end_byte - start_byte); | |
| 6607 | |
| 6608 while (p < pend && ASCII_BYTE_P (*p)) p++; | |
| 6609 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
| 6610 | |
| 6611 while (p < pend) | |
| 6612 { | |
| 6613 if (ASCII_BYTE_P (*p)) | |
| 6614 p++; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6615 else |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6616 { |
| 88365 | 6617 c = STRING_CHAR_ADVANCE (p); |
| 6618 | |
| 6619 charset_map_loaded = 0; | |
| 6620 for (tail = coding_attrs_list; CONSP (tail);) | |
| 6621 { | |
| 6622 elt = XCAR (tail); | |
| 6623 if (NILP (elt)) | |
| 6624 tail = XCDR (tail); | |
| 6625 else if (char_encodable_p (c, elt)) | |
| 6626 tail = XCDR (tail); | |
| 6627 else if (CONSP (XCDR (tail))) | |
| 6628 { | |
| 6629 XSETCAR (tail, XCAR (XCDR (tail))); | |
| 6630 XSETCDR (tail, XCDR (XCDR (tail))); | |
| 6631 } | |
| 6632 else | |
| 6633 { | |
| 6634 XSETCAR (tail, Qnil); | |
| 6635 tail = XCDR (tail); | |
| 6636 } | |
| 6637 } | |
| 6638 if (charset_map_loaded) | |
| 6639 { | |
| 6640 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
| 6641 | |
| 6642 if (STRINGP (start)) | |
| 6643 pbeg = XSTRING (start)->data; | |
| 6644 else | |
| 6645 pbeg = BYTE_POS_ADDR (start_byte); | |
| 6646 p = pbeg + p_offset; | |
| 6647 pend = pbeg + pend_offset; | |
| 6648 } | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6649 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6650 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6651 |
| 88365 | 6652 safe_codings = Qnil; |
| 6653 for (tail = coding_attrs_list; CONSP (tail); tail = XCDR (tail)) | |
| 6654 if (! NILP (XCAR (tail))) | |
| 6655 safe_codings = Fcons (CODING_ATTR_BASE_NAME (XCAR (tail)), safe_codings); | |
| 6656 | |
| 6657 return safe_codings; | |
| 6658 } | |
| 6659 | |
| 6660 | |
| 6661 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region, | |
| 6662 Scheck_coding_systems_region, 3, 3, 0, | |
| 6663 doc: /* Check if the region is encodable by coding systems. | |
| 6664 | |
| 6665 START and END are buffer positions specifying the region. | |
| 6666 CODING-SYSTEM-LIST is a list of coding systems to check. | |
| 6667 | |
| 6668 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where | |
| 6669 CODING-SYSTEM is a member of CODING-SYSTEM-LIst and can't encode the | |
| 6670 whole region, POS0, POS1, ... are buffer positions where non-encodable | |
| 6671 characters are found. | |
| 6672 | |
| 6673 If all coding systems in CODING-SYSTEM-LIST can encode the region, the | |
| 6674 value is nil. | |
| 6675 | |
| 6676 START may be a string. In that case, check if the string is | |
| 6677 encodable, and the value contains indices to the string instead of | |
| 6678 buffer positions. END is ignored. */) | |
| 6679 (start, end, coding_system_list) | |
| 6680 Lisp_Object start, end, coding_system_list; | |
| 6681 { | |
| 6682 Lisp_Object list; | |
| 6683 EMACS_INT start_byte, end_byte; | |
| 6684 int pos; | |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
6685 const unsigned char *p, *pbeg, *pend; |
| 88365 | 6686 int c; |
| 6687 Lisp_Object tail, elt; | |
| 6688 | |
| 6689 if (STRINGP (start)) | |
| 6690 { | |
| 6691 if (!STRING_MULTIBYTE (start) | |
| 6692 && XSTRING (start)->size != STRING_BYTES (XSTRING (start))) | |
| 6693 return Qnil; | |
| 6694 start_byte = 0; | |
| 6695 end_byte = STRING_BYTES (XSTRING (start)); | |
| 6696 pos = 0; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6697 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6698 else |
| 88365 | 6699 { |
| 6700 CHECK_NUMBER_COERCE_MARKER (start); | |
| 6701 CHECK_NUMBER_COERCE_MARKER (end); | |
| 6702 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) | |
| 6703 args_out_of_range (start, end); | |
| 6704 if (NILP (current_buffer->enable_multibyte_characters)) | |
| 6705 return Qnil; | |
| 6706 start_byte = CHAR_TO_BYTE (XINT (start)); | |
| 6707 end_byte = CHAR_TO_BYTE (XINT (end)); | |
| 6708 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
| 6709 return Qt; | |
| 6710 | |
| 6711 if (start < GPT && end > GPT) | |
| 6712 { | |
| 6713 if ((GPT - start) < (end - GPT)) | |
| 6714 move_gap_both (start, start_byte); | |
| 6715 else | |
| 6716 move_gap_both (end, end_byte); | |
| 6717 } | |
| 6718 pos = start; | |
| 6719 } | |
| 6720 | |
| 6721 list = Qnil; | |
| 6722 for (tail = coding_system_list; CONSP (tail); tail = XCDR (tail)) | |
| 6723 { | |
| 6724 elt = XCAR (tail); | |
| 6725 list = Fcons (Fcons (elt, Fcons (AREF (CODING_SYSTEM_SPEC (elt), 0), | |
| 6726 Qnil)), | |
| 6727 list); | |
| 6728 } | |
| 6729 | |
| 6730 if (STRINGP (start)) | |
| 6731 p = pbeg = XSTRING (start)->data; | |
| 6732 else | |
| 6733 p = pbeg = BYTE_POS_ADDR (start_byte); | |
| 6734 pend = p + (end_byte - start_byte); | |
| 6735 | |
| 6736 while (p < pend && ASCII_BYTE_P (*p)) p++, pos++; | |
| 6737 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
| 6738 | |
| 6739 while (p < pend) | |
| 6740 { | |
| 6741 if (ASCII_BYTE_P (*p)) | |
| 6742 p++; | |
| 6743 else | |
| 6744 { | |
| 6745 c = STRING_CHAR_ADVANCE (p); | |
| 6746 | |
| 6747 charset_map_loaded = 0; | |
| 6748 for (tail = list; CONSP (tail); tail = XCDR (tail)) | |
| 6749 { | |
| 6750 elt = XCDR (XCAR (tail)); | |
| 6751 if (! char_encodable_p (c, XCAR (elt))) | |
| 6752 XSETCDR (elt, Fcons (make_number (pos), XCDR (elt))); | |
| 6753 } | |
| 6754 if (charset_map_loaded) | |
| 6755 { | |
| 6756 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
| 6757 | |
| 6758 if (STRINGP (start)) | |
| 6759 pbeg = XSTRING (start)->data; | |
| 6760 else | |
| 6761 pbeg = BYTE_POS_ADDR (start_byte); | |
| 6762 p = pbeg + p_offset; | |
| 6763 pend = pbeg + pend_offset; | |
| 6764 } | |
| 6765 } | |
| 6766 pos++; | |
| 6767 } | |
| 6768 | |
| 6769 tail = list; | |
| 6770 list = Qnil; | |
| 6771 for (; CONSP (tail); tail = XCDR (tail)) | |
| 6772 { | |
| 6773 elt = XCAR (tail); | |
| 6774 if (CONSP (XCDR (XCDR (elt)))) | |
| 6775 list = Fcons (Fcons (XCAR (elt), Fnreverse (XCDR (XCDR (elt)))), | |
| 6776 list); | |
| 6777 } | |
| 6778 | |
| 6779 return list; | |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6780 } |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6781 |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
6782 |
| 88365 | 6783 |
|
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6784 Lisp_Object |
| 88365 | 6785 code_convert_region (start, end, coding_system, dst_object, encodep, norecord) |
| 6786 Lisp_Object start, end, coding_system, dst_object; | |
| 6787 int encodep, norecord; | |
|
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6788 { |
|
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6789 struct coding_system coding; |
| 88365 | 6790 EMACS_INT from, from_byte, to, to_byte; |
| 6791 Lisp_Object src_object; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6792 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6793 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
|
6794 CHECK_NUMBER_COERCE_MARKER (end); |
| 88365 | 6795 if (NILP (coding_system)) |
| 6796 coding_system = Qno_conversion; | |
| 6797 else | |
| 6798 CHECK_CODING_SYSTEM (coding_system); | |
| 6799 src_object = Fcurrent_buffer (); | |
| 6800 if (NILP (dst_object)) | |
| 6801 dst_object = src_object; | |
| 6802 else if (! EQ (dst_object, Qt)) | |
| 6803 CHECK_BUFFER (dst_object); | |
|
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6804 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6805 validate_region (&start, &end); |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6806 from = XFASTINT (start); |
| 88365 | 6807 from_byte = CHAR_TO_BYTE (from); |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6808 to = XFASTINT (end); |
| 88365 | 6809 to_byte = CHAR_TO_BYTE (to); |
| 6810 | |
| 6811 setup_coding_system (coding_system, &coding); | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6812 coding.mode |= CODING_MODE_LAST_BLOCK; |
| 88365 | 6813 |
| 6814 if (encodep) | |
| 6815 encode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
| 6816 dst_object); | |
| 6817 else | |
| 6818 decode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
| 6819 dst_object); | |
| 6820 if (! norecord) | |
| 6821 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
| 6822 | |
| 6823 if (coding.result != CODING_RESULT_SUCCESS) | |
| 6824 error ("Code conversion error: %d", coding.result); | |
| 6825 | |
| 6826 return (BUFFERP (dst_object) | |
| 6827 ? make_number (coding.produced_char) | |
| 6828 : coding.dst_object); | |
|
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6829 } |
|
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6830 |
| 88365 | 6831 |
|
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6832 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, |
| 88365 | 6833 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
|
6834 doc: /* Decode the current region from the specified coding system. |
| 88365 | 6835 When called from a program, takes four arguments: |
| 6836 START, END, CODING-SYSTEM, and DESTINATION. | |
| 6837 START and END are buffer positions. | |
| 6838 | |
| 6839 Optional 4th arguments DESTINATION specifies where the decoded text goes. | |
| 6840 If nil, the region between START and END is replace by the decoded text. | |
| 6841 If buffer, the decoded text is inserted in the buffer. | |
| 6842 If t, the decoded text is returned. | |
| 6843 | |
|
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6844 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
|
6845 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
|
6846 not fully specified.) |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6847 It returns the length of the decoded text. */) |
| 88365 | 6848 (start, end, coding_system, destination) |
| 6849 Lisp_Object start, end, coding_system, destination; | |
|
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6850 { |
| 88365 | 6851 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
|
6852 } |
|
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6853 |
|
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6854 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, |
| 88365 | 6855 3, 4, "r\nzCoding system: ", |
| 6856 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
|
6857 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
|
6858 START, END, and CODING-SYSTEM. START and END are buffer positions. |
| 88365 | 6859 |
| 6860 Optional 4th arguments DESTINATION specifies where the encoded text goes. | |
| 6861 If nil, the region between START and END is replace by the encoded text. | |
| 6862 If buffer, the encoded text is inserted in the buffer. | |
| 6863 If t, the encoded text is returned. | |
| 6864 | |
|
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6865 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
|
6866 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
|
6867 not fully specified.) |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
6868 It returns the length of the encoded text. */) |
| 88365 | 6869 (start, end, coding_system, destination) |
| 6870 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
|
6871 { |
| 88365 | 6872 return code_convert_region (start, end, coding_system, destination, 1, 0); |
| 17052 | 6873 } |
| 6874 | |
|
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6875 Lisp_Object |
| 88365 | 6876 code_convert_string (string, coding_system, dst_object, |
| 6877 encodep, nocopy, norecord) | |
| 6878 Lisp_Object string, coding_system, dst_object; | |
| 6879 int encodep, nocopy, norecord; | |
| 17052 | 6880 { |
| 6881 struct coding_system coding; | |
| 88365 | 6882 EMACS_INT chars, bytes; |
| 17052 | 6883 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
6884 CHECK_STRING (string); |
| 88365 | 6885 if (NILP (coding_system)) |
| 6886 { | |
| 6887 if (! norecord) | |
| 6888 Vlast_coding_system_used = Qno_conversion; | |
| 6889 if (NILP (dst_object)) | |
| 6890 return (nocopy ? Fcopy_sequence (string) : string); | |
| 6891 } | |
| 17052 | 6892 |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
6893 if (NILP (coding_system)) |
| 88365 | 6894 coding_system = Qno_conversion; |
| 6895 else | |
| 6896 CHECK_CODING_SYSTEM (coding_system); | |
| 6897 if (NILP (dst_object)) | |
| 6898 dst_object = Qt; | |
| 6899 else if (! EQ (dst_object, Qt)) | |
| 6900 CHECK_BUFFER (dst_object); | |
| 6901 | |
| 6902 setup_coding_system (coding_system, &coding); | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6903 coding.mode |= CODING_MODE_LAST_BLOCK; |
| 88365 | 6904 chars = XSTRING (string)->size; |
| 6905 bytes = STRING_BYTES (XSTRING (string)); | |
| 6906 if (encodep) | |
| 6907 encode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
| 6908 else | |
| 6909 decode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
| 6910 if (! norecord) | |
| 6911 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
| 6912 | |
| 6913 if (coding.result != CODING_RESULT_SUCCESS) | |
| 6914 error ("Code conversion error: %d", coding.result); | |
| 6915 | |
| 6916 return (BUFFERP (dst_object) | |
| 6917 ? make_number (coding.produced_char) | |
| 6918 : coding.dst_object); | |
|
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6919 } |
|
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6920 |
|
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
6921 |
|
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6922 /* Encode or decode STRING according to CODING_SYSTEM. |
| 26847 | 6923 Do not set Vlast_coding_system_used. |
| 6924 | |
| 6925 This function is called only from macros DECODE_FILE and | |
| 6926 ENCODE_FILE, thus we ignore character composition. */ | |
|
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6927 |
|
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6928 Lisp_Object |
|
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6929 code_convert_string_norecord (string, coding_system, encodep) |
|
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6930 Lisp_Object string, coding_system; |
|
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6931 int encodep; |
|
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
6932 { |
|
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6933 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
|
6934 } |
| 88365 | 6935 |
| 6936 | |
| 6937 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
| 6938 2, 4, 0, | |
| 6939 doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | |
| 6940 | |
| 6941 Optional third arg NOCOPY non-nil means it is OK to return STRING itself | |
| 6942 if the decoding operation is trivial. | |
| 6943 | |
| 6944 Optional fourth arg BUFFER non-nil meant that the decoded text is | |
|
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
6945 inserted in BUFFER instead of returned as a string. In this case, |
| 88365 | 6946 the return value is BUFFER. |
| 6947 | |
| 6948 This function sets `last-coding-system-used' to the precise coding system | |
| 6949 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
| 6950 not fully specified. */) | |
| 6951 (string, coding_system, nocopy, buffer) | |
| 6952 Lisp_Object string, coding_system, nocopy, buffer; | |
| 6953 { | |
| 6954 return code_convert_string (string, coding_system, buffer, | |
| 6955 0, ! NILP (nocopy), 0); | |
| 6956 } | |
| 6957 | |
| 6958 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
| 6959 2, 4, 0, | |
| 6960 doc: /* Encode STRING to CODING-SYSTEM, and return the result. | |
| 6961 | |
| 6962 Optional third arg NOCOPY non-nil means it is OK to return STRING | |
| 6963 itself if the encoding operation is trivial. | |
| 6964 | |
| 6965 Optional fourth arg BUFFER non-nil meant that the encoded text is | |
|
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
6966 inserted in BUFFER instead of returned as a string. In this case, |
| 88365 | 6967 the return value is BUFFER. |
| 6968 | |
| 6969 This function sets `last-coding-system-used' to the precise coding system | |
| 6970 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
| 6971 not fully specified.) */) | |
| 6972 (string, coding_system, nocopy, buffer) | |
| 6973 Lisp_Object string, coding_system, nocopy, buffer; | |
| 6974 { | |
| 6975 return code_convert_string (string, coding_system, buffer, | |
| 88856 | 6976 1, ! NILP (nocopy), 1); |
| 88365 | 6977 } |
| 6978 | |
|
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
6979 |
| 17052 | 6980 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
|
6981 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
|
6982 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
|
6983 (code) |
| 17052 | 6984 Lisp_Object code; |
| 6985 { | |
| 88365 | 6986 Lisp_Object spec, attrs, val; |
| 6987 struct charset *charset_roman, *charset_kanji, *charset_kana, *charset; | |
| 6988 int c; | |
| 6989 | |
| 6990 CHECK_NATNUM (code); | |
| 6991 c = XFASTINT (code); | |
| 6992 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
| 6993 attrs = AREF (spec, 0); | |
| 6994 | |
| 6995 if (ASCII_BYTE_P (c) | |
| 6996 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
| 6997 return code; | |
| 6998 | |
| 6999 val = CODING_ATTR_CHARSET_LIST (attrs); | |
| 7000 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
|
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
7001 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
|
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
7002 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); |
| 88365 | 7003 |
| 7004 if (c <= 0x7F) | |
| 7005 charset = charset_roman; | |
| 7006 else if (c >= 0xA0 && c < 0xDF) | |
| 7007 { | |
| 7008 charset = charset_kana; | |
| 7009 c -= 0x80; | |
|
24065
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
7010 } |
|
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
7011 else |
|
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
7012 { |
|
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
7013 int s1 = c >> 8, s2 = c & 0xFF; |
| 88365 | 7014 |
| 7015 if (s1 < 0x81 || (s1 > 0x9F && s1 < 0xE0) || s1 > 0xEF | |
| 7016 || s2 < 0x40 || s2 == 0x7F || s2 > 0xFC) | |
| 7017 error ("Invalid code: %d", code); | |
| 7018 SJIS_TO_JIS (c); | |
| 7019 charset = charset_kanji; | |
| 7020 } | |
| 7021 c = DECODE_CHAR (charset, c); | |
| 7022 if (c < 0) | |
| 7023 error ("Invalid code: %d", code); | |
| 7024 return make_number (c); | |
| 17052 | 7025 } |
| 7026 | |
| 88365 | 7027 |
| 17052 | 7028 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
|
7029 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
|
7030 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
|
7031 (ch) |
| 88365 | 7032 Lisp_Object ch; |
| 17052 | 7033 { |
| 88365 | 7034 Lisp_Object spec, attrs, charset_list; |
| 7035 int c; | |
| 7036 struct charset *charset; | |
| 7037 unsigned code; | |
| 7038 | |
| 7039 CHECK_CHARACTER (ch); | |
| 7040 c = XFASTINT (ch); | |
| 7041 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
| 7042 attrs = AREF (spec, 0); | |
| 7043 | |
| 7044 if (ASCII_CHAR_P (c) | |
| 7045 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
| 7046 return ch; | |
| 7047 | |
| 7048 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
| 7049 charset = char_charset (c, charset_list, &code); | |
| 7050 if (code == CHARSET_INVALID_CODE (charset)) | |
| 7051 error ("Can't encode by shift_jis encoding: %d", c); | |
| 7052 JIS_TO_SJIS (code); | |
| 7053 | |
| 7054 return make_number (code); | |
| 17052 | 7055 } |
| 7056 | |
| 7057 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
|
7058 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
|
7059 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
|
7060 (code) |
| 17052 | 7061 Lisp_Object code; |
| 7062 { | |
| 88365 | 7063 Lisp_Object spec, attrs, val; |
| 7064 struct charset *charset_roman, *charset_big5, *charset; | |
| 7065 int c; | |
| 7066 | |
| 7067 CHECK_NATNUM (code); | |
| 7068 c = XFASTINT (code); | |
| 7069 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
| 7070 attrs = AREF (spec, 0); | |
| 7071 | |
| 7072 if (ASCII_BYTE_P (c) | |
| 7073 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
| 7074 return code; | |
| 7075 | |
| 7076 val = CODING_ATTR_CHARSET_LIST (attrs); | |
| 7077 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
| 7078 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
| 7079 | |
| 7080 if (c <= 0x7F) | |
| 7081 charset = charset_roman; | |
|
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
7082 else |
|
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
7083 { |
| 88365 | 7084 int b1 = c >> 8, b2 = c & 0x7F; |
| 7085 if (b1 < 0xA1 || b1 > 0xFE | |
| 7086 || b2 < 0x40 || (b2 > 0x7E && b2 < 0xA1) || b2 > 0xFE) | |
| 7087 error ("Invalid code: %d", code); | |
| 7088 charset = charset_big5; | |
| 7089 } | |
| 7090 c = DECODE_CHAR (charset, (unsigned )c); | |
| 7091 if (c < 0) | |
| 7092 error ("Invalid code: %d", code); | |
| 7093 return make_number (c); | |
| 17052 | 7094 } |
| 7095 | |
| 7096 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
|
7097 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
|
7098 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
|
7099 (ch) |
| 17052 | 7100 Lisp_Object ch; |
| 7101 { | |
| 88365 | 7102 Lisp_Object spec, attrs, charset_list; |
| 7103 struct charset *charset; | |
| 7104 int c; | |
| 7105 unsigned code; | |
| 7106 | |
| 7107 CHECK_CHARACTER (ch); | |
| 7108 c = XFASTINT (ch); | |
| 7109 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
| 7110 attrs = AREF (spec, 0); | |
| 7111 if (ASCII_CHAR_P (c) | |
| 7112 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
| 7113 return ch; | |
| 7114 | |
| 7115 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
| 7116 charset = char_charset (c, charset_list, &code); | |
| 7117 if (code == CHARSET_INVALID_CODE (charset)) | |
| 7118 error ("Can't encode by Big5 encoding: %d", c); | |
| 7119 | |
| 7120 return make_number (code); | |
| 17052 | 7121 } |
| 88365 | 7122 |
|
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
7123 |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7124 DEFUN ("set-terminal-coding-system-internal", |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7125 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
|
7126 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
|
7127 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
|
7128 (coding_system) |
| 88473 | 7129 Lisp_Object coding_system; |
| 17052 | 7130 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
7131 CHECK_SYMBOL (coding_system); |
| 88365 | 7132 setup_coding_system (Fcheck_coding_system (coding_system), |
| 7133 &terminal_coding); | |
| 7134 | |
|
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
7135 /* We had better not send unsafe characters to terminal. */ |
| 88365 | 7136 terminal_coding.mode |= CODING_MODE_SAFE_ENCODING; |
| 7137 /* Characer composition should be disabled. */ | |
| 7138 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
|
7139 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
|
7140 terminal_coding.dst_multibyte = 0; |
| 17052 | 7141 return Qnil; |
| 7142 } | |
| 7143 | |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7144 DEFUN ("set-safe-terminal-coding-system-internal", |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7145 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
|
7146 Sset_safe_terminal_coding_system_internal, 1, 1, 0, |
| 41006 | 7147 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
|
7148 (coding_system) |
| 88473 | 7149 Lisp_Object coding_system; |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7150 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
7151 CHECK_SYMBOL (coding_system); |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7152 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
|
7153 &safe_terminal_coding); |
| 88365 | 7154 /* Characer composition should be disabled. */ |
| 7155 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
|
7156 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
|
7157 safe_terminal_coding.dst_multibyte = 0; |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7158 return Qnil; |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7159 } |
|
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
7160 |
| 17052 | 7161 DEFUN ("terminal-coding-system", |
| 7162 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
|
7163 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
|
7164 () |
| 17052 | 7165 { |
| 88365 | 7166 return CODING_ID_NAME (terminal_coding.id); |
| 17052 | 7167 } |
| 7168 | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7169 DEFUN ("set-keyboard-coding-system-internal", |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
7170 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
|
7171 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
|
7172 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
|
7173 (coding_system) |
| 17052 | 7174 Lisp_Object coding_system; |
| 7175 { | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
7176 CHECK_SYMBOL (coding_system); |
| 88365 | 7177 setup_coding_system (Fcheck_coding_system (coding_system), |
| 7178 &keyboard_coding); | |
| 7179 /* Characer composition should be disabled. */ | |
| 7180 keyboard_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
| 17052 | 7181 return Qnil; |
| 7182 } | |
| 7183 | |
| 7184 DEFUN ("keyboard-coding-system", | |
| 7185 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
|
7186 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
|
7187 () |
| 17052 | 7188 { |
| 88365 | 7189 return CODING_ID_NAME (keyboard_coding.id); |
| 17052 | 7190 } |
| 7191 | |
| 7192 | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
7193 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
|
7194 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
|
7195 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
|
7196 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
|
7197 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
|
7198 \(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
|
7199 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
|
7200 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7201 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
|
7202 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
|
7203 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
|
7204 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
|
7205 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7206 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
|
7207 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
|
7208 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
|
7209 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
|
7210 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7211 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
|
7212 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
|
7213 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
|
7214 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
|
7215 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7216 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
|
7217 `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
|
7218 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
|
7219 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
|
7220 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
|
7221 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
|
7222 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
|
7223 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
7224 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
|
7225 (nargs, args) |
| 17052 | 7226 int nargs; |
| 7227 Lisp_Object *args; | |
| 7228 { | |
| 7229 Lisp_Object operation, target_idx, target, val; | |
| 7230 register Lisp_Object chain; | |
| 7231 | |
| 7232 if (nargs < 2) | |
| 7233 error ("Too few arguments"); | |
| 7234 operation = args[0]; | |
| 7235 if (!SYMBOLP (operation) | |
| 7236 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx))) | |
| 88365 | 7237 error ("Invalid first arguement"); |
| 17052 | 7238 if (nargs < 1 + XINT (target_idx)) |
| 7239 error ("Too few arguments for operation: %s", | |
| 7240 XSYMBOL (operation)->name->data); | |
| 7241 target = args[XINT (target_idx) + 1]; | |
| 7242 if (!(STRINGP (target) | |
| 7243 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) | |
| 88365 | 7244 error ("Invalid %dth argument", XINT (target_idx) + 1); |
| 17052 | 7245 |
|
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
7246 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
|
7247 || EQ (operation, Qwrite_region)) |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7248 ? 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
|
7249 : (EQ (operation, Qopen_network_stream) |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7250 ? Vnetwork_coding_system_alist |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7251 : Vprocess_coding_system_alist)); |
| 17052 | 7252 if (NILP (chain)) |
| 7253 return Qnil; | |
| 7254 | |
|
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7255 for (; CONSP (chain); chain = XCDR (chain)) |
| 17052 | 7256 { |
|
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
7257 Lisp_Object elt; |
| 88365 | 7258 |
|
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7259 elt = XCAR (chain); |
| 17052 | 7260 if (CONSP (elt) |
| 7261 && ((STRINGP (target) | |
|
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7262 && STRINGP (XCAR (elt)) |
|
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7263 && 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
|
7264 || (INTEGERP (target) && EQ (target, XCAR (elt))))) |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7265 { |
|
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
7266 val = XCDR (elt); |
|
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7267 /* 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
|
7268 function symbol, we return VAL as a coding system. */ |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7269 if (CONSP (val)) |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7270 return val; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7271 if (! SYMBOLP (val)) |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7272 return Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7273 if (! NILP (Fcoding_system_p (val))) |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7274 return Fcons (val, val); |
|
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7275 if (! NILP (Ffboundp (val))) |
|
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7276 { |
|
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7277 val = call1 (val, Flist (nargs, args)); |
|
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7278 if (CONSP (val)) |
|
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7279 return val; |
|
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7280 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
|
7281 return Fcons (val, val); |
|
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
7282 } |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7283 return Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
7284 } |
| 17052 | 7285 } |
| 7286 return Qnil; | |
| 7287 } | |
| 7288 | |
| 88365 | 7289 DEFUN ("set-coding-system-priority", Fset_coding_system_priority, |
|
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
7290 Sset_coding_system_priority, 0, MANY, 0, |
| 88645 | 7291 doc: /* Assign higher priority to the coding systems given as arguments. |
|
88544
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
7292 usage: (set-coding-system-priority CODING-SYSTEM ...) */) |
| 88365 | 7293 (nargs, args) |
| 7294 int nargs; | |
| 7295 Lisp_Object *args; | |
| 7296 { | |
| 7297 int i, j; | |
| 7298 int changed[coding_category_max]; | |
| 7299 enum coding_category priorities[coding_category_max]; | |
| 7300 | |
| 7301 bzero (changed, sizeof changed); | |
| 7302 | |
| 7303 for (i = j = 0; i < nargs; i++) | |
| 7304 { | |
| 7305 enum coding_category category; | |
| 7306 Lisp_Object spec, attrs; | |
| 7307 | |
| 7308 CHECK_CODING_SYSTEM_GET_SPEC (args[i], spec); | |
| 7309 attrs = AREF (spec, 0); | |
| 7310 category = XINT (CODING_ATTR_CATEGORY (attrs)); | |
| 7311 if (changed[category]) | |
| 7312 /* Ignore this coding system because a coding system of the | |
| 7313 same category already had a higher priority. */ | |
| 7314 continue; | |
| 7315 changed[category] = 1; | |
| 7316 priorities[j++] = category; | |
| 7317 if (coding_categories[category].id >= 0 | |
| 7318 && ! EQ (args[i], CODING_ID_NAME (coding_categories[category].id))) | |
| 7319 setup_coding_system (args[i], &coding_categories[category]); | |
| 7320 } | |
| 7321 | |
| 7322 /* Now we have decided top J priorities. Reflect the order of the | |
| 7323 original priorities to the remaining priorities. */ | |
| 7324 | |
| 7325 for (i = j, j = 0; i < coding_category_max; i++, j++) | |
| 7326 { | |
| 7327 while (j < coding_category_max | |
| 7328 && changed[coding_priorities[j]]) | |
| 7329 j++; | |
| 7330 if (j == coding_category_max) | |
| 7331 abort (); | |
| 7332 priorities[i] = coding_priorities[j]; | |
| 7333 } | |
| 7334 | |
| 7335 bcopy (priorities, coding_priorities, sizeof priorities); | |
| 7336 return Qnil; | |
| 7337 } | |
| 7338 | |
| 7339 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, | |
| 7340 Scoding_system_priority_list, 0, 1, 0, | |
| 88645 | 7341 doc: /* Return a list of coding systems ordered by their priorities. |
| 7342 HIGHESTP non-nil means just return the highest priority one. */) | |
| 88365 | 7343 (highestp) |
| 7344 Lisp_Object highestp; | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7345 { |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7346 int i; |
| 88365 | 7347 Lisp_Object val; |
| 7348 | |
| 7349 for (i = 0, val = Qnil; i < coding_category_max; i++) | |
| 7350 { | |
| 7351 enum coding_category category = coding_priorities[i]; | |
| 7352 int id = coding_categories[category].id; | |
| 7353 Lisp_Object attrs; | |
| 7354 | |
| 7355 if (id < 0) | |
| 7356 continue; | |
| 7357 attrs = CODING_ID_ATTRS (id); | |
| 7358 if (! NILP (highestp)) | |
| 7359 return CODING_ATTR_BASE_NAME (attrs); | |
| 7360 val = Fcons (CODING_ATTR_BASE_NAME (attrs), val); | |
| 7361 } | |
| 7362 return Fnreverse (val); | |
| 7363 } | |
| 7364 | |
|
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
7365 static char *suffixes[] = { "-unix", "-dos", "-mac" }; |
|
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
7366 |
| 88365 | 7367 static Lisp_Object |
| 7368 make_subsidiaries (base) | |
| 7369 Lisp_Object base; | |
| 7370 { | |
| 7371 Lisp_Object subsidiaries; | |
| 7372 int base_name_len = STRING_BYTES (XSYMBOL (base)->name); | |
| 7373 char *buf = (char *) alloca (base_name_len + 6); | |
| 7374 int i; | |
| 7375 | |
| 7376 bcopy (XSYMBOL (base)->name->data, buf, base_name_len); | |
| 7377 subsidiaries = Fmake_vector (make_number (3), Qnil); | |
| 7378 for (i = 0; i < 3; i++) | |
| 7379 { | |
| 7380 bcopy (suffixes[i], buf + base_name_len, strlen (suffixes[i]) + 1); | |
| 7381 ASET (subsidiaries, i, intern (buf)); | |
| 7382 } | |
| 7383 return subsidiaries; | |
| 7384 } | |
| 7385 | |
| 7386 | |
| 7387 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, | |
| 7388 Sdefine_coding_system_internal, coding_arg_max, MANY, 0, | |
|
88544
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
7389 doc: /* For internal use only. |
|
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
7390 usage: (define-coding-system-internal ...) */) |
| 88365 | 7391 (nargs, args) |
| 7392 int nargs; | |
| 7393 Lisp_Object *args; | |
| 7394 { | |
| 7395 Lisp_Object name; | |
| 7396 Lisp_Object spec_vec; /* [ ATTRS ALIASE EOL_TYPE ] */ | |
| 7397 Lisp_Object attrs; /* Vector of attributes. */ | |
| 7398 Lisp_Object eol_type; | |
| 7399 Lisp_Object aliases; | |
| 7400 Lisp_Object coding_type, charset_list, safe_charsets; | |
| 7401 enum coding_category category; | |
| 7402 Lisp_Object tail, val; | |
| 7403 int max_charset_id = 0; | |
| 7404 int i; | |
| 7405 | |
| 7406 if (nargs < coding_arg_max) | |
| 7407 goto short_args; | |
| 7408 | |
| 7409 attrs = Fmake_vector (make_number (coding_attr_last_index), Qnil); | |
| 7410 | |
| 7411 name = args[coding_arg_name]; | |
| 7412 CHECK_SYMBOL (name); | |
| 7413 CODING_ATTR_BASE_NAME (attrs) = name; | |
| 7414 | |
| 7415 val = args[coding_arg_mnemonic]; | |
| 7416 if (! STRINGP (val)) | |
| 7417 CHECK_CHARACTER (val); | |
| 7418 CODING_ATTR_MNEMONIC (attrs) = val; | |
| 7419 | |
| 7420 coding_type = args[coding_arg_coding_type]; | |
| 7421 CHECK_SYMBOL (coding_type); | |
| 7422 CODING_ATTR_TYPE (attrs) = coding_type; | |
| 7423 | |
| 7424 charset_list = args[coding_arg_charset_list]; | |
| 7425 if (SYMBOLP (charset_list)) | |
| 7426 { | |
| 7427 if (EQ (charset_list, Qiso_2022)) | |
| 7428 { | |
| 7429 if (! EQ (coding_type, Qiso_2022)) | |
| 7430 error ("Invalid charset-list"); | |
| 7431 charset_list = Viso_2022_charset_list; | |
| 7432 } | |
| 7433 else if (EQ (charset_list, Qemacs_mule)) | |
| 7434 { | |
| 7435 if (! EQ (coding_type, Qemacs_mule)) | |
| 7436 error ("Invalid charset-list"); | |
| 7437 charset_list = Vemacs_mule_charset_list; | |
| 7438 } | |
| 7439 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
| 7440 if (max_charset_id < XFASTINT (XCAR (tail))) | |
| 7441 max_charset_id = XFASTINT (XCAR (tail)); | |
| 7442 } | |
| 7443 else | |
| 7444 { | |
| 7445 charset_list = Fcopy_sequence (charset_list); | |
| 7446 for (tail = charset_list; !NILP (tail); tail = Fcdr (tail)) | |
| 7447 { | |
| 7448 struct charset *charset; | |
| 7449 | |
| 7450 val = Fcar (tail); | |
| 7451 CHECK_CHARSET_GET_CHARSET (val, charset); | |
| 7452 if (EQ (coding_type, Qiso_2022) | |
| 7453 ? CHARSET_ISO_FINAL (charset) < 0 | |
| 7454 : EQ (coding_type, Qemacs_mule) | |
| 7455 ? CHARSET_EMACS_MULE_ID (charset) < 0 | |
| 7456 : 0) | |
| 7457 error ("Can't handle charset `%s'", | |
| 7458 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
| 7459 | |
| 7460 XCAR (tail) = make_number (charset->id); | |
| 7461 if (max_charset_id < charset->id) | |
| 7462 max_charset_id = charset->id; | |
| 7463 } | |
| 7464 } | |
| 7465 CODING_ATTR_CHARSET_LIST (attrs) = charset_list; | |
| 7466 | |
| 7467 safe_charsets = Fmake_string (make_number (max_charset_id + 1), | |
| 7468 make_number (255)); | |
| 7469 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
| 7470 XSTRING (safe_charsets)->data[XFASTINT (XCAR (tail))] = 0; | |
| 7471 CODING_ATTR_SAFE_CHARSETS (attrs) = safe_charsets; | |
| 7472 | |
| 7473 val = args[coding_arg_decode_translation_table]; | |
| 7474 if (! NILP (val)) | |
| 7475 CHECK_CHAR_TABLE (val); | |
| 7476 CODING_ATTR_DECODE_TBL (attrs) = val; | |
| 7477 | |
| 7478 val = args[coding_arg_encode_translation_table]; | |
| 7479 if (! NILP (val)) | |
| 7480 CHECK_CHAR_TABLE (val); | |
| 7481 CODING_ATTR_ENCODE_TBL (attrs) = val; | |
| 7482 | |
| 7483 val = args[coding_arg_post_read_conversion]; | |
| 7484 CHECK_SYMBOL (val); | |
| 7485 CODING_ATTR_POST_READ (attrs) = val; | |
| 7486 | |
| 7487 val = args[coding_arg_pre_write_conversion]; | |
| 7488 CHECK_SYMBOL (val); | |
| 7489 CODING_ATTR_PRE_WRITE (attrs) = val; | |
| 7490 | |
| 7491 val = args[coding_arg_default_char]; | |
| 7492 if (NILP (val)) | |
| 7493 CODING_ATTR_DEFAULT_CHAR (attrs) = make_number (' '); | |
| 7494 else | |
| 7495 { | |
| 7496 CHECK_CHARACTER (val); | |
| 7497 CODING_ATTR_DEFAULT_CHAR (attrs) = val; | |
| 7498 } | |
| 7499 | |
| 7500 val = args[coding_arg_plist]; | |
| 7501 CHECK_LIST (val); | |
| 7502 CODING_ATTR_PLIST (attrs) = val; | |
| 7503 | |
| 7504 if (EQ (coding_type, Qcharset)) | |
| 7505 { | |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7506 /* Generate a lisp vector of 256 elements. Each element is nil, |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7507 integer, or a list of charset IDs. |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7508 |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7509 If Nth element is nil, the byte code N is invalid in this |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7510 coding system. |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7511 |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7512 If Nth element is a number NUM, N is the first byte of a |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7513 charset whose ID is NUM. |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7514 |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7515 If Nth element is a list of charset IDs, N is the first byte |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7516 of one of them. The list is sorted by dimensions of the |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7517 charsets. A charset of smaller dimension comes firtst. |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7518 */ |
| 88365 | 7519 val = Fmake_vector (make_number (256), Qnil); |
| 7520 | |
| 7521 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
| 7522 { | |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7523 struct charset *charset = CHARSET_FROM_ID (XFASTINT (XCAR (tail))); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7524 int dim = CHARSET_DIMENSION (charset); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7525 int idx = (dim - 1) * 4; |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7526 |
|
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7527 for (i = charset->code_space[idx]; |
|
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7528 i <= charset->code_space[idx + 1]; i++) |
|
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7529 { |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7530 Lisp_Object tmp, tmp2; |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7531 int dim2; |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7532 |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7533 tmp = AREF (val, i); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7534 if (NILP (tmp)) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7535 tmp = XCAR (tail); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7536 else if (NUMBERP (tmp)) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7537 { |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7538 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp))); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7539 if (dim < dim2) |
|
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
7540 tmp = Fcons (XCAR (tail), Fcons (tmp, Qnil)); |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7541 else |
|
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
7542 tmp = Fcons (tmp, Fcons (XCAR (tail), Qnil)); |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7543 } |
|
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7544 else |
|
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7545 { |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7546 for (tmp2 = tmp; CONSP (tmp2); tmp2 = XCDR (tmp2)) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7547 { |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7548 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2)))); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7549 if (dim < dim2) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7550 break; |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7551 } |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7552 if (NILP (tmp2)) |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7553 tmp = nconc2 (tmp, Fcons (XCAR (tail), Qnil)); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7554 else |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7555 { |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7556 XSETCDR (tmp2, Fcons (XCAR (tmp2), XCDR (tmp2))); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7557 XSETCAR (tmp2, XCAR (tail)); |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7558 } |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7559 } |
|
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
7560 ASET (val, i, tmp); |
|
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
7561 } |
| 88365 | 7562 } |
| 7563 ASET (attrs, coding_attr_charset_valids, val); | |
| 7564 category = coding_category_charset; | |
| 7565 } | |
| 7566 else if (EQ (coding_type, Qccl)) | |
| 7567 { | |
| 7568 Lisp_Object valids; | |
| 7569 | |
| 7570 if (nargs < coding_arg_ccl_max) | |
| 7571 goto short_args; | |
| 7572 | |
| 7573 val = args[coding_arg_ccl_decoder]; | |
| 7574 CHECK_CCL_PROGRAM (val); | |
| 7575 if (VECTORP (val)) | |
| 7576 val = Fcopy_sequence (val); | |
| 7577 ASET (attrs, coding_attr_ccl_decoder, val); | |
| 7578 | |
| 7579 val = args[coding_arg_ccl_encoder]; | |
| 7580 CHECK_CCL_PROGRAM (val); | |
| 7581 if (VECTORP (val)) | |
| 7582 val = Fcopy_sequence (val); | |
| 7583 ASET (attrs, coding_attr_ccl_encoder, val); | |
| 7584 | |
| 7585 val = args[coding_arg_ccl_valids]; | |
| 7586 valids = Fmake_string (make_number (256), make_number (0)); | |
| 7587 for (tail = val; !NILP (tail); tail = Fcdr (tail)) | |
| 7588 { | |
| 7589 val = Fcar (tail); | |
| 7590 if (INTEGERP (val)) | |
| 88856 | 7591 ASET (valids, XINT (val), make_number (1)); |
| 88365 | 7592 else |
| 7593 { | |
| 7594 int from, to; | |
| 7595 | |
| 7596 CHECK_CONS (val); | |
| 7597 CHECK_NUMBER (XCAR (val)); | |
| 7598 CHECK_NUMBER (XCDR (val)); | |
| 7599 from = XINT (XCAR (val)); | |
| 7600 to = XINT (XCDR (val)); | |
| 7601 for (i = from; i <= to; i++) | |
| 88856 | 7602 ASET (valids, i, make_number (1)); |
| 88365 | 7603 } |
| 7604 } | |
| 7605 ASET (attrs, coding_attr_ccl_valids, valids); | |
| 7606 | |
| 7607 category = coding_category_ccl; | |
| 7608 } | |
| 7609 else if (EQ (coding_type, Qutf_16)) | |
| 7610 { | |
| 7611 Lisp_Object bom, endian; | |
| 7612 | |
| 7613 if (nargs < coding_arg_utf16_max) | |
| 7614 goto short_args; | |
| 7615 | |
| 7616 bom = args[coding_arg_utf16_bom]; | |
| 7617 if (! NILP (bom) && ! EQ (bom, Qt)) | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7618 { |
| 88365 | 7619 CHECK_CONS (bom); |
| 7620 CHECK_CODING_SYSTEM (XCAR (bom)); | |
| 7621 CHECK_CODING_SYSTEM (XCDR (bom)); | |
| 7622 } | |
| 7623 ASET (attrs, coding_attr_utf_16_bom, bom); | |
| 7624 | |
| 7625 endian = args[coding_arg_utf16_endian]; | |
| 7626 ASET (attrs, coding_attr_utf_16_endian, endian); | |
| 7627 | |
| 7628 category = (CONSP (bom) | |
| 7629 ? coding_category_utf_16_auto | |
| 7630 : NILP (bom) | |
| 7631 ? (NILP (endian) | |
| 7632 ? coding_category_utf_16_be_nosig | |
| 7633 : coding_category_utf_16_le_nosig) | |
| 7634 : (NILP (endian) | |
| 7635 ? coding_category_utf_16_be | |
| 7636 : coding_category_utf_16_le)); | |
| 7637 } | |
| 7638 else if (EQ (coding_type, Qiso_2022)) | |
| 7639 { | |
| 7640 Lisp_Object initial, reg_usage, request, flags; | |
|
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
7641 int i, id; |
| 88365 | 7642 |
| 7643 if (nargs < coding_arg_iso2022_max) | |
| 7644 goto short_args; | |
| 7645 | |
| 7646 initial = Fcopy_sequence (args[coding_arg_iso2022_initial]); | |
| 7647 CHECK_VECTOR (initial); | |
| 7648 for (i = 0; i < 4; i++) | |
| 7649 { | |
| 7650 val = Faref (initial, make_number (i)); | |
| 7651 if (! NILP (val)) | |
| 7652 { | |
| 7653 CHECK_CHARSET_GET_ID (val, id); | |
| 7654 ASET (initial, i, make_number (id)); | |
| 7655 } | |
| 7656 else | |
| 7657 ASET (initial, i, make_number (-1)); | |
| 7658 } | |
| 7659 | |
| 7660 reg_usage = args[coding_arg_iso2022_reg_usage]; | |
| 7661 CHECK_CONS (reg_usage); | |
| 7662 CHECK_NATNUM (XCAR (reg_usage)); | |
| 7663 CHECK_NATNUM (XCDR (reg_usage)); | |
| 7664 | |
| 7665 request = Fcopy_sequence (args[coding_arg_iso2022_request]); | |
| 7666 for (tail = request; ! NILP (tail); tail = Fcdr (tail)) | |
| 7667 { | |
| 7668 int id; | |
| 7669 | |
| 7670 val = Fcar (tail); | |
| 7671 CHECK_CONS (val); | |
| 7672 CHECK_CHARSET_GET_ID (XCAR (val), id); | |
| 7673 CHECK_NATNUM (XCDR (val)); | |
| 7674 if (XINT (XCDR (val)) >= 4) | |
| 7675 error ("Invalid graphic register number: %d", XINT (XCDR (val))); | |
| 7676 XCAR (val) = make_number (id); | |
| 7677 } | |
| 7678 | |
| 7679 flags = args[coding_arg_iso2022_flags]; | |
| 7680 CHECK_NATNUM (flags); | |
| 7681 i = XINT (flags); | |
| 7682 if (EQ (args[coding_arg_charset_list], Qiso_2022)) | |
| 7683 flags = make_number (i | CODING_ISO_FLAG_FULL_SUPPORT); | |
| 7684 | |
| 7685 ASET (attrs, coding_attr_iso_initial, initial); | |
| 7686 ASET (attrs, coding_attr_iso_usage, reg_usage); | |
| 7687 ASET (attrs, coding_attr_iso_request, request); | |
| 7688 ASET (attrs, coding_attr_iso_flags, flags); | |
| 7689 setup_iso_safe_charsets (attrs); | |
| 7690 | |
| 7691 if (i & CODING_ISO_FLAG_SEVEN_BITS) | |
| 7692 category = ((i & (CODING_ISO_FLAG_LOCKING_SHIFT | |
| 7693 | CODING_ISO_FLAG_SINGLE_SHIFT)) | |
| 7694 ? coding_category_iso_7_else | |
| 7695 : EQ (args[coding_arg_charset_list], Qiso_2022) | |
| 7696 ? coding_category_iso_7 | |
| 7697 : coding_category_iso_7_tight); | |
| 7698 else | |
| 7699 { | |
| 7700 int id = XINT (AREF (initial, 1)); | |
| 7701 | |
|
88977
3b05c02eebf2
(Fdefine_coding_system_internal): Fix category setting
Kenichi Handa <handa@m17n.org>
parents:
88950
diff
changeset
|
7702 category = (((i & CODING_ISO_FLAG_LOCKING_SHIFT) |
| 88365 | 7703 || EQ (args[coding_arg_charset_list], Qiso_2022) |
| 7704 || id < 0) | |
| 7705 ? coding_category_iso_8_else | |
| 7706 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id)) == 1) | |
| 7707 ? coding_category_iso_8_1 | |
| 7708 : coding_category_iso_8_2); | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7709 } |
| 88365 | 7710 } |
| 7711 else if (EQ (coding_type, Qemacs_mule)) | |
| 7712 { | |
| 7713 if (EQ (args[coding_arg_charset_list], Qemacs_mule)) | |
| 7714 ASET (attrs, coding_attr_emacs_mule_full, Qt); | |
| 7715 | |
| 7716 category = coding_category_emacs_mule; | |
| 7717 } | |
| 7718 else if (EQ (coding_type, Qshift_jis)) | |
| 7719 { | |
| 7720 | |
| 7721 struct charset *charset; | |
| 7722 | |
| 7723 if (XINT (Flength (charset_list)) != 3) | |
| 7724 error ("There should be just three charsets"); | |
| 7725 | |
| 7726 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
| 7727 if (CHARSET_DIMENSION (charset) != 1) | |
| 7728 error ("Dimension of charset %s is not one", | |
| 7729 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
| 7730 | |
| 7731 charset_list = XCDR (charset_list); | |
| 7732 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
| 7733 if (CHARSET_DIMENSION (charset) != 1) | |
| 7734 error ("Dimension of charset %s is not one", | |
| 7735 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
| 7736 | |
| 7737 charset_list = XCDR (charset_list); | |
| 7738 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
| 7739 if (CHARSET_DIMENSION (charset) != 2) | |
| 7740 error ("Dimension of charset %s is not two", | |
| 7741 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
| 7742 | |
| 7743 category = coding_category_sjis; | |
| 7744 Vsjis_coding_system = name; | |
| 7745 } | |
| 7746 else if (EQ (coding_type, Qbig5)) | |
| 7747 { | |
| 7748 struct charset *charset; | |
| 7749 | |
| 7750 if (XINT (Flength (charset_list)) != 2) | |
| 7751 error ("There should be just two charsets"); | |
| 7752 | |
| 7753 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
| 7754 if (CHARSET_DIMENSION (charset) != 1) | |
| 7755 error ("Dimension of charset %s is not one", | |
| 7756 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
| 7757 | |
| 7758 charset_list = XCDR (charset_list); | |
| 7759 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
| 7760 if (CHARSET_DIMENSION (charset) != 2) | |
| 7761 error ("Dimension of charset %s is not two", | |
| 7762 XSYMBOL (CHARSET_NAME (charset))->name->data); | |
| 7763 | |
| 7764 category = coding_category_big5; | |
| 7765 Vbig5_coding_system = name; | |
| 7766 } | |
| 7767 else if (EQ (coding_type, Qraw_text)) | |
| 7768 category = coding_category_raw_text; | |
| 7769 else if (EQ (coding_type, Qutf_8)) | |
| 7770 category = coding_category_utf_8; | |
| 7771 else if (EQ (coding_type, Qundecided)) | |
| 7772 category = coding_category_undecided; | |
| 7773 else | |
| 7774 error ("Invalid coding system type: %s", | |
| 7775 XSYMBOL (coding_type)->name->data); | |
| 7776 | |
| 7777 CODING_ATTR_CATEGORY (attrs) = make_number (category); | |
| 7778 | |
| 7779 eol_type = args[coding_arg_eol_type]; | |
| 7780 if (! NILP (eol_type) | |
| 7781 && ! EQ (eol_type, Qunix) | |
| 7782 && ! EQ (eol_type, Qdos) | |
| 7783 && ! EQ (eol_type, Qmac)) | |
| 7784 error ("Invalid eol-type"); | |
| 7785 | |
| 7786 aliases = Fcons (name, Qnil); | |
| 7787 | |
| 7788 if (NILP (eol_type)) | |
| 7789 { | |
| 7790 eol_type = make_subsidiaries (name); | |
| 7791 for (i = 0; i < 3; i++) | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7792 { |
| 88365 | 7793 Lisp_Object this_spec, this_name, this_aliases, this_eol_type; |
| 7794 | |
| 7795 this_name = AREF (eol_type, i); | |
| 7796 this_aliases = Fcons (this_name, Qnil); | |
| 7797 this_eol_type = (i == 0 ? Qunix : i == 1 ? Qdos : Qmac); | |
| 7798 this_spec = Fmake_vector (make_number (3), attrs); | |
| 7799 ASET (this_spec, 1, this_aliases); | |
| 7800 ASET (this_spec, 2, this_eol_type); | |
| 7801 Fputhash (this_name, this_spec, Vcoding_system_hash_table); | |
| 7802 Vcoding_system_list = Fcons (this_name, Vcoding_system_list); | |
| 7803 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (this_name), Qnil), | |
| 7804 Vcoding_system_alist); | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7805 } |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7806 } |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7807 |
| 88365 | 7808 spec_vec = Fmake_vector (make_number (3), attrs); |
| 7809 ASET (spec_vec, 1, aliases); | |
| 7810 ASET (spec_vec, 2, eol_type); | |
| 7811 | |
| 7812 Fputhash (name, spec_vec, Vcoding_system_hash_table); | |
| 7813 Vcoding_system_list = Fcons (name, Vcoding_system_list); | |
| 7814 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil), | |
| 7815 Vcoding_system_alist); | |
| 7816 | |
| 7817 { | |
| 7818 int id = coding_categories[category].id; | |
| 7819 | |
| 7820 if (id < 0 || EQ (name, CODING_ID_NAME (id))) | |
| 7821 setup_coding_system (name, &coding_categories[category]); | |
| 7822 } | |
| 7823 | |
| 7824 return Qnil; | |
| 7825 | |
| 7826 short_args: | |
| 7827 return Fsignal (Qwrong_number_of_arguments, | |
| 7828 Fcons (intern ("define-coding-system-internal"), | |
| 7829 make_number (nargs))); | |
| 7830 } | |
| 7831 | |
| 88645 | 7832 /* Fixme: should this record the alias relationships for |
| 7833 diagnostics? */ | |
| 88365 | 7834 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, |
| 7835 Sdefine_coding_system_alias, 2, 2, 0, | |
| 7836 doc: /* Define ALIAS as an alias for CODING-SYSTEM. */) | |
| 7837 (alias, coding_system) | |
| 7838 Lisp_Object alias, coding_system; | |
| 7839 { | |
| 7840 Lisp_Object spec, aliases, eol_type; | |
| 7841 | |
| 7842 CHECK_SYMBOL (alias); | |
| 7843 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
| 7844 aliases = AREF (spec, 1); | |
| 7845 while (!NILP (XCDR (aliases))) | |
| 7846 aliases = XCDR (aliases); | |
| 7847 XCDR (aliases) = Fcons (alias, Qnil); | |
| 7848 | |
| 7849 eol_type = AREF (spec, 2); | |
| 7850 if (VECTORP (eol_type)) | |
| 7851 { | |
| 7852 Lisp_Object subsidiaries; | |
| 7853 int i; | |
| 7854 | |
| 7855 subsidiaries = make_subsidiaries (alias); | |
| 7856 for (i = 0; i < 3; i++) | |
| 7857 Fdefine_coding_system_alias (AREF (subsidiaries, i), | |
| 7858 AREF (eol_type, i)); | |
| 7859 | |
| 7860 ASET (spec, 2, subsidiaries); | |
| 7861 } | |
| 7862 | |
| 7863 Fputhash (alias, spec, Vcoding_system_hash_table); | |
| 88485 | 7864 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (alias), Qnil), |
| 7865 Vcoding_system_alist); | |
| 88365 | 7866 |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7867 return Qnil; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7868 } |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7869 |
| 88365 | 7870 DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
| 7871 1, 1, 0, | |
| 7872 doc: /* Return the base of CODING-SYSTEM. | |
| 88645 | 7873 Any alias or subsidiary coding system is not a base coding system. */) |
| 88365 | 7874 (coding_system) |
| 7875 Lisp_Object coding_system; | |
| 7876 { | |
| 7877 Lisp_Object spec, attrs; | |
| 7878 | |
| 7879 if (NILP (coding_system)) | |
| 7880 return (Qno_conversion); | |
| 7881 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
| 7882 attrs = AREF (spec, 0); | |
| 7883 return CODING_ATTR_BASE_NAME (attrs); | |
| 7884 } | |
| 7885 | |
| 7886 DEFUN ("coding-system-plist", Fcoding_system_plist, Scoding_system_plist, | |
| 7887 1, 1, 0, | |
| 7888 doc: "Return the property list of CODING-SYSTEM.") | |
| 7889 (coding_system) | |
| 7890 Lisp_Object coding_system; | |
|
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7891 { |
| 88365 | 7892 Lisp_Object spec, attrs; |
| 7893 | |
| 7894 if (NILP (coding_system)) | |
| 7895 coding_system = Qno_conversion; | |
| 7896 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
| 7897 attrs = AREF (spec, 0); | |
| 7898 return CODING_ATTR_PLIST (attrs); | |
| 7899 } | |
| 7900 | |
| 7901 | |
| 7902 DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |
| 7903 1, 1, 0, | |
| 88645 | 7904 doc: /* Return the list of aliases of CODING-SYSTEM. */) |
| 88365 | 7905 (coding_system) |
| 7906 Lisp_Object coding_system; | |
| 7907 { | |
| 7908 Lisp_Object spec; | |
| 7909 | |
| 7910 if (NILP (coding_system)) | |
| 7911 coding_system = Qno_conversion; | |
| 7912 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
| 88645 | 7913 return AREF (spec, 1); |
| 88365 | 7914 } |
| 7915 | |
| 7916 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, | |
| 7917 Scoding_system_eol_type, 1, 1, 0, | |
| 7918 doc: /* Return eol-type of CODING-SYSTEM. | |
| 7919 An eol-type is integer 0, 1, 2, or a vector of coding systems. | |
| 7920 | |
| 7921 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF, | |
| 7922 and CR respectively. | |
| 7923 | |
| 7924 A vector value indicates that a format of end-of-line should be | |
| 7925 detected automatically. Nth element of the vector is the subsidiary | |
| 7926 coding system whose eol-type is N. */) | |
| 7927 (coding_system) | |
| 7928 Lisp_Object coding_system; | |
| 7929 { | |
| 7930 Lisp_Object spec, eol_type; | |
| 7931 int n; | |
| 7932 | |
| 7933 if (NILP (coding_system)) | |
| 7934 coding_system = Qno_conversion; | |
| 7935 if (! CODING_SYSTEM_P (coding_system)) | |
| 7936 return Qnil; | |
| 7937 spec = CODING_SYSTEM_SPEC (coding_system); | |
| 7938 eol_type = AREF (spec, 2); | |
| 7939 if (VECTORP (eol_type)) | |
| 7940 return Fcopy_sequence (eol_type); | |
| 7941 n = EQ (eol_type, Qunix) ? 0 : EQ (eol_type, Qdos) ? 1 : 2; | |
| 7942 return make_number (n); | |
|
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7943 } |
|
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
7944 |
| 17052 | 7945 #endif /* emacs */ |
| 7946 | |
| 7947 | |
|
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
7948 /*** 9. Post-amble ***/ |
| 17052 | 7949 |
| 21514 | 7950 void |
| 17052 | 7951 init_coding_once () |
| 7952 { | |
| 7953 int i; | |
| 7954 | |
| 88365 | 7955 for (i = 0; i < coding_category_max; i++) |
| 7956 { | |
| 7957 coding_categories[i].id = -1; | |
| 7958 coding_priorities[i] = i; | |
| 7959 } | |
| 17052 | 7960 |
| 7961 /* ISO2022 specific initialize routine. */ | |
| 7962 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
|
7963 iso_code_class[i] = ISO_control_0; |
| 17052 | 7964 for (i = 0x21; i < 0x7F; i++) |
| 7965 iso_code_class[i] = ISO_graphic_plane_0; | |
| 7966 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
|
7967 iso_code_class[i] = ISO_control_1; |
| 17052 | 7968 for (i = 0xA1; i < 0xFF; i++) |
| 7969 iso_code_class[i] = ISO_graphic_plane_1; | |
| 7970 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
| 7971 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
| 7972 iso_code_class[ISO_CODE_CR] = ISO_carriage_return; | |
| 7973 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
| 7974 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
| 7975 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
| 7976 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
| 7977 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
| 7978 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
| 7979 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
| 7980 | |
|
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
7981 inhibit_pre_post_conversion = 0; |
| 88365 | 7982 |
| 7983 for (i = 0; i < 256; i++) | |
| 7984 { | |
| 7985 emacs_mule_bytes[i] = 1; | |
| 7986 } | |
|
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
7987 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_11] = 3; |
|
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
7988 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_12] = 3; |
|
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
7989 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_21] = 4; |
|
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
7990 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_22] = 4; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7991 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7992 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7993 #ifdef emacs |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7994 |
| 21514 | 7995 void |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7996 syms_of_coding () |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
7997 { |
| 88365 | 7998 staticpro (&Vcoding_system_hash_table); |
| 7999 Vcoding_system_hash_table = Fmakehash (Qeq); | |
| 8000 | |
| 8001 staticpro (&Vsjis_coding_system); | |
| 8002 Vsjis_coding_system = Qnil; | |
| 8003 | |
| 8004 staticpro (&Vbig5_coding_system); | |
| 8005 Vbig5_coding_system = Qnil; | |
| 8006 | |
| 8007 staticpro (&Vcode_conversion_work_buf_list); | |
| 8008 Vcode_conversion_work_buf_list = Qnil; | |
| 8009 | |
| 8010 staticpro (&Vcode_conversion_reused_work_buf); | |
| 8011 Vcode_conversion_reused_work_buf = Qnil; | |
| 8012 | |
| 8013 DEFSYM (Qcharset, "charset"); | |
| 8014 DEFSYM (Qtarget_idx, "target-idx"); | |
| 8015 DEFSYM (Qcoding_system_history, "coding-system-history"); | |
|
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
8016 Fset (Qcoding_system_history, Qnil); |
|
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
8017 |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8018 /* 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
|
8019 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
|
8020 /* 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
|
8021 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
|
8022 |
| 88365 | 8023 DEFSYM (Qcall_process, "call-process"); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8024 /* 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
|
8025 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
|
8026 |
| 88365 | 8027 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
|
8028 /* 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
|
8029 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
|
8030 |
| 88365 | 8031 DEFSYM (Qstart_process, "start-process"); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8032 /* 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
|
8033 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
|
8034 |
| 88365 | 8035 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
|
8036 /* 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
|
8037 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
|
8038 |
| 88365 | 8039 DEFSYM (Qcoding_system, "coding-system"); |
| 8040 DEFSYM (Qcoding_aliases, "coding-aliases"); | |
| 8041 | |
| 8042 DEFSYM (Qeol_type, "eol-type"); | |
| 8043 DEFSYM (Qunix, "unix"); | |
| 8044 DEFSYM (Qdos, "dos"); | |
| 8045 | |
| 8046 DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system"); | |
| 8047 DEFSYM (Qpost_read_conversion, "post-read-conversion"); | |
| 8048 DEFSYM (Qpre_write_conversion, "pre-write-conversion"); | |
| 8049 DEFSYM (Qdefault_char, "default-char"); | |
| 8050 DEFSYM (Qundecided, "undecided"); | |
| 8051 DEFSYM (Qno_conversion, "no-conversion"); | |
| 8052 DEFSYM (Qraw_text, "raw-text"); | |
| 8053 | |
| 8054 DEFSYM (Qiso_2022, "iso-2022"); | |
| 8055 | |
| 8056 DEFSYM (Qutf_8, "utf-8"); | |
| 8057 | |
| 8058 DEFSYM (Qutf_16, "utf-16"); | |
| 8059 DEFSYM (Qutf_16_be, "utf-16-be"); | |
| 8060 DEFSYM (Qutf_16_be_nosig, "utf-16-be-nosig"); | |
| 8061 DEFSYM (Qutf_16_le, "utf-16-l3"); | |
| 8062 DEFSYM (Qutf_16_le_nosig, "utf-16-le-nosig"); | |
| 8063 DEFSYM (Qsignature, "signature"); | |
| 8064 DEFSYM (Qendian, "endian"); | |
| 8065 DEFSYM (Qbig, "big"); | |
| 8066 DEFSYM (Qlittle, "little"); | |
| 8067 | |
| 8068 DEFSYM (Qshift_jis, "shift-jis"); | |
| 8069 DEFSYM (Qbig5, "big5"); | |
| 8070 | |
| 8071 DEFSYM (Qcoding_system_p, "coding-system-p"); | |
| 8072 | |
| 8073 DEFSYM (Qcoding_system_error, "coding-system-error"); | |
| 17052 | 8074 Fput (Qcoding_system_error, Qerror_conditions, |
| 8075 Fcons (Qcoding_system_error, Fcons (Qerror, Qnil))); | |
| 8076 Fput (Qcoding_system_error, Qerror_message, | |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8077 build_string ("Invalid coding system")); |
| 17052 | 8078 |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8079 /* 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
|
8080 Setting this variable twice is harmless. |
|
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8081 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
|
8082 Qchar_table_extra_slots = intern ("char-table-extra-slots"); |
| 88365 | 8083 |
| 8084 DEFSYM (Qtranslation_table, "translation-table"); | |
| 8085 Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (1)); | |
| 8086 DEFSYM (Qtranslation_table_id, "translation-table-id"); | |
| 8087 DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); | |
| 8088 DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); | |
| 8089 | |
| 8090 DEFSYM (Qvalid_codes, "valid-codes"); | |
| 8091 | |
| 8092 DEFSYM (Qemacs_mule, "emacs-mule"); | |
| 8093 | |
| 8094 Vcoding_category_table | |
| 8095 = Fmake_vector (make_number (coding_category_max), Qnil); | |
| 8096 staticpro (&Vcoding_category_table); | |
| 8097 /* Followings are target of code detection. */ | |
| 8098 ASET (Vcoding_category_table, coding_category_iso_7, | |
| 8099 intern ("coding-category-iso-7")); | |
| 8100 ASET (Vcoding_category_table, coding_category_iso_7_tight, | |
| 8101 intern ("coding-category-iso-7-tight")); | |
| 8102 ASET (Vcoding_category_table, coding_category_iso_8_1, | |
| 8103 intern ("coding-category-iso-8-1")); | |
| 8104 ASET (Vcoding_category_table, coding_category_iso_8_2, | |
| 8105 intern ("coding-category-iso-8-2")); | |
| 8106 ASET (Vcoding_category_table, coding_category_iso_7_else, | |
| 8107 intern ("coding-category-iso-7-else")); | |
| 8108 ASET (Vcoding_category_table, coding_category_iso_8_else, | |
| 8109 intern ("coding-category-iso-8-else")); | |
| 8110 ASET (Vcoding_category_table, coding_category_utf_8, | |
| 8111 intern ("coding-category-utf-8")); | |
| 8112 ASET (Vcoding_category_table, coding_category_utf_16_be, | |
| 8113 intern ("coding-category-utf-16-be")); | |
| 8114 ASET (Vcoding_category_table, coding_category_utf_16_le, | |
| 8115 intern ("coding-category-utf-16-le")); | |
| 8116 ASET (Vcoding_category_table, coding_category_utf_16_be_nosig, | |
| 8117 intern ("coding-category-utf-16-be-nosig")); | |
| 8118 ASET (Vcoding_category_table, coding_category_utf_16_le_nosig, | |
| 8119 intern ("coding-category-utf-16-le-nosig")); | |
| 8120 ASET (Vcoding_category_table, coding_category_charset, | |
| 8121 intern ("coding-category-charset")); | |
| 8122 ASET (Vcoding_category_table, coding_category_sjis, | |
| 8123 intern ("coding-category-sjis")); | |
| 8124 ASET (Vcoding_category_table, coding_category_big5, | |
| 8125 intern ("coding-category-big5")); | |
| 8126 ASET (Vcoding_category_table, coding_category_ccl, | |
| 8127 intern ("coding-category-ccl")); | |
| 8128 ASET (Vcoding_category_table, coding_category_emacs_mule, | |
| 8129 intern ("coding-category-emacs-mule")); | |
| 8130 /* Followings are NOT target of code detection. */ | |
| 8131 ASET (Vcoding_category_table, coding_category_raw_text, | |
| 8132 intern ("coding-category-raw-text")); | |
| 8133 ASET (Vcoding_category_table, coding_category_undecided, | |
| 8134 intern ("coding-category-undecided")); | |
| 8135 | |
| 17052 | 8136 defsubr (&Scoding_system_p); |
| 8137 defsubr (&Sread_coding_system); | |
| 8138 defsubr (&Sread_non_nil_coding_system); | |
| 8139 defsubr (&Scheck_coding_system); | |
| 8140 defsubr (&Sdetect_coding_region); | |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8141 defsubr (&Sdetect_coding_string); |
|
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8142 defsubr (&Sfind_coding_systems_region_internal); |
| 88365 | 8143 defsubr (&Scheck_coding_systems_region); |
| 17052 | 8144 defsubr (&Sdecode_coding_region); |
| 8145 defsubr (&Sencode_coding_region); | |
| 8146 defsubr (&Sdecode_coding_string); | |
| 8147 defsubr (&Sencode_coding_string); | |
| 8148 defsubr (&Sdecode_sjis_char); | |
| 8149 defsubr (&Sencode_sjis_char); | |
| 8150 defsubr (&Sdecode_big5_char); | |
| 8151 defsubr (&Sencode_big5_char); | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
8152 defsubr (&Sset_terminal_coding_system_internal); |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
8153 defsubr (&Sset_safe_terminal_coding_system_internal); |
| 17052 | 8154 defsubr (&Sterminal_coding_system); |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
8155 defsubr (&Sset_keyboard_coding_system_internal); |
| 17052 | 8156 defsubr (&Skeyboard_coding_system); |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
8157 defsubr (&Sfind_operation_coding_system); |
| 88365 | 8158 defsubr (&Sset_coding_system_priority); |
| 8159 defsubr (&Sdefine_coding_system_internal); | |
| 8160 defsubr (&Sdefine_coding_system_alias); | |
| 8161 defsubr (&Scoding_system_base); | |
| 8162 defsubr (&Scoding_system_plist); | |
| 8163 defsubr (&Scoding_system_aliases); | |
| 8164 defsubr (&Scoding_system_eol_type); | |
| 8165 defsubr (&Scoding_system_priority_list); | |
| 17052 | 8166 |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8167 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
|
8168 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
|
8169 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8170 Do not alter the value of this variable manually. This variable should be |
| 88365 | 8171 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
|
8172 `define-coding-system-alias'. */); |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8173 Vcoding_system_list = Qnil; |
|
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8174 |
|
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8175 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
|
8176 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
|
8177 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
|
8178 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
|
8179 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8180 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
|
8181 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
|
8182 `define-coding-system-alias'. */); |
|
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8183 Vcoding_system_alist = Qnil; |
|
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8184 |
| 17052 | 8185 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
|
8186 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
|
8187 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8188 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
|
8189 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
|
8190 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
|
8191 system bound to the corresponding coding-category is selected. */); |
| 17052 | 8192 { |
| 8193 int i; | |
| 8194 | |
| 8195 Vcoding_category_list = Qnil; | |
| 88365 | 8196 for (i = coding_category_max - 1; i >= 0; i--) |
| 17052 | 8197 Vcoding_category_list |
|
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8198 = Fcons (XVECTOR (Vcoding_category_table)->contents[i], |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8199 Vcoding_category_list); |
| 17052 | 8200 } |
| 8201 | |
| 8202 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
|
8203 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
|
8204 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
|
8205 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
|
8206 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
|
8207 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
|
8208 `process-coding-system-alist', and `network-coding-system-alist'. */); |
| 17052 | 8209 Vcoding_system_for_read = Qnil; |
| 8210 | |
| 8211 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
|
8212 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
|
8213 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
|
8214 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
|
8215 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
|
8216 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8217 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
|
8218 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
|
8219 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
|
8220 `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
|
8221 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
|
8222 the value of `buffer-file-coding-system' is used. */); |
| 17052 | 8223 Vcoding_system_for_write = Qnil; |
| 8224 | |
| 8225 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
| 88365 | 8226 doc: /* |
| 8227 Coding system used in the latest file or process I/O. */); | |
| 17052 | 8228 Vlast_coding_system_used = Qnil; |
| 8229 | |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8230 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
| 88365 | 8231 doc: /* |
| 8232 *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
|
8233 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
|
8234 such conversion. */); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8235 inhibit_eol_conversion = 0; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
8236 |
|
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
8237 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system, |
| 88365 | 8238 doc: /* |
| 8239 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
|
8240 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
|
8241 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
|
8242 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
|
8243 |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8244 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
| 88365 | 8245 doc: /* |
| 8246 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
|
8247 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
|
8248 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
|
8249 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
|
8250 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
|
8251 the file contents. |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8252 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
|
8253 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
|
8254 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
|
8255 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
|
8256 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
|
8257 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8258 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
|
8259 and the variable `auto-coding-alist'. */); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8260 Vfile_coding_system_alist = Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8261 |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8262 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
| 88365 | 8263 doc: /* |
| 8264 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
|
8265 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
|
8266 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
|
8267 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
|
8268 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
|
8269 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
|
8270 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
|
8271 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
|
8272 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
|
8273 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
|
8274 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8275 See also the function `find-operation-coding-system'. */); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8276 Vprocess_coding_system_alist = Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8277 |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8278 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
| 88365 | 8279 doc: /* |
| 8280 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
|
8281 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
|
8282 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
|
8283 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
|
8284 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
|
8285 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
|
8286 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
|
8287 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
|
8288 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
|
8289 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
|
8290 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
|
8291 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8292 See also the function `find-operation-coding-system'. */); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8293 Vnetwork_coding_system_alist = Qnil; |
| 17052 | 8294 |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8295 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
|
8296 doc: /* Coding system to use with system messages. |
|
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
8297 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
|
8298 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
|
8299 |
|
29182
1d1c27067af4
(encode_eol): Add null statement after label.
Dave Love <fx@gnu.org>
parents:
29172
diff
changeset
|
8300 /* 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
|
8301 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix, |
| 88365 | 8302 doc: /* |
| 8303 *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
|
8304 eol_mnemonic_unix = build_string (":"); |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8305 |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8306 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos, |
| 88365 | 8307 doc: /* |
| 8308 *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
|
8309 eol_mnemonic_dos = build_string ("\\"); |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8310 |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8311 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac, |
| 88365 | 8312 doc: /* |
| 8313 *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
|
8314 eol_mnemonic_mac = build_string ("/"); |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8315 |
|
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
8316 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided, |
| 88365 | 8317 doc: /* |
| 8318 *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
|
8319 eol_mnemonic_undecided = build_string (":"); |
| 17052 | 8320 |
|
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8321 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation, |
| 88365 | 8322 doc: /* |
| 8323 *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
|
8324 Venable_character_translation = Qt; |
|
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
8325 |
|
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8326 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
|
8327 &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
|
8328 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
|
8329 Vstandard_translation_table_for_decode = Qnil; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8330 |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
8331 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
|
8332 &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
|
8333 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
|
8334 Vstandard_translation_table_for_encode = Qnil; |
| 17052 | 8335 |
| 88365 | 8336 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
|
8337 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
|
8338 While encoding, if a charset (car part of an element) is found, |
| 88365 | 8339 designate it with the escape sequence identifying revision (cdr part |
| 8340 of the element). */); | |
| 8341 Vcharset_revision_table = Qnil; | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8342 |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8343 DEFVAR_LISP ("default-process-coding-system", |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
8344 &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
|
8345 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
|
8346 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
|
8347 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
|
8348 Vdefault_process_coding_system = Qnil; |
|
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
8349 |
|
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
8350 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table, |
| 88365 | 8351 doc: /* |
| 8352 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
|
8353 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
|
8354 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
|
8355 \(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
|
8356 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
|
8357 `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
|
8358 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
|
8359 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
|
8360 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
|
8361 |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8362 DEFVAR_LISP ("select-safe-coding-system-function", |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8363 &Vselect_safe_coding_system_function, |
| 88365 | 8364 doc: /* |
| 8365 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
|
8366 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8367 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
|
8368 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
|
8369 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
|
8370 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8371 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
|
8372 Vselect_safe_coding_system_function = Qnil; |
|
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8373 |
|
30292
14a9937df1f5
(syms_of_coding): Fix typo in spelling of variable
Gerd Moellmann <gerd@gnu.org>
parents:
30263
diff
changeset
|
8374 DEFVAR_BOOL ("inhibit-iso-escape-detection", |
|
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
8375 &inhibit_iso_escape_detection, |
| 88365 | 8376 doc: /* |
| 8377 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
|
8378 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8379 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
|
8380 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
|
8381 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
|
8382 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
|
8383 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
|
8384 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8385 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
|
8386 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
|
8387 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
|
8388 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
|
8389 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
|
8390 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8391 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
|
8392 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
|
8393 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
|
8394 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
|
8395 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
|
8396 |
|
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8397 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
|
8398 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
|
8399 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
|
8400 inhibit_iso_escape_detection = 0; |
|
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8401 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8402 { |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8403 Lisp_Object args[coding_arg_max]; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8404 Lisp_Object plist[14]; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8405 int i; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8406 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8407 for (i = 0; i < coding_arg_max; i++) |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8408 args[i] = Qnil; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8409 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8410 plist[0] = intern (":name"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8411 plist[1] = args[coding_arg_name] = Qno_conversion; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8412 plist[2] = intern (":mnemonic"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8413 plist[3] = args[coding_arg_mnemonic] = make_number ('='); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8414 plist[4] = intern (":coding-type"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8415 plist[5] = args[coding_arg_coding_type] = Qraw_text; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8416 plist[6] = intern (":ascii-compatible-p"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8417 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8418 plist[8] = intern (":default-char"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8419 plist[9] = args[coding_arg_default_char] = make_number (0); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8420 plist[10] = intern (":docstring"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8421 plist[11] = build_string ("Do no conversion.\n\ |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8422 \n\ |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8423 When you visit a file with this coding, the file is read into a\n\ |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8424 unibyte buffer as is, thus each byte of a file is treated as a\n\ |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8425 character."); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8426 plist[12] = intern (":eol-type"); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8427 plist[13] = args[coding_arg_eol_type] = Qunix; |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8428 args[coding_arg_plist] = Flist (14, plist); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8429 Fdefine_coding_system_internal (coding_arg_max, args); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8430 } |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8431 |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8432 setup_coding_system (Qno_conversion, &keyboard_coding); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8433 setup_coding_system (Qno_conversion, &terminal_coding); |
|
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
8434 setup_coding_system (Qno_conversion, &safe_terminal_coding); |
| 17052 | 8435 } |
| 8436 | |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8437 char * |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8438 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
|
8439 int error_number; |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8440 { |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8441 char *str; |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8442 |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26240
diff
changeset
|
8443 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
|
8444 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
|
8445 |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8446 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
|
8447 { |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8448 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
|
8449 Vlocale_coding_system, |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8450 0); |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8451 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
|
8452 } |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8453 |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8454 return str; |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8455 } |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
8456 |
| 17052 | 8457 #endif /* emacs */ |
