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