Mercurial > emacs
annotate src/coding.c @ 19052:302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
forms in a buffer as is.
(detect_coding_mask): If ISO_CODE_CSI appears in an invalid
sequence, ignore it.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Thu, 31 Jul 1997 05:55:12 +0000 |
| parents | 50c89868f8c7 |
| children | 36b06087dc31 |
| rev | line source |
|---|---|
| 17052 | 1 /* Coding system handler (conversion, detection, and etc). |
|
18269
888bfd80db2c
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18180
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
|
888bfd80db2c
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18180
diff
changeset
|
3 Licensed to the Free Software Foundation. |
| 17052 | 4 |
| 17071 | 5 This file is part of GNU Emacs. |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 20 Boston, MA 02111-1307, USA. */ | |
| 17052 | 21 |
| 22 /*** TABLE OF CONTENTS *** | |
| 23 | |
| 24 1. Preamble | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
25 2. Emacs' internal format (emacs-mule) handlers |
| 17052 | 26 3. ISO2022 handlers |
| 27 4. Shift-JIS and BIG5 handlers | |
| 28 5. End-of-line handlers | |
| 29 6. C library functions | |
| 30 7. Emacs Lisp library functions | |
| 31 8. Post-amble | |
| 32 | |
| 33 */ | |
| 34 | |
| 35 /*** GENERAL NOTE on CODING SYSTEM *** | |
| 36 | |
| 37 Coding system is an encoding mechanism of one or more character | |
| 38 sets. Here's a list of coding systems which Emacs can handle. When | |
| 39 we say "decode", it means converting some other coding system to | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
40 Emacs' internal format (emacs-internal), and when we say "encode", |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
41 it means converting the coding system emacs-mule to some other |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
42 coding system. |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
43 |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
44 0. Emacs' internal format (emacs-mule) |
| 17052 | 45 |
| 46 Emacs itself holds a multi-lingual character in a buffer and a string | |
| 18766 | 47 in a special format. Details are described in section 2. |
| 17052 | 48 |
| 49 1. ISO2022 | |
| 50 | |
| 51 The most famous coding system for multiple character sets. X's | |
| 18766 | 52 Compound Text, various EUCs (Extended Unix Code), and coding |
| 53 systems used in Internet communication such as ISO-2022-JP are | |
| 54 all variants of ISO2022. Details are described in section 3. | |
| 17052 | 55 |
| 56 2. SJIS (or Shift-JIS or MS-Kanji-Code) | |
| 57 | |
| 58 A coding system to encode character sets: ASCII, JISX0201, and | |
| 59 JISX0208. Widely used for PC's in Japan. Details are described in | |
| 18766 | 60 section 4. |
| 17052 | 61 |
| 62 3. BIG5 | |
| 63 | |
| 64 A coding system to encode character sets: ASCII and Big5. Widely | |
| 65 used by Chinese (mainly in Taiwan and Hong Kong). Details are | |
| 18766 | 66 described in section 4. In this file, when we write "BIG5" |
| 67 (all uppercase), we mean the coding system, and when we write | |
| 68 "Big5" (capitalized), we mean the character set. | |
| 69 | |
| 70 4. Other | |
| 71 | |
| 72 If a user wants to read/write a text encoded in a coding system not | |
| 17052 | 73 listed above, he can supply a decoder and an encoder for it in CCL |
| 74 (Code Conversion Language) programs. Emacs executes the CCL program | |
| 75 while reading/writing. | |
| 76 | |
| 18766 | 77 Emacs represents a coding-system by a Lisp symbol that has a property |
| 17052 | 78 `coding-system'. But, before actually using the coding-system, the |
| 79 information about it is set in a structure of type `struct | |
| 18766 | 80 coding_system' for rapid processing. See section 6 for more details. |
| 17052 | 81 |
| 82 */ | |
| 83 | |
| 84 /*** GENERAL NOTES on END-OF-LINE FORMAT *** | |
| 85 | |
| 86 How end-of-line of a text is encoded depends on a system. For | |
| 87 instance, Unix's format is just one byte of `line-feed' code, | |
| 18766 | 88 whereas DOS's format is two-byte sequence of `carriage-return' and |
| 17052 | 89 `line-feed' codes. MacOS's format is one byte of `carriage-return'. |
| 90 | |
| 18766 | 91 Since text characters encoding and end-of-line encoding are |
| 92 independent, any coding system described above can take | |
| 17052 | 93 any format of end-of-line. So, Emacs has information of format of |
| 18766 | 94 end-of-line in each coding-system. See section 6 for more details. |
| 17052 | 95 |
| 96 */ | |
| 97 | |
| 98 /*** GENERAL NOTES on `detect_coding_XXX ()' functions *** | |
| 99 | |
| 100 These functions check if a text between SRC and SRC_END is encoded | |
| 101 in the coding system category XXX. Each returns an integer value in | |
| 102 which appropriate flag bits for the category XXX is set. The flag | |
| 103 bits are defined in macros CODING_CATEGORY_MASK_XXX. Below is the | |
| 104 template of these functions. */ | |
| 105 #if 0 | |
| 106 int | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
107 detect_coding_emacs_mule (src, src_end) |
| 17052 | 108 unsigned char *src, *src_end; |
| 109 { | |
| 110 ... | |
| 111 } | |
| 112 #endif | |
| 113 | |
| 114 /*** GENERAL NOTES on `decode_coding_XXX ()' functions *** | |
| 115 | |
| 116 These functions decode SRC_BYTES length text at SOURCE encoded in | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
117 CODING to Emacs' internal format (emacs-mule). The resulting text |
| 18766 | 118 goes to a place pointed to by DESTINATION, the length of which should |
| 119 not exceed DST_BYTES. The number of bytes actually processed is | |
| 120 returned as *CONSUMED. The return value is the length of the decoded | |
| 121 text. Below is a template of these functions. */ | |
| 17052 | 122 #if 0 |
| 123 decode_coding_XXX (coding, source, destination, src_bytes, dst_bytes, consumed) | |
| 124 struct coding_system *coding; | |
| 125 unsigned char *source, *destination; | |
| 126 int src_bytes, dst_bytes; | |
| 127 int *consumed; | |
| 128 { | |
| 129 ... | |
| 130 } | |
| 131 #endif | |
| 132 | |
| 133 /*** GENERAL NOTES on `encode_coding_XXX ()' functions *** | |
| 134 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
135 These functions encode SRC_BYTES length text at SOURCE of Emacs' |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
136 internal format (emacs-mule) to CODING. The resulting text goes to |
| 18766 | 137 a place pointed to by DESTINATION, the length of which should not |
| 138 exceed DST_BYTES. The number of bytes actually processed is | |
| 139 returned as *CONSUMED. The return value is the length of the | |
| 140 encoded text. Below is a template of these functions. */ | |
| 17052 | 141 #if 0 |
| 142 encode_coding_XXX (coding, source, destination, src_bytes, dst_bytes, consumed) | |
| 143 struct coding_system *coding; | |
| 144 unsigned char *source, *destination; | |
| 145 int src_bytes, dst_bytes; | |
| 146 int *consumed; | |
| 147 { | |
| 148 ... | |
| 149 } | |
| 150 #endif | |
| 151 | |
| 152 /*** COMMONLY USED MACROS ***/ | |
| 153 | |
| 154 /* The following three macros ONE_MORE_BYTE, TWO_MORE_BYTES, and | |
| 155 THREE_MORE_BYTES safely get one, two, and three bytes from the | |
| 156 source text respectively. If there are not enough bytes in the | |
| 157 source, they jump to `label_end_of_loop'. The caller should set | |
| 158 variables `src' and `src_end' to appropriate areas in advance. */ | |
| 159 | |
| 160 #define ONE_MORE_BYTE(c1) \ | |
| 161 do { \ | |
| 162 if (src < src_end) \ | |
| 163 c1 = *src++; \ | |
| 164 else \ | |
| 165 goto label_end_of_loop; \ | |
| 166 } while (0) | |
| 167 | |
| 168 #define TWO_MORE_BYTES(c1, c2) \ | |
| 169 do { \ | |
| 170 if (src + 1 < src_end) \ | |
| 171 c1 = *src++, c2 = *src++; \ | |
| 172 else \ | |
| 173 goto label_end_of_loop; \ | |
| 174 } while (0) | |
| 175 | |
| 176 #define THREE_MORE_BYTES(c1, c2, c3) \ | |
| 177 do { \ | |
| 178 if (src + 2 < src_end) \ | |
| 179 c1 = *src++, c2 = *src++, c3 = *src++; \ | |
| 180 else \ | |
| 181 goto label_end_of_loop; \ | |
| 182 } while (0) | |
| 183 | |
| 184 /* The following three macros DECODE_CHARACTER_ASCII, | |
| 185 DECODE_CHARACTER_DIMENSION1, and DECODE_CHARACTER_DIMENSION2 put | |
| 186 the multi-byte form of a character of each class at the place | |
| 187 pointed by `dst'. The caller should set the variable `dst' to | |
| 188 point to an appropriate area and the variable `coding' to point to | |
| 189 the coding-system of the currently decoding text in advance. */ | |
| 190 | |
| 191 /* Decode one ASCII character C. */ | |
| 192 | |
| 193 #define DECODE_CHARACTER_ASCII(c) \ | |
| 194 do { \ | |
| 195 if (COMPOSING_P (coding->composing)) \ | |
| 196 *dst++ = 0xA0, *dst++ = (c) | 0x80; \ | |
| 197 else \ | |
| 198 *dst++ = (c); \ | |
| 199 } while (0) | |
| 200 | |
| 18766 | 201 /* Decode one DIMENSION1 character whose charset is CHARSET and whose |
| 17052 | 202 position-code is C. */ |
| 203 | |
| 204 #define DECODE_CHARACTER_DIMENSION1(charset, c) \ | |
| 205 do { \ | |
| 206 unsigned char leading_code = CHARSET_LEADING_CODE_BASE (charset); \ | |
| 207 if (COMPOSING_P (coding->composing)) \ | |
| 208 *dst++ = leading_code + 0x20; \ | |
| 209 else \ | |
| 210 *dst++ = leading_code; \ | |
| 211 if (leading_code = CHARSET_LEADING_CODE_EXT (charset)) \ | |
| 212 *dst++ = leading_code; \ | |
| 213 *dst++ = (c) | 0x80; \ | |
| 214 } while (0) | |
| 215 | |
| 18766 | 216 /* Decode one DIMENSION2 character whose charset is CHARSET and whose |
| 17052 | 217 position-codes are C1 and C2. */ |
| 218 | |
| 219 #define DECODE_CHARACTER_DIMENSION2(charset, c1, c2) \ | |
| 220 do { \ | |
| 221 DECODE_CHARACTER_DIMENSION1 (charset, c1); \ | |
| 222 *dst++ = (c2) | 0x80; \ | |
| 223 } while (0) | |
| 224 | |
| 225 | |
| 226 /*** 1. Preamble ***/ | |
| 227 | |
| 228 #include <stdio.h> | |
| 229 | |
| 230 #ifdef emacs | |
| 231 | |
| 232 #include <config.h> | |
| 233 #include "lisp.h" | |
| 234 #include "buffer.h" | |
| 235 #include "charset.h" | |
| 236 #include "ccl.h" | |
| 237 #include "coding.h" | |
| 238 #include "window.h" | |
| 239 | |
| 240 #else /* not emacs */ | |
| 241 | |
| 242 #include "mulelib.h" | |
| 243 | |
| 244 #endif /* not emacs */ | |
| 245 | |
| 246 Lisp_Object Qcoding_system, Qeol_type; | |
| 247 Lisp_Object Qbuffer_file_coding_system; | |
| 248 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
| 249 | |
| 250 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
| 251 Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
| 252 Lisp_Object Qstart_process, Qopen_network_stream; | |
| 253 Lisp_Object Qtarget_idx; | |
| 254 | |
| 255 /* Mnemonic character of each format of end-of-line. */ | |
| 256 int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; | |
| 257 /* Mnemonic character to indicate format of end-of-line is not yet | |
| 258 decided. */ | |
| 259 int eol_mnemonic_undecided; | |
| 260 | |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
261 /* Format of end-of-line decided by system. This is CODING_EOL_LF on |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
262 Unix, CODING_EOL_CRLF on DOS/Windows, and CODING_EOL_CR on Mac. */ |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
263 int system_eol_type; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
264 |
| 17052 | 265 #ifdef emacs |
| 266 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
267 Lisp_Object Qcoding_system_spec, Qcoding_system_p, Qcoding_system_error; |
| 17052 | 268 |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
269 /* Coding system emacs-mule is for converting only end-of-line format. */ |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
270 Lisp_Object Qemacs_mule; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
271 |
| 17052 | 272 /* Coding-systems are handed between Emacs Lisp programs and C internal |
| 273 routines by the following three variables. */ | |
| 274 /* Coding-system for reading files and receiving data from process. */ | |
| 275 Lisp_Object Vcoding_system_for_read; | |
| 276 /* Coding-system for writing files and sending data to process. */ | |
| 277 Lisp_Object Vcoding_system_for_write; | |
| 278 /* Coding-system actually used in the latest I/O. */ | |
| 279 Lisp_Object Vlast_coding_system_used; | |
| 280 | |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
281 /* 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
|
282 int inhibit_eol_conversion; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
283 |
| 17052 | 284 /* Coding-system of what terminal accept for displaying. */ |
| 285 struct coding_system terminal_coding; | |
| 286 | |
| 287 /* Coding-system of what is sent from terminal keyboard. */ | |
| 288 struct coding_system keyboard_coding; | |
| 289 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
290 Lisp_Object Vfile_coding_system_alist; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
291 Lisp_Object Vprocess_coding_system_alist; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
292 Lisp_Object Vnetwork_coding_system_alist; |
| 17052 | 293 |
| 294 #endif /* emacs */ | |
| 295 | |
| 296 Lisp_Object Qcoding_category_index; | |
| 297 | |
| 298 /* List of symbols `coding-category-xxx' ordered by priority. */ | |
| 299 Lisp_Object Vcoding_category_list; | |
| 300 | |
| 301 /* Table of coding-systems currently assigned to each coding-category. */ | |
| 302 Lisp_Object coding_category_table[CODING_CATEGORY_IDX_MAX]; | |
| 303 | |
| 304 /* Table of names of symbol for each coding-category. */ | |
| 305 char *coding_category_name[CODING_CATEGORY_IDX_MAX] = { | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
306 "coding-category-emacs-mule", |
| 17052 | 307 "coding-category-sjis", |
| 308 "coding-category-iso-7", | |
| 309 "coding-category-iso-8-1", | |
| 310 "coding-category-iso-8-2", | |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
311 "coding-category-iso-7-else", |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
312 "coding-category-iso-8-else", |
| 17052 | 313 "coding-category-big5", |
| 314 "coding-category-binary" | |
| 315 }; | |
| 316 | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
317 /* Flag to tell if we look up unification table on character code |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
318 conversion. */ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
319 Lisp_Object Venable_character_unification; |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
320 /* Standard unification table to look up on decoding (reading). */ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
321 Lisp_Object Vstandard_character_unification_table_for_decode; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
322 /* Standard unification table to look up on encoding (writing). */ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
323 Lisp_Object Vstandard_character_unification_table_for_encode; |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
324 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
325 Lisp_Object Qcharacter_unification_table; |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
326 Lisp_Object Qcharacter_unification_table_for_decode; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
327 Lisp_Object Qcharacter_unification_table_for_encode; |
| 17052 | 328 |
| 329 /* Alist of charsets vs revision number. */ | |
| 330 Lisp_Object Vcharset_revision_alist; | |
| 331 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
332 /* Default coding systems used for process I/O. */ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
333 Lisp_Object Vdefault_process_coding_system; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
334 |
| 17052 | 335 |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
336 /*** 2. Emacs internal format (emacs-mule) handlers ***/ |
| 17052 | 337 |
| 338 /* Emacs' internal format for encoding multiple character sets is a | |
| 18766 | 339 kind of multi-byte encoding, i.e. characters are encoded by |
| 340 variable-length sequences of one-byte codes. ASCII characters | |
| 341 and control characters (e.g. `tab', `newline') are represented by | |
| 342 one-byte sequences which are their ASCII codes, in the range 0x00 | |
| 343 through 0x7F. The other characters are represented by a sequence | |
| 344 of `base leading-code', optional `extended leading-code', and one | |
| 345 or two `position-code's. The length of the sequence is determined | |
| 346 by the base leading-code. Leading-code takes the range 0x80 | |
| 347 through 0x9F, whereas extended leading-code and position-code take | |
| 348 the range 0xA0 through 0xFF. See `charset.h' for more details | |
| 349 about leading-code and position-code. | |
| 350 | |
| 351 There's one exception to this rule. Special leading-code | |
| 17052 | 352 `leading-code-composition' denotes that the following several |
| 353 characters should be composed into one character. Leading-codes of | |
| 354 components (except for ASCII) are added 0x20. An ASCII character | |
| 355 component is represented by a 2-byte sequence of `0xA0' and | |
| 18766 | 356 `ASCII-code + 0x80'. See also the comments in `charset.h' for the |
| 357 details of composite character. Hence, we can summarize the code | |
| 17052 | 358 range as follows: |
| 359 | |
| 360 --- CODE RANGE of Emacs' internal format --- | |
| 361 (character set) (range) | |
| 362 ASCII 0x00 .. 0x7F | |
| 363 ELSE (1st byte) 0x80 .. 0x9F | |
| 364 (rest bytes) 0xA0 .. 0xFF | |
| 365 --------------------------------------------- | |
| 366 | |
| 367 */ | |
| 368 | |
| 369 enum emacs_code_class_type emacs_code_class[256]; | |
| 370 | |
| 371 /* Go to the next statement only if *SRC is accessible and the code is | |
| 372 greater than 0xA0. */ | |
| 373 #define CHECK_CODE_RANGE_A0_FF \ | |
| 374 do { \ | |
| 375 if (src >= src_end) \ | |
| 376 goto label_end_of_switch; \ | |
| 377 else if (*src++ < 0xA0) \ | |
| 378 return 0; \ | |
| 379 } while (0) | |
| 380 | |
| 381 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 382 Check if a text is encoded in Emacs' internal format. If it is, | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
383 return CODING_CATEGORY_MASK_EMASC_MULE, else return 0. */ |
| 17052 | 384 |
| 385 int | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
386 detect_coding_emacs_mule (src, src_end) |
| 17052 | 387 unsigned char *src, *src_end; |
| 388 { | |
| 389 unsigned char c; | |
| 390 int composing = 0; | |
| 391 | |
| 392 while (src < src_end) | |
| 393 { | |
| 394 c = *src++; | |
| 395 | |
| 396 if (composing) | |
| 397 { | |
| 398 if (c < 0xA0) | |
| 399 composing = 0; | |
| 400 else | |
| 401 c -= 0x20; | |
| 402 } | |
| 403 | |
| 404 switch (emacs_code_class[c]) | |
| 405 { | |
| 406 case EMACS_ascii_code: | |
| 407 case EMACS_linefeed_code: | |
| 408 break; | |
| 409 | |
| 410 case EMACS_control_code: | |
| 411 if (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) | |
| 412 return 0; | |
| 413 break; | |
| 414 | |
| 415 case EMACS_invalid_code: | |
| 416 return 0; | |
| 417 | |
| 418 case EMACS_leading_code_composition: /* c == 0x80 */ | |
| 419 if (composing) | |
| 420 CHECK_CODE_RANGE_A0_FF; | |
| 421 else | |
| 422 composing = 1; | |
| 423 break; | |
| 424 | |
| 425 case EMACS_leading_code_4: | |
| 426 CHECK_CODE_RANGE_A0_FF; | |
| 427 /* fall down to check it two more times ... */ | |
| 428 | |
| 429 case EMACS_leading_code_3: | |
| 430 CHECK_CODE_RANGE_A0_FF; | |
| 431 /* fall down to check it one more time ... */ | |
| 432 | |
| 433 case EMACS_leading_code_2: | |
| 434 CHECK_CODE_RANGE_A0_FF; | |
| 435 break; | |
| 436 | |
| 437 default: | |
| 438 label_end_of_switch: | |
| 439 break; | |
| 440 } | |
| 441 } | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
442 return CODING_CATEGORY_MASK_EMACS_MULE; |
| 17052 | 443 } |
| 444 | |
| 445 | |
| 446 /*** 3. ISO2022 handlers ***/ | |
| 447 | |
| 448 /* The following note describes the coding system ISO2022 briefly. | |
| 18766 | 449 Since the intention of this note is to help in understanding of |
| 450 the programs in this file, some parts are NOT ACCURATE or OVERLY | |
| 17052 | 451 SIMPLIFIED. For the thorough understanding, please refer to the |
| 452 original document of ISO2022. | |
| 453 | |
| 454 ISO2022 provides many mechanisms to encode several character sets | |
| 18766 | 455 in 7-bit and 8-bit environment. If one chooses 7-bite environment, |
| 17052 | 456 all text is encoded by codes of less than 128. This may make the |
| 18766 | 457 encoded text a little bit longer, but the text gets more stability |
| 458 to pass through several gateways (some of them strip off the MSB). | |
| 459 | |
| 460 There are two kinds of character set: control character set and | |
| 17052 | 461 graphic character set. The former contains control characters such |
| 462 as `newline' and `escape' to provide control functions (control | |
| 18766 | 463 functions are provided also by escape sequences). The latter |
| 17052 | 464 contains graphic characters such as ' A' and '-'. Emacs recognizes |
| 465 two control character sets and many graphic character sets. | |
| 466 | |
| 467 Graphic character sets are classified into one of the following | |
| 468 four classes, DIMENSION1_CHARS94, DIMENSION1_CHARS96, | |
| 469 DIMENSION2_CHARS94, DIMENSION2_CHARS96 according to the number of | |
| 470 bytes (DIMENSION) and the number of characters in one dimension | |
| 471 (CHARS) of the set. In addition, each character set is assigned an | |
| 472 identification tag (called "final character" and denoted as <F> | |
| 473 here after) which is unique in each class. <F> of each character | |
| 474 set is decided by ECMA(*) when it is registered in ISO. Code range | |
| 475 of <F> is 0x30..0x7F (0x30..0x3F are for private use only). | |
| 476 | |
| 477 Note (*): ECMA = European Computer Manufacturers Association | |
| 478 | |
| 479 Here are examples of graphic character set [NAME(<F>)]: | |
| 480 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... | |
| 481 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
| 482 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
| 483 o DIMENSION2_CHARS96 -- none for the moment | |
| 484 | |
| 485 A code area (1byte=8bits) is divided into 4 areas, C0, GL, C1, and GR. | |
| 486 C0 [0x00..0x1F] -- control character plane 0 | |
| 487 GL [0x20..0x7F] -- graphic character plane 0 | |
| 488 C1 [0x80..0x9F] -- control character plane 1 | |
| 489 GR [0xA0..0xFF] -- graphic character plane 1 | |
| 490 | |
| 491 A control character set is directly designated and invoked to C0 or | |
| 492 C1 by an escape sequence. The most common case is that ISO646's | |
| 493 control character set is designated/invoked to C0 and ISO6429's | |
| 494 control character set is designated/invoked to C1, and usually | |
| 495 these designations/invocations are omitted in a coded text. With | |
| 496 7-bit environment, only C0 can be used, and a control character for | |
| 497 C1 is encoded by an appropriate escape sequence to fit in the | |
| 498 environment. All control characters for C1 are defined the | |
| 499 corresponding escape sequences. | |
| 500 | |
| 501 A graphic character set is at first designated to one of four | |
| 502 graphic registers (G0 through G3), then these graphic registers are | |
| 503 invoked to GL or GR. These designations and invocations can be | |
| 504 done independently. The most common case is that G0 is invoked to | |
| 505 GL, G1 is invoked to GR, and ASCII is designated to G0, and usually | |
| 506 these invocations and designations are omitted in a coded text. | |
| 507 With 7-bit environment, only GL can be used. | |
| 508 | |
| 509 When a graphic character set of CHARS94 is invoked to GL, code 0x20 | |
| 510 and 0x7F of GL area work as control characters SPACE and DEL | |
| 511 respectively, and code 0xA0 and 0xFF of GR area should not be used. | |
| 512 | |
| 513 There are two ways of invocation: locking-shift and single-shift. | |
| 514 With locking-shift, the invocation lasts until the next different | |
| 515 invocation, whereas with single-shift, the invocation works only | |
| 516 for the following character and doesn't affect locking-shift. | |
| 517 Invocations are done by the following control characters or escape | |
| 518 sequences. | |
| 519 | |
| 520 ---------------------------------------------------------------------- | |
| 521 function control char escape sequence description | |
| 522 ---------------------------------------------------------------------- | |
| 523 SI (shift-in) 0x0F none invoke G0 to GL | |
| 524 SI (shift-out) 0x0E none invoke G1 to GL | |
| 525 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL | |
| 526 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL | |
| 527 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 into GL | |
| 528 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 into GL | |
| 529 ---------------------------------------------------------------------- | |
| 530 The first four are for locking-shift. Control characters for these | |
| 531 functions are defined by macros ISO_CODE_XXX in `coding.h'. | |
| 532 | |
| 533 Designations are done by the following escape sequences. | |
| 534 ---------------------------------------------------------------------- | |
| 535 escape sequence description | |
| 536 ---------------------------------------------------------------------- | |
| 537 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
| 538 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
| 539 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
| 540 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
| 541 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
| 542 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
| 543 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
| 544 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
| 545 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
| 546 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
| 547 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
| 548 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
| 549 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
| 550 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
| 551 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
| 552 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
| 553 ---------------------------------------------------------------------- | |
| 554 | |
| 555 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set | |
| 556 of dimension 1, chars 94, and final character <F>, and etc. | |
| 557 | |
| 558 Note (*): Although these designations are not allowed in ISO2022, | |
| 559 Emacs accepts them on decoding, and produces them on encoding | |
| 560 CHARS96 character set in a coding system which is characterized as | |
| 561 7-bit environment, non-locking-shift, and non-single-shift. | |
| 562 | |
| 563 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
| 564 '(' can be omitted. We call this as "short-form" here after. | |
| 565 | |
| 566 Now you may notice that there are a lot of ways for encoding the | |
| 18766 | 567 same multilingual text in ISO2022. Actually, there exists many |
| 17052 | 568 coding systems such as Compound Text (used in X's inter client |
| 569 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR | |
| 570 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian | |
| 571 localized platforms), and all of these are variants of ISO2022. | |
| 572 | |
| 573 In addition to the above, Emacs handles two more kinds of escape | |
| 574 sequences: ISO6429's direction specification and Emacs' private | |
| 575 sequence for specifying character composition. | |
| 576 | |
| 577 ISO6429's direction specification takes the following format: | |
| 578 o CSI ']' -- end of the current direction | |
| 579 o CSI '0' ']' -- end of the current direction | |
| 580 o CSI '1' ']' -- start of left-to-right text | |
| 581 o CSI '2' ']' -- start of right-to-left text | |
| 582 The control character CSI (0x9B: control sequence introducer) is | |
| 583 abbreviated to the escape sequence ESC '[' in 7-bit environment. | |
| 584 | |
| 585 Character composition specification takes the following format: | |
| 586 o ESC '0' -- start character composition | |
| 587 o ESC '1' -- end character composition | |
| 588 Since these are not standard escape sequences of any ISO, the use | |
| 589 of them for these meaning is restricted to Emacs only. */ | |
| 590 | |
| 591 enum iso_code_class_type iso_code_class[256]; | |
| 592 | |
| 593 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 594 Check if a text is encoded in ISO2022. If it is, returns an | |
| 595 integer in which appropriate flag bits any of: | |
| 596 CODING_CATEGORY_MASK_ISO_7 | |
| 597 CODING_CATEGORY_MASK_ISO_8_1 | |
| 598 CODING_CATEGORY_MASK_ISO_8_2 | |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
599 CODING_CATEGORY_MASK_ISO_7_ELSE |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
600 CODING_CATEGORY_MASK_ISO_8_ELSE |
| 17052 | 601 are set. If a code which should never appear in ISO2022 is found, |
| 602 returns 0. */ | |
| 603 | |
| 604 int | |
| 605 detect_coding_iso2022 (src, src_end) | |
| 606 unsigned char *src, *src_end; | |
| 607 { | |
|
18310
a97ed8efcb6a
(detect_coding_iso2022): Initilize mask correctly.
Kenichi Handa <handa@m17n.org>
parents:
18269
diff
changeset
|
608 int mask = (CODING_CATEGORY_MASK_ISO_7 |
|
a97ed8efcb6a
(detect_coding_iso2022): Initilize mask correctly.
Kenichi Handa <handa@m17n.org>
parents:
18269
diff
changeset
|
609 | CODING_CATEGORY_MASK_ISO_8_1 |
|
a97ed8efcb6a
(detect_coding_iso2022): Initilize mask correctly.
Kenichi Handa <handa@m17n.org>
parents:
18269
diff
changeset
|
610 | CODING_CATEGORY_MASK_ISO_8_2 |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
611 | CODING_CATEGORY_MASK_ISO_7_ELSE |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
612 | CODING_CATEGORY_MASK_ISO_8_ELSE |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
613 ); |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
614 int g1 = 0; /* 1 iff designating to G1. */ |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
615 int c, i; |
| 17052 | 616 |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
617 while (src < src_end) |
| 17052 | 618 { |
| 619 c = *src++; | |
| 620 switch (c) | |
| 621 { | |
| 622 case ISO_CODE_ESC: | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
623 if (src >= src_end) |
| 17052 | 624 break; |
| 625 c = *src++; | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
626 if (src < src_end |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
627 && ((c >= '(' && c <= '/') |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
628 || c == '$' && ((*src >= '(' && *src <= '/') |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
629 || (*src >= '@' && *src <= 'B')))) |
| 17052 | 630 { |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
631 /* Valid designation sequence. */ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
632 if (c == ')' || (c == '$' && *src == ')')) |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
633 { |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
634 g1 = 1; |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
635 mask &= ~(CODING_CATEGORY_MASK_ISO_7 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
636 | CODING_CATEGORY_MASK_ISO_7_ELSE); |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
637 } |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
638 src++; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
639 break; |
| 17052 | 640 } |
| 641 else if (c == 'N' || c == 'O' || c == 'n' || c == 'o') | |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
642 mask &= (CODING_CATEGORY_MASK_ISO_7_ELSE |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
643 | CODING_CATEGORY_MASK_ISO_8_ELSE); |
| 17052 | 644 break; |
| 645 | |
| 646 case ISO_CODE_SO: | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
647 if (g1) |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
648 mask &= (CODING_CATEGORY_MASK_ISO_7_ELSE |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
649 | CODING_CATEGORY_MASK_ISO_8_ELSE); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
650 break; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
651 |
| 17052 | 652 case ISO_CODE_CSI: |
| 653 case ISO_CODE_SS2: | |
| 654 case ISO_CODE_SS3: | |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
655 mask &= ~(CODING_CATEGORY_MASK_ISO_7 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
656 | CODING_CATEGORY_MASK_ISO_7_ELSE); |
| 17052 | 657 break; |
| 658 | |
| 659 default: | |
| 660 if (c < 0x80) | |
| 661 break; | |
| 662 else if (c < 0xA0) | |
| 663 return 0; | |
| 664 else | |
| 665 { | |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
666 unsigned char *src_begin = src; |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
667 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
668 mask &= ~(CODING_CATEGORY_MASK_ISO_7 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
669 | CODING_CATEGORY_MASK_ISO_7_ELSE); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
670 while (src < src_end && *src >= 0xA0) |
|
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
671 src++; |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
672 if ((src - src_begin - 1) & 1 && src < src_end) |
| 17052 | 673 mask &= ~CODING_CATEGORY_MASK_ISO_8_2; |
| 674 } | |
| 675 break; | |
| 676 } | |
| 677 } | |
| 678 | |
| 679 return mask; | |
| 680 } | |
| 681 | |
| 682 /* Decode a character of which charset is CHARSET and the 1st position | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
683 code is C1. If dimension of CHARSET is 2, the 2nd position code is |
| 17052 | 684 fetched from SRC and set to C2. If CHARSET is negative, it means |
| 685 that we are decoding ill formed text, and what we can do is just to | |
| 686 read C1 as is. */ | |
| 687 | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
688 #define DECODE_ISO_CHARACTER(charset, c1) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
689 do { \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
690 int c_alt, charset_alt = (charset); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
691 if (COMPOSING_HEAD_P (coding->composing)) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
692 { \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
693 *dst++ = LEADING_CODE_COMPOSITION; \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
694 if (COMPOSING_WITH_RULE_P (coding->composing)) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
695 /* To tell composition rules are embeded. */ \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
696 *dst++ = 0xFF; \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
697 coding->composing += 2; \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
698 } \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
699 if ((charset) >= 0) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
700 { \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
701 if (CHARSET_DIMENSION (charset) == 2) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
702 ONE_MORE_BYTE (c2); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
703 if (!NILP (unification_table) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
704 && ((c_alt = unify_char (unification_table, \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
705 -1, (charset), c1, c2)) >= 0)) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
706 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
707 } \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
708 if (charset_alt == CHARSET_ASCII || charset_alt < 0) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
709 DECODE_CHARACTER_ASCII (c1); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
710 else if (CHARSET_DIMENSION (charset_alt) == 1) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
711 DECODE_CHARACTER_DIMENSION1 (charset_alt, c1); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
712 else \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
713 DECODE_CHARACTER_DIMENSION2 (charset_alt, c1, c2); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
714 if (COMPOSING_WITH_RULE_P (coding->composing)) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
715 /* To tell a composition rule follows. */ \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
716 coding->composing = COMPOSING_WITH_RULE_RULE; \ |
| 17052 | 717 } while (0) |
| 718 | |
| 719 /* Set designation state into CODING. */ | |
| 720 #define DECODE_DESIGNATION(reg, dimension, chars, final_char) \ | |
| 721 do { \ | |
|
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
722 int charset = ISO_CHARSET_TABLE (make_number (dimension), \ |
|
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
723 make_number (chars), \ |
|
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
724 make_number (final_char)); \ |
| 17052 | 725 if (charset >= 0) \ |
| 726 { \ | |
| 727 if (coding->direction == 1 \ | |
| 728 && CHARSET_REVERSE_CHARSET (charset) >= 0) \ | |
| 729 charset = CHARSET_REVERSE_CHARSET (charset); \ | |
| 730 CODING_SPEC_ISO_DESIGNATION (coding, reg) = charset; \ | |
| 731 } \ | |
| 732 } while (0) | |
| 733 | |
| 734 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ | |
| 735 | |
| 736 int | |
| 737 decode_coding_iso2022 (coding, source, destination, | |
| 738 src_bytes, dst_bytes, consumed) | |
| 739 struct coding_system *coding; | |
| 740 unsigned char *source, *destination; | |
| 741 int src_bytes, dst_bytes; | |
| 742 int *consumed; | |
| 743 { | |
| 744 unsigned char *src = source; | |
| 745 unsigned char *src_end = source + src_bytes; | |
| 746 unsigned char *dst = destination; | |
| 747 unsigned char *dst_end = destination + dst_bytes; | |
| 748 /* Since the maximum bytes produced by each loop is 7, we subtract 6 | |
| 749 from DST_END to assure that overflow checking is necessary only | |
| 750 at the head of loop. */ | |
| 751 unsigned char *adjusted_dst_end = dst_end - 6; | |
| 752 int charset; | |
| 753 /* Charsets invoked to graphic plane 0 and 1 respectively. */ | |
| 754 int charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
| 755 int charset1 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 1); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
756 Lisp_Object unification_table |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
757 = coding->character_unification_table_for_decode; |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
758 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
759 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
760 unification_table = Vstandard_character_unification_table_for_decode; |
| 17052 | 761 |
| 762 while (src < src_end && dst < adjusted_dst_end) | |
| 763 { | |
| 764 /* SRC_BASE remembers the start position in source in each loop. | |
| 765 The loop will be exited when there's not enough source text | |
| 766 to analyze long escape sequence or 2-byte code (within macros | |
| 767 ONE_MORE_BYTE or TWO_MORE_BYTES). In that case, SRC is reset | |
| 768 to SRC_BASE before exiting. */ | |
| 769 unsigned char *src_base = src; | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
770 int c1 = *src++, c2; |
| 17052 | 771 |
| 772 switch (iso_code_class [c1]) | |
| 773 { | |
| 774 case ISO_0x20_or_0x7F: | |
| 775 if (!coding->composing | |
| 776 && (charset0 < 0 || CHARSET_CHARS (charset0) == 94)) | |
| 777 { | |
| 778 /* This is SPACE or DEL. */ | |
| 779 *dst++ = c1; | |
| 780 break; | |
| 781 } | |
| 782 /* This is a graphic character, we fall down ... */ | |
| 783 | |
| 784 case ISO_graphic_plane_0: | |
| 785 if (coding->composing == COMPOSING_WITH_RULE_RULE) | |
| 786 { | |
| 787 /* This is a composition rule. */ | |
| 788 *dst++ = c1 | 0x80; | |
| 789 coding->composing = COMPOSING_WITH_RULE_TAIL; | |
| 790 } | |
| 791 else | |
| 792 DECODE_ISO_CHARACTER (charset0, c1); | |
| 793 break; | |
| 794 | |
| 795 case ISO_0xA0_or_0xFF: | |
| 796 if (charset1 < 0 || CHARSET_CHARS (charset1) == 94) | |
| 797 { | |
| 798 /* Invalid code. */ | |
| 799 *dst++ = c1; | |
| 800 break; | |
| 801 } | |
| 802 /* This is a graphic character, we fall down ... */ | |
| 803 | |
| 804 case ISO_graphic_plane_1: | |
| 805 DECODE_ISO_CHARACTER (charset1, c1); | |
| 806 break; | |
| 807 | |
| 808 case ISO_control_code: | |
| 809 /* All ISO2022 control characters in this class have the | |
| 810 same representation in Emacs internal format. */ | |
| 811 *dst++ = c1; | |
| 812 break; | |
| 813 | |
| 814 case ISO_carriage_return: | |
| 815 if (coding->eol_type == CODING_EOL_CR) | |
| 816 { | |
| 817 *dst++ = '\n'; | |
| 818 } | |
| 819 else if (coding->eol_type == CODING_EOL_CRLF) | |
| 820 { | |
| 821 ONE_MORE_BYTE (c1); | |
| 822 if (c1 == ISO_CODE_LF) | |
| 823 *dst++ = '\n'; | |
| 824 else | |
| 825 { | |
| 826 src--; | |
| 827 *dst++ = c1; | |
| 828 } | |
| 829 } | |
| 830 else | |
| 831 { | |
| 832 *dst++ = c1; | |
| 833 } | |
| 834 break; | |
| 835 | |
| 836 case ISO_shift_out: | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
837 if (CODING_SPEC_ISO_DESIGNATION (coding, 1) < 0) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
838 goto label_invalid_escape_sequence; |
| 17052 | 839 CODING_SPEC_ISO_INVOCATION (coding, 0) = 1; |
| 840 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
| 841 break; | |
| 842 | |
| 843 case ISO_shift_in: | |
| 844 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; | |
| 845 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
| 846 break; | |
| 847 | |
| 848 case ISO_single_shift_2_7: | |
| 849 case ISO_single_shift_2: | |
| 850 /* SS2 is handled as an escape sequence of ESC 'N' */ | |
| 851 c1 = 'N'; | |
| 852 goto label_escape_sequence; | |
| 853 | |
| 854 case ISO_single_shift_3: | |
| 855 /* SS2 is handled as an escape sequence of ESC 'O' */ | |
| 856 c1 = 'O'; | |
| 857 goto label_escape_sequence; | |
| 858 | |
| 859 case ISO_control_sequence_introducer: | |
| 860 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
| 861 c1 = '['; | |
| 862 goto label_escape_sequence; | |
| 863 | |
| 864 case ISO_escape: | |
| 865 ONE_MORE_BYTE (c1); | |
| 866 label_escape_sequence: | |
| 867 /* Escape sequences handled by Emacs are invocation, | |
| 868 designation, direction specification, and character | |
| 869 composition specification. */ | |
| 870 switch (c1) | |
| 871 { | |
| 872 case '&': /* revision of following character set */ | |
| 873 ONE_MORE_BYTE (c1); | |
| 874 if (!(c1 >= '@' && c1 <= '~')) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
875 goto label_invalid_escape_sequence; |
| 17052 | 876 ONE_MORE_BYTE (c1); |
| 877 if (c1 != ISO_CODE_ESC) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
878 goto label_invalid_escape_sequence; |
| 17052 | 879 ONE_MORE_BYTE (c1); |
| 880 goto label_escape_sequence; | |
| 881 | |
| 882 case '$': /* designation of 2-byte character set */ | |
| 883 ONE_MORE_BYTE (c1); | |
| 884 if (c1 >= '@' && c1 <= 'B') | |
| 885 { /* designation of JISX0208.1978, GB2312.1980, | |
| 886 or JISX0208.1980 */ | |
| 887 DECODE_DESIGNATION (0, 2, 94, c1); | |
| 888 } | |
| 889 else if (c1 >= 0x28 && c1 <= 0x2B) | |
| 890 { /* designation of DIMENSION2_CHARS94 character set */ | |
| 891 ONE_MORE_BYTE (c2); | |
| 892 DECODE_DESIGNATION (c1 - 0x28, 2, 94, c2); | |
| 893 } | |
| 894 else if (c1 >= 0x2C && c1 <= 0x2F) | |
| 895 { /* designation of DIMENSION2_CHARS96 character set */ | |
| 896 ONE_MORE_BYTE (c2); | |
| 897 DECODE_DESIGNATION (c1 - 0x2C, 2, 96, c2); | |
| 898 } | |
| 899 else | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
900 goto label_invalid_escape_sequence; |
| 17052 | 901 break; |
| 902 | |
| 903 case 'n': /* invocation of locking-shift-2 */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
904 if (CODING_SPEC_ISO_DESIGNATION (coding, 2) < 0) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
905 goto label_invalid_escape_sequence; |
| 17052 | 906 CODING_SPEC_ISO_INVOCATION (coding, 0) = 2; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
907 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); |
| 17052 | 908 break; |
| 909 | |
| 910 case 'o': /* invocation of locking-shift-3 */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
911 if (CODING_SPEC_ISO_DESIGNATION (coding, 3) < 0) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
912 goto label_invalid_escape_sequence; |
| 17052 | 913 CODING_SPEC_ISO_INVOCATION (coding, 0) = 3; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
914 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); |
| 17052 | 915 break; |
| 916 | |
| 917 case 'N': /* invocation of single-shift-2 */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
918 if (CODING_SPEC_ISO_DESIGNATION (coding, 2) < 0) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
919 goto label_invalid_escape_sequence; |
| 17052 | 920 ONE_MORE_BYTE (c1); |
| 921 charset = CODING_SPEC_ISO_DESIGNATION (coding, 2); | |
| 922 DECODE_ISO_CHARACTER (charset, c1); | |
| 923 break; | |
| 924 | |
| 925 case 'O': /* invocation of single-shift-3 */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
926 if (CODING_SPEC_ISO_DESIGNATION (coding, 3) < 0) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
927 goto label_invalid_escape_sequence; |
| 17052 | 928 ONE_MORE_BYTE (c1); |
| 929 charset = CODING_SPEC_ISO_DESIGNATION (coding, 3); | |
| 930 DECODE_ISO_CHARACTER (charset, c1); | |
| 931 break; | |
| 932 | |
| 933 case '0': /* start composing without embeded rules */ | |
| 934 coding->composing = COMPOSING_NO_RULE_HEAD; | |
| 935 break; | |
| 936 | |
| 937 case '1': /* end composing */ | |
| 938 coding->composing = COMPOSING_NO; | |
| 939 break; | |
| 940 | |
| 941 case '2': /* start composing with embeded rules */ | |
| 942 coding->composing = COMPOSING_WITH_RULE_HEAD; | |
| 943 break; | |
| 944 | |
| 945 case '[': /* specification of direction */ | |
| 946 /* For the moment, nested direction is not supported. | |
| 947 So, the value of `coding->direction' is 0 or 1: 0 | |
| 948 means left-to-right, 1 means right-to-left. */ | |
| 949 ONE_MORE_BYTE (c1); | |
| 950 switch (c1) | |
| 951 { | |
| 952 case ']': /* end of the current direction */ | |
| 953 coding->direction = 0; | |
| 954 | |
| 955 case '0': /* end of the current direction */ | |
| 956 case '1': /* start of left-to-right direction */ | |
| 957 ONE_MORE_BYTE (c1); | |
| 958 if (c1 == ']') | |
| 959 coding->direction = 0; | |
| 960 else | |
| 961 goto label_invalid_escape_sequence; | |
| 962 break; | |
| 963 | |
| 964 case '2': /* start of right-to-left direction */ | |
| 965 ONE_MORE_BYTE (c1); | |
| 966 if (c1 == ']') | |
| 967 coding->direction= 1; | |
| 968 else | |
| 969 goto label_invalid_escape_sequence; | |
| 970 break; | |
| 971 | |
| 972 default: | |
| 973 goto label_invalid_escape_sequence; | |
| 974 } | |
| 975 break; | |
| 976 | |
| 977 default: | |
| 978 if (c1 >= 0x28 && c1 <= 0x2B) | |
| 979 { /* designation of DIMENSION1_CHARS94 character set */ | |
| 980 ONE_MORE_BYTE (c2); | |
| 981 DECODE_DESIGNATION (c1 - 0x28, 1, 94, c2); | |
| 982 } | |
| 983 else if (c1 >= 0x2C && c1 <= 0x2F) | |
| 984 { /* designation of DIMENSION1_CHARS96 character set */ | |
| 985 ONE_MORE_BYTE (c2); | |
| 986 DECODE_DESIGNATION (c1 - 0x2C, 1, 96, c2); | |
| 987 } | |
| 988 else | |
| 989 { | |
| 990 goto label_invalid_escape_sequence; | |
| 991 } | |
| 992 } | |
| 993 /* We must update these variables now. */ | |
| 994 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
| 995 charset1 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 1); | |
| 996 break; | |
| 997 | |
| 998 label_invalid_escape_sequence: | |
| 999 { | |
| 1000 int length = src - src_base; | |
| 1001 | |
| 1002 bcopy (src_base, dst, length); | |
| 1003 dst += length; | |
| 1004 } | |
| 1005 } | |
| 1006 continue; | |
| 1007 | |
| 1008 label_end_of_loop: | |
| 1009 coding->carryover_size = src - src_base; | |
| 1010 bcopy (src_base, coding->carryover, coding->carryover_size); | |
| 1011 src = src_base; | |
| 1012 break; | |
| 1013 } | |
| 1014 | |
| 1015 /* If this is the last block of the text to be decoded, we had | |
| 1016 better just flush out all remaining codes in the text although | |
| 1017 they are not valid characters. */ | |
| 1018 if (coding->last_block) | |
| 1019 { | |
| 1020 bcopy (src, dst, src_end - src); | |
| 1021 dst += (src_end - src); | |
| 1022 src = src_end; | |
| 1023 } | |
| 1024 *consumed = src - source; | |
| 1025 return dst - destination; | |
| 1026 } | |
| 1027 | |
| 18766 | 1028 /* ISO2022 encoding stuff. */ |
| 17052 | 1029 |
| 1030 /* | |
| 18766 | 1031 It is not enough to say just "ISO2022" on encoding, we have to |
| 17052 | 1032 specify more details. In Emacs, each coding-system of ISO2022 |
| 1033 variant has the following specifications: | |
| 1034 1. Initial designation to G0 thru G3. | |
| 1035 2. Allows short-form designation? | |
| 1036 3. ASCII should be designated to G0 before control characters? | |
| 1037 4. ASCII should be designated to G0 at end of line? | |
| 1038 5. 7-bit environment or 8-bit environment? | |
| 1039 6. Use locking-shift? | |
| 1040 7. Use Single-shift? | |
| 1041 And the following two are only for Japanese: | |
| 1042 8. Use ASCII in place of JIS0201-1976-Roman? | |
| 1043 9. Use JISX0208-1983 in place of JISX0208-1978? | |
| 1044 These specifications are encoded in `coding->flags' as flag bits | |
| 1045 defined by macros CODING_FLAG_ISO_XXX. See `coding.h' for more | |
| 18766 | 1046 details. |
| 17052 | 1047 */ |
| 1048 | |
| 1049 /* Produce codes (escape sequence) for designating CHARSET to graphic | |
| 1050 register REG. If <final-char> of CHARSET is '@', 'A', or 'B' and | |
| 1051 the coding system CODING allows, produce designation sequence of | |
| 1052 short-form. */ | |
| 1053 | |
| 1054 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
| 1055 do { \ | |
| 1056 unsigned char final_char = CHARSET_ISO_FINAL_CHAR (charset); \ | |
| 1057 char *intermediate_char_94 = "()*+"; \ | |
| 1058 char *intermediate_char_96 = ",-./"; \ | |
| 1059 Lisp_Object temp \ | |
| 1060 = Fassq (make_number (charset), Vcharset_revision_alist); \ | |
| 1061 if (! NILP (temp)) \ | |
| 1062 { \ | |
| 1063 *dst++ = ISO_CODE_ESC; \ | |
| 1064 *dst++ = '&'; \ | |
| 1065 *dst++ = XINT (XCONS (temp)->cdr) + '@'; \ | |
| 1066 } \ | |
| 1067 *dst++ = ISO_CODE_ESC; \ | |
| 1068 if (CHARSET_DIMENSION (charset) == 1) \ | |
| 1069 { \ | |
| 1070 if (CHARSET_CHARS (charset) == 94) \ | |
| 1071 *dst++ = (unsigned char) (intermediate_char_94[reg]); \ | |
| 1072 else \ | |
| 1073 *dst++ = (unsigned char) (intermediate_char_96[reg]); \ | |
| 1074 } \ | |
| 1075 else \ | |
| 1076 { \ | |
| 1077 *dst++ = '$'; \ | |
| 1078 if (CHARSET_CHARS (charset) == 94) \ | |
| 1079 { \ | |
| 1080 if (! (coding->flags & CODING_FLAG_ISO_SHORT_FORM) \ | |
| 1081 || reg != 0 \ | |
| 1082 || final_char < '@' || final_char > 'B') \ | |
| 1083 *dst++ = (unsigned char) (intermediate_char_94[reg]); \ | |
| 1084 } \ | |
| 1085 else \ | |
| 1086 *dst++ = (unsigned char) (intermediate_char_96[reg]); \ | |
| 1087 } \ | |
| 1088 *dst++ = final_char; \ | |
| 1089 CODING_SPEC_ISO_DESIGNATION (coding, reg) = charset; \ | |
| 1090 } while (0) | |
| 1091 | |
| 1092 /* The following two macros produce codes (control character or escape | |
| 1093 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
| 1094 single-shift-3). */ | |
| 1095 | |
| 1096 #define ENCODE_SINGLE_SHIFT_2 \ | |
| 1097 do { \ | |
| 1098 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ | |
| 1099 *dst++ = ISO_CODE_ESC, *dst++ = 'N'; \ | |
| 1100 else \ | |
| 1101 *dst++ = ISO_CODE_SS2; \ | |
| 1102 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
| 1103 } while (0) | |
| 1104 | |
| 1105 #define ENCODE_SINGLE_SHIFT_3 \ | |
| 1106 do { \ | |
| 1107 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ | |
| 1108 *dst++ = ISO_CODE_ESC, *dst++ = 'O'; \ | |
| 1109 else \ | |
| 1110 *dst++ = ISO_CODE_SS3; \ | |
| 1111 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
| 1112 } while (0) | |
| 1113 | |
| 1114 /* The following four macros produce codes (control character or | |
| 1115 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
| 1116 shift-out, locking-shift-2, and locking-shift-3). */ | |
| 1117 | |
| 1118 #define ENCODE_SHIFT_IN \ | |
| 1119 do { \ | |
| 1120 *dst++ = ISO_CODE_SI; \ | |
| 1121 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; \ | |
| 1122 } while (0) | |
| 1123 | |
| 1124 #define ENCODE_SHIFT_OUT \ | |
| 1125 do { \ | |
| 1126 *dst++ = ISO_CODE_SO; \ | |
| 1127 CODING_SPEC_ISO_INVOCATION (coding, 0) = 1; \ | |
| 1128 } while (0) | |
| 1129 | |
| 1130 #define ENCODE_LOCKING_SHIFT_2 \ | |
| 1131 do { \ | |
| 1132 *dst++ = ISO_CODE_ESC, *dst++ = 'n'; \ | |
| 1133 CODING_SPEC_ISO_INVOCATION (coding, 0) = 2; \ | |
| 1134 } while (0) | |
| 1135 | |
| 1136 #define ENCODE_LOCKING_SHIFT_3 \ | |
| 1137 do { \ | |
| 1138 *dst++ = ISO_CODE_ESC, *dst++ = 'o'; \ | |
| 1139 CODING_SPEC_ISO_INVOCATION (coding, 0) = 3; \ | |
| 1140 } while (0) | |
| 1141 | |
| 18766 | 1142 /* Produce codes for a DIMENSION1 character whose character set is |
| 1143 CHARSET and whose position-code is C1. Designation and invocation | |
| 17052 | 1144 sequences are also produced in advance if necessary. */ |
| 1145 | |
| 1146 | |
| 1147 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ | |
| 1148 do { \ | |
| 1149 if (CODING_SPEC_ISO_SINGLE_SHIFTING (coding)) \ | |
| 1150 { \ | |
| 1151 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ | |
| 1152 *dst++ = c1 & 0x7F; \ | |
| 1153 else \ | |
| 1154 *dst++ = c1 | 0x80; \ | |
| 1155 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
| 1156 break; \ | |
| 1157 } \ | |
| 1158 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 0)) \ | |
| 1159 { \ | |
| 1160 *dst++ = c1 & 0x7F; \ | |
| 1161 break; \ | |
| 1162 } \ | |
| 1163 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 1)) \ | |
| 1164 { \ | |
| 1165 *dst++ = c1 | 0x80; \ | |
| 1166 break; \ | |
| 1167 } \ | |
| 1168 else \ | |
| 1169 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
| 1170 must invoke it, or, at first, designate it to some graphic \ | |
| 1171 register. Then repeat the loop to actually produce the \ | |
| 1172 character. */ \ | |
| 1173 dst = encode_invocation_designation (charset, coding, dst); \ | |
| 1174 } while (1) | |
| 1175 | |
| 18766 | 1176 /* Produce codes for a DIMENSION2 character whose character set is |
| 1177 CHARSET and whose position-codes are C1 and C2. Designation and | |
| 17052 | 1178 invocation codes are also produced in advance if necessary. */ |
| 1179 | |
| 1180 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \ | |
| 1181 do { \ | |
| 1182 if (CODING_SPEC_ISO_SINGLE_SHIFTING (coding)) \ | |
| 1183 { \ | |
| 1184 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ | |
| 1185 *dst++ = c1 & 0x7F, *dst++ = c2 & 0x7F; \ | |
| 1186 else \ | |
| 1187 *dst++ = c1 | 0x80, *dst++ = c2 | 0x80; \ | |
| 1188 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
| 1189 break; \ | |
| 1190 } \ | |
| 1191 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 0)) \ | |
| 1192 { \ | |
| 1193 *dst++ = c1 & 0x7F, *dst++= c2 & 0x7F; \ | |
| 1194 break; \ | |
| 1195 } \ | |
| 1196 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 1)) \ | |
| 1197 { \ | |
| 1198 *dst++ = c1 | 0x80, *dst++= c2 | 0x80; \ | |
| 1199 break; \ | |
| 1200 } \ | |
| 1201 else \ | |
| 1202 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
| 1203 must invoke it, or, at first, designate it to some graphic \ | |
| 1204 register. Then repeat the loop to actually produce the \ | |
| 1205 character. */ \ | |
| 1206 dst = encode_invocation_designation (charset, coding, dst); \ | |
| 1207 } while (1) | |
| 1208 | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1209 #define ENCODE_ISO_CHARACTER(charset, c1, c2) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1210 do { \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1211 int c_alt, charset_alt; \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1212 if (!NILP (unification_table) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1213 && ((c_alt = unify_char (unification_table, -1, charset, c1, c2)) \ |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1214 >= 0)) \ |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1215 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1216 else \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1217 charset_alt = charset; \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1218 if (CHARSET_DIMENSION (charset_alt) == 1) \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1219 ENCODE_ISO_CHARACTER_DIMENSION1 (charset_alt, c1); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1220 else \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1221 ENCODE_ISO_CHARACTER_DIMENSION2 (charset_alt, c1, c2); \ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1222 } while (0) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1223 |
| 17052 | 1224 /* Produce designation and invocation codes at a place pointed by DST |
| 1225 to use CHARSET. The element `spec.iso2022' of *CODING is updated. | |
| 1226 Return new DST. */ | |
| 1227 | |
| 1228 unsigned char * | |
| 1229 encode_invocation_designation (charset, coding, dst) | |
| 1230 int charset; | |
| 1231 struct coding_system *coding; | |
| 1232 unsigned char *dst; | |
| 1233 { | |
| 1234 int reg; /* graphic register number */ | |
| 1235 | |
| 1236 /* At first, check designations. */ | |
| 1237 for (reg = 0; reg < 4; reg++) | |
| 1238 if (charset == CODING_SPEC_ISO_DESIGNATION (coding, reg)) | |
| 1239 break; | |
| 1240 | |
| 1241 if (reg >= 4) | |
| 1242 { | |
| 1243 /* CHARSET is not yet designated to any graphic registers. */ | |
| 1244 /* At first check the requested designation. */ | |
| 1245 reg = CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset); | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1246 if (reg == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION) |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1247 /* Since CHARSET requests no special designation, designate it |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1248 to graphic register 0. */ |
| 17052 | 1249 reg = 0; |
| 1250 | |
| 1251 ENCODE_DESIGNATION (charset, reg, coding); | |
| 1252 } | |
| 1253 | |
| 1254 if (CODING_SPEC_ISO_INVOCATION (coding, 0) != reg | |
| 1255 && CODING_SPEC_ISO_INVOCATION (coding, 1) != reg) | |
| 1256 { | |
| 1257 /* Since the graphic register REG is not invoked to any graphic | |
| 1258 planes, invoke it to graphic plane 0. */ | |
| 1259 switch (reg) | |
| 1260 { | |
| 1261 case 0: /* graphic register 0 */ | |
| 1262 ENCODE_SHIFT_IN; | |
| 1263 break; | |
| 1264 | |
| 1265 case 1: /* graphic register 1 */ | |
| 1266 ENCODE_SHIFT_OUT; | |
| 1267 break; | |
| 1268 | |
| 1269 case 2: /* graphic register 2 */ | |
| 1270 if (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT) | |
| 1271 ENCODE_SINGLE_SHIFT_2; | |
| 1272 else | |
| 1273 ENCODE_LOCKING_SHIFT_2; | |
| 1274 break; | |
| 1275 | |
| 1276 case 3: /* graphic register 3 */ | |
| 1277 if (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT) | |
| 1278 ENCODE_SINGLE_SHIFT_3; | |
| 1279 else | |
| 1280 ENCODE_LOCKING_SHIFT_3; | |
| 1281 break; | |
| 1282 } | |
| 1283 } | |
| 1284 return dst; | |
| 1285 } | |
| 1286 | |
| 1287 /* The following two macros produce codes for indicating composition. */ | |
| 1288 #define ENCODE_COMPOSITION_NO_RULE_START *dst++ = ISO_CODE_ESC, *dst++ = '0' | |
| 1289 #define ENCODE_COMPOSITION_WITH_RULE_START *dst++ = ISO_CODE_ESC, *dst++ = '2' | |
| 1290 #define ENCODE_COMPOSITION_END *dst++ = ISO_CODE_ESC, *dst++ = '1' | |
| 1291 | |
| 1292 /* The following three macros produce codes for indicating direction | |
| 1293 of text. */ | |
| 1294 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ | |
| 1295 do { \ | |
| 1296 if (coding->flags == CODING_FLAG_ISO_SEVEN_BITS) \ | |
| 1297 *dst++ = ISO_CODE_ESC, *dst++ = '['; \ | |
| 1298 else \ | |
| 1299 *dst++ = ISO_CODE_CSI; \ | |
| 1300 } while (0) | |
| 1301 | |
| 1302 #define ENCODE_DIRECTION_R2L \ | |
| 1303 ENCODE_CONTROL_SEQUENCE_INTRODUCER, *dst++ = '2', *dst++ = ']' | |
| 1304 | |
| 1305 #define ENCODE_DIRECTION_L2R \ | |
| 1306 ENCODE_CONTROL_SEQUENCE_INTRODUCER, *dst++ = '0', *dst++ = ']' | |
| 1307 | |
| 1308 /* Produce codes for designation and invocation to reset the graphic | |
| 1309 planes and registers to initial state. */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1310 #define ENCODE_RESET_PLANE_AND_REGISTER \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1311 do { \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1312 int reg; \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1313 if (CODING_SPEC_ISO_INVOCATION (coding, 0) != 0) \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1314 ENCODE_SHIFT_IN; \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1315 for (reg = 0; reg < 4; reg++) \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1316 if (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg) >= 0 \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1317 && (CODING_SPEC_ISO_DESIGNATION (coding, reg) \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1318 != CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg))) \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1319 ENCODE_DESIGNATION \ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1320 (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg), reg, coding); \ |
| 17052 | 1321 } while (0) |
| 1322 | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1323 /* Produce designation sequences of charsets in the line started from |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1324 *SRC to a place pointed by DSTP. |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1325 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1326 If the current block ends before any end-of-line, we may fail to |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1327 find all the necessary *designations. */ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1328 encode_designation_at_bol (coding, table, src, src_end, dstp) |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1329 struct coding_system *coding; |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1330 Lisp_Object table; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1331 unsigned char *src, *src_end, **dstp; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1332 { |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1333 int charset, c, found = 0, reg; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1334 /* 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
|
1335 int r[4]; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1336 unsigned char *dst = *dstp; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1337 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1338 for (reg = 0; reg < 4; reg++) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1339 r[reg] = -1; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1340 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1341 while (src < src_end && *src != '\n' && found < 4) |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1342 { |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1343 int bytes = BYTES_BY_CHAR_HEAD (*src); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1344 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1345 if (NILP (table)) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1346 charset = CHARSET_AT (src); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1347 else |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1348 { |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1349 int c_alt, c1, c2; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1350 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1351 SPLIT_STRING(src, bytes, charset, c1, c2); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1352 if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1353 charset = CHAR_CHARSET (c_alt); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1354 } |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1355 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1356 reg = CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset); |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1357 if (r[reg] == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION) |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1358 { |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1359 found++; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1360 r[reg] = charset; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1361 } |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1362 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1363 src += bytes; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1364 } |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1365 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1366 if (found) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1367 { |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1368 for (reg = 0; reg < 4; reg++) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1369 if (r[reg] >= 0 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1370 && CODING_SPEC_ISO_DESIGNATION (coding, reg) != r[reg]) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1371 ENCODE_DESIGNATION (r[reg], reg, coding); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1372 *dstp = dst; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1373 } |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1374 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1375 |
| 17052 | 1376 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
| 1377 | |
| 1378 int | |
| 1379 encode_coding_iso2022 (coding, source, destination, | |
| 1380 src_bytes, dst_bytes, consumed) | |
| 1381 struct coding_system *coding; | |
| 1382 unsigned char *source, *destination; | |
| 1383 int src_bytes, dst_bytes; | |
| 1384 int *consumed; | |
| 1385 { | |
| 1386 unsigned char *src = source; | |
| 1387 unsigned char *src_end = source + src_bytes; | |
| 1388 unsigned char *dst = destination; | |
| 1389 unsigned char *dst_end = destination + dst_bytes; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1390 /* Since the maximum bytes produced by each loop is 20, we subtract 19 |
| 17052 | 1391 from DST_END to assure overflow checking is necessary only at the |
| 1392 head of loop. */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1393 unsigned char *adjusted_dst_end = dst_end - 19; |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1394 Lisp_Object unification_table |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1395 = coding->character_unification_table_for_encode; |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1396 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1397 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1398 unification_table = Vstandard_character_unification_table_for_encode; |
| 17052 | 1399 |
| 1400 while (src < src_end && dst < adjusted_dst_end) | |
| 1401 { | |
| 1402 /* SRC_BASE remembers the start position in source in each loop. | |
| 1403 The loop will be exited when there's not enough source text | |
| 1404 to analyze multi-byte codes (within macros ONE_MORE_BYTE, | |
| 1405 TWO_MORE_BYTES, and THREE_MORE_BYTES). In that case, SRC is | |
| 1406 reset to SRC_BASE before exiting. */ | |
| 1407 unsigned char *src_base = src; | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1408 int charset, c1, c2, c3, c4; |
| 17052 | 1409 |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1410 if (coding->flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1411 && CODING_SPEC_ISO_BOL (coding)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1412 { |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1413 /* We have to produce designation sequences if any now. */ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1414 encode_designation_at_bol (coding, unification_table, |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1415 src, src_end, &dst); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1416 CODING_SPEC_ISO_BOL (coding) = 0; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1417 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1418 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1419 c1 = *src++; |
| 17052 | 1420 /* If we are seeing a component of a composite character, we are |
| 1421 seeing a leading-code specially encoded for composition, or a | |
| 1422 composition rule if composing with rule. We must set C1 | |
| 1423 to a normal leading-code or an ASCII code. If we are not at | |
| 1424 a composed character, we must reset the composition state. */ | |
| 1425 if (COMPOSING_P (coding->composing)) | |
| 1426 { | |
| 1427 if (c1 < 0xA0) | |
| 1428 { | |
| 1429 /* We are not in a composite character any longer. */ | |
| 1430 coding->composing = COMPOSING_NO; | |
| 1431 ENCODE_COMPOSITION_END; | |
| 1432 } | |
| 1433 else | |
| 1434 { | |
| 1435 if (coding->composing == COMPOSING_WITH_RULE_RULE) | |
| 1436 { | |
| 1437 *dst++ = c1 & 0x7F; | |
| 1438 coding->composing = COMPOSING_WITH_RULE_HEAD; | |
| 1439 continue; | |
| 1440 } | |
| 1441 else if (coding->composing == COMPOSING_WITH_RULE_HEAD) | |
| 1442 coding->composing = COMPOSING_WITH_RULE_RULE; | |
| 1443 if (c1 == 0xA0) | |
| 1444 { | |
| 1445 /* This is an ASCII component. */ | |
| 1446 ONE_MORE_BYTE (c1); | |
| 1447 c1 &= 0x7F; | |
| 1448 } | |
| 1449 else | |
| 1450 /* This is a leading-code of non ASCII component. */ | |
| 1451 c1 -= 0x20; | |
| 1452 } | |
| 1453 } | |
| 1454 | |
| 1455 /* Now encode one character. C1 is a control character, an | |
| 1456 ASCII character, or a leading-code of multi-byte character. */ | |
| 1457 switch (emacs_code_class[c1]) | |
| 1458 { | |
| 1459 case EMACS_ascii_code: | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1460 ENCODE_ISO_CHARACTER (CHARSET_ASCII, c1, /* dummy */ c2); |
| 17052 | 1461 break; |
| 1462 | |
| 1463 case EMACS_control_code: | |
| 1464 if (coding->flags & CODING_FLAG_ISO_RESET_AT_CNTL) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1465 ENCODE_RESET_PLANE_AND_REGISTER; |
| 17052 | 1466 *dst++ = c1; |
| 1467 break; | |
| 1468 | |
| 1469 case EMACS_carriage_return_code: | |
| 1470 if (!coding->selective) | |
| 1471 { | |
| 1472 if (coding->flags & CODING_FLAG_ISO_RESET_AT_CNTL) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1473 ENCODE_RESET_PLANE_AND_REGISTER; |
| 17052 | 1474 *dst++ = c1; |
| 1475 break; | |
| 1476 } | |
| 1477 /* fall down to treat '\r' as '\n' ... */ | |
| 1478 | |
| 1479 case EMACS_linefeed_code: | |
| 1480 if (coding->flags & CODING_FLAG_ISO_RESET_AT_EOL) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1481 ENCODE_RESET_PLANE_AND_REGISTER; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1482 if (coding->flags & CODING_FLAG_ISO_INIT_AT_BOL) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1483 bcopy (coding->spec.iso2022.initial_designation, |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1484 coding->spec.iso2022.current_designation, |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1485 sizeof coding->spec.iso2022.initial_designation); |
| 17052 | 1486 if (coding->eol_type == CODING_EOL_LF |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
1487 || coding->eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 1488 *dst++ = ISO_CODE_LF; |
| 1489 else if (coding->eol_type == CODING_EOL_CRLF) | |
| 1490 *dst++ = ISO_CODE_CR, *dst++ = ISO_CODE_LF; | |
| 1491 else | |
| 1492 *dst++ = ISO_CODE_CR; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1493 CODING_SPEC_ISO_BOL (coding) = 1; |
| 17052 | 1494 break; |
| 1495 | |
| 1496 case EMACS_leading_code_2: | |
| 1497 ONE_MORE_BYTE (c2); | |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1498 if (c2 < 0xA0) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1499 { |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1500 /* invalid sequence */ |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1501 *dst++ = c1; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1502 *dst++ = c2; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1503 } |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1504 else |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1505 ENCODE_ISO_CHARACTER (c1, c2, /* dummy */ c3); |
| 17052 | 1506 break; |
| 1507 | |
| 1508 case EMACS_leading_code_3: | |
| 1509 TWO_MORE_BYTES (c2, c3); | |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1510 if (c2 < 0xA0 || c3 < 0xA0) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1511 { |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1512 /* invalid sequence */ |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1513 *dst++ = c1; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1514 *dst++ = c2; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1515 *dst++ = c3; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1516 } |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1517 else if (c1 < LEADING_CODE_PRIVATE_11) |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1518 ENCODE_ISO_CHARACTER (c1, c2, c3); |
| 17052 | 1519 else |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1520 ENCODE_ISO_CHARACTER (c2, c3, /* dummy */ c4); |
| 17052 | 1521 break; |
| 1522 | |
| 1523 case EMACS_leading_code_4: | |
| 1524 THREE_MORE_BYTES (c2, c3, c4); | |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1525 if (c2 < 0xA0 || c3 < 0xA0 || c4 < 0xA0) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1526 { |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1527 /* invalid sequence */ |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1528 *dst++ = c1; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1529 *dst++ = c2; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1530 *dst++ = c3; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1531 *dst++ = c4; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1532 } |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1533 else |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1534 ENCODE_ISO_CHARACTER (c2, c3, c4); |
| 17052 | 1535 break; |
| 1536 | |
| 1537 case EMACS_leading_code_composition: | |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1538 ONE_MORE_BYTE (c2); |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1539 if (c2 < 0xA0) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1540 { |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1541 /* invalid sequence */ |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1542 *dst++ = c1; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1543 *dst++ = c2; |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1544 } |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1545 else if (c2 == 0xFF) |
| 17052 | 1546 { |
| 1547 coding->composing = COMPOSING_WITH_RULE_HEAD; | |
| 1548 ENCODE_COMPOSITION_WITH_RULE_START; | |
| 1549 } | |
| 1550 else | |
| 1551 { | |
| 1552 /* Rewind one byte because it is a character code of | |
| 1553 composition elements. */ | |
| 1554 src--; | |
| 1555 coding->composing = COMPOSING_NO_RULE_HEAD; | |
| 1556 ENCODE_COMPOSITION_NO_RULE_START; | |
| 1557 } | |
| 1558 break; | |
| 1559 | |
| 1560 case EMACS_invalid_code: | |
| 1561 *dst++ = c1; | |
| 1562 break; | |
| 1563 } | |
| 1564 continue; | |
| 1565 label_end_of_loop: | |
| 1566 coding->carryover_size = src - src_base; | |
| 1567 bcopy (src_base, coding->carryover, coding->carryover_size); | |
| 1568 break; | |
| 1569 } | |
| 1570 | |
| 1571 /* If this is the last block of the text to be encoded, we must | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1572 reset graphic planes and registers to the initial state. */ |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1573 if (src >= src_end && coding->last_block) |
| 17052 | 1574 { |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1575 ENCODE_RESET_PLANE_AND_REGISTER; |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1576 if (coding->carryover_size > 0 |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1577 && coding->carryover_size < (dst_end - dst)) |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1578 { |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1579 bcopy (coding->carryover, dst, coding->carryover_size); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1580 dst += coding->carryover_size; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1581 coding->carryover_size = 0; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1582 } |
| 17052 | 1583 } |
| 1584 *consumed = src - source; | |
| 1585 return dst - destination; | |
| 1586 } | |
| 1587 | |
| 1588 | |
| 1589 /*** 4. SJIS and BIG5 handlers ***/ | |
| 1590 | |
| 18766 | 1591 /* Although SJIS and BIG5 are not ISO's coding system, they are used |
| 17052 | 1592 quite widely. So, for the moment, Emacs supports them in the bare |
| 1593 C code. But, in the future, they may be supported only by CCL. */ | |
| 1594 | |
| 1595 /* SJIS is a coding system encoding three character sets: ASCII, right | |
| 1596 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
| 1597 as is. A character of charset katakana-jisx0201 is encoded by | |
| 1598 "position-code + 0x80". A character of charset japanese-jisx0208 | |
| 1599 is encoded in 2-byte but two position-codes are divided and shifted | |
| 1600 so that it fit in the range below. | |
| 1601 | |
| 1602 --- CODE RANGE of SJIS --- | |
| 1603 (character set) (range) | |
| 1604 ASCII 0x00 .. 0x7F | |
| 1605 KATAKANA-JISX0201 0xA0 .. 0xDF | |
| 1606 JISX0208 (1st byte) 0x80 .. 0x9F and 0xE0 .. 0xFF | |
| 1607 (2nd byte) 0x40 .. 0xFF | |
| 1608 ------------------------------- | |
| 1609 | |
| 1610 */ | |
| 1611 | |
| 1612 /* BIG5 is a coding system encoding two character sets: ASCII and | |
| 1613 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
| 1614 character set and is encoded in two-byte. | |
| 1615 | |
| 1616 --- CODE RANGE of BIG5 --- | |
| 1617 (character set) (range) | |
| 1618 ASCII 0x00 .. 0x7F | |
| 1619 Big5 (1st byte) 0xA1 .. 0xFE | |
| 1620 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
| 1621 -------------------------- | |
| 1622 | |
| 1623 Since the number of characters in Big5 is larger than maximum | |
| 1624 characters in Emacs' charset (96x96), it can't be handled as one | |
| 1625 charset. So, in Emacs, Big5 is divided into two: `charset-big5-1' | |
| 1626 and `charset-big5-2'. Both are DIMENSION2 and CHARS94. The former | |
| 1627 contains frequently used characters and the latter contains less | |
| 1628 frequently used characters. */ | |
| 1629 | |
| 1630 /* Macros to decode or encode a character of Big5 in BIG5. B1 and B2 | |
| 1631 are the 1st and 2nd position-codes of Big5 in BIG5 coding system. | |
| 1632 C1 and C2 are the 1st and 2nd position-codes of of Emacs' internal | |
| 1633 format. CHARSET is `charset_big5_1' or `charset_big5_2'. */ | |
| 1634 | |
| 1635 /* Number of Big5 characters which have the same code in 1st byte. */ | |
| 1636 #define BIG5_SAME_ROW (0xFF - 0xA1 + 0x7F - 0x40) | |
| 1637 | |
| 1638 #define DECODE_BIG5(b1, b2, charset, c1, c2) \ | |
| 1639 do { \ | |
| 1640 unsigned int temp \ | |
| 1641 = (b1 - 0xA1) * BIG5_SAME_ROW + b2 - (b2 < 0x7F ? 0x40 : 0x62); \ | |
| 1642 if (b1 < 0xC9) \ | |
| 1643 charset = charset_big5_1; \ | |
| 1644 else \ | |
| 1645 { \ | |
| 1646 charset = charset_big5_2; \ | |
| 1647 temp -= (0xC9 - 0xA1) * BIG5_SAME_ROW; \ | |
| 1648 } \ | |
| 1649 c1 = temp / (0xFF - 0xA1) + 0x21; \ | |
| 1650 c2 = temp % (0xFF - 0xA1) + 0x21; \ | |
| 1651 } while (0) | |
| 1652 | |
| 1653 #define ENCODE_BIG5(charset, c1, c2, b1, b2) \ | |
| 1654 do { \ | |
| 1655 unsigned int temp = (c1 - 0x21) * (0xFF - 0xA1) + (c2 - 0x21); \ | |
| 1656 if (charset == charset_big5_2) \ | |
| 1657 temp += BIG5_SAME_ROW * (0xC9 - 0xA1); \ | |
| 1658 b1 = temp / BIG5_SAME_ROW + 0xA1; \ | |
| 1659 b2 = temp % BIG5_SAME_ROW; \ | |
| 1660 b2 += b2 < 0x3F ? 0x40 : 0x62; \ | |
| 1661 } while (0) | |
| 1662 | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1663 #define DECODE_SJIS_BIG5_CHARACTER(charset, c1, c2) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1664 do { \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1665 int c_alt, charset_alt = (charset); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1666 if (!NILP (unification_table) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1667 && ((c_alt = unify_char (unification_table, \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1668 -1, (charset), c1, c2)) >= 0)) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1669 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1670 if (charset_alt == CHARSET_ASCII || charset_alt < 0) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1671 DECODE_CHARACTER_ASCII (c1); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1672 else if (CHARSET_DIMENSION (charset_alt) == 1) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1673 DECODE_CHARACTER_DIMENSION1 (charset_alt, c1); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1674 else \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1675 DECODE_CHARACTER_DIMENSION2 (charset_alt, c1, c2); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1676 } while (0) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1677 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1678 #define ENCODE_SJIS_BIG5_CHARACTER(charset, c1, c2) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1679 do { \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1680 int c_alt, charset_alt; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1681 if (!NILP (unification_table) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1682 && ((c_alt = unify_char (unification_table, -1, charset, c1, c2)) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1683 >= 0)) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1684 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1685 else \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1686 charset_alt = charset; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1687 if (charset_alt == charset_ascii) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1688 *dst++ = c1; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1689 else if (CHARSET_DIMENSION (charset_alt) == 1) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1690 { \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1691 if (sjis_p && charset_alt == charset_katakana_jisx0201) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1692 *dst++ = c1; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1693 else \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1694 *dst++ = charset_alt, *dst++ = c1; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1695 } \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1696 else \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1697 { \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1698 c1 &= 0x7F, c2 &= 0x7F; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1699 if (sjis_p && charset_alt == charset_jisx0208) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1700 { \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1701 unsigned char s1, s2; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1702 \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1703 ENCODE_SJIS (c1, c2, s1, s2); \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1704 *dst++ = s1, *dst++ = s2; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1705 } \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1706 else if (!sjis_p \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1707 && (charset_alt == charset_big5_1 \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1708 || charset_alt == charset_big5_2)) \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1709 { \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1710 unsigned char b1, b2; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1711 \ |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
1712 ENCODE_BIG5 (charset_alt, c1, c2, b1, b2); \ |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1713 *dst++ = b1, *dst++ = b2; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1714 } \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1715 else \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1716 *dst++ = charset_alt, *dst++ = c1, *dst++ = c2; \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1717 } \ |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1718 } while (0); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1719 |
| 17052 | 1720 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
| 1721 Check if a text is encoded in SJIS. If it is, return | |
| 1722 CODING_CATEGORY_MASK_SJIS, else return 0. */ | |
| 1723 | |
| 1724 int | |
| 1725 detect_coding_sjis (src, src_end) | |
| 1726 unsigned char *src, *src_end; | |
| 1727 { | |
| 1728 unsigned char c; | |
| 1729 | |
| 1730 while (src < src_end) | |
| 1731 { | |
| 1732 c = *src++; | |
| 1733 if (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) | |
| 1734 return 0; | |
| 1735 if ((c >= 0x80 && c < 0xA0) || c >= 0xE0) | |
| 1736 { | |
| 1737 if (src < src_end && *src++ < 0x40) | |
| 1738 return 0; | |
| 1739 } | |
| 1740 } | |
| 1741 return CODING_CATEGORY_MASK_SJIS; | |
| 1742 } | |
| 1743 | |
| 1744 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
| 1745 Check if a text is encoded in BIG5. If it is, return | |
| 1746 CODING_CATEGORY_MASK_BIG5, else return 0. */ | |
| 1747 | |
| 1748 int | |
| 1749 detect_coding_big5 (src, src_end) | |
| 1750 unsigned char *src, *src_end; | |
| 1751 { | |
| 1752 unsigned char c; | |
| 1753 | |
| 1754 while (src < src_end) | |
| 1755 { | |
| 1756 c = *src++; | |
| 1757 if (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) | |
| 1758 return 0; | |
| 1759 if (c >= 0xA1) | |
| 1760 { | |
| 1761 if (src >= src_end) | |
| 1762 break; | |
| 1763 c = *src++; | |
| 1764 if (c < 0x40 || (c >= 0x7F && c <= 0xA0)) | |
| 1765 return 0; | |
| 1766 } | |
| 1767 } | |
| 1768 return CODING_CATEGORY_MASK_BIG5; | |
| 1769 } | |
| 1770 | |
| 1771 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". | |
| 1772 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
| 1773 | |
| 1774 int | |
| 1775 decode_coding_sjis_big5 (coding, source, destination, | |
| 1776 src_bytes, dst_bytes, consumed, sjis_p) | |
| 1777 struct coding_system *coding; | |
| 1778 unsigned char *source, *destination; | |
| 1779 int src_bytes, dst_bytes; | |
| 1780 int *consumed; | |
| 1781 int sjis_p; | |
| 1782 { | |
| 1783 unsigned char *src = source; | |
| 1784 unsigned char *src_end = source + src_bytes; | |
| 1785 unsigned char *dst = destination; | |
| 1786 unsigned char *dst_end = destination + dst_bytes; | |
| 1787 /* Since the maximum bytes produced by each loop is 4, we subtract 3 | |
| 1788 from DST_END to assure overflow checking is necessary only at the | |
| 1789 head of loop. */ | |
| 1790 unsigned char *adjusted_dst_end = dst_end - 3; | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1791 Lisp_Object unification_table |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1792 = coding->character_unification_table_for_decode; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1793 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1794 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1795 unification_table = Vstandard_character_unification_table_for_decode; |
| 17052 | 1796 |
| 1797 while (src < src_end && dst < adjusted_dst_end) | |
| 1798 { | |
| 1799 /* SRC_BASE remembers the start position in source in each loop. | |
| 1800 The loop will be exited when there's not enough source text | |
| 1801 to analyze two-byte character (within macro ONE_MORE_BYTE). | |
| 1802 In that case, SRC is reset to SRC_BASE before exiting. */ | |
| 1803 unsigned char *src_base = src; | |
| 1804 unsigned char c1 = *src++, c2, c3, c4; | |
| 1805 | |
| 1806 if (c1 == '\r') | |
| 1807 { | |
| 1808 if (coding->eol_type == CODING_EOL_CRLF) | |
| 1809 { | |
| 1810 ONE_MORE_BYTE (c2); | |
| 1811 if (c2 == '\n') | |
| 1812 *dst++ = c2; | |
| 1813 else | |
| 1814 /* To process C2 again, SRC is subtracted by 1. */ | |
| 1815 *dst++ = c1, src--; | |
| 1816 } | |
| 1817 else | |
| 1818 *dst++ = c1; | |
| 1819 } | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1820 else if (c1 < 0x20) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1821 *dst++ = c1; |
| 17052 | 1822 else if (c1 < 0x80) |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1823 DECODE_SJIS_BIG5_CHARACTER (charset_ascii, c1, /* dummy */ c2); |
| 17052 | 1824 else if (c1 < 0xA0 || c1 >= 0xE0) |
| 1825 { | |
| 1826 /* SJIS -> JISX0208, BIG5 -> Big5 (only if 0xE0 <= c1 < 0xFF) */ | |
| 1827 if (sjis_p) | |
| 1828 { | |
| 1829 ONE_MORE_BYTE (c2); | |
| 1830 DECODE_SJIS (c1, c2, c3, c4); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1831 DECODE_SJIS_BIG5_CHARACTER (charset_jisx0208, c3, c4); |
| 17052 | 1832 } |
| 1833 else if (c1 >= 0xE0 && c1 < 0xFF) | |
| 1834 { | |
| 1835 int charset; | |
| 1836 | |
| 1837 ONE_MORE_BYTE (c2); | |
| 1838 DECODE_BIG5 (c1, c2, charset, c3, c4); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1839 DECODE_SJIS_BIG5_CHARACTER (charset, c3, c4); |
| 17052 | 1840 } |
| 1841 else /* Invalid code */ | |
| 1842 *dst++ = c1; | |
| 1843 } | |
| 1844 else | |
| 1845 { | |
| 1846 /* SJIS -> JISX0201-Kana, BIG5 -> Big5 */ | |
| 1847 if (sjis_p) | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1848 DECODE_SJIS_BIG5_CHARACTER (charset_katakana_jisx0201, c1, /* dummy */ c2); |
| 17052 | 1849 else |
| 1850 { | |
| 1851 int charset; | |
| 1852 | |
| 1853 ONE_MORE_BYTE (c2); | |
| 1854 DECODE_BIG5 (c1, c2, charset, c3, c4); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1855 DECODE_SJIS_BIG5_CHARACTER (charset, c3, c4); |
| 17052 | 1856 } |
| 1857 } | |
| 1858 continue; | |
| 1859 | |
| 1860 label_end_of_loop: | |
| 1861 coding->carryover_size = src - src_base; | |
| 1862 bcopy (src_base, coding->carryover, coding->carryover_size); | |
| 1863 src = src_base; | |
| 1864 break; | |
| 1865 } | |
| 1866 | |
| 1867 *consumed = src - source; | |
| 1868 return dst - destination; | |
| 1869 } | |
| 1870 | |
| 1871 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". | |
| 1872 This function can encode `charset_ascii', `charset_katakana_jisx0201', | |
| 1873 `charset_jisx0208', `charset_big5_1', and `charset_big5-2'. We are | |
| 1874 sure that all these charsets are registered as official charset | |
| 1875 (i.e. do not have extended leading-codes). Characters of other | |
| 1876 charsets are produced without any encoding. If SJIS_P is 1, encode | |
| 1877 SJIS text, else encode BIG5 text. */ | |
| 1878 | |
| 1879 int | |
| 1880 encode_coding_sjis_big5 (coding, source, destination, | |
| 1881 src_bytes, dst_bytes, consumed, sjis_p) | |
| 1882 struct coding_system *coding; | |
| 1883 unsigned char *source, *destination; | |
| 1884 int src_bytes, dst_bytes; | |
| 1885 int *consumed; | |
| 1886 int sjis_p; | |
| 1887 { | |
| 1888 unsigned char *src = source; | |
| 1889 unsigned char *src_end = source + src_bytes; | |
| 1890 unsigned char *dst = destination; | |
| 1891 unsigned char *dst_end = destination + dst_bytes; | |
| 1892 /* Since the maximum bytes produced by each loop is 2, we subtract 1 | |
| 1893 from DST_END to assure overflow checking is necessary only at the | |
| 1894 head of loop. */ | |
| 1895 unsigned char *adjusted_dst_end = dst_end - 1; | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1896 Lisp_Object unification_table |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1897 = coding->character_unification_table_for_encode; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1898 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1899 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1900 unification_table = Vstandard_character_unification_table_for_encode; |
| 17052 | 1901 |
| 1902 while (src < src_end && dst < adjusted_dst_end) | |
| 1903 { | |
| 1904 /* SRC_BASE remembers the start position in source in each loop. | |
| 1905 The loop will be exited when there's not enough source text | |
| 1906 to analyze multi-byte codes (within macros ONE_MORE_BYTE and | |
| 1907 TWO_MORE_BYTES). In that case, SRC is reset to SRC_BASE | |
| 1908 before exiting. */ | |
| 1909 unsigned char *src_base = src; | |
| 1910 unsigned char c1 = *src++, c2, c3, c4; | |
| 1911 | |
| 1912 if (coding->composing) | |
| 1913 { | |
| 1914 if (c1 == 0xA0) | |
| 1915 { | |
| 1916 ONE_MORE_BYTE (c1); | |
| 1917 c1 &= 0x7F; | |
| 1918 } | |
| 1919 else if (c1 >= 0xA0) | |
| 1920 c1 -= 0x20; | |
| 1921 else | |
| 1922 coding->composing = 0; | |
| 1923 } | |
| 1924 | |
| 1925 switch (emacs_code_class[c1]) | |
| 1926 { | |
| 1927 case EMACS_ascii_code: | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1928 ENCODE_SJIS_BIG5_CHARACTER (charset_ascii, c1, /* dummy */ c2); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1929 break; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1930 |
| 17052 | 1931 case EMACS_control_code: |
| 1932 *dst++ = c1; | |
| 1933 break; | |
| 1934 | |
| 1935 case EMACS_carriage_return_code: | |
| 1936 if (!coding->selective) | |
| 1937 { | |
| 1938 *dst++ = c1; | |
| 1939 break; | |
| 1940 } | |
| 1941 /* fall down to treat '\r' as '\n' ... */ | |
| 1942 | |
| 1943 case EMACS_linefeed_code: | |
| 1944 if (coding->eol_type == CODING_EOL_LF | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
1945 || coding->eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 1946 *dst++ = '\n'; |
| 1947 else if (coding->eol_type == CODING_EOL_CRLF) | |
| 1948 *dst++ = '\r', *dst++ = '\n'; | |
| 1949 else | |
| 1950 *dst++ = '\r'; | |
| 1951 break; | |
| 1952 | |
| 1953 case EMACS_leading_code_2: | |
| 1954 ONE_MORE_BYTE (c2); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1955 ENCODE_SJIS_BIG5_CHARACTER (c1, c2, /* dummy */ c3); |
| 17052 | 1956 break; |
| 1957 | |
| 1958 case EMACS_leading_code_3: | |
| 1959 TWO_MORE_BYTES (c2, c3); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1960 ENCODE_SJIS_BIG5_CHARACTER (c1, c2, c3); |
| 17052 | 1961 break; |
| 1962 | |
| 1963 case EMACS_leading_code_4: | |
| 1964 THREE_MORE_BYTES (c2, c3, c4); | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1965 ENCODE_SJIS_BIG5_CHARACTER (c2, c3, c4); |
| 17052 | 1966 break; |
| 1967 | |
| 1968 case EMACS_leading_code_composition: | |
| 1969 coding->composing = 1; | |
| 1970 break; | |
| 1971 | |
| 1972 default: /* i.e. case EMACS_invalid_code: */ | |
| 1973 *dst++ = c1; | |
| 1974 } | |
| 1975 continue; | |
| 1976 | |
| 1977 label_end_of_loop: | |
| 1978 coding->carryover_size = src - src_base; | |
| 1979 bcopy (src_base, coding->carryover, coding->carryover_size); | |
| 1980 src = src_base; | |
| 1981 break; | |
| 1982 } | |
| 1983 | |
| 1984 *consumed = src - source; | |
| 1985 return dst - destination; | |
| 1986 } | |
| 1987 | |
| 1988 | |
| 1989 /*** 5. End-of-line handlers ***/ | |
| 1990 | |
| 1991 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". | |
| 1992 This function is called only when `coding->eol_type' is | |
| 1993 CODING_EOL_CRLF or CODING_EOL_CR. */ | |
| 1994 | |
| 1995 decode_eol (coding, source, destination, src_bytes, dst_bytes, consumed) | |
| 1996 struct coding_system *coding; | |
| 1997 unsigned char *source, *destination; | |
| 1998 int src_bytes, dst_bytes; | |
| 1999 int *consumed; | |
| 2000 { | |
| 2001 unsigned char *src = source; | |
| 2002 unsigned char *src_end = source + src_bytes; | |
| 2003 unsigned char *dst = destination; | |
| 2004 unsigned char *dst_end = destination + dst_bytes; | |
| 2005 int produced; | |
| 2006 | |
| 2007 switch (coding->eol_type) | |
| 2008 { | |
| 2009 case CODING_EOL_CRLF: | |
| 2010 { | |
| 2011 /* Since the maximum bytes produced by each loop is 2, we | |
| 2012 subtract 1 from DST_END to assure overflow checking is | |
| 2013 necessary only at the head of loop. */ | |
| 2014 unsigned char *adjusted_dst_end = dst_end - 1; | |
| 2015 | |
| 2016 while (src < src_end && dst < adjusted_dst_end) | |
| 2017 { | |
| 2018 unsigned char *src_base = src; | |
| 2019 unsigned char c = *src++; | |
| 2020 if (c == '\r') | |
| 2021 { | |
| 2022 ONE_MORE_BYTE (c); | |
| 2023 if (c != '\n') | |
| 2024 *dst++ = '\r'; | |
|
17137
bd8d38879c97
(decode_eol): Fix bug of converting CRLF to LF.
Kenichi Handa <handa@m17n.org>
parents:
17119
diff
changeset
|
2025 *dst++ = c; |
| 17052 | 2026 } |
| 2027 else | |
| 2028 *dst++ = c; | |
| 2029 continue; | |
| 2030 | |
| 2031 label_end_of_loop: | |
| 2032 coding->carryover_size = src - src_base; | |
| 2033 bcopy (src_base, coding->carryover, coding->carryover_size); | |
| 2034 src = src_base; | |
| 2035 break; | |
| 2036 } | |
| 2037 *consumed = src - source; | |
| 2038 produced = dst - destination; | |
| 2039 break; | |
| 2040 } | |
| 2041 | |
| 2042 case CODING_EOL_CR: | |
| 2043 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
| 2044 bcopy (source, destination, produced); | |
| 2045 dst_end = destination + produced; | |
| 2046 while (dst < dst_end) | |
| 2047 if (*dst++ == '\r') dst[-1] = '\n'; | |
| 2048 *consumed = produced; | |
| 2049 break; | |
| 2050 | |
| 2051 default: /* i.e. case: CODING_EOL_LF */ | |
| 2052 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
| 2053 bcopy (source, destination, produced); | |
| 2054 *consumed = produced; | |
| 2055 break; | |
| 2056 } | |
| 2057 | |
| 2058 return produced; | |
| 2059 } | |
| 2060 | |
| 2061 /* See "GENERAL NOTES about `encode_coding_XXX ()' functions". Encode | |
| 2062 format of end-of-line according to `coding->eol_type'. If | |
| 2063 `coding->selective' is 1, code '\r' in source text also means | |
| 2064 end-of-line. */ | |
| 2065 | |
| 2066 encode_eol (coding, source, destination, src_bytes, dst_bytes, consumed) | |
| 2067 struct coding_system *coding; | |
| 2068 unsigned char *source, *destination; | |
| 2069 int src_bytes, dst_bytes; | |
| 2070 int *consumed; | |
| 2071 { | |
| 2072 unsigned char *src = source; | |
| 2073 unsigned char *dst = destination; | |
| 2074 int produced; | |
| 2075 | |
| 2076 if (src_bytes <= 0) | |
| 2077 return 0; | |
| 2078 | |
| 2079 switch (coding->eol_type) | |
| 2080 { | |
| 2081 case CODING_EOL_LF: | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2082 case CODING_EOL_UNDECIDED: |
| 17052 | 2083 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; |
| 2084 bcopy (source, destination, produced); | |
| 2085 if (coding->selective) | |
| 2086 { | |
| 2087 int i = produced; | |
| 2088 while (i--) | |
| 2089 if (*dst++ == '\r') dst[-1] = '\n'; | |
| 2090 } | |
| 2091 *consumed = produced; | |
| 2092 | |
| 2093 case CODING_EOL_CRLF: | |
| 2094 { | |
| 2095 unsigned char c; | |
| 2096 unsigned char *src_end = source + src_bytes; | |
| 2097 unsigned char *dst_end = destination + dst_bytes; | |
| 2098 /* Since the maximum bytes produced by each loop is 2, we | |
| 2099 subtract 1 from DST_END to assure overflow checking is | |
| 2100 necessary only at the head of loop. */ | |
| 2101 unsigned char *adjusted_dst_end = dst_end - 1; | |
| 2102 | |
| 2103 while (src < src_end && dst < adjusted_dst_end) | |
| 2104 { | |
| 2105 c = *src++; | |
| 2106 if (c == '\n' || (c == '\r' && coding->selective)) | |
| 2107 *dst++ = '\r', *dst++ = '\n'; | |
| 2108 else | |
| 2109 *dst++ = c; | |
| 2110 } | |
| 2111 produced = dst - destination; | |
| 2112 *consumed = src - source; | |
| 2113 break; | |
| 2114 } | |
| 2115 | |
| 2116 default: /* i.e. case CODING_EOL_CR: */ | |
| 2117 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
| 2118 bcopy (source, destination, produced); | |
| 2119 { | |
| 2120 int i = produced; | |
| 2121 while (i--) | |
| 2122 if (*dst++ == '\n') dst[-1] = '\r'; | |
| 2123 } | |
| 2124 *consumed = produced; | |
| 2125 } | |
| 2126 | |
| 2127 return produced; | |
| 2128 } | |
| 2129 | |
| 2130 | |
| 2131 /*** 6. C library functions ***/ | |
| 2132 | |
| 2133 /* In Emacs Lisp, coding system is represented by a Lisp symbol which | |
| 2134 has a property `coding-system'. The value of this property is a | |
| 2135 vector of length 5 (called as coding-vector). Among elements of | |
| 2136 this vector, the first (element[0]) and the fifth (element[4]) | |
| 2137 carry important information for decoding/encoding. Before | |
| 2138 decoding/encoding, this information should be set in fields of a | |
| 2139 structure of type `coding_system'. | |
| 2140 | |
| 2141 A value of property `coding-system' can be a symbol of another | |
| 2142 subsidiary coding-system. In that case, Emacs gets coding-vector | |
| 2143 from that symbol. | |
| 2144 | |
| 2145 `element[0]' contains information to be set in `coding->type'. The | |
| 2146 value and its meaning is as follows: | |
| 2147 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2148 0 -- coding_type_emacs_mule |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2149 1 -- coding_type_sjis |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2150 2 -- coding_type_iso2022 |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2151 3 -- coding_type_big5 |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2152 4 -- coding_type_ccl encoder/decoder written in CCL |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2153 nil -- coding_type_no_conversion |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2154 t -- coding_type_undecided (automatic conversion on decoding, |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2155 no-conversion on encoding) |
| 17052 | 2156 |
| 2157 `element[4]' contains information to be set in `coding->flags' and | |
| 2158 `coding->spec'. The meaning varies by `coding->type'. | |
| 2159 | |
| 2160 If `coding->type' is `coding_type_iso2022', element[4] is a vector | |
| 2161 of length 32 (of which the first 13 sub-elements are used now). | |
| 2162 Meanings of these sub-elements are: | |
| 2163 | |
| 2164 sub-element[N] where N is 0 through 3: to be set in `coding->spec.iso2022' | |
| 2165 If the value is an integer of valid charset, the charset is | |
| 2166 assumed to be designated to graphic register N initially. | |
| 2167 | |
| 2168 If the value is minus, it is a minus value of charset which | |
| 2169 reserves graphic register N, which means that the charset is | |
| 2170 not designated initially but should be designated to graphic | |
| 2171 register N just before encoding a character in that charset. | |
| 2172 | |
| 2173 If the value is nil, graphic register N is never used on | |
| 2174 encoding. | |
| 2175 | |
| 2176 sub-element[N] where N is 4 through 11: to be set in `coding->flags' | |
| 2177 Each value takes t or nil. See the section ISO2022 of | |
| 2178 `coding.h' for more information. | |
| 2179 | |
| 2180 If `coding->type' is `coding_type_big5', element[4] is t to denote | |
| 2181 BIG5-ETen or nil to denote BIG5-HKU. | |
| 2182 | |
| 2183 If `coding->type' takes the other value, element[4] is ignored. | |
| 2184 | |
| 2185 Emacs Lisp's coding system also carries information about format of | |
| 2186 end-of-line in a value of property `eol-type'. If the value is | |
| 2187 integer, 0 means CODING_EOL_LF, 1 means CODING_EOL_CRLF, and 2 | |
| 2188 means CODING_EOL_CR. If it is not integer, it should be a vector | |
| 2189 of subsidiary coding systems of which property `eol-type' has one | |
| 2190 of above values. | |
| 2191 | |
| 2192 */ | |
| 2193 | |
| 2194 /* Extract information for decoding/encoding from CODING_SYSTEM_SYMBOL | |
| 2195 and set it in CODING. If CODING_SYSTEM_SYMBOL is invalid, CODING | |
| 2196 is setup so that no conversion is necessary and return -1, else | |
| 2197 return 0. */ | |
| 2198 | |
| 2199 int | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2200 setup_coding_system (coding_system, coding) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2201 Lisp_Object coding_system; |
| 17052 | 2202 struct coding_system *coding; |
| 2203 { | |
| 2204 Lisp_Object type, eol_type; | |
| 2205 | |
| 18766 | 2206 /* At first, set several fields to default values. */ |
| 17052 | 2207 coding->require_flushing = 0; |
| 2208 coding->last_block = 0; | |
| 2209 coding->selective = 0; | |
| 2210 coding->composing = 0; | |
| 2211 coding->direction = 0; | |
| 2212 coding->carryover_size = 0; | |
| 2213 coding->post_read_conversion = coding->pre_write_conversion = Qnil; | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2214 coding->character_unification_table_for_decode = Qnil; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2215 coding->character_unification_table_for_encode = Qnil; |
| 17052 | 2216 |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2217 Vlast_coding_system_used = coding->symbol = coding_system; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2218 eol_type = Qnil; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2219 /* Get value of property `coding-system' until we get a vector. |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2220 While doing that, also get values of properties |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2221 `post-read-conversion', `pre-write-conversion', |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2222 `character-unification-table-for-decode', |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2223 `character-unification-table-for-encode' and `eol-type'. */ |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2224 while (!NILP (coding_system) && SYMBOLP (coding_system)) |
| 17052 | 2225 { |
| 2226 if (NILP (coding->post_read_conversion)) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2227 coding->post_read_conversion = Fget (coding_system, |
| 17052 | 2228 Qpost_read_conversion); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2229 if (NILP (coding->pre_write_conversion)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2230 coding->pre_write_conversion = Fget (coding_system, |
| 17052 | 2231 Qpre_write_conversion); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
2232 if (!inhibit_eol_conversion && NILP (eol_type)) |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2233 eol_type = Fget (coding_system, Qeol_type); |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2234 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2235 if (NILP (coding->character_unification_table_for_decode)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2236 coding->character_unification_table_for_decode |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2237 = Fget (coding_system, Qcharacter_unification_table_for_decode); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2238 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2239 if (NILP (coding->character_unification_table_for_encode)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2240 coding->character_unification_table_for_encode |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2241 = Fget (coding_system, Qcharacter_unification_table_for_encode); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2242 |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2243 coding_system = Fget (coding_system, Qcoding_system); |
| 17052 | 2244 } |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2245 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2246 while (!NILP (coding->character_unification_table_for_decode) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2247 && SYMBOLP (coding->character_unification_table_for_decode)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2248 coding->character_unification_table_for_decode |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2249 = Fget (coding->character_unification_table_for_decode, |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2250 Qcharacter_unification_table_for_decode); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2251 if (!NILP (coding->character_unification_table_for_decode) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2252 && !CHAR_TABLE_P (coding->character_unification_table_for_decode)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2253 coding->character_unification_table_for_decode = Qnil; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2254 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2255 while (!NILP (coding->character_unification_table_for_encode) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2256 && SYMBOLP (coding->character_unification_table_for_encode)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2257 coding->character_unification_table_for_encode |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2258 = Fget (coding->character_unification_table_for_encode, |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2259 Qcharacter_unification_table_for_encode); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2260 if (!NILP (coding->character_unification_table_for_encode) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2261 && !CHAR_TABLE_P (coding->character_unification_table_for_encode)) |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2262 coding->character_unification_table_for_encode = Qnil; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2263 |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2264 if (!VECTORP (coding_system) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2265 || XVECTOR (coding_system)->size != 5) |
| 17052 | 2266 goto label_invalid_coding_system; |
| 2267 | |
| 2268 if (VECTORP (eol_type)) | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2269 coding->eol_type = CODING_EOL_UNDECIDED; |
| 17052 | 2270 else if (XFASTINT (eol_type) == 1) |
| 2271 coding->eol_type = CODING_EOL_CRLF; | |
| 2272 else if (XFASTINT (eol_type) == 2) | |
| 2273 coding->eol_type = CODING_EOL_CR; | |
| 2274 else | |
| 2275 coding->eol_type = CODING_EOL_LF; | |
| 2276 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2277 type = XVECTOR (coding_system)->contents[0]; |
| 17052 | 2278 switch (XFASTINT (type)) |
| 2279 { | |
| 2280 case 0: | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2281 coding->type = coding_type_emacs_mule; |
| 17052 | 2282 break; |
| 2283 | |
| 2284 case 1: | |
| 2285 coding->type = coding_type_sjis; | |
| 2286 break; | |
| 2287 | |
| 2288 case 2: | |
| 2289 coding->type = coding_type_iso2022; | |
| 2290 { | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2291 Lisp_Object val = XVECTOR (coding_system)->contents[4]; |
| 17052 | 2292 Lisp_Object *flags; |
| 2293 int i, charset, default_reg_bits = 0; | |
| 2294 | |
| 2295 if (!VECTORP (val) || XVECTOR (val)->size != 32) | |
| 2296 goto label_invalid_coding_system; | |
| 2297 | |
| 2298 flags = XVECTOR (val)->contents; | |
| 2299 coding->flags | |
| 2300 = ((NILP (flags[4]) ? 0 : CODING_FLAG_ISO_SHORT_FORM) | |
| 2301 | (NILP (flags[5]) ? 0 : CODING_FLAG_ISO_RESET_AT_EOL) | |
| 2302 | (NILP (flags[6]) ? 0 : CODING_FLAG_ISO_RESET_AT_CNTL) | |
| 2303 | (NILP (flags[7]) ? 0 : CODING_FLAG_ISO_SEVEN_BITS) | |
| 2304 | (NILP (flags[8]) ? 0 : CODING_FLAG_ISO_LOCKING_SHIFT) | |
| 2305 | (NILP (flags[9]) ? 0 : CODING_FLAG_ISO_SINGLE_SHIFT) | |
| 2306 | (NILP (flags[10]) ? 0 : CODING_FLAG_ISO_USE_ROMAN) | |
| 2307 | (NILP (flags[11]) ? 0 : CODING_FLAG_ISO_USE_OLDJIS) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2308 | (NILP (flags[12]) ? 0 : CODING_FLAG_ISO_NO_DIRECTION) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2309 | (NILP (flags[13]) ? 0 : CODING_FLAG_ISO_INIT_AT_BOL) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2310 | (NILP (flags[14]) ? 0 : CODING_FLAG_ISO_DESIGNATE_AT_BOL)); |
| 17052 | 2311 |
| 2312 /* Invoke graphic register 0 to plane 0. */ | |
| 2313 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; | |
| 2314 /* Invoke graphic register 1 to plane 1 if we can use full 8-bit. */ | |
| 2315 CODING_SPEC_ISO_INVOCATION (coding, 1) | |
| 2316 = (coding->flags & CODING_FLAG_ISO_SEVEN_BITS ? -1 : 1); | |
| 2317 /* Not single shifting at first. */ | |
| 2318 CODING_SPEC_ISO_SINGLE_SHIFTING(coding) = 0; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2319 /* Beginning of buffer should also be regarded as bol. */ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2320 CODING_SPEC_ISO_BOL(coding) = 1; |
| 17052 | 2321 |
| 2322 /* Checks FLAGS[REG] (REG = 0, 1, 2 3) and decide designations. | |
| 2323 FLAGS[REG] can be one of below: | |
| 2324 integer CHARSET: CHARSET occupies register I, | |
| 2325 t: designate nothing to REG initially, but can be used | |
| 2326 by any charsets, | |
| 2327 list of integer, nil, or t: designate the first | |
| 2328 element (if integer) to REG initially, the remaining | |
| 2329 elements (if integer) is designated to REG on request, | |
| 2330 if an element is t, REG can be used by any charset, | |
| 2331 nil: REG is never used. */ | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17137
diff
changeset
|
2332 for (charset = 0; charset <= MAX_CHARSET; charset++) |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
2333 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
2334 = CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION; |
| 17052 | 2335 for (i = 0; i < 4; i++) |
| 2336 { | |
| 2337 if (INTEGERP (flags[i]) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2338 && (charset = XINT (flags[i]), CHARSET_VALID_P (charset)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2339 || (charset = get_charset_id (flags[i])) >= 0) |
| 17052 | 2340 { |
| 2341 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = charset; | |
| 2342 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) = i; | |
| 2343 } | |
| 2344 else if (EQ (flags[i], Qt)) | |
| 2345 { | |
| 2346 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = -1; | |
| 2347 default_reg_bits |= 1 << i; | |
| 2348 } | |
| 2349 else if (CONSP (flags[i])) | |
| 2350 { | |
| 2351 Lisp_Object tail = flags[i]; | |
| 2352 | |
| 2353 if (INTEGERP (XCONS (tail)->car) | |
| 2354 && (charset = XINT (XCONS (tail)->car), | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2355 CHARSET_VALID_P (charset)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2356 || (charset = get_charset_id (XCONS (tail)->car)) >= 0) |
| 17052 | 2357 { |
| 2358 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = charset; | |
| 2359 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) =i; | |
| 2360 } | |
| 2361 else | |
| 2362 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = -1; | |
| 2363 tail = XCONS (tail)->cdr; | |
| 2364 while (CONSP (tail)) | |
| 2365 { | |
| 2366 if (INTEGERP (XCONS (tail)->car) | |
| 2367 && (charset = XINT (XCONS (tail)->car), | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2368 CHARSET_VALID_P (charset)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2369 || (charset = get_charset_id (XCONS (tail)->car)) >= 0) |
| 17052 | 2370 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
| 2371 = i; | |
| 2372 else if (EQ (XCONS (tail)->car, Qt)) | |
| 2373 default_reg_bits |= 1 << i; | |
| 2374 tail = XCONS (tail)->cdr; | |
| 2375 } | |
| 2376 } | |
| 2377 else | |
| 2378 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = -1; | |
| 2379 | |
| 2380 CODING_SPEC_ISO_DESIGNATION (coding, i) | |
| 2381 = CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i); | |
| 2382 } | |
| 2383 | |
| 2384 if (! (coding->flags & CODING_FLAG_ISO_LOCKING_SHIFT)) | |
| 2385 { | |
| 2386 /* REG 1 can be used only by locking shift in 7-bit env. */ | |
| 2387 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) | |
| 2388 default_reg_bits &= ~2; | |
| 2389 if (! (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT)) | |
| 2390 /* Without any shifting, only REG 0 and 1 can be used. */ | |
| 2391 default_reg_bits &= 3; | |
| 2392 } | |
| 2393 | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17137
diff
changeset
|
2394 for (charset = 0; charset <= MAX_CHARSET; charset++) |
| 17052 | 2395 if (CHARSET_VALID_P (charset) |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
2396 && (CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
2397 == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION)) |
| 17052 | 2398 { |
| 2399 /* We have not yet decided where to designate CHARSET. */ | |
| 2400 int reg_bits = default_reg_bits; | |
| 2401 | |
| 2402 if (CHARSET_CHARS (charset) == 96) | |
| 2403 /* A charset of CHARS96 can't be designated to REG 0. */ | |
| 2404 reg_bits &= ~1; | |
| 2405 | |
| 2406 if (reg_bits) | |
| 2407 /* There exist some default graphic register. */ | |
| 2408 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) | |
| 2409 = (reg_bits & 1 | |
| 2410 ? 0 : (reg_bits & 2 ? 1 : (reg_bits & 4 ? 2 : 3))); | |
| 2411 else | |
| 2412 /* We anyway have to designate CHARSET to somewhere. */ | |
| 2413 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) | |
| 2414 = (CHARSET_CHARS (charset) == 94 | |
| 2415 ? 0 | |
| 2416 : ((coding->flags & CODING_FLAG_ISO_LOCKING_SHIFT | |
| 2417 || ! coding->flags & CODING_FLAG_ISO_SEVEN_BITS) | |
| 2418 ? 1 | |
| 2419 : (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT | |
| 2420 ? 2 : 0))); | |
| 2421 } | |
| 2422 } | |
| 2423 coding->require_flushing = 1; | |
| 2424 break; | |
| 2425 | |
| 2426 case 3: | |
| 2427 coding->type = coding_type_big5; | |
| 2428 coding->flags | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2429 = (NILP (XVECTOR (coding_system)->contents[4]) |
| 17052 | 2430 ? CODING_FLAG_BIG5_HKU |
| 2431 : CODING_FLAG_BIG5_ETEN); | |
| 2432 break; | |
| 2433 | |
| 2434 case 4: | |
| 2435 coding->type = coding_type_ccl; | |
| 2436 { | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2437 Lisp_Object val = XVECTOR (coding_system)->contents[4]; |
| 17052 | 2438 if (CONSP (val) |
| 2439 && VECTORP (XCONS (val)->car) | |
| 2440 && VECTORP (XCONS (val)->cdr)) | |
| 2441 { | |
| 2442 setup_ccl_program (&(coding->spec.ccl.decoder), XCONS (val)->car); | |
| 2443 setup_ccl_program (&(coding->spec.ccl.encoder), XCONS (val)->cdr); | |
| 2444 } | |
| 2445 else | |
| 2446 goto label_invalid_coding_system; | |
| 2447 } | |
| 2448 coding->require_flushing = 1; | |
| 2449 break; | |
| 2450 | |
| 2451 default: | |
| 2452 if (EQ (type, Qt)) | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2453 coding->type = coding_type_undecided; |
| 17052 | 2454 else |
| 2455 coding->type = coding_type_no_conversion; | |
| 2456 break; | |
| 2457 } | |
| 2458 return 0; | |
| 2459 | |
| 2460 label_invalid_coding_system: | |
| 2461 coding->type = coding_type_no_conversion; | |
|
17485
abfa77a2693b
(setup_coding_system): Setup coding->eol_type as LF
Kenichi Handa <handa@m17n.org>
parents:
17368
diff
changeset
|
2462 coding->eol_type = CODING_EOL_LF; |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2463 coding->symbol = coding->pre_write_conversion = coding->post_read_conversion |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2464 = Qnil; |
| 17052 | 2465 return -1; |
| 2466 } | |
| 2467 | |
| 2468 /* Emacs has a mechanism to automatically detect a coding system if it | |
| 2469 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
| 2470 it's impossible to distinguish some coding systems accurately | |
| 2471 because they use the same range of codes. So, at first, coding | |
| 2472 systems are categorized into 7, those are: | |
| 2473 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2474 o coding-category-emacs-mule |
| 17052 | 2475 |
| 2476 The category for a coding system which has the same code range | |
| 2477 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
|
2478 symbol) `emacs-mule' by default. |
| 17052 | 2479 |
| 2480 o coding-category-sjis | |
| 2481 | |
| 2482 The category for a coding system which has the same code range | |
| 2483 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
|
2484 symbol) `japanese-shift-jis' by default. |
| 17052 | 2485 |
| 2486 o coding-category-iso-7 | |
| 2487 | |
| 2488 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
|
2489 as ISO2022 of 7-bit environment. This doesn't use any locking |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2490 shift and single shift functions. Assigned the coding-system |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2491 (Lisp symbol) `iso-2022-7bit' by default. |
| 17052 | 2492 |
| 2493 o coding-category-iso-8-1 | |
| 2494 | |
| 2495 The category for a coding system which has the same code range | |
| 2496 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
|
2497 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
|
2498 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
|
2499 symbol) `iso-latin-1' by default. |
| 17052 | 2500 |
| 2501 o coding-category-iso-8-2 | |
| 2502 | |
| 2503 The category for a coding system which has the same code range | |
| 2504 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
|
2505 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
|
2506 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
|
2507 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
|
2508 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2509 o coding-category-iso-7-else |
| 17052 | 2510 |
| 2511 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
|
2512 as ISO2022 of 7-bit environemnt but uses locking shift or |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2513 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
|
2514 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
|
2515 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2516 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
|
2517 |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2518 The category for a coding system which has the same code range |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2519 as ISO2022 of 8-bit environemnt but uses locking shift or |
|
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2520 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
|
2521 symbol) `iso-2022-8bit-ss2' by default. |
| 17052 | 2522 |
| 2523 o coding-category-big5 | |
| 2524 | |
| 2525 The category for a coding system which has the same code range | |
| 2526 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
|
2527 `cn-big5' by default. |
| 17052 | 2528 |
| 2529 o coding-category-binary | |
| 2530 | |
| 2531 The category for a coding system not categorized in any of the | |
| 2532 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
|
2533 `no-conversion' by default. |
| 17052 | 2534 |
| 2535 Each of them is a Lisp symbol and the value is an actual | |
| 2536 `coding-system's (this is also a Lisp symbol) assigned by a user. | |
| 2537 What Emacs does actually is to detect a category of coding system. | |
| 2538 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
| 2539 decide only one possible category, it selects a category of the | |
| 2540 highest priority. Priorities of categories are also specified by a | |
| 2541 user in a Lisp variable `coding-category-list'. | |
| 2542 | |
| 2543 */ | |
| 2544 | |
| 2545 /* Detect how a text of length SRC_BYTES pointed by SRC is encoded. | |
| 2546 If it detects possible coding systems, return an integer in which | |
| 2547 appropriate flag bits are set. Flag bits are defined by macros | |
| 2548 CODING_CATEGORY_MASK_XXX in `coding.h'. */ | |
| 2549 | |
| 2550 int | |
| 2551 detect_coding_mask (src, src_bytes) | |
| 2552 unsigned char *src; | |
| 2553 int src_bytes; | |
| 2554 { | |
| 2555 register unsigned char c; | |
| 2556 unsigned char *src_end = src + src_bytes; | |
| 2557 int mask; | |
| 2558 | |
| 2559 /* At first, skip all ASCII characters and control characters except | |
| 2560 for three ISO2022 specific control characters. */ | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2561 label_loop_detect_coding: |
| 17052 | 2562 while (src < src_end) |
| 2563 { | |
| 2564 c = *src; | |
| 2565 if (c >= 0x80 | |
| 2566 || (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) | |
| 2567 break; | |
| 2568 src++; | |
| 2569 } | |
| 2570 | |
| 2571 if (src >= src_end) | |
| 2572 /* We found nothing other than ASCII. There's nothing to do. */ | |
| 2573 return CODING_CATEGORY_MASK_ANY; | |
| 2574 | |
| 2575 /* The text seems to be encoded in some multilingual coding system. | |
| 2576 Now, try to find in which coding system the text is encoded. */ | |
| 2577 if (c < 0x80) | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2578 { |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2579 /* i.e. (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) */ |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2580 /* C is an ISO2022 specific control code of C0. */ |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2581 mask = detect_coding_iso2022 (src, src_end); |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2582 src++; |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2583 if (mask == CODING_CATEGORY_MASK_ANY) |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2584 /* No valid ISO2022 code follows C. Try again. */ |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2585 goto label_loop_detect_coding; |
|
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2586 } |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2587 else if (c == ISO_CODE_SS2 || c == ISO_CODE_SS3) |
| 17052 | 2588 /* C is an ISO2022 specific control code of C1, |
| 2589 or the first byte of SJIS's 2-byte character code, | |
| 2590 or a leading code of Emacs. */ | |
| 2591 mask = (detect_coding_iso2022 (src, src_end) | |
| 2592 | detect_coding_sjis (src, src_end) | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2593 | detect_coding_emacs_mule (src, src_end)); |
| 17052 | 2594 |
|
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2595 else if (c == ISO_CODE_CSI |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2596 && (src < src_end |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2597 && (*src == ']' |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2598 || (src + 1 < src_end |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2599 && src[1] == ']' |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2600 && (*src == '0' || *src == '1' || *src == '2'))))) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2601 /* C is an ISO2022's control-sequence-introducer. */ |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2602 mask = (detect_coding_iso2022 (src, src_end) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2603 | detect_coding_sjis (src, src_end) |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2604 | detect_coding_emacs_mule (src, src_end)); |
|
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
2605 |
| 17052 | 2606 else if (c < 0xA0) |
| 2607 /* C is the first byte of SJIS character code, | |
| 2608 or a leading-code of Emacs. */ | |
| 2609 mask = (detect_coding_sjis (src, src_end) | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2610 | detect_coding_emacs_mule (src, src_end)); |
| 17052 | 2611 |
| 2612 else | |
| 2613 /* C is a character of ISO2022 in graphic plane right, | |
| 2614 or a SJIS's 1-byte character code (i.e. JISX0201), | |
| 2615 or the first byte of BIG5's 2-byte code. */ | |
| 2616 mask = (detect_coding_iso2022 (src, src_end) | |
| 2617 | detect_coding_sjis (src, src_end) | |
| 2618 | detect_coding_big5 (src, src_end)); | |
| 2619 | |
| 2620 return mask; | |
| 2621 } | |
| 2622 | |
| 2623 /* Detect how a text of length SRC_BYTES pointed by SRC is encoded. | |
| 2624 The information of the detected coding system is set in CODING. */ | |
| 2625 | |
| 2626 void | |
| 2627 detect_coding (coding, src, src_bytes) | |
| 2628 struct coding_system *coding; | |
| 2629 unsigned char *src; | |
| 2630 int src_bytes; | |
| 2631 { | |
| 2632 int mask = detect_coding_mask (src, src_bytes); | |
| 2633 int idx; | |
| 2634 | |
| 2635 if (mask == CODING_CATEGORY_MASK_ANY) | |
| 2636 /* We found nothing other than ASCII. There's nothing to do. */ | |
| 2637 return; | |
| 2638 | |
| 2639 if (!mask) | |
| 2640 /* The source text seems to be encoded in unknown coding system. | |
| 2641 Emacs regards the category of such a kind of coding system as | |
| 2642 `coding-category-binary'. We assume that a user has assigned | |
| 2643 an appropriate coding system for a `coding-category-binary'. */ | |
| 2644 idx = CODING_CATEGORY_IDX_BINARY; | |
| 2645 else | |
| 2646 { | |
| 2647 /* We found some plausible coding systems. Let's use a coding | |
| 2648 system of the highest priority. */ | |
| 2649 Lisp_Object val = Vcoding_category_list; | |
| 2650 | |
| 2651 if (CONSP (val)) | |
| 2652 while (!NILP (val)) | |
| 2653 { | |
| 2654 idx = XFASTINT (Fget (XCONS (val)->car, Qcoding_category_index)); | |
| 2655 if ((idx < CODING_CATEGORY_IDX_MAX) && (mask & (1 << idx))) | |
| 2656 break; | |
| 2657 val = XCONS (val)->cdr; | |
| 2658 } | |
| 2659 else | |
| 2660 val = Qnil; | |
| 2661 | |
| 2662 if (NILP (val)) | |
| 2663 { | |
| 2664 /* For unknown reason, `Vcoding_category_list' contains none | |
| 2665 of found categories. Let's use any of them. */ | |
| 2666 for (idx = 0; idx < CODING_CATEGORY_IDX_MAX; idx++) | |
| 2667 if (mask & (1 << idx)) | |
| 2668 break; | |
| 2669 } | |
| 2670 } | |
| 2671 setup_coding_system (XSYMBOL (coding_category_table[idx])->value, coding); | |
| 2672 } | |
| 2673 | |
| 2674 /* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC | |
| 2675 is encoded. Return one of CODING_EOL_LF, CODING_EOL_CRLF, | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2676 CODING_EOL_CR, and CODING_EOL_UNDECIDED. */ |
| 17052 | 2677 |
| 2678 int | |
| 2679 detect_eol_type (src, src_bytes) | |
| 2680 unsigned char *src; | |
| 2681 int src_bytes; | |
| 2682 { | |
| 2683 unsigned char *src_end = src + src_bytes; | |
| 2684 unsigned char c; | |
| 2685 | |
| 2686 while (src < src_end) | |
| 2687 { | |
| 2688 c = *src++; | |
| 2689 if (c == '\n') | |
| 2690 return CODING_EOL_LF; | |
| 2691 else if (c == '\r') | |
| 2692 { | |
| 2693 if (src < src_end && *src == '\n') | |
| 2694 return CODING_EOL_CRLF; | |
| 2695 else | |
| 2696 return CODING_EOL_CR; | |
| 2697 } | |
| 2698 } | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2699 return CODING_EOL_UNDECIDED; |
| 17052 | 2700 } |
| 2701 | |
| 2702 /* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC | |
| 2703 is encoded. If it detects an appropriate format of end-of-line, it | |
| 2704 sets the information in *CODING. */ | |
| 2705 | |
| 2706 void | |
| 2707 detect_eol (coding, src, src_bytes) | |
| 2708 struct coding_system *coding; | |
| 2709 unsigned char *src; | |
| 2710 int src_bytes; | |
| 2711 { | |
| 2712 Lisp_Object val; | |
| 2713 int eol_type = detect_eol_type (src, src_bytes); | |
| 2714 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2715 if (eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 2716 /* We found no end-of-line in the source text. */ |
| 2717 return; | |
| 2718 | |
| 2719 val = Fget (coding->symbol, Qeol_type); | |
| 2720 if (VECTORP (val) && XVECTOR (val)->size == 3) | |
| 2721 setup_coding_system (XVECTOR (val)->contents[eol_type], coding); | |
| 2722 } | |
| 2723 | |
| 2724 /* See "GENERAL NOTES about `decode_coding_XXX ()' functions". Before | |
| 2725 decoding, it may detect coding system and format of end-of-line if | |
| 2726 those are not yet decided. */ | |
| 2727 | |
| 2728 int | |
| 2729 decode_coding (coding, source, destination, src_bytes, dst_bytes, consumed) | |
| 2730 struct coding_system *coding; | |
| 2731 unsigned char *source, *destination; | |
| 2732 int src_bytes, dst_bytes; | |
| 2733 int *consumed; | |
| 2734 { | |
| 2735 int produced; | |
| 2736 | |
| 2737 if (src_bytes <= 0) | |
| 2738 { | |
| 2739 *consumed = 0; | |
| 2740 return 0; | |
| 2741 } | |
| 2742 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2743 if (coding->type == coding_type_undecided) |
| 17052 | 2744 detect_coding (coding, source, src_bytes); |
| 2745 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2746 if (coding->eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 2747 detect_eol (coding, source, src_bytes); |
| 2748 | |
| 2749 coding->carryover_size = 0; | |
| 2750 switch (coding->type) | |
| 2751 { | |
| 2752 case coding_type_no_conversion: | |
| 2753 label_no_conversion: | |
| 2754 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
| 2755 bcopy (source, destination, produced); | |
| 2756 *consumed = produced; | |
| 2757 break; | |
| 2758 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2759 case coding_type_emacs_mule: |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2760 case coding_type_undecided: |
| 17052 | 2761 if (coding->eol_type == CODING_EOL_LF |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2762 || coding->eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 2763 goto label_no_conversion; |
| 2764 produced = decode_eol (coding, source, destination, | |
| 2765 src_bytes, dst_bytes, consumed); | |
| 2766 break; | |
| 2767 | |
| 2768 case coding_type_sjis: | |
| 2769 produced = decode_coding_sjis_big5 (coding, source, destination, | |
| 2770 src_bytes, dst_bytes, consumed, | |
| 2771 1); | |
| 2772 break; | |
| 2773 | |
| 2774 case coding_type_iso2022: | |
| 2775 produced = decode_coding_iso2022 (coding, source, destination, | |
| 2776 src_bytes, dst_bytes, consumed); | |
| 2777 break; | |
| 2778 | |
| 2779 case coding_type_big5: | |
| 2780 produced = decode_coding_sjis_big5 (coding, source, destination, | |
| 2781 src_bytes, dst_bytes, consumed, | |
| 2782 0); | |
| 2783 break; | |
| 2784 | |
| 2785 case coding_type_ccl: | |
| 2786 produced = ccl_driver (&coding->spec.ccl.decoder, source, destination, | |
| 2787 src_bytes, dst_bytes, consumed); | |
| 2788 break; | |
| 2789 } | |
| 2790 | |
| 2791 return produced; | |
| 2792 } | |
| 2793 | |
| 2794 /* See "GENERAL NOTES about `encode_coding_XXX ()' functions". */ | |
| 2795 | |
| 2796 int | |
| 2797 encode_coding (coding, source, destination, src_bytes, dst_bytes, consumed) | |
| 2798 struct coding_system *coding; | |
| 2799 unsigned char *source, *destination; | |
| 2800 int src_bytes, dst_bytes; | |
| 2801 int *consumed; | |
| 2802 { | |
| 2803 int produced; | |
| 2804 | |
| 2805 coding->carryover_size = 0; | |
| 2806 switch (coding->type) | |
| 2807 { | |
| 2808 case coding_type_no_conversion: | |
| 2809 label_no_conversion: | |
| 2810 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
| 2811 if (produced > 0) | |
| 2812 { | |
| 2813 bcopy (source, destination, produced); | |
| 2814 if (coding->selective) | |
| 2815 { | |
| 2816 unsigned char *p = destination, *pend = destination + produced; | |
| 2817 while (p < pend) | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2818 if (*p++ == '\015') p[-1] = '\n'; |
| 17052 | 2819 } |
| 2820 } | |
| 2821 *consumed = produced; | |
| 2822 break; | |
| 2823 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2824 case coding_type_emacs_mule: |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2825 case coding_type_undecided: |
| 17052 | 2826 if (coding->eol_type == CODING_EOL_LF |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2827 || coding->eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 2828 goto label_no_conversion; |
| 2829 produced = encode_eol (coding, source, destination, | |
| 2830 src_bytes, dst_bytes, consumed); | |
| 2831 break; | |
| 2832 | |
| 2833 case coding_type_sjis: | |
| 2834 produced = encode_coding_sjis_big5 (coding, source, destination, | |
| 2835 src_bytes, dst_bytes, consumed, | |
| 2836 1); | |
| 2837 break; | |
| 2838 | |
| 2839 case coding_type_iso2022: | |
| 2840 produced = encode_coding_iso2022 (coding, source, destination, | |
| 2841 src_bytes, dst_bytes, consumed); | |
| 2842 break; | |
| 2843 | |
| 2844 case coding_type_big5: | |
| 2845 produced = encode_coding_sjis_big5 (coding, source, destination, | |
| 2846 src_bytes, dst_bytes, consumed, | |
| 2847 0); | |
| 2848 break; | |
| 2849 | |
| 2850 case coding_type_ccl: | |
| 2851 produced = ccl_driver (&coding->spec.ccl.encoder, source, destination, | |
| 2852 src_bytes, dst_bytes, consumed); | |
| 2853 break; | |
| 2854 } | |
| 2855 | |
| 2856 return produced; | |
| 2857 } | |
| 2858 | |
| 2859 #define CONVERSION_BUFFER_EXTRA_ROOM 256 | |
| 2860 | |
| 2861 /* Return maximum size (bytes) of a buffer enough for decoding | |
| 2862 SRC_BYTES of text encoded in CODING. */ | |
| 2863 | |
| 2864 int | |
| 2865 decoding_buffer_size (coding, src_bytes) | |
| 2866 struct coding_system *coding; | |
| 2867 int src_bytes; | |
| 2868 { | |
| 2869 int magnification; | |
| 2870 | |
| 2871 if (coding->type == coding_type_iso2022) | |
| 2872 magnification = 3; | |
| 2873 else if (coding->type == coding_type_ccl) | |
| 2874 magnification = coding->spec.ccl.decoder.buf_magnification; | |
| 2875 else | |
| 2876 magnification = 2; | |
| 2877 | |
| 2878 return (src_bytes * magnification + CONVERSION_BUFFER_EXTRA_ROOM); | |
| 2879 } | |
| 2880 | |
| 2881 /* Return maximum size (bytes) of a buffer enough for encoding | |
| 2882 SRC_BYTES of text to CODING. */ | |
| 2883 | |
| 2884 int | |
| 2885 encoding_buffer_size (coding, src_bytes) | |
| 2886 struct coding_system *coding; | |
| 2887 int src_bytes; | |
| 2888 { | |
| 2889 int magnification; | |
| 2890 | |
| 2891 if (coding->type == coding_type_ccl) | |
| 2892 magnification = coding->spec.ccl.encoder.buf_magnification; | |
| 2893 else | |
| 2894 magnification = 3; | |
| 2895 | |
| 2896 return (src_bytes * magnification + CONVERSION_BUFFER_EXTRA_ROOM); | |
| 2897 } | |
| 2898 | |
| 2899 #ifndef MINIMUM_CONVERSION_BUFFER_SIZE | |
| 2900 #define MINIMUM_CONVERSION_BUFFER_SIZE 1024 | |
| 2901 #endif | |
| 2902 | |
| 2903 char *conversion_buffer; | |
| 2904 int conversion_buffer_size; | |
| 2905 | |
| 2906 /* Return a pointer to a SIZE bytes of buffer to be used for encoding | |
| 2907 or decoding. Sufficient memory is allocated automatically. If we | |
| 2908 run out of memory, return NULL. */ | |
| 2909 | |
| 2910 char * | |
| 2911 get_conversion_buffer (size) | |
| 2912 int size; | |
| 2913 { | |
| 2914 if (size > conversion_buffer_size) | |
| 2915 { | |
| 2916 char *buf; | |
| 2917 int real_size = conversion_buffer_size * 2; | |
| 2918 | |
| 2919 while (real_size < size) real_size *= 2; | |
| 2920 buf = (char *) xmalloc (real_size); | |
| 2921 xfree (conversion_buffer); | |
| 2922 conversion_buffer = buf; | |
| 2923 conversion_buffer_size = real_size; | |
| 2924 } | |
| 2925 return conversion_buffer; | |
| 2926 } | |
| 2927 | |
| 2928 | |
| 2929 #ifdef emacs | |
| 2930 /*** 7. Emacs Lisp library functions ***/ | |
| 2931 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
2932 DEFUN ("coding-system-spec", Fcoding_system_spec, Scoding_system_spec, |
| 17052 | 2933 1, 1, 0, |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
2934 "Return coding-spec of CODING-SYSTEM.\n\ |
| 17052 | 2935 If CODING-SYSTEM is not a valid coding-system, return nil.") |
| 2936 (obj) | |
| 2937 Lisp_Object obj; | |
| 2938 { | |
| 2939 while (SYMBOLP (obj) && !NILP (obj)) | |
| 2940 obj = Fget (obj, Qcoding_system); | |
| 2941 return ((NILP (obj) || !VECTORP (obj) || XVECTOR (obj)->size != 5) | |
| 2942 ? Qnil : obj); | |
| 2943 } | |
| 2944 | |
| 2945 DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, | |
| 2946 "Return t if OBJECT is nil or a coding-system.\n\ | |
| 2947 See document of make-coding-system for coding-system object.") | |
| 2948 (obj) | |
| 2949 Lisp_Object obj; | |
| 2950 { | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
2951 return ((NILP (obj) || !NILP (Fcoding_system_spec (obj))) ? Qt : Qnil); |
| 17052 | 2952 } |
| 2953 | |
|
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2954 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
|
2955 Sread_non_nil_coding_system, 1, 1, 0, |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2956 "Read a coding system from the minibuffer, prompting with string PROMPT.") |
| 17052 | 2957 (prompt) |
| 2958 Lisp_Object prompt; | |
| 2959 { | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2960 Lisp_Object val; |
|
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2961 do |
|
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2962 { |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
2963 val = Fcompleting_read (prompt, Vobarray, Qcoding_system_spec, |
|
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2964 Qt, Qnil, Qnil, Qnil); |
|
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2965 } |
|
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2966 while (XSTRING (val)->size == 0); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2967 return (Fintern (val, Qnil)); |
| 17052 | 2968 } |
| 2969 | |
| 2970 DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 1, 0, | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2971 "Read a coding system or nil from the minibuffer, prompting with string PROMPT.") |
| 17052 | 2972 (prompt) |
| 2973 Lisp_Object prompt; | |
| 2974 { | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2975 Lisp_Object val = Fcompleting_read (prompt, Vobarray, Qcoding_system_p, |
|
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
2976 Qt, Qnil, Qnil, Qnil); |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2977 return (XSTRING (val)->size == 0 ? Qnil : Fintern (val, Qnil)); |
| 17052 | 2978 } |
| 2979 | |
| 2980 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
| 2981 1, 1, 0, | |
| 2982 "Check validity of CODING-SYSTEM.\n\ | |
| 2983 If valid, return CODING-SYSTEM, else `coding-system-error' is signaled.\n\ | |
| 2984 CODING-SYSTEM is valid if it is a symbol and has \"coding-system\" property.\n\ | |
| 2985 The value of property should be a vector of length 5.") | |
| 2986 (coding_system) | |
| 2987 Lisp_Object coding_system; | |
| 2988 { | |
| 2989 CHECK_SYMBOL (coding_system, 0); | |
| 2990 if (!NILP (Fcoding_system_p (coding_system))) | |
| 2991 return coding_system; | |
| 2992 while (1) | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
2993 Fsignal (Qcoding_system_error, Fcons (coding_system, Qnil)); |
| 17052 | 2994 } |
| 2995 | |
| 2996 DEFUN ("detect-coding-region", Fdetect_coding_region, Sdetect_coding_region, | |
| 2997 2, 2, 0, | |
| 2998 "Detect coding-system of the text in the region between START and END.\n\ | |
| 2999 Return a list of possible coding-systems ordered by priority.\n\ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3000 If only ASCII characters are found, it returns `undecided'\n\ |
| 17052 | 3001 or its subsidiary coding-system according to a detected end-of-line format.") |
| 3002 (b, e) | |
| 3003 Lisp_Object b, e; | |
| 3004 { | |
| 3005 int coding_mask, eol_type; | |
| 3006 Lisp_Object val; | |
| 3007 int beg, end; | |
| 3008 | |
| 3009 validate_region (&b, &e); | |
| 3010 beg = XINT (b), end = XINT (e); | |
| 3011 if (beg < GPT && end >= GPT) move_gap (end); | |
| 3012 | |
| 3013 coding_mask = detect_coding_mask (POS_ADDR (beg), end - beg); | |
| 3014 eol_type = detect_eol_type (POS_ADDR (beg), end - beg); | |
| 3015 | |
| 3016 if (coding_mask == CODING_CATEGORY_MASK_ANY) | |
| 3017 { | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3018 val = intern ("undecided"); |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3019 if (eol_type != CODING_EOL_UNDECIDED) |
| 17052 | 3020 { |
| 3021 Lisp_Object val2 = Fget (val, Qeol_type); | |
| 3022 if (VECTORP (val2)) | |
| 3023 val = XVECTOR (val2)->contents[eol_type]; | |
| 3024 } | |
| 3025 } | |
| 3026 else | |
| 3027 { | |
| 3028 Lisp_Object val2; | |
| 3029 | |
| 3030 /* At first, gather possible coding-systems in VAL in a reverse | |
| 3031 order. */ | |
| 3032 val = Qnil; | |
| 3033 for (val2 = Vcoding_category_list; | |
| 3034 !NILP (val2); | |
| 3035 val2 = XCONS (val2)->cdr) | |
| 3036 { | |
| 3037 int idx | |
| 3038 = XFASTINT (Fget (XCONS (val2)->car, Qcoding_category_index)); | |
| 3039 if (coding_mask & (1 << idx)) | |
| 3040 val = Fcons (Fsymbol_value (XCONS (val2)->car), val); | |
| 3041 } | |
| 3042 | |
| 3043 /* Then, change the order of the list, while getting subsidiary | |
| 3044 coding-systems. */ | |
| 3045 val2 = val; | |
| 3046 val = Qnil; | |
| 3047 for (; !NILP (val2); val2 = XCONS (val2)->cdr) | |
| 3048 { | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3049 if (eol_type == CODING_EOL_UNDECIDED) |
| 17052 | 3050 val = Fcons (XCONS (val2)->car, val); |
| 3051 else | |
| 3052 { | |
| 3053 Lisp_Object val3 = Fget (XCONS (val2)->car, Qeol_type); | |
| 3054 if (VECTORP (val3)) | |
| 3055 val = Fcons (XVECTOR (val3)->contents[eol_type], val); | |
| 3056 else | |
| 3057 val = Fcons (XCONS (val2)->car, val); | |
| 3058 } | |
| 3059 } | |
| 3060 } | |
| 3061 | |
| 3062 return val; | |
| 3063 } | |
| 3064 | |
| 3065 /* Scan text in the region between *BEGP and *ENDP, skip characters | |
| 3066 which we never have to encode to (iff ENCODEP is 1) or decode from | |
| 3067 coding system CODING at the head and tail, then set BEGP and ENDP | |
| 3068 to the addresses of start and end of the text we actually convert. */ | |
| 3069 | |
| 3070 void | |
| 3071 shrink_conversion_area (begp, endp, coding, encodep) | |
| 3072 unsigned char **begp, **endp; | |
| 3073 struct coding_system *coding; | |
| 3074 int encodep; | |
| 3075 { | |
| 3076 register unsigned char *beg_addr = *begp, *end_addr = *endp; | |
| 3077 | |
| 3078 if (coding->eol_type != CODING_EOL_LF | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3079 && coding->eol_type != CODING_EOL_UNDECIDED) |
| 17052 | 3080 /* Since we anyway have to convert end-of-line format, it is not |
| 3081 worth skipping at most 100 bytes or so. */ | |
| 3082 return; | |
| 3083 | |
| 3084 if (encodep) /* for encoding */ | |
| 3085 { | |
| 3086 switch (coding->type) | |
| 3087 { | |
| 3088 case coding_type_no_conversion: | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3089 case coding_type_emacs_mule: |
|
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3090 case coding_type_undecided: |
| 17052 | 3091 /* We need no conversion. */ |
| 3092 *begp = *endp; | |
| 3093 return; | |
| 3094 case coding_type_ccl: | |
| 3095 /* We can't skip any data. */ | |
| 3096 return; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3097 case coding_type_iso2022: |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3098 if (coding->flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3099 { |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3100 unsigned char *bol = beg_addr; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3101 while (beg_addr < end_addr && *beg_addr < 0x80) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3102 { |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3103 beg_addr++; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3104 if (*(beg_addr - 1) == '\n') |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3105 bol = beg_addr; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3106 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3107 beg_addr = bol; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3108 goto label_skip_tail; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3109 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3110 /* fall down ... */ |
| 17052 | 3111 default: |
| 3112 /* We can skip all ASCII characters at the head and tail. */ | |
| 3113 while (beg_addr < end_addr && *beg_addr < 0x80) beg_addr++; | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3114 label_skip_tail: |
| 17052 | 3115 while (beg_addr < end_addr && *(end_addr - 1) < 0x80) end_addr--; |
| 3116 break; | |
| 3117 } | |
| 3118 } | |
| 3119 else /* for decoding */ | |
| 3120 { | |
| 3121 switch (coding->type) | |
| 3122 { | |
| 3123 case coding_type_no_conversion: | |
| 3124 /* We need no conversion. */ | |
| 3125 *begp = *endp; | |
| 3126 return; | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3127 case coding_type_emacs_mule: |
| 17052 | 3128 if (coding->eol_type == CODING_EOL_LF) |
| 3129 { | |
| 3130 /* We need no conversion. */ | |
| 3131 *begp = *endp; | |
| 3132 return; | |
| 3133 } | |
| 3134 /* We can skip all but carriage-return. */ | |
| 3135 while (beg_addr < end_addr && *beg_addr != '\r') beg_addr++; | |
| 3136 while (beg_addr < end_addr && *(end_addr - 1) != '\r') end_addr--; | |
| 3137 break; | |
| 3138 case coding_type_sjis: | |
| 3139 case coding_type_big5: | |
| 3140 /* We can skip all ASCII characters at the head. */ | |
| 3141 while (beg_addr < end_addr && *beg_addr < 0x80) beg_addr++; | |
| 3142 /* We can skip all ASCII characters at the tail except for | |
| 3143 the second byte of SJIS or BIG5 code. */ | |
| 3144 while (beg_addr < end_addr && *(end_addr - 1) < 0x80) end_addr--; | |
| 3145 if (end_addr != *endp) | |
| 3146 end_addr++; | |
| 3147 break; | |
| 3148 case coding_type_ccl: | |
| 3149 /* We can't skip any data. */ | |
| 3150 return; | |
| 3151 default: /* i.e. case coding_type_iso2022: */ | |
| 3152 { | |
| 3153 unsigned char c; | |
| 3154 | |
| 3155 /* We can skip all ASCII characters except for a few | |
| 3156 control codes at the head. */ | |
| 3157 while (beg_addr < end_addr && (c = *beg_addr) < 0x80 | |
| 3158 && c != ISO_CODE_CR && c != ISO_CODE_SO | |
| 3159 && c != ISO_CODE_SI && c != ISO_CODE_ESC) | |
| 3160 beg_addr++; | |
| 3161 } | |
| 3162 break; | |
| 3163 } | |
| 3164 } | |
| 3165 *begp = beg_addr; | |
| 3166 *endp = end_addr; | |
| 3167 return; | |
| 3168 } | |
| 3169 | |
| 3170 /* Encode to (iff ENCODEP is 1) or decode form coding system CODING a | |
| 3171 text between B and E. B and E are buffer position. */ | |
| 3172 | |
| 3173 Lisp_Object | |
| 3174 code_convert_region (b, e, coding, encodep) | |
| 3175 Lisp_Object b, e; | |
| 3176 struct coding_system *coding; | |
| 3177 int encodep; | |
| 3178 { | |
| 3179 int beg, end, len, consumed, produced; | |
| 3180 char *buf; | |
| 3181 unsigned char *begp, *endp; | |
| 3182 int pos = PT; | |
| 3183 | |
| 3184 validate_region (&b, &e); | |
| 3185 beg = XINT (b), end = XINT (e); | |
| 3186 if (beg < GPT && end >= GPT) | |
| 3187 move_gap (end); | |
| 3188 | |
| 3189 if (encodep && !NILP (coding->pre_write_conversion)) | |
| 3190 { | |
| 3191 /* We must call a pre-conversion function which may put a new | |
| 3192 text to be converted in a new buffer. */ | |
| 3193 struct buffer *old = current_buffer, *new; | |
| 3194 | |
| 3195 TEMP_SET_PT (beg); | |
| 3196 call2 (coding->pre_write_conversion, b, e); | |
| 3197 if (old != current_buffer) | |
| 3198 { | |
| 3199 /* Replace the original text by the text just generated. */ | |
| 3200 len = ZV - BEGV; | |
| 3201 new = current_buffer; | |
| 3202 set_buffer_internal (old); | |
| 3203 del_range (beg, end); | |
| 3204 insert_from_buffer (new, 1, len, 0); | |
| 3205 end = beg + len; | |
| 3206 } | |
| 3207 } | |
| 3208 | |
| 3209 /* We may be able to shrink the conversion region. */ | |
| 3210 begp = POS_ADDR (beg); endp = begp + (end - beg); | |
| 3211 shrink_conversion_area (&begp, &endp, coding, encodep); | |
| 3212 | |
| 3213 if (begp == endp) | |
| 3214 /* We need no conversion. */ | |
| 3215 len = end - beg; | |
| 3216 else | |
| 3217 { | |
| 3218 beg += begp - POS_ADDR (beg); | |
| 3219 end = beg + (endp - begp); | |
| 3220 | |
| 3221 if (encodep) | |
| 3222 len = encoding_buffer_size (coding, end - beg); | |
| 3223 else | |
| 3224 len = decoding_buffer_size (coding, end - beg); | |
| 3225 buf = get_conversion_buffer (len); | |
| 3226 | |
| 3227 coding->last_block = 1; | |
| 3228 produced = (encodep | |
| 3229 ? encode_coding (coding, POS_ADDR (beg), buf, end - beg, len, | |
| 3230 &consumed) | |
| 3231 : decode_coding (coding, POS_ADDR (beg), buf, end - beg, len, | |
| 3232 &consumed)); | |
| 3233 | |
| 3234 len = produced + (beg - XINT (b)) + (XINT (e) - end); | |
| 3235 | |
| 3236 TEMP_SET_PT (beg); | |
| 3237 insert (buf, produced); | |
| 3238 del_range (PT, PT + end - beg); | |
| 3239 if (pos >= end) | |
| 3240 pos = PT + (pos - end); | |
| 3241 else if (pos > beg) | |
| 3242 pos = beg; | |
| 3243 TEMP_SET_PT (pos); | |
| 3244 } | |
| 3245 | |
| 3246 if (!encodep && !NILP (coding->post_read_conversion)) | |
| 3247 { | |
| 3248 /* We must call a post-conversion function which may alter | |
| 3249 the text just converted. */ | |
| 3250 Lisp_Object insval; | |
| 3251 | |
| 3252 beg = XINT (b); | |
| 3253 TEMP_SET_PT (beg); | |
| 3254 insval = call1 (coding->post_read_conversion, make_number (len)); | |
| 3255 CHECK_NUMBER (insval, 0); | |
| 3256 len = XINT (insval); | |
| 3257 } | |
| 3258 | |
| 3259 return make_number (len); | |
| 3260 } | |
| 3261 | |
| 3262 Lisp_Object | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3263 code_convert_string (str, coding, encodep, nocopy) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3264 Lisp_Object str, nocopy; |
| 17052 | 3265 struct coding_system *coding; |
| 3266 int encodep; | |
| 3267 { | |
| 3268 int len, consumed, produced; | |
| 3269 char *buf; | |
| 3270 unsigned char *begp, *endp; | |
| 3271 int head_skip, tail_skip; | |
| 3272 struct gcpro gcpro1; | |
| 3273 | |
| 3274 if (encodep && !NILP (coding->pre_write_conversion) | |
| 3275 || !encodep && !NILP (coding->post_read_conversion)) | |
| 3276 { | |
| 3277 /* Since we have to call Lisp functions which assume target text | |
| 3278 is in a buffer, after setting a temporary buffer, call | |
| 3279 code_convert_region. */ | |
| 3280 int count = specpdl_ptr - specpdl; | |
| 3281 int len = XSTRING (str)->size; | |
| 3282 Lisp_Object result; | |
| 3283 struct buffer *old = current_buffer; | |
| 3284 | |
| 3285 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 3286 temp_output_buffer_setup (" *code-converting-work*"); | |
| 3287 set_buffer_internal (XBUFFER (Vstandard_output)); | |
| 3288 insert_from_string (str, 0, len, 0); | |
| 3289 code_convert_region (make_number (BEGV), make_number (ZV), | |
| 3290 coding, encodep); | |
| 3291 result = make_buffer_string (BEGV, ZV, 0); | |
| 3292 set_buffer_internal (old); | |
| 3293 return unbind_to (count, result); | |
| 3294 } | |
| 3295 | |
| 3296 /* We may be able to shrink the conversion region. */ | |
| 3297 begp = XSTRING (str)->data; | |
| 3298 endp = begp + XSTRING (str)->size; | |
| 3299 shrink_conversion_area (&begp, &endp, coding, encodep); | |
| 3300 | |
| 3301 if (begp == endp) | |
| 3302 /* We need no conversion. */ | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3303 return (NILP (nocopy) ? Fcopy_sequence (str) : str); |
| 17052 | 3304 |
| 3305 head_skip = begp - XSTRING (str)->data; | |
| 3306 tail_skip = XSTRING (str)->size - head_skip - (endp - begp); | |
| 3307 | |
| 3308 GCPRO1 (str); | |
| 3309 | |
| 3310 if (encodep) | |
| 3311 len = encoding_buffer_size (coding, endp - begp); | |
| 3312 else | |
| 3313 len = decoding_buffer_size (coding, endp - begp); | |
| 3314 buf = get_conversion_buffer (len + head_skip + tail_skip); | |
| 3315 | |
| 3316 bcopy (XSTRING (str)->data, buf, head_skip); | |
| 3317 coding->last_block = 1; | |
| 3318 produced = (encodep | |
| 3319 ? encode_coding (coding, XSTRING (str)->data + head_skip, | |
| 3320 buf + head_skip, endp - begp, len, &consumed) | |
| 3321 : decode_coding (coding, XSTRING (str)->data + head_skip, | |
| 3322 buf + head_skip, endp - begp, len, &consumed)); | |
| 3323 bcopy (XSTRING (str)->data + head_skip + (endp - begp), | |
| 3324 buf + head_skip + produced, | |
| 3325 tail_skip); | |
| 3326 | |
| 3327 UNGCPRO; | |
| 3328 | |
| 3329 return make_string (buf, head_skip + produced + tail_skip); | |
| 3330 } | |
| 3331 | |
| 3332 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3333 3, 3, "r\nzCoding system: ", |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3334 "Decode current region by specified coding system.\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3335 When called from a program, takes three arguments:\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3336 START, END, and CODING-SYSTEM. START END are buffer positions.\n\ |
| 17052 | 3337 Return length of decoded text.") |
| 3338 (b, e, coding_system) | |
| 3339 Lisp_Object b, e, coding_system; | |
| 3340 { | |
| 3341 struct coding_system coding; | |
| 3342 | |
| 3343 CHECK_NUMBER_COERCE_MARKER (b, 0); | |
| 3344 CHECK_NUMBER_COERCE_MARKER (e, 1); | |
| 3345 CHECK_SYMBOL (coding_system, 2); | |
| 3346 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3347 if (NILP (coding_system)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3348 return make_number (XFASTINT (e) - XFASTINT (b)); |
| 17052 | 3349 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
| 3350 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
| 3351 | |
| 3352 return code_convert_region (b, e, &coding, 0); | |
| 3353 } | |
| 3354 | |
| 3355 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3356 3, 3, "r\nzCoding system: ", |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3357 "Encode current region by specified coding system.\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3358 When called from a program, takes three arguments:\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3359 START, END, and CODING-SYSTEM. START END are buffer positions.\n\ |
| 17052 | 3360 Return length of encoded text.") |
| 3361 (b, e, coding_system) | |
| 3362 Lisp_Object b, e, coding_system; | |
| 3363 { | |
| 3364 struct coding_system coding; | |
| 3365 | |
| 3366 CHECK_NUMBER_COERCE_MARKER (b, 0); | |
| 3367 CHECK_NUMBER_COERCE_MARKER (e, 1); | |
| 3368 CHECK_SYMBOL (coding_system, 2); | |
| 3369 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3370 if (NILP (coding_system)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3371 return make_number (XFASTINT (e) - XFASTINT (b)); |
| 17052 | 3372 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
| 3373 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
| 3374 | |
| 3375 return code_convert_region (b, e, &coding, 1); | |
| 3376 } | |
| 3377 | |
| 3378 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3379 2, 3, 0, |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3380 "Decode STRING which is encoded in CODING-SYSTEM, and return the result.\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3381 Optional arg NOCOPY non-nil means return STRING itself if there's no need\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3382 of decoding.") |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3383 (string, coding_system, nocopy) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3384 Lisp_Object string, coding_system, nocopy; |
| 17052 | 3385 { |
| 3386 struct coding_system coding; | |
| 3387 | |
| 3388 CHECK_STRING (string, 0); | |
| 3389 CHECK_SYMBOL (coding_system, 1); | |
| 3390 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3391 if (NILP (coding_system)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3392 return (NILP (nocopy) ? Fcopy_sequence (string) : string); |
| 17052 | 3393 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
| 3394 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
| 3395 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3396 return code_convert_string (string, &coding, 0, nocopy); |
| 17052 | 3397 } |
| 3398 | |
| 3399 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3400 2, 3, 0, |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3401 "Encode STRING to CODING-SYSTEM, and return the result.\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3402 Optional arg NOCOPY non-nil means return STRING itself if there's no need\n\ |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3403 of encoding.") |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3404 (string, coding_system, nocopy) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3405 Lisp_Object string, coding_system, nocopy; |
| 17052 | 3406 { |
| 3407 struct coding_system coding; | |
| 3408 | |
| 3409 CHECK_STRING (string, 0); | |
| 3410 CHECK_SYMBOL (coding_system, 1); | |
| 3411 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3412 if (NILP (coding_system)) |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3413 return (NILP (nocopy) ? Fcopy_sequence (string) : string); |
| 17052 | 3414 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
| 3415 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
| 3416 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3417 return code_convert_string (string, &coding, 1, nocopy); |
| 17052 | 3418 } |
| 3419 | |
| 3420 DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0, | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3421 "Decode a JISX0208 character of shift-jis encoding.\n\ |
| 17052 | 3422 CODE is the character code in SJIS.\n\ |
| 3423 Return the corresponding character.") | |
| 3424 (code) | |
| 3425 Lisp_Object code; | |
| 3426 { | |
| 3427 unsigned char c1, c2, s1, s2; | |
| 3428 Lisp_Object val; | |
| 3429 | |
| 3430 CHECK_NUMBER (code, 0); | |
| 3431 s1 = (XFASTINT (code)) >> 8, s2 = (XFASTINT (code)) & 0xFF; | |
| 3432 DECODE_SJIS (s1, s2, c1, c2); | |
| 3433 XSETFASTINT (val, MAKE_NON_ASCII_CHAR (charset_jisx0208, c1, c2)); | |
| 3434 return val; | |
| 3435 } | |
| 3436 | |
| 3437 DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0, | |
| 3438 "Encode a JISX0208 character CHAR to SJIS coding-system.\n\ | |
| 3439 Return the corresponding character code in SJIS.") | |
| 3440 (ch) | |
| 3441 Lisp_Object ch; | |
| 3442 { | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3443 int charset, c1, c2, s1, s2; |
| 17052 | 3444 Lisp_Object val; |
| 3445 | |
| 3446 CHECK_NUMBER (ch, 0); | |
| 3447 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2); | |
| 3448 if (charset == charset_jisx0208) | |
| 3449 { | |
| 3450 ENCODE_SJIS (c1, c2, s1, s2); | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3451 XSETFASTINT (val, (s1 << 8) | s2); |
| 17052 | 3452 } |
| 3453 else | |
| 3454 XSETFASTINT (val, 0); | |
| 3455 return val; | |
| 3456 } | |
| 3457 | |
| 3458 DEFUN ("decode-big5-char", Fdecode_big5_char, Sdecode_big5_char, 1, 1, 0, | |
| 3459 "Decode a Big5 character CODE of BIG5 coding-system.\n\ | |
| 3460 CODE is the character code in BIG5.\n\ | |
| 3461 Return the corresponding character.") | |
| 3462 (code) | |
| 3463 Lisp_Object code; | |
| 3464 { | |
| 3465 int charset; | |
| 3466 unsigned char b1, b2, c1, c2; | |
| 3467 Lisp_Object val; | |
| 3468 | |
| 3469 CHECK_NUMBER (code, 0); | |
| 3470 b1 = (XFASTINT (code)) >> 8, b2 = (XFASTINT (code)) & 0xFF; | |
| 3471 DECODE_BIG5 (b1, b2, charset, c1, c2); | |
| 3472 XSETFASTINT (val, MAKE_NON_ASCII_CHAR (charset, c1, c2)); | |
| 3473 return val; | |
| 3474 } | |
| 3475 | |
| 3476 DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0, | |
| 3477 "Encode the Big5 character CHAR to BIG5 coding-system.\n\ | |
| 3478 Return the corresponding character code in Big5.") | |
| 3479 (ch) | |
| 3480 Lisp_Object ch; | |
| 3481 { | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3482 int charset, c1, c2, b1, b2; |
| 17052 | 3483 Lisp_Object val; |
| 3484 | |
| 3485 CHECK_NUMBER (ch, 0); | |
| 3486 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2); | |
| 3487 if (charset == charset_big5_1 || charset == charset_big5_2) | |
| 3488 { | |
| 3489 ENCODE_BIG5 (charset, c1, c2, b1, b2); | |
|
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3490 XSETFASTINT (val, (b1 << 8) | b2); |
| 17052 | 3491 } |
| 3492 else | |
| 3493 XSETFASTINT (val, 0); | |
| 3494 return val; | |
| 3495 } | |
| 3496 | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3497 DEFUN ("set-terminal-coding-system-internal", |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3498 Fset_terminal_coding_system_internal, |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3499 Sset_terminal_coding_system_internal, 1, 1, 0, "") |
| 17052 | 3500 (coding_system) |
| 3501 Lisp_Object coding_system; | |
| 3502 { | |
| 3503 CHECK_SYMBOL (coding_system, 0); | |
| 3504 setup_coding_system (Fcheck_coding_system (coding_system), &terminal_coding); | |
| 3505 return Qnil; | |
| 3506 } | |
| 3507 | |
| 3508 DEFUN ("terminal-coding-system", | |
| 3509 Fterminal_coding_system, Sterminal_coding_system, 0, 0, 0, | |
| 3510 "Return coding-system of your terminal.") | |
| 3511 () | |
| 3512 { | |
| 3513 return terminal_coding.symbol; | |
| 3514 } | |
| 3515 | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3516 DEFUN ("set-keyboard-coding-system-internal", |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3517 Fset_keyboard_coding_system_internal, |
|
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3518 Sset_keyboard_coding_system_internal, 1, 1, 0, "") |
| 17052 | 3519 (coding_system) |
| 3520 Lisp_Object coding_system; | |
| 3521 { | |
| 3522 CHECK_SYMBOL (coding_system, 0); | |
| 3523 setup_coding_system (Fcheck_coding_system (coding_system), &keyboard_coding); | |
| 3524 return Qnil; | |
| 3525 } | |
| 3526 | |
| 3527 DEFUN ("keyboard-coding-system", | |
| 3528 Fkeyboard_coding_system, Skeyboard_coding_system, 0, 0, 0, | |
| 3529 "Return coding-system of what is sent from terminal keyboard.") | |
| 3530 () | |
| 3531 { | |
| 3532 return keyboard_coding.symbol; | |
| 3533 } | |
| 3534 | |
| 3535 | |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3536 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
|
3537 Sfind_operation_coding_system, 1, MANY, 0, |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3538 "Choose a coding system for an operation based on the target name.\n\ |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3539 The value names a pair of coding systems: (DECODING-SYSTEM ENCODING-SYSTEM).\n\ |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3540 DECODING-SYSTEM is the coding system to use for decoding\n\ |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3541 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system\n\ |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3542 for encoding (in case OPERATION does encoding).\n\ |
|
17304
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3543 \n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3544 The first argument OPERATION specifies an I/O primitive:\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3545 For file I/O, `insert-file-contents' or `write-region'.\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3546 For process I/O, `call-process', `call-process-region', or `start-process'.\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3547 For network I/O, `open-network-stream'.\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3548 \n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3549 The remaining arguments should be the same arguments that were passed\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3550 to the primitive. Depending on which primitive, one of those arguments\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3551 is selected as the TARGET. For example, if OPERATION does file I/O,\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3552 whichever argument specifies the file name is TARGET.\n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3553 \n\ |
|
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3554 TARGET has a meaning which depends on OPERATION:\n\ |
| 17052 | 3555 For file I/O, TARGET is a file name.\n\ |
| 3556 For process I/O, TARGET is a process name.\n\ | |
| 3557 For network I/O, TARGET is a service name or a port number\n\ | |
| 3558 \n\ | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3559 This function looks up what specified for TARGET in,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3560 `file-coding-system-alist', `process-coding-system-alist',\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3561 or `network-coding-system-alist' depending on OPERATION.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3562 They may specify a coding system, a cons of coding systems,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3563 or a function symbol to call.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3564 In the last case, we call the function with one argument,\n\ |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3565 which is a list of all the arguments given to this function.") |
| 17052 | 3566 (nargs, args) |
| 3567 int nargs; | |
| 3568 Lisp_Object *args; | |
| 3569 { | |
| 3570 Lisp_Object operation, target_idx, target, val; | |
| 3571 register Lisp_Object chain; | |
| 3572 | |
| 3573 if (nargs < 2) | |
| 3574 error ("Too few arguments"); | |
| 3575 operation = args[0]; | |
| 3576 if (!SYMBOLP (operation) | |
| 3577 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx))) | |
| 3578 error ("Invalid first arguement"); | |
| 3579 if (nargs < 1 + XINT (target_idx)) | |
| 3580 error ("Too few arguments for operation: %s", | |
| 3581 XSYMBOL (operation)->name->data); | |
| 3582 target = args[XINT (target_idx) + 1]; | |
| 3583 if (!(STRINGP (target) | |
| 3584 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) | |
| 3585 error ("Invalid %dth argument", XINT (target_idx) + 1); | |
| 3586 | |
|
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
3587 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
|
3588 || EQ (operation, Qwrite_region)) |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3589 ? 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
|
3590 : (EQ (operation, Qopen_network_stream) |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3591 ? Vnetwork_coding_system_alist |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3592 : Vprocess_coding_system_alist)); |
| 17052 | 3593 if (NILP (chain)) |
| 3594 return Qnil; | |
| 3595 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3596 for (; CONSP (chain); chain = XCONS (chain)->cdr) |
| 17052 | 3597 { |
| 3598 Lisp_Object elt = XCONS (chain)->car; | |
| 3599 | |
| 3600 if (CONSP (elt) | |
| 3601 && ((STRINGP (target) | |
| 3602 && STRINGP (XCONS (elt)->car) | |
| 3603 && fast_string_match (XCONS (elt)->car, target) >= 0) | |
| 3604 || (INTEGERP (target) && EQ (target, XCONS (elt)->car)))) | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3605 { |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3606 val = XCONS (elt)->cdr; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3607 if (CONSP (val)) |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3608 return val; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3609 if (! SYMBOLP (val)) |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3610 return Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3611 if (! NILP (Fcoding_system_p (val))) |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3612 return Fcons (val, val); |
|
18860
f55d91d45bde
(Ffind_operation_coding_system): Use Ffboundp to
Richard M. Stallman <rms@gnu.org>
parents:
18787
diff
changeset
|
3613 if (!NILP (Ffboundp (val))) |
|
18747
17039a6e64cf
(Ffind_coding_system): Use call1, not call2.
Richard M. Stallman <rms@gnu.org>
parents:
18650
diff
changeset
|
3614 return call1 (val, Flist (nargs, args)); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3615 return Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3616 } |
| 17052 | 3617 } |
| 3618 return Qnil; | |
| 3619 } | |
| 3620 | |
| 3621 #endif /* emacs */ | |
| 3622 | |
| 3623 | |
| 3624 /*** 8. Post-amble ***/ | |
| 3625 | |
| 3626 init_coding_once () | |
| 3627 { | |
| 3628 int i; | |
| 3629 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3630 /* Emacs' internal format specific initialize routine. */ |
| 17052 | 3631 for (i = 0; i <= 0x20; i++) |
| 3632 emacs_code_class[i] = EMACS_control_code; | |
| 3633 emacs_code_class[0x0A] = EMACS_linefeed_code; | |
| 3634 emacs_code_class[0x0D] = EMACS_carriage_return_code; | |
| 3635 for (i = 0x21 ; i < 0x7F; i++) | |
| 3636 emacs_code_class[i] = EMACS_ascii_code; | |
| 3637 emacs_code_class[0x7F] = EMACS_control_code; | |
| 3638 emacs_code_class[0x80] = EMACS_leading_code_composition; | |
| 3639 for (i = 0x81; i < 0xFF; i++) | |
| 3640 emacs_code_class[i] = EMACS_invalid_code; | |
| 3641 emacs_code_class[LEADING_CODE_PRIVATE_11] = EMACS_leading_code_3; | |
| 3642 emacs_code_class[LEADING_CODE_PRIVATE_12] = EMACS_leading_code_3; | |
| 3643 emacs_code_class[LEADING_CODE_PRIVATE_21] = EMACS_leading_code_4; | |
| 3644 emacs_code_class[LEADING_CODE_PRIVATE_22] = EMACS_leading_code_4; | |
| 3645 | |
| 3646 /* ISO2022 specific initialize routine. */ | |
| 3647 for (i = 0; i < 0x20; i++) | |
| 3648 iso_code_class[i] = ISO_control_code; | |
| 3649 for (i = 0x21; i < 0x7F; i++) | |
| 3650 iso_code_class[i] = ISO_graphic_plane_0; | |
| 3651 for (i = 0x80; i < 0xA0; i++) | |
| 3652 iso_code_class[i] = ISO_control_code; | |
| 3653 for (i = 0xA1; i < 0xFF; i++) | |
| 3654 iso_code_class[i] = ISO_graphic_plane_1; | |
| 3655 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
| 3656 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
| 3657 iso_code_class[ISO_CODE_CR] = ISO_carriage_return; | |
| 3658 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
| 3659 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
| 3660 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
| 3661 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
| 3662 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
| 3663 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
| 3664 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
| 3665 | |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3666 conversion_buffer_size = MINIMUM_CONVERSION_BUFFER_SIZE; |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3667 conversion_buffer = (char *) xmalloc (MINIMUM_CONVERSION_BUFFER_SIZE); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3668 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3669 setup_coding_system (Qnil, &keyboard_coding); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3670 setup_coding_system (Qnil, &terminal_coding); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3671 |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3672 #if defined (MSDOS) || defined (WINDOWSNT) |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3673 system_eol_type = CODING_EOL_CRLF; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3674 #else |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3675 system_eol_type = CODING_EOL_LF; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3676 #endif |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3677 } |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3678 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3679 #ifdef emacs |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3680 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3681 syms_of_coding () |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3682 { |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3683 Qtarget_idx = intern ("target-idx"); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3684 staticpro (&Qtarget_idx); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3685 |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3686 /* 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
|
3687 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
|
3688 /* 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
|
3689 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
|
3690 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3691 Qcall_process = intern ("call-process"); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3692 staticpro (&Qcall_process); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3693 /* 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
|
3694 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
|
3695 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3696 Qcall_process_region = intern ("call-process-region"); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3697 staticpro (&Qcall_process_region); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3698 /* 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
|
3699 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
|
3700 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3701 Qstart_process = intern ("start-process"); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3702 staticpro (&Qstart_process); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3703 /* 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
|
3704 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
|
3705 |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3706 Qopen_network_stream = intern ("open-network-stream"); |
|
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3707 staticpro (&Qopen_network_stream); |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3708 /* 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
|
3709 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
|
3710 |
| 17052 | 3711 Qcoding_system = intern ("coding-system"); |
| 3712 staticpro (&Qcoding_system); | |
| 3713 | |
| 3714 Qeol_type = intern ("eol-type"); | |
| 3715 staticpro (&Qeol_type); | |
| 3716 | |
| 3717 Qbuffer_file_coding_system = intern ("buffer-file-coding-system"); | |
| 3718 staticpro (&Qbuffer_file_coding_system); | |
| 3719 | |
| 3720 Qpost_read_conversion = intern ("post-read-conversion"); | |
| 3721 staticpro (&Qpost_read_conversion); | |
| 3722 | |
| 3723 Qpre_write_conversion = intern ("pre-write-conversion"); | |
| 3724 staticpro (&Qpre_write_conversion); | |
| 3725 | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3726 Qcoding_system_spec = intern ("coding-system-spec"); |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3727 staticpro (&Qcoding_system_spec); |
| 17052 | 3728 |
| 3729 Qcoding_system_p = intern ("coding-system-p"); | |
| 3730 staticpro (&Qcoding_system_p); | |
| 3731 | |
| 3732 Qcoding_system_error = intern ("coding-system-error"); | |
| 3733 staticpro (&Qcoding_system_error); | |
| 3734 | |
| 3735 Fput (Qcoding_system_error, Qerror_conditions, | |
| 3736 Fcons (Qcoding_system_error, Fcons (Qerror, Qnil))); | |
| 3737 Fput (Qcoding_system_error, Qerror_message, | |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3738 build_string ("Invalid coding system")); |
| 17052 | 3739 |
| 3740 Qcoding_category_index = intern ("coding-category-index"); | |
| 3741 staticpro (&Qcoding_category_index); | |
| 3742 | |
| 3743 { | |
| 3744 int i; | |
| 3745 for (i = 0; i < CODING_CATEGORY_IDX_MAX; i++) | |
| 3746 { | |
| 3747 coding_category_table[i] = intern (coding_category_name[i]); | |
| 3748 staticpro (&coding_category_table[i]); | |
| 3749 Fput (coding_category_table[i], Qcoding_category_index, | |
| 3750 make_number (i)); | |
| 3751 } | |
| 3752 } | |
| 3753 | |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3754 Qcharacter_unification_table = intern ("character-unification-table"); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3755 staticpro (&Qcharacter_unification_table); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3756 Fput (Qcharacter_unification_table, Qchar_table_extra_slots, |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3757 make_number (0)); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3758 |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3759 Qcharacter_unification_table_for_decode |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3760 = intern ("character-unification-table-for-decode"); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3761 staticpro (&Qcharacter_unification_table_for_decode); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3762 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3763 Qcharacter_unification_table_for_encode |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3764 = intern ("character-unification-table-for-encode"); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3765 staticpro (&Qcharacter_unification_table_for_encode); |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3766 |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3767 Qemacs_mule = intern ("emacs-mule"); |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3768 staticpro (&Qemacs_mule); |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3769 |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3770 defsubr (&Scoding_system_spec); |
| 17052 | 3771 defsubr (&Scoding_system_p); |
| 3772 defsubr (&Sread_coding_system); | |
| 3773 defsubr (&Sread_non_nil_coding_system); | |
| 3774 defsubr (&Scheck_coding_system); | |
| 3775 defsubr (&Sdetect_coding_region); | |
| 3776 defsubr (&Sdecode_coding_region); | |
| 3777 defsubr (&Sencode_coding_region); | |
| 3778 defsubr (&Sdecode_coding_string); | |
| 3779 defsubr (&Sencode_coding_string); | |
| 3780 defsubr (&Sdecode_sjis_char); | |
| 3781 defsubr (&Sencode_sjis_char); | |
| 3782 defsubr (&Sdecode_big5_char); | |
| 3783 defsubr (&Sencode_big5_char); | |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3784 defsubr (&Sset_terminal_coding_system_internal); |
| 17052 | 3785 defsubr (&Sterminal_coding_system); |
|
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3786 defsubr (&Sset_keyboard_coding_system_internal); |
| 17052 | 3787 defsubr (&Skeyboard_coding_system); |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3788 defsubr (&Sfind_operation_coding_system); |
| 17052 | 3789 |
| 3790 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list, | |
| 3791 "List of coding-categories (symbols) ordered by priority."); | |
| 3792 { | |
| 3793 int i; | |
| 3794 | |
| 3795 Vcoding_category_list = Qnil; | |
| 3796 for (i = CODING_CATEGORY_IDX_MAX - 1; i >= 0; i--) | |
| 3797 Vcoding_category_list | |
| 3798 = Fcons (coding_category_table[i], Vcoding_category_list); | |
| 3799 } | |
| 3800 | |
| 3801 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read, | |
| 3802 "A variable of internal use only.\n\ | |
| 3803 If the value is a coding system, it is used for decoding on read operation.\n\ | |
|
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3804 If not, an appropriate element is used from one of the coding system alists:\n\ |
|
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3805 There are three of such tables, `file-coding-system-alist',\n\ |
|
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3806 `process-coding-system-alist', and `network-coding-system-alist'."); |
| 17052 | 3807 Vcoding_system_for_read = Qnil; |
| 3808 | |
| 3809 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write, | |
| 3810 "A variable of internal use only.\n\ | |
| 3811 If the value is a coding system, it is used for encoding on write operation.\n\ | |
|
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3812 If not, an appropriate element is used from one of the coding system alists:\n\ |
|
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3813 There are three of such tables, `file-coding-system-alist',\n\ |
|
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3814 `process-coding-system-alist', and `network-coding-system-alist'."); |
| 17052 | 3815 Vcoding_system_for_write = Qnil; |
| 3816 | |
| 3817 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
|
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3818 "Coding system used in the latest file or process I/O."); |
| 17052 | 3819 Vlast_coding_system_used = Qnil; |
| 3820 | |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3821 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3822 "*Non-nil inhibit code conversion of end-of-line format in any cases."); |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3823 inhibit_eol_conversion = 0; |
|
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3824 |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3825 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3826 "Alist to decide a coding system to use for a file I/O operation.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3827 The format is ((PATTERN . VAL) ...),\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3828 where PATTERN is a regular expression matching a file name,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3829 VAL is a coding system, a cons of coding systems, or a function symbol.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3830 If VAL is a coding system, it is used for both decoding and encoding\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3831 the file contents.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3832 If VAL is a cons of coding systems, the car part is used for decoding,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3833 and the cdr part is used for encoding.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3834 If VAL is a function symbol, the function must return a coding system\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3835 or a cons of coding systems which are used as above.\n\ |
|
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3836 \n\ |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3837 See also the function `find-operation-coding-system'."); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3838 Vfile_coding_system_alist = Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3839 |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3840 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3841 "Alist to decide a coding system to use for a process I/O operation.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3842 The format is ((PATTERN . VAL) ...),\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3843 where PATTERN is a regular expression matching a program name,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3844 VAL is a coding system, a cons of coding systems, or a function symbol.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3845 If VAL is a coding system, it is used for both decoding what received\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3846 from the program and encoding what sent to the program.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3847 If VAL is a cons of coding systems, the car part is used for decoding,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3848 and the cdr part is used for encoding.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3849 If VAL is a function symbol, the function must return a coding system\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3850 or a cons of coding systems which are used as above.\n\ |
| 17052 | 3851 \n\ |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3852 See also the function `find-operation-coding-system'."); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3853 Vprocess_coding_system_alist = Qnil; |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3854 |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3855 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3856 "Alist to decide a coding system to use for a network I/O operation.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3857 The format is ((PATTERN . VAL) ...),\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3858 where PATTERN is a regular expression matching a network service name\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3859 or is a port number to connect to,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3860 VAL is a coding system, a cons of coding systems, or a function symbol.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3861 If VAL is a coding system, it is used for both decoding what received\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3862 from the network stream and encoding what sent to the network stream.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3863 If VAL is a cons of coding systems, the car part is used for decoding,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3864 and the cdr part is used for encoding.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3865 If VAL is a function symbol, the function must return a coding system\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3866 or a cons of coding systems which are used as above.\n\ |
| 17052 | 3867 \n\ |
|
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3868 See also the function `find-operation-coding-system'."); |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3869 Vnetwork_coding_system_alist = Qnil; |
| 17052 | 3870 |
| 3871 DEFVAR_INT ("eol-mnemonic-unix", &eol_mnemonic_unix, | |
| 3872 "Mnemonic character indicating UNIX-like end-of-line format (i.e. LF) ."); | |
|
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
3873 eol_mnemonic_unix = ':'; |
| 17052 | 3874 |
| 3875 DEFVAR_INT ("eol-mnemonic-dos", &eol_mnemonic_dos, | |
| 3876 "Mnemonic character indicating DOS-like end-of-line format (i.e. CRLF)."); | |
|
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
3877 eol_mnemonic_dos = '\\'; |
| 17052 | 3878 |
| 3879 DEFVAR_INT ("eol-mnemonic-mac", &eol_mnemonic_mac, | |
| 3880 "Mnemonic character indicating MAC-like end-of-line format (i.e. CR)."); | |
|
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
3881 eol_mnemonic_mac = '/'; |
| 17052 | 3882 |
| 3883 DEFVAR_INT ("eol-mnemonic-undecided", &eol_mnemonic_undecided, | |
| 3884 "Mnemonic character indicating end-of-line format is not yet decided."); | |
|
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
3885 eol_mnemonic_undecided = ':'; |
| 17052 | 3886 |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3887 DEFVAR_LISP ("enable-character-unification", &Venable_character_unification, |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3888 "Non-nil means ISO 2022 encoder/decoder do character unification."); |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3889 Venable_character_unification = Qt; |
|
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3890 |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3891 DEFVAR_LISP ("standard-character-unification-table-for-decode", |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3892 &Vstandard_character_unification_table_for_decode, |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3893 "Table for unifying characters when reading."); |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3894 Vstandard_character_unification_table_for_decode = Qnil; |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3895 |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3896 DEFVAR_LISP ("standard-character-unification-table-for-encode", |
|
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3897 &Vstandard_character_unification_table_for_encode, |
|
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3898 "Table for unifying characters when writing."); |
|
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3899 Vstandard_character_unification_table_for_encode = Qnil; |
| 17052 | 3900 |
| 3901 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_alist, | |
| 3902 "Alist of charsets vs revision numbers.\n\ | |
| 3903 While encoding, if a charset (car part of an element) is found,\n\ | |
| 3904 designate it with the escape sequence identifing revision (cdr part of the element)."); | |
| 3905 Vcharset_revision_alist = Qnil; | |
|
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3906 |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3907 DEFVAR_LISP ("default-process-coding-system", |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3908 &Vdefault_process_coding_system, |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3909 "Cons of coding systems used for process I/O by default.\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3910 The car part is used for decoding a process output,\n\ |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3911 the cdr part is used for encoding a text to be sent to a process."); |
|
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3912 Vdefault_process_coding_system = Qnil; |
| 17052 | 3913 } |
| 3914 | |
| 3915 #endif /* emacs */ |
