Port better to POSIX hosts lacking _setjmp.
[bpt/emacs.git] / src / coding.c
CommitLineData
9542cb1f 1/* Coding system handler (conversion, detection, etc).
acaf905b 2 Copyright (C) 2001-2012 Free Software Foundation, Inc.
7976eda0 3 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5df4f04c 4 2005, 2006, 2007, 2008, 2009, 2010, 2011
ce03bf76
KH
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H14PRO021
8f924df7 7 Copyright (C) 2003
df7492f9
KH
8 National Institute of Advanced Industrial Science and Technology (AIST)
9 Registration Number H13PRO009
4ed46869 10
369314dc
KH
11This file is part of GNU Emacs.
12
9ec0b715 13GNU Emacs is free software: you can redistribute it and/or modify
369314dc 14it under the terms of the GNU General Public License as published by
9ec0b715
GM
15the Free Software Foundation, either version 3 of the License, or
16(at your option) any later version.
4ed46869 17
369314dc
KH
18GNU Emacs is distributed in the hope that it will be useful,
19but WITHOUT ANY WARRANTY; without even the implied warranty of
20MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21GNU General Public License for more details.
4ed46869 22
369314dc 23You should have received a copy of the GNU General Public License
9ec0b715 24along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4ed46869
KH
25
26/*** TABLE OF CONTENTS ***
27
b73bfc1c 28 0. General comments
4ed46869 29 1. Preamble
df7492f9
KH
30 2. Emacs' internal format (emacs-utf-8) handlers
31 3. UTF-8 handlers
32 4. UTF-16 handlers
33 5. Charset-base coding systems handlers
34 6. emacs-mule (old Emacs' internal format) handlers
35 7. ISO2022 handlers
36 8. Shift-JIS and BIG5 handlers
37 9. CCL handlers
38 10. C library functions
39 11. Emacs Lisp library functions
40 12. Postamble
4ed46869
KH
41
42*/
43
df7492f9 44/*** 0. General comments ***
b73bfc1c
KH
45
46
df7492f9 47CODING SYSTEM
4ed46869 48
5bad0796
DL
49 A coding system is an object for an encoding mechanism that contains
50 information about how to convert byte sequences to character
e19c3639
KH
51 sequences and vice versa. When we say "decode", it means converting
52 a byte sequence of a specific coding system into a character
53 sequence that is represented by Emacs' internal coding system
54 `emacs-utf-8', and when we say "encode", it means converting a
55 character sequence of emacs-utf-8 to a byte sequence of a specific
0ef69138 56 coding system.
4ed46869 57
34809aa6
EZ
58 In Emacs Lisp, a coding system is represented by a Lisp symbol. On
59 the C level, a coding system is represented by a vector of attributes
5bad0796 60 stored in the hash table Vcharset_hash_table. The conversion from
e19c3639
KH
61 coding system symbol to attributes vector is done by looking up
62 Vcharset_hash_table by the symbol.
4ed46869 63
e19c3639 64 Coding systems are classified into the following types depending on
5bad0796 65 the encoding mechanism. Here's a brief description of the types.
4ed46869 66
df7492f9
KH
67 o UTF-8
68
69 o UTF-16
70
71 o Charset-base coding system
72
73 A coding system defined by one or more (coded) character sets.
5bad0796 74 Decoding and encoding are done by a code converter defined for each
df7492f9
KH
75 character set.
76
5bad0796 77 o Old Emacs internal format (emacs-mule)
df7492f9 78
5bad0796 79 The coding system adopted by old versions of Emacs (20 and 21).
4ed46869 80
df7492f9 81 o ISO2022-base coding system
4ed46869
KH
82
83 The most famous coding system for multiple character sets. X's
df7492f9
KH
84 Compound Text, various EUCs (Extended Unix Code), and coding systems
85 used in the Internet communication such as ISO-2022-JP are all
86 variants of ISO2022.
4ed46869 87
df7492f9 88 o SJIS (or Shift-JIS or MS-Kanji-Code)
93dec019 89
4ed46869
KH
90 A coding system to encode character sets: ASCII, JISX0201, and
91 JISX0208. Widely used for PC's in Japan. Details are described in
df7492f9 92 section 8.
4ed46869 93
df7492f9 94 o BIG5
4ed46869 95
df7492f9 96 A coding system to encode character sets: ASCII and Big5. Widely
cfb43547 97 used for Chinese (mainly in Taiwan and Hong Kong). Details are
df7492f9
KH
98 described in section 8. In this file, when we write "big5" (all
99 lowercase), we mean the coding system, and when we write "Big5"
100 (capitalized), we mean the character set.
4ed46869 101
df7492f9 102 o CCL
27901516 103
5bad0796 104 If a user wants to decode/encode text encoded in a coding system
df7492f9
KH
105 not listed above, he can supply a decoder and an encoder for it in
106 CCL (Code Conversion Language) programs. Emacs executes the CCL
107 program while decoding/encoding.
27901516 108
df7492f9 109 o Raw-text
4ed46869 110
5a936b46 111 A coding system for text containing raw eight-bit data. Emacs
5bad0796 112 treats each byte of source text as a character (except for
df7492f9 113 end-of-line conversion).
4ed46869 114
df7492f9
KH
115 o No-conversion
116
117 Like raw text, but don't do end-of-line conversion.
4ed46869 118
4ed46869 119
df7492f9 120END-OF-LINE FORMAT
4ed46869 121
5bad0796 122 How text end-of-line is encoded depends on operating system. For
df7492f9 123 instance, Unix's format is just one byte of LF (line-feed) code,
f4dee582 124 whereas DOS's format is two-byte sequence of `carriage-return' and
d46c5b12
KH
125 `line-feed' codes. MacOS's format is usually one byte of
126 `carriage-return'.
4ed46869 127
cfb43547 128 Since text character encoding and end-of-line encoding are
df7492f9
KH
129 independent, any coding system described above can take any format
130 of end-of-line (except for no-conversion).
4ed46869 131
e19c3639
KH
132STRUCT CODING_SYSTEM
133
134 Before using a coding system for code conversion (i.e. decoding and
135 encoding), we setup a structure of type `struct coding_system'.
136 This structure keeps various information about a specific code
5bad0796 137 conversion (e.g. the location of source and destination data).
4ed46869
KH
138
139*/
140
df7492f9
KH
141/* COMMON MACROS */
142
143
4ed46869
KH
144/*** GENERAL NOTES on `detect_coding_XXX ()' functions ***
145
df7492f9 146 These functions check if a byte sequence specified as a source in
ff0dacd7
KH
147 CODING conforms to the format of XXX, and update the members of
148 DETECT_INFO.
df7492f9 149
f10fe38f 150 Return true if the byte sequence conforms to XXX.
df7492f9
KH
151
152 Below is the template of these functions. */
153
4ed46869 154#if 0
f10fe38f 155static bool
cf84bb53
JB
156detect_coding_XXX (struct coding_system *coding,
157 struct coding_detection_info *detect_info)
4ed46869 158{
f1d34bca
MB
159 const unsigned char *src = coding->source;
160 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 161 bool multibytep = coding->src_multibyte;
d311d28c 162 ptrdiff_t consumed_chars = 0;
df7492f9
KH
163 int found = 0;
164 ...;
165
166 while (1)
167 {
ad1746f5 168 /* Get one byte from the source. If the source is exhausted, jump
df7492f9
KH
169 to no_more_source:. */
170 ONE_MORE_BYTE (c);
ff0dacd7
KH
171
172 if (! __C_conforms_to_XXX___ (c))
173 break;
174 if (! __C_strongly_suggests_XXX__ (c))
175 found = CATEGORY_MASK_XXX;
df7492f9 176 }
ff0dacd7
KH
177 /* The byte sequence is invalid for XXX. */
178 detect_info->rejected |= CATEGORY_MASK_XXX;
df7492f9 179 return 0;
ff0dacd7 180
df7492f9 181 no_more_source:
ad1746f5 182 /* The source exhausted successfully. */
ff0dacd7 183 detect_info->found |= found;
df7492f9 184 return 1;
4ed46869
KH
185}
186#endif
187
188/*** GENERAL NOTES on `decode_coding_XXX ()' functions ***
189
df7492f9
KH
190 These functions decode a byte sequence specified as a source by
191 CODING. The resulting multibyte text goes to a place pointed to by
192 CODING->charbuf, the length of which should not exceed
193 CODING->charbuf_size;
d46c5b12 194
df7492f9
KH
195 These functions set the information of original and decoded texts in
196 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used.
197 They also set CODING->result to one of CODING_RESULT_XXX indicating
198 how the decoding is finished.
d46c5b12 199
df7492f9 200 Below is the template of these functions. */
d46c5b12 201
4ed46869 202#if 0
b73bfc1c 203static void
cf84bb53 204decode_coding_XXXX (struct coding_system *coding)
4ed46869 205{
f1d34bca
MB
206 const unsigned char *src = coding->source + coding->consumed;
207 const unsigned char *src_end = coding->source + coding->src_bytes;
df7492f9
KH
208 /* SRC_BASE remembers the start position in source in each loop.
209 The loop will be exited when there's not enough source code, or
210 when there's no room in CHARBUF for a decoded character. */
f1d34bca 211 const unsigned char *src_base;
df7492f9 212 /* A buffer to produce decoded characters. */
69a80ea3
KH
213 int *charbuf = coding->charbuf + coding->charbuf_used;
214 int *charbuf_end = coding->charbuf + coding->charbuf_size;
f10fe38f 215 bool multibytep = coding->src_multibyte;
df7492f9
KH
216
217 while (1)
218 {
219 src_base = src;
220 if (charbuf < charbuf_end)
221 /* No more room to produce a decoded character. */
222 break;
223 ONE_MORE_BYTE (c);
224 /* Decode it. */
225 }
226
227 no_more_source:
228 if (src_base < src_end
229 && coding->mode & CODING_MODE_LAST_BLOCK)
230 /* If the source ends by partial bytes to construct a character,
231 treat them as eight-bit raw data. */
232 while (src_base < src_end && charbuf < charbuf_end)
233 *charbuf++ = *src_base++;
234 /* Remember how many bytes and characters we consumed. If the
235 source is multibyte, the bytes and chars are not identical. */
236 coding->consumed = coding->consumed_char = src_base - coding->source;
237 /* Remember how many characters we produced. */
238 coding->charbuf_used = charbuf - coding->charbuf;
4ed46869
KH
239}
240#endif
241
242/*** GENERAL NOTES on `encode_coding_XXX ()' functions ***
243
df7492f9
KH
244 These functions encode SRC_BYTES length text at SOURCE of Emacs'
245 internal multibyte format by CODING. The resulting byte sequence
b73bfc1c
KH
246 goes to a place pointed to by DESTINATION, the length of which
247 should not exceed DST_BYTES.
d46c5b12 248
df7492f9
KH
249 These functions set the information of original and encoded texts in
250 the members produced, produced_char, consumed, and consumed_char of
251 the structure *CODING. They also set the member result to one of
252 CODING_RESULT_XXX indicating how the encoding finished.
d46c5b12 253
df7492f9
KH
254 DST_BYTES zero means that source area and destination area are
255 overlapped, which means that we can produce a encoded text until it
256 reaches at the head of not-yet-encoded source text.
d46c5b12 257
df7492f9 258 Below is a template of these functions. */
4ed46869 259#if 0
b73bfc1c 260static void
cf84bb53 261encode_coding_XXX (struct coding_system *coding)
4ed46869 262{
f10fe38f 263 bool multibytep = coding->dst_multibyte;
df7492f9
KH
264 int *charbuf = coding->charbuf;
265 int *charbuf_end = charbuf->charbuf + coding->charbuf_used;
266 unsigned char *dst = coding->destination + coding->produced;
267 unsigned char *dst_end = coding->destination + coding->dst_bytes;
268 unsigned char *adjusted_dst_end = dst_end - _MAX_BYTES_PRODUCED_IN_LOOP_;
d311d28c 269 ptrdiff_t produced_chars = 0;
df7492f9
KH
270
271 for (; charbuf < charbuf_end && dst < adjusted_dst_end; charbuf++)
272 {
273 int c = *charbuf;
274 /* Encode C into DST, and increment DST. */
275 }
276 label_no_more_destination:
277 /* How many chars and bytes we produced. */
278 coding->produced_char += produced_chars;
279 coding->produced = dst - coding->destination;
4ed46869
KH
280}
281#endif
282
4ed46869
KH
283\f
284/*** 1. Preamble ***/
285
68c45bf0 286#include <config.h>
4ed46869
KH
287#include <stdio.h>
288
4ed46869 289#include "lisp.h"
df7492f9 290#include "character.h"
e5560ff7 291#include "buffer.h"
4ed46869
KH
292#include "charset.h"
293#include "ccl.h"
df7492f9 294#include "composite.h"
4ed46869
KH
295#include "coding.h"
296#include "window.h"
b8299c66
KL
297#include "frame.h"
298#include "termhooks.h"
4ed46869 299
df7492f9 300Lisp_Object Vcoding_system_hash_table;
4ed46869 301
955cbe7b
PE
302static Lisp_Object Qcoding_system, Qeol_type;
303static Lisp_Object Qcoding_aliases;
1965cb73 304Lisp_Object Qunix, Qdos;
4ed46869 305Lisp_Object Qbuffer_file_coding_system;
955cbe7b
PE
306static Lisp_Object Qpost_read_conversion, Qpre_write_conversion;
307static Lisp_Object Qdefault_char;
27901516 308Lisp_Object Qno_conversion, Qundecided;
955cbe7b
PE
309Lisp_Object Qcharset, Qutf_8;
310static Lisp_Object Qiso_2022;
311static Lisp_Object Qutf_16, Qshift_jis, Qbig5;
312static Lisp_Object Qbig, Qlittle;
313static Lisp_Object Qcoding_system_history;
314static Lisp_Object Qvalid_codes;
315static Lisp_Object QCcategory, QCmnemonic, QCdefault_char;
316static Lisp_Object QCdecode_translation_table, QCencode_translation_table;
317static Lisp_Object QCpost_read_conversion, QCpre_write_conversion;
318static Lisp_Object QCascii_compatible_p;
4ed46869 319
387f6ba5 320Lisp_Object Qcall_process, Qcall_process_region;
4ed46869 321Lisp_Object Qstart_process, Qopen_network_stream;
955cbe7b 322static Lisp_Object Qtarget_idx;
4ed46869 323
955cbe7b
PE
324static Lisp_Object Qinsufficient_source, Qinconsistent_eol, Qinvalid_source;
325static Lisp_Object Qinterrupted, Qinsufficient_memory;
065e3595 326
44e8490d
KH
327/* If a symbol has this property, evaluate the value to define the
328 symbol as a coding system. */
329static Lisp_Object Qcoding_system_define_form;
330
fcbcfb64
KH
331/* Format of end-of-line decided by system. This is Qunix on
332 Unix and Mac, Qdos on DOS/Windows.
333 This has an effect only for external encoding (i.e. for output to
334 file and process), not for in-buffer or Lisp string encoding. */
335static Lisp_Object system_eol_type;
336
4ed46869
KH
337#ifdef emacs
338
4608c386 339Lisp_Object Qcoding_system_p, Qcoding_system_error;
4ed46869 340
d46c5b12
KH
341/* Coding system emacs-mule and raw-text are for converting only
342 end-of-line format. */
343Lisp_Object Qemacs_mule, Qraw_text;
8f924df7 344Lisp_Object Qutf_8_emacs;
ecf488bc 345
4ed46869
KH
346/* Coding-systems are handed between Emacs Lisp programs and C internal
347 routines by the following three variables. */
c4825358
KH
348/* Coding system to be used to encode text for terminal display when
349 terminal coding system is nil. */
350struct coding_system safe_terminal_coding;
351
4ed46869
KH
352#endif /* emacs */
353
f967223b
KH
354Lisp_Object Qtranslation_table;
355Lisp_Object Qtranslation_table_id;
955cbe7b
PE
356static Lisp_Object Qtranslation_table_for_decode;
357static Lisp_Object Qtranslation_table_for_encode;
4ed46869 358
df7492f9 359/* Two special coding systems. */
74ab6df5
PE
360static Lisp_Object Vsjis_coding_system;
361static Lisp_Object Vbig5_coding_system;
df7492f9 362
df7492f9
KH
363/* ISO2022 section */
364
365#define CODING_ISO_INITIAL(coding, reg) \
366 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \
367 coding_attr_iso_initial), \
368 reg)))
369
370
1b3b981b
AS
371#define CODING_ISO_REQUEST(coding, charset_id) \
372 (((charset_id) <= (coding)->max_charset_id \
373 ? ((coding)->safe_charsets[charset_id] != 255 \
374 ? (coding)->safe_charsets[charset_id] \
375 : -1) \
df7492f9
KH
376 : -1))
377
378
379#define CODING_ISO_FLAGS(coding) \
380 ((coding)->spec.iso_2022.flags)
381#define CODING_ISO_DESIGNATION(coding, reg) \
382 ((coding)->spec.iso_2022.current_designation[reg])
383#define CODING_ISO_INVOCATION(coding, plane) \
384 ((coding)->spec.iso_2022.current_invocation[plane])
385#define CODING_ISO_SINGLE_SHIFTING(coding) \
386 ((coding)->spec.iso_2022.single_shifting)
387#define CODING_ISO_BOL(coding) \
388 ((coding)->spec.iso_2022.bol)
389#define CODING_ISO_INVOKED_CHARSET(coding, plane) \
390 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane)))
e951386e
KH
391#define CODING_ISO_CMP_STATUS(coding) \
392 (&(coding)->spec.iso_2022.cmp_status)
393#define CODING_ISO_EXTSEGMENT_LEN(coding) \
394 ((coding)->spec.iso_2022.ctext_extended_segment_len)
395#define CODING_ISO_EMBEDDED_UTF_8(coding) \
396 ((coding)->spec.iso_2022.embedded_utf_8)
df7492f9
KH
397
398/* Control characters of ISO2022. */
399 /* code */ /* function */
df7492f9
KH
400#define ISO_CODE_SO 0x0E /* shift-out */
401#define ISO_CODE_SI 0x0F /* shift-in */
402#define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
403#define ISO_CODE_ESC 0x1B /* escape */
404#define ISO_CODE_SS2 0x8E /* single-shift-2 */
405#define ISO_CODE_SS3 0x8F /* single-shift-3 */
406#define ISO_CODE_CSI 0x9B /* control-sequence-introducer */
407
408/* All code (1-byte) of ISO2022 is classified into one of the
409 followings. */
410enum iso_code_class_type
411 {
412 ISO_control_0, /* Control codes in the range
413 0x00..0x1F and 0x7F, except for the
414 following 5 codes. */
df7492f9
KH
415 ISO_shift_out, /* ISO_CODE_SO (0x0E) */
416 ISO_shift_in, /* ISO_CODE_SI (0x0F) */
417 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */
418 ISO_escape, /* ISO_CODE_SO (0x1B) */
419 ISO_control_1, /* Control codes in the range
420 0x80..0x9F, except for the
421 following 3 codes. */
422 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */
423 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */
424 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */
425 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */
426 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */
427 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */
428 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */
429 };
05e6f5dc 430
df7492f9
KH
431/** The macros CODING_ISO_FLAG_XXX defines a flag bit of the
432 `iso-flags' attribute of an iso2022 coding system. */
05e6f5dc 433
df7492f9
KH
434/* If set, produce long-form designation sequence (e.g. ESC $ ( A)
435 instead of the correct short-form sequence (e.g. ESC $ A). */
436#define CODING_ISO_FLAG_LONG_FORM 0x0001
93dec019 437
df7492f9
KH
438/* If set, reset graphic planes and registers at end-of-line to the
439 initial state. */
440#define CODING_ISO_FLAG_RESET_AT_EOL 0x0002
05e6f5dc 441
df7492f9
KH
442/* If set, reset graphic planes and registers before any control
443 characters to the initial state. */
444#define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004
05e6f5dc 445
df7492f9
KH
446/* If set, encode by 7-bit environment. */
447#define CODING_ISO_FLAG_SEVEN_BITS 0x0008
4ed46869 448
df7492f9
KH
449/* If set, use locking-shift function. */
450#define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010
b73bfc1c 451
df7492f9
KH
452/* If set, use single-shift function. Overwrite
453 CODING_ISO_FLAG_LOCKING_SHIFT. */
454#define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020
b73bfc1c 455
df7492f9
KH
456/* If set, use designation escape sequence. */
457#define CODING_ISO_FLAG_DESIGNATION 0x0040
b73bfc1c 458
df7492f9
KH
459/* If set, produce revision number sequence. */
460#define CODING_ISO_FLAG_REVISION 0x0080
b73bfc1c 461
df7492f9
KH
462/* If set, produce ISO6429's direction specifying sequence. */
463#define CODING_ISO_FLAG_DIRECTION 0x0100
f4dee582 464
df7492f9
KH
465/* If set, assume designation states are reset at beginning of line on
466 output. */
467#define CODING_ISO_FLAG_INIT_AT_BOL 0x0200
4ed46869 468
df7492f9
KH
469/* If set, designation sequence should be placed at beginning of line
470 on output. */
471#define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400
aa72b389 472
ad1746f5 473/* If set, do not encode unsafe characters on output. */
df7492f9 474#define CODING_ISO_FLAG_SAFE 0x0800
aa72b389 475
df7492f9
KH
476/* If set, extra latin codes (128..159) are accepted as a valid code
477 on input. */
478#define CODING_ISO_FLAG_LATIN_EXTRA 0x1000
aa72b389 479
df7492f9 480#define CODING_ISO_FLAG_COMPOSITION 0x2000
aa72b389 481
5f58e762 482/* #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 */
aa72b389 483
bf16eb23 484#define CODING_ISO_FLAG_USE_ROMAN 0x8000
aa72b389 485
bf16eb23 486#define CODING_ISO_FLAG_USE_OLDJIS 0x10000
aa72b389 487
bf16eb23 488#define CODING_ISO_FLAG_FULL_SUPPORT 0x100000
aa72b389 489
df7492f9
KH
490/* A character to be produced on output if encoding of the original
491 character is prohibited by CODING_ISO_FLAG_SAFE. */
492#define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?'
aa72b389 493
a470d443
KH
494/* UTF-8 section */
495#define CODING_UTF_8_BOM(coding) \
496 ((coding)->spec.utf_8_bom)
4ed46869 497
df7492f9
KH
498/* UTF-16 section */
499#define CODING_UTF_16_BOM(coding) \
500 ((coding)->spec.utf_16.bom)
4ed46869 501
df7492f9
KH
502#define CODING_UTF_16_ENDIAN(coding) \
503 ((coding)->spec.utf_16.endian)
4ed46869 504
df7492f9
KH
505#define CODING_UTF_16_SURROGATE(coding) \
506 ((coding)->spec.utf_16.surrogate)
4ed46869 507
4ed46869 508
df7492f9
KH
509/* CCL section */
510#define CODING_CCL_DECODER(coding) \
511 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder)
512#define CODING_CCL_ENCODER(coding) \
513 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder)
514#define CODING_CCL_VALIDS(coding) \
8f924df7 515 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)))
4ed46869 516
5a936b46 517/* Index for each coding category in `coding_categories' */
4ed46869 518
df7492f9
KH
519enum coding_category
520 {
521 coding_category_iso_7,
522 coding_category_iso_7_tight,
523 coding_category_iso_8_1,
524 coding_category_iso_8_2,
525 coding_category_iso_7_else,
526 coding_category_iso_8_else,
a470d443
KH
527 coding_category_utf_8_auto,
528 coding_category_utf_8_nosig,
529 coding_category_utf_8_sig,
df7492f9
KH
530 coding_category_utf_16_auto,
531 coding_category_utf_16_be,
532 coding_category_utf_16_le,
533 coding_category_utf_16_be_nosig,
534 coding_category_utf_16_le_nosig,
535 coding_category_charset,
536 coding_category_sjis,
537 coding_category_big5,
538 coding_category_ccl,
539 coding_category_emacs_mule,
540 /* All above are targets of code detection. */
541 coding_category_raw_text,
542 coding_category_undecided,
543 coding_category_max
544 };
545
546/* Definitions of flag bits used in detect_coding_XXXX. */
547#define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7)
548#define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight)
549#define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1)
550#define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2)
551#define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else)
552#define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else)
a470d443
KH
553#define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto)
554#define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig)
555#define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig)
b49a1807 556#define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto)
df7492f9
KH
557#define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be)
558#define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le)
559#define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig)
560#define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig)
561#define CATEGORY_MASK_CHARSET (1 << coding_category_charset)
562#define CATEGORY_MASK_SJIS (1 << coding_category_sjis)
563#define CATEGORY_MASK_BIG5 (1 << coding_category_big5)
564#define CATEGORY_MASK_CCL (1 << coding_category_ccl)
565#define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule)
ff0dacd7 566#define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text)
df7492f9
KH
567
568/* This value is returned if detect_coding_mask () find nothing other
569 than ASCII characters. */
570#define CATEGORY_MASK_ANY \
571 (CATEGORY_MASK_ISO_7 \
572 | CATEGORY_MASK_ISO_7_TIGHT \
573 | CATEGORY_MASK_ISO_8_1 \
574 | CATEGORY_MASK_ISO_8_2 \
575 | CATEGORY_MASK_ISO_7_ELSE \
576 | CATEGORY_MASK_ISO_8_ELSE \
a470d443
KH
577 | CATEGORY_MASK_UTF_8_AUTO \
578 | CATEGORY_MASK_UTF_8_NOSIG \
579 | CATEGORY_MASK_UTF_8_SIG \
2f3cbb32 580 | CATEGORY_MASK_UTF_16_AUTO \
df7492f9
KH
581 | CATEGORY_MASK_UTF_16_BE \
582 | CATEGORY_MASK_UTF_16_LE \
583 | CATEGORY_MASK_UTF_16_BE_NOSIG \
584 | CATEGORY_MASK_UTF_16_LE_NOSIG \
585 | CATEGORY_MASK_CHARSET \
586 | CATEGORY_MASK_SJIS \
587 | CATEGORY_MASK_BIG5 \
588 | CATEGORY_MASK_CCL \
589 | CATEGORY_MASK_EMACS_MULE)
590
591
592#define CATEGORY_MASK_ISO_7BIT \
593 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT)
594
595#define CATEGORY_MASK_ISO_8BIT \
596 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2)
597
598#define CATEGORY_MASK_ISO_ELSE \
599 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE)
600
601#define CATEGORY_MASK_ISO_ESCAPE \
602 (CATEGORY_MASK_ISO_7 \
603 | CATEGORY_MASK_ISO_7_TIGHT \
604 | CATEGORY_MASK_ISO_7_ELSE \
605 | CATEGORY_MASK_ISO_8_ELSE)
606
607#define CATEGORY_MASK_ISO \
608 ( CATEGORY_MASK_ISO_7BIT \
609 | CATEGORY_MASK_ISO_8BIT \
610 | CATEGORY_MASK_ISO_ELSE)
611
612#define CATEGORY_MASK_UTF_16 \
2f3cbb32
KH
613 (CATEGORY_MASK_UTF_16_AUTO \
614 | CATEGORY_MASK_UTF_16_BE \
df7492f9
KH
615 | CATEGORY_MASK_UTF_16_LE \
616 | CATEGORY_MASK_UTF_16_BE_NOSIG \
617 | CATEGORY_MASK_UTF_16_LE_NOSIG)
618
a470d443
KH
619#define CATEGORY_MASK_UTF_8 \
620 (CATEGORY_MASK_UTF_8_AUTO \
621 | CATEGORY_MASK_UTF_8_NOSIG \
622 | CATEGORY_MASK_UTF_8_SIG)
df7492f9 623
df7492f9 624/* Table of coding categories (Lisp symbols). This variable is for
ad1746f5 625 internal use only. */
df7492f9
KH
626static Lisp_Object Vcoding_category_table;
627
628/* Table of coding-categories ordered by priority. */
629static enum coding_category coding_priorities[coding_category_max];
630
631/* Nth element is a coding context for the coding system bound to the
632 Nth coding category. */
633static struct coding_system coding_categories[coding_category_max];
634
df7492f9
KH
635/*** Commonly used macros and functions ***/
636
637#ifndef min
638#define min(a, b) ((a) < (b) ? (a) : (b))
639#endif
640#ifndef max
641#define max(a, b) ((a) > (b) ? (a) : (b))
642#endif
4ed46869 643
24a73b0a
KH
644#define CODING_GET_INFO(coding, attrs, charset_list) \
645 do { \
646 (attrs) = CODING_ID_ATTRS ((coding)->id); \
647 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \
df7492f9 648 } while (0)
4ed46869 649
4ed46869 650
df7492f9
KH
651/* Safely get one byte from the source text pointed by SRC which ends
652 at SRC_END, and set C to that byte. If there are not enough bytes
f10fe38f
PE
653 in the source, it jumps to 'no_more_source'. If MULTIBYTEP,
654 and a multibyte character is found at SRC, set C to the
065e3595
KH
655 negative value of the character code. The caller should declare
656 and set these variables appropriately in advance:
657 src, src_end, multibytep */
aa72b389 658
065e3595
KH
659#define ONE_MORE_BYTE(c) \
660 do { \
661 if (src == src_end) \
662 { \
663 if (src_base < src) \
664 record_conversion_result \
665 (coding, CODING_RESULT_INSUFFICIENT_SRC); \
666 goto no_more_source; \
667 } \
668 c = *src++; \
669 if (multibytep && (c & 0x80)) \
670 { \
671 if ((c & 0xFE) == 0xC0) \
672 c = ((c & 1) << 6) | *src++; \
673 else \
674 { \
35befdaa
KH
675 src--; \
676 c = - string_char (src, &src, NULL); \
065e3595
KH
677 record_conversion_result \
678 (coding, CODING_RESULT_INVALID_SRC); \
679 } \
680 } \
681 consumed_chars++; \
aa72b389
KH
682 } while (0)
683
f56a4450 684/* Safely get two bytes from the source text pointed by SRC which ends
220eeac9
KH
685 at SRC_END, and set C1 and C2 to those bytes while skipping the
686 heading multibyte characters. If there are not enough bytes in the
f10fe38f 687 source, it jumps to 'no_more_source'. If MULTIBYTEP and
220eeac9
KH
688 a multibyte character is found for C2, set C2 to the negative value
689 of the character code. The caller should declare and set these
690 variables appropriately in advance:
f56a4450
KH
691 src, src_end, multibytep
692 It is intended that this macro is used in detect_coding_utf_16. */
693
220eeac9
KH
694#define TWO_MORE_BYTES(c1, c2) \
695 do { \
696 do { \
697 if (src == src_end) \
698 goto no_more_source; \
699 c1 = *src++; \
700 if (multibytep && (c1 & 0x80)) \
701 { \
702 if ((c1 & 0xFE) == 0xC0) \
703 c1 = ((c1 & 1) << 6) | *src++; \
704 else \
705 { \
706 src += BYTES_BY_CHAR_HEAD (c1) - 1; \
707 c1 = -1; \
708 } \
709 } \
710 } while (c1 < 0); \
711 if (src == src_end) \
712 goto no_more_source; \
713 c2 = *src++; \
714 if (multibytep && (c2 & 0x80)) \
715 { \
716 if ((c2 & 0xFE) == 0xC0) \
717 c2 = ((c2 & 1) << 6) | *src++; \
718 else \
719 c2 = -1; \
720 } \
f56a4450
KH
721 } while (0)
722
aa72b389 723
df7492f9
KH
724/* Store a byte C in the place pointed by DST and increment DST to the
725 next free point, and increment PRODUCED_CHARS. The caller should
726 assure that C is 0..127, and declare and set the variable `dst'
727 appropriately in advance.
728*/
aa72b389
KH
729
730
df7492f9
KH
731#define EMIT_ONE_ASCII_BYTE(c) \
732 do { \
733 produced_chars++; \
734 *dst++ = (c); \
b6871cc7 735 } while (0)
aa72b389
KH
736
737
ad1746f5 738/* Like EMIT_ONE_ASCII_BYTE but store two bytes; C1 and C2. */
aa72b389 739
df7492f9
KH
740#define EMIT_TWO_ASCII_BYTES(c1, c2) \
741 do { \
742 produced_chars += 2; \
743 *dst++ = (c1), *dst++ = (c2); \
744 } while (0)
aa72b389
KH
745
746
df7492f9 747/* Store a byte C in the place pointed by DST and increment DST to the
f10fe38f
PE
748 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP,
749 store in an appropriate multibyte form. The caller should
df7492f9
KH
750 declare and set the variables `dst' and `multibytep' appropriately
751 in advance. */
752
753#define EMIT_ONE_BYTE(c) \
754 do { \
755 produced_chars++; \
756 if (multibytep) \
757 { \
b25d760e 758 unsigned ch = (c); \
df7492f9
KH
759 if (ch >= 0x80) \
760 ch = BYTE8_TO_CHAR (ch); \
761 CHAR_STRING_ADVANCE (ch, dst); \
762 } \
763 else \
764 *dst++ = (c); \
aa72b389 765 } while (0)
aa72b389 766
aa72b389 767
df7492f9 768/* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */
aa72b389 769
e19c3639
KH
770#define EMIT_TWO_BYTES(c1, c2) \
771 do { \
772 produced_chars += 2; \
773 if (multibytep) \
774 { \
b25d760e 775 unsigned ch; \
e19c3639
KH
776 \
777 ch = (c1); \
778 if (ch >= 0x80) \
779 ch = BYTE8_TO_CHAR (ch); \
780 CHAR_STRING_ADVANCE (ch, dst); \
781 ch = (c2); \
782 if (ch >= 0x80) \
783 ch = BYTE8_TO_CHAR (ch); \
784 CHAR_STRING_ADVANCE (ch, dst); \
785 } \
786 else \
787 { \
788 *dst++ = (c1); \
789 *dst++ = (c2); \
790 } \
aa72b389
KH
791 } while (0)
792
793
df7492f9
KH
794#define EMIT_THREE_BYTES(c1, c2, c3) \
795 do { \
796 EMIT_ONE_BYTE (c1); \
797 EMIT_TWO_BYTES (c2, c3); \
798 } while (0)
aa72b389 799
aa72b389 800
df7492f9
KH
801#define EMIT_FOUR_BYTES(c1, c2, c3, c4) \
802 do { \
803 EMIT_TWO_BYTES (c1, c2); \
804 EMIT_TWO_BYTES (c3, c4); \
805 } while (0)
aa72b389 806
aa72b389 807
065e3595
KH
808static void
809record_conversion_result (struct coding_system *coding,
810 enum coding_result_code result)
811{
812 coding->result = result;
813 switch (result)
814 {
815 case CODING_RESULT_INSUFFICIENT_SRC:
816 Vlast_code_conversion_error = Qinsufficient_source;
817 break;
818 case CODING_RESULT_INCONSISTENT_EOL:
819 Vlast_code_conversion_error = Qinconsistent_eol;
820 break;
821 case CODING_RESULT_INVALID_SRC:
822 Vlast_code_conversion_error = Qinvalid_source;
823 break;
824 case CODING_RESULT_INTERRUPT:
825 Vlast_code_conversion_error = Qinterrupted;
826 break;
827 case CODING_RESULT_INSUFFICIENT_MEM:
828 Vlast_code_conversion_error = Qinsufficient_memory;
829 break;
ebaf11b6
KH
830 case CODING_RESULT_INSUFFICIENT_DST:
831 /* Don't record this error in Vlast_code_conversion_error
832 because it happens just temporarily and is resolved when the
833 whole conversion is finished. */
834 break;
409ea3a1
AS
835 case CODING_RESULT_SUCCESS:
836 break;
35befdaa
KH
837 default:
838 Vlast_code_conversion_error = intern ("Unknown error");
065e3595
KH
839 }
840}
841
5eb05ea3
KH
842/* These wrapper macros are used to preserve validity of pointers into
843 buffer text across calls to decode_char, encode_char, etc, which
844 could cause relocation of buffers if it loads a charset map,
845 because loading a charset map allocates large structures. */
846
df7492f9
KH
847#define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \
848 do { \
8f50130c 849 ptrdiff_t offset; \
5eb05ea3 850 \
df7492f9
KH
851 charset_map_loaded = 0; \
852 c = DECODE_CHAR (charset, code); \
5eb05ea3 853 if (charset_map_loaded \
c1892f11 854 && (offset = coding_change_source (coding))) \
df7492f9 855 { \
df7492f9
KH
856 src += offset; \
857 src_base += offset; \
858 src_end += offset; \
859 } \
aa72b389
KH
860 } while (0)
861
5eb05ea3
KH
862#define CODING_ENCODE_CHAR(coding, dst, dst_end, charset, c, code) \
863 do { \
8f50130c 864 ptrdiff_t offset; \
5eb05ea3
KH
865 \
866 charset_map_loaded = 0; \
867 code = ENCODE_CHAR (charset, c); \
868 if (charset_map_loaded \
c1892f11 869 && (offset = coding_change_destination (coding))) \
5eb05ea3
KH
870 { \
871 dst += offset; \
872 dst_end += offset; \
873 } \
874 } while (0)
875
876#define CODING_CHAR_CHARSET(coding, dst, dst_end, c, charset_list, code_return, charset) \
877 do { \
8f50130c 878 ptrdiff_t offset; \
5eb05ea3
KH
879 \
880 charset_map_loaded = 0; \
881 charset = char_charset (c, charset_list, code_return); \
882 if (charset_map_loaded \
c1892f11 883 && (offset = coding_change_destination (coding))) \
5eb05ea3
KH
884 { \
885 dst += offset; \
886 dst_end += offset; \
887 } \
888 } while (0)
889
890#define CODING_CHAR_CHARSET_P(coding, dst, dst_end, c, charset, result) \
891 do { \
8f50130c 892 ptrdiff_t offset; \
5eb05ea3
KH
893 \
894 charset_map_loaded = 0; \
895 result = CHAR_CHARSET_P (c, charset); \
896 if (charset_map_loaded \
c1892f11 897 && (offset = coding_change_destination (coding))) \
5eb05ea3
KH
898 { \
899 dst += offset; \
900 dst_end += offset; \
901 } \
902 } while (0)
903
aa72b389 904
119852e7
KH
905/* If there are at least BYTES length of room at dst, allocate memory
906 for coding->destination and update dst and dst_end. We don't have
907 to take care of coding->source which will be relocated. It is
908 handled by calling coding_set_source in encode_coding. */
909
df7492f9
KH
910#define ASSURE_DESTINATION(bytes) \
911 do { \
912 if (dst + (bytes) >= dst_end) \
913 { \
d311d28c 914 ptrdiff_t more_bytes = charbuf_end - charbuf + (bytes); \
df7492f9
KH
915 \
916 dst = alloc_destination (coding, more_bytes, dst); \
917 dst_end = coding->destination + coding->dst_bytes; \
918 } \
919 } while (0)
aa72b389 920
aa72b389 921
db274c7a
KH
922/* Store multibyte form of the character C in P, and advance P to the
923 end of the multibyte form. This is like CHAR_STRING_ADVANCE but it
924 never calls MAYBE_UNIFY_CHAR. */
925
926#define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) \
927 do { \
928 if ((c) <= MAX_1_BYTE_CHAR) \
929 *(p)++ = (c); \
930 else if ((c) <= MAX_2_BYTE_CHAR) \
931 *(p)++ = (0xC0 | ((c) >> 6)), \
932 *(p)++ = (0x80 | ((c) & 0x3F)); \
933 else if ((c) <= MAX_3_BYTE_CHAR) \
934 *(p)++ = (0xE0 | ((c) >> 12)), \
935 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \
936 *(p)++ = (0x80 | ((c) & 0x3F)); \
937 else if ((c) <= MAX_4_BYTE_CHAR) \
938 *(p)++ = (0xF0 | (c >> 18)), \
939 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \
940 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \
941 *(p)++ = (0x80 | (c & 0x3F)); \
942 else if ((c) <= MAX_5_BYTE_CHAR) \
943 *(p)++ = 0xF8, \
944 *(p)++ = (0x80 | ((c >> 18) & 0x0F)), \
945 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \
946 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \
947 *(p)++ = (0x80 | (c & 0x3F)); \
948 else \
949 (p) += BYTE8_STRING ((c) - 0x3FFF80, p); \
950 } while (0)
951
952
953/* Return the character code of character whose multibyte form is at
954 P, and advance P to the end of the multibyte form. This is like
955 STRING_CHAR_ADVANCE, but it never calls MAYBE_UNIFY_CHAR. */
956
957#define STRING_CHAR_ADVANCE_NO_UNIFY(p) \
958 (!((p)[0] & 0x80) \
959 ? *(p)++ \
960 : ! ((p)[0] & 0x20) \
961 ? ((p) += 2, \
962 ((((p)[-2] & 0x1F) << 6) \
963 | ((p)[-1] & 0x3F) \
964 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \
965 : ! ((p)[0] & 0x10) \
966 ? ((p) += 3, \
967 ((((p)[-3] & 0x0F) << 12) \
968 | (((p)[-2] & 0x3F) << 6) \
969 | ((p)[-1] & 0x3F))) \
970 : ! ((p)[0] & 0x08) \
971 ? ((p) += 4, \
972 ((((p)[-4] & 0xF) << 18) \
973 | (((p)[-3] & 0x3F) << 12) \
974 | (((p)[-2] & 0x3F) << 6) \
975 | ((p)[-1] & 0x3F))) \
976 : ((p) += 5, \
977 ((((p)[-4] & 0x3F) << 18) \
978 | (((p)[-3] & 0x3F) << 12) \
979 | (((p)[-2] & 0x3F) << 6) \
980 | ((p)[-1] & 0x3F))))
981
aa72b389 982
c1892f11 983/* Set coding->source from coding->src_object. */
5eb05ea3 984
c1892f11 985static void
971de7fb 986coding_set_source (struct coding_system *coding)
aa72b389 987{
df7492f9
KH
988 if (BUFFERP (coding->src_object))
989 {
2cb26057 990 struct buffer *buf = XBUFFER (coding->src_object);
aa72b389 991
df7492f9 992 if (coding->src_pos < 0)
2cb26057 993 coding->source = BUF_GAP_END_ADDR (buf) + coding->src_pos_byte;
df7492f9 994 else
2cb26057 995 coding->source = BUF_BYTE_ADDRESS (buf, coding->src_pos_byte);
aa72b389 996 }
df7492f9 997 else if (STRINGP (coding->src_object))
aa72b389 998 {
8f924df7 999 coding->source = SDATA (coding->src_object) + coding->src_pos_byte;
aa72b389 1000 }
df7492f9 1001 else
f38b440c
PE
1002 {
1003 /* Otherwise, the source is C string and is never relocated
1004 automatically. Thus we don't have to update anything. */
1005 }
df7492f9 1006}
aa72b389 1007
5eb05ea3 1008
c1892f11
PE
1009/* Set coding->source from coding->src_object, and return how many
1010 bytes coding->source was changed. */
5eb05ea3 1011
8f50130c 1012static ptrdiff_t
c1892f11 1013coding_change_source (struct coding_system *coding)
df7492f9 1014{
c1892f11
PE
1015 const unsigned char *orig = coding->source;
1016 coding_set_source (coding);
1017 return coding->source - orig;
1018}
1019
5eb05ea3 1020
c1892f11
PE
1021/* Set coding->destination from coding->dst_object. */
1022
1023static void
1024coding_set_destination (struct coding_system *coding)
1025{
df7492f9 1026 if (BUFFERP (coding->dst_object))
aa72b389 1027 {
a0241d01 1028 if (BUFFERP (coding->src_object) && coding->src_pos < 0)
aa72b389 1029 {
13818c30 1030 coding->destination = BEG_ADDR + coding->dst_pos_byte - BEG_BYTE;
28f67a95
KH
1031 coding->dst_bytes = (GAP_END_ADDR
1032 - (coding->src_bytes - coding->consumed)
1033 - coding->destination);
aa72b389 1034 }
df7492f9 1035 else
28f67a95
KH
1036 {
1037 /* We are sure that coding->dst_pos_byte is before the gap
1038 of the buffer. */
1039 coding->destination = (BUF_BEG_ADDR (XBUFFER (coding->dst_object))
13818c30 1040 + coding->dst_pos_byte - BEG_BYTE);
28f67a95
KH
1041 coding->dst_bytes = (BUF_GAP_END_ADDR (XBUFFER (coding->dst_object))
1042 - coding->destination);
1043 }
df7492f9
KH
1044 }
1045 else
f38b440c
PE
1046 {
1047 /* Otherwise, the destination is C string and is never relocated
1048 automatically. Thus we don't have to update anything. */
1049 }
c1892f11
PE
1050}
1051
1052
1053/* Set coding->destination from coding->dst_object, and return how
1054 many bytes coding->destination was changed. */
1055
1056static ptrdiff_t
1057coding_change_destination (struct coding_system *coding)
1058{
1059 const unsigned char *orig = coding->destination;
1060 coding_set_destination (coding);
5eb05ea3 1061 return coding->destination - orig;
df7492f9
KH
1062}
1063
1064
1065static void
d311d28c 1066coding_alloc_by_realloc (struct coding_system *coding, ptrdiff_t bytes)
df7492f9 1067{
c9d624c6 1068 if (STRING_BYTES_BOUND - coding->dst_bytes < bytes)
d1f3d2af 1069 string_overflow ();
38182d90
PE
1070 coding->destination = xrealloc (coding->destination,
1071 coding->dst_bytes + bytes);
df7492f9
KH
1072 coding->dst_bytes += bytes;
1073}
1074
1075static void
cf84bb53 1076coding_alloc_by_making_gap (struct coding_system *coding,
d311d28c 1077 ptrdiff_t gap_head_used, ptrdiff_t bytes)
df7492f9 1078{
db274c7a 1079 if (EQ (coding->src_object, coding->dst_object))
df7492f9 1080 {
db274c7a
KH
1081 /* The gap may contain the produced data at the head and not-yet
1082 consumed data at the tail. To preserve those data, we at
1083 first make the gap size to zero, then increase the gap
1084 size. */
d311d28c 1085 ptrdiff_t add = GAP_SIZE;
db274c7a
KH
1086
1087 GPT += gap_head_used, GPT_BYTE += gap_head_used;
1088 GAP_SIZE = 0; ZV += add; Z += add; ZV_BYTE += add; Z_BYTE += add;
df7492f9
KH
1089 make_gap (bytes);
1090 GAP_SIZE += add; ZV -= add; Z -= add; ZV_BYTE -= add; Z_BYTE -= add;
db274c7a 1091 GPT -= gap_head_used, GPT_BYTE -= gap_head_used;
df7492f9 1092 }
730fff51 1093 else
df7492f9 1094 {
2c78b7e1
KH
1095 Lisp_Object this_buffer;
1096
1097 this_buffer = Fcurrent_buffer ();
df7492f9
KH
1098 set_buffer_internal (XBUFFER (coding->dst_object));
1099 make_gap (bytes);
1100 set_buffer_internal (XBUFFER (this_buffer));
aa72b389 1101 }
df7492f9 1102}
8f924df7 1103
df7492f9
KH
1104
1105static unsigned char *
d311d28c 1106alloc_destination (struct coding_system *coding, ptrdiff_t nbytes,
cf84bb53 1107 unsigned char *dst)
df7492f9 1108{
d311d28c 1109 ptrdiff_t offset = dst - coding->destination;
df7492f9
KH
1110
1111 if (BUFFERP (coding->dst_object))
db274c7a
KH
1112 {
1113 struct buffer *buf = XBUFFER (coding->dst_object);
1114
1115 coding_alloc_by_making_gap (coding, dst - BUF_GPT_ADDR (buf), nbytes);
1116 }
aa72b389 1117 else
df7492f9 1118 coding_alloc_by_realloc (coding, nbytes);
df7492f9
KH
1119 coding_set_destination (coding);
1120 dst = coding->destination + offset;
1121 return dst;
1122}
aa72b389 1123
ff0dacd7
KH
1124/** Macros for annotations. */
1125
ff0dacd7
KH
1126/* An annotation data is stored in the array coding->charbuf in this
1127 format:
69a80ea3 1128 [ -LENGTH ANNOTATION_MASK NCHARS ... ]
ff0dacd7
KH
1129 LENGTH is the number of elements in the annotation.
1130 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK.
69a80ea3 1131 NCHARS is the number of characters in the text annotated.
ff0dacd7
KH
1132
1133 The format of the following elements depend on ANNOTATION_MASK.
1134
1135 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements
1136 follows:
e951386e
KH
1137 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ]
1138
1139 NBYTES is the number of bytes specified in the header part of
1140 old-style emacs-mule encoding, or 0 for the other kind of
1141 composition.
1142
ff0dacd7 1143 METHOD is one of enum composition_method.
e951386e 1144
ad1746f5 1145 Optional COMPOSITION-COMPONENTS are characters and composition
ff0dacd7
KH
1146 rules.
1147
1148 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID
e951386e
KH
1149 follows.
1150
1151 If ANNOTATION_MASK is 0, this annotation is just a space holder to
1152 recover from an invalid annotation, and should be skipped by
1153 produce_annotation. */
1154
1155/* Maximum length of the header of annotation data. */
1156#define MAX_ANNOTATION_LENGTH 5
ff0dacd7 1157
69a80ea3 1158#define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \
ff0dacd7
KH
1159 do { \
1160 *(buf)++ = -(len); \
1161 *(buf)++ = (mask); \
69a80ea3 1162 *(buf)++ = (nchars); \
ff0dacd7
KH
1163 coding->annotated = 1; \
1164 } while (0);
1165
e951386e 1166#define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \
69a80ea3 1167 do { \
e951386e
KH
1168 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \
1169 *buf++ = nbytes; \
69a80ea3 1170 *buf++ = method; \
ff0dacd7
KH
1171 } while (0)
1172
1173
69a80ea3
KH
1174#define ADD_CHARSET_DATA(buf, nchars, id) \
1175 do { \
1176 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \
1177 *buf++ = id; \
ff0dacd7
KH
1178 } while (0)
1179
df7492f9
KH
1180\f
1181/*** 2. Emacs' internal format (emacs-utf-8) ***/
1182
1183
1184
1185\f
1186/*** 3. UTF-8 ***/
1187
1188/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f 1189 Return true if a text is encoded in UTF-8. */
df7492f9
KH
1190
1191#define UTF_8_1_OCTET_P(c) ((c) < 0x80)
1192#define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
1193#define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
1194#define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
1195#define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
1196#define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
1197
a470d443
KH
1198#define UTF_8_BOM_1 0xEF
1199#define UTF_8_BOM_2 0xBB
1200#define UTF_8_BOM_3 0xBF
1201
f10fe38f 1202static bool
cf84bb53
JB
1203detect_coding_utf_8 (struct coding_system *coding,
1204 struct coding_detection_info *detect_info)
df7492f9 1205{
065e3595 1206 const unsigned char *src = coding->source, *src_base;
8f924df7 1207 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 1208 bool multibytep = coding->src_multibyte;
d311d28c 1209 ptrdiff_t consumed_chars = 0;
f10fe38f
PE
1210 bool bom_found = 0;
1211 bool found = 0;
df7492f9 1212
ff0dacd7 1213 detect_info->checked |= CATEGORY_MASK_UTF_8;
df7492f9
KH
1214 /* A coding system of this category is always ASCII compatible. */
1215 src += coding->head_ascii;
1216
1217 while (1)
aa72b389 1218 {
df7492f9 1219 int c, c1, c2, c3, c4;
aa72b389 1220
065e3595 1221 src_base = src;
df7492f9 1222 ONE_MORE_BYTE (c);
065e3595 1223 if (c < 0 || UTF_8_1_OCTET_P (c))
df7492f9
KH
1224 continue;
1225 ONE_MORE_BYTE (c1);
065e3595 1226 if (c1 < 0 || ! UTF_8_EXTRA_OCTET_P (c1))
df7492f9
KH
1227 break;
1228 if (UTF_8_2_OCTET_LEADING_P (c))
aa72b389 1229 {
a470d443 1230 found = 1;
df7492f9 1231 continue;
aa72b389 1232 }
df7492f9 1233 ONE_MORE_BYTE (c2);
065e3595 1234 if (c2 < 0 || ! UTF_8_EXTRA_OCTET_P (c2))
df7492f9
KH
1235 break;
1236 if (UTF_8_3_OCTET_LEADING_P (c))
aa72b389 1237 {
a470d443
KH
1238 found = 1;
1239 if (src_base == coding->source
1240 && c == UTF_8_BOM_1 && c1 == UTF_8_BOM_2 && c2 == UTF_8_BOM_3)
1241 bom_found = 1;
df7492f9 1242 continue;
aa72b389 1243 }
df7492f9 1244 ONE_MORE_BYTE (c3);
065e3595 1245 if (c3 < 0 || ! UTF_8_EXTRA_OCTET_P (c3))
df7492f9
KH
1246 break;
1247 if (UTF_8_4_OCTET_LEADING_P (c))
aa72b389 1248 {
a470d443 1249 found = 1;
df7492f9
KH
1250 continue;
1251 }
1252 ONE_MORE_BYTE (c4);
065e3595 1253 if (c4 < 0 || ! UTF_8_EXTRA_OCTET_P (c4))
df7492f9
KH
1254 break;
1255 if (UTF_8_5_OCTET_LEADING_P (c))
1256 {
a470d443 1257 found = 1;
df7492f9
KH
1258 continue;
1259 }
1260 break;
aa72b389 1261 }
ff0dacd7 1262 detect_info->rejected |= CATEGORY_MASK_UTF_8;
df7492f9 1263 return 0;
aa72b389 1264
df7492f9 1265 no_more_source:
065e3595 1266 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK)
aa72b389 1267 {
ff0dacd7 1268 detect_info->rejected |= CATEGORY_MASK_UTF_8;
89528eb3 1269 return 0;
aa72b389 1270 }
a470d443
KH
1271 if (bom_found)
1272 {
1273 /* The first character 0xFFFE doesn't necessarily mean a BOM. */
1274 detect_info->found |= CATEGORY_MASK_UTF_8_SIG | CATEGORY_MASK_UTF_8_NOSIG;
1275 }
1276 else
1277 {
1278 detect_info->rejected |= CATEGORY_MASK_UTF_8_SIG;
0e17387a
KH
1279 if (found)
1280 detect_info->found |= CATEGORY_MASK_UTF_8_NOSIG;
a470d443 1281 }
ff0dacd7 1282 return 1;
aa72b389
KH
1283}
1284
4ed46869 1285
b73bfc1c 1286static void
971de7fb 1287decode_coding_utf_8 (struct coding_system *coding)
b73bfc1c 1288{
8f924df7
KH
1289 const unsigned char *src = coding->source + coding->consumed;
1290 const unsigned char *src_end = coding->source + coding->src_bytes;
1291 const unsigned char *src_base;
69a80ea3
KH
1292 int *charbuf = coding->charbuf + coding->charbuf_used;
1293 int *charbuf_end = coding->charbuf + coding->charbuf_size;
d311d28c 1294 ptrdiff_t consumed_chars = 0, consumed_chars_base = 0;
f10fe38f 1295 bool multibytep = coding->src_multibyte;
a470d443 1296 enum utf_bom_type bom = CODING_UTF_8_BOM (coding);
f10fe38f
PE
1297 bool eol_dos
1298 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 1299 int byte_after_cr = -1;
4ed46869 1300
a470d443
KH
1301 if (bom != utf_without_bom)
1302 {
1303 int c1, c2, c3;
1304
1305 src_base = src;
1306 ONE_MORE_BYTE (c1);
1307 if (! UTF_8_3_OCTET_LEADING_P (c1))
1308 src = src_base;
1309 else
1310 {
159bd5a2 1311 ONE_MORE_BYTE (c2);
a470d443
KH
1312 if (! UTF_8_EXTRA_OCTET_P (c2))
1313 src = src_base;
1314 else
1315 {
159bd5a2 1316 ONE_MORE_BYTE (c3);
a470d443
KH
1317 if (! UTF_8_EXTRA_OCTET_P (c3))
1318 src = src_base;
1319 else
1320 {
1321 if ((c1 != UTF_8_BOM_1)
1322 || (c2 != UTF_8_BOM_2) || (c3 != UTF_8_BOM_3))
1323 src = src_base;
1324 else
1325 CODING_UTF_8_BOM (coding) = utf_without_bom;
1326 }
1327 }
1328 }
1329 }
1330 CODING_UTF_8_BOM (coding) = utf_without_bom;
1331
df7492f9 1332 while (1)
b73bfc1c 1333 {
df7492f9 1334 int c, c1, c2, c3, c4, c5;
ec6d2bb8 1335
df7492f9
KH
1336 src_base = src;
1337 consumed_chars_base = consumed_chars;
4af310db 1338
df7492f9 1339 if (charbuf >= charbuf_end)
b71f6f73
KH
1340 {
1341 if (byte_after_cr >= 0)
1342 src_base--;
1343 break;
1344 }
df7492f9 1345
119852e7
KH
1346 if (byte_after_cr >= 0)
1347 c1 = byte_after_cr, byte_after_cr = -1;
1348 else
1349 ONE_MORE_BYTE (c1);
065e3595
KH
1350 if (c1 < 0)
1351 {
1352 c = - c1;
1353 }
1a4990fb 1354 else if (UTF_8_1_OCTET_P (c1))
df7492f9 1355 {
2735d060 1356 if (eol_dos && c1 == '\r')
119852e7 1357 ONE_MORE_BYTE (byte_after_cr);
df7492f9 1358 c = c1;
4af310db 1359 }
df7492f9 1360 else
4af310db 1361 {
df7492f9 1362 ONE_MORE_BYTE (c2);
065e3595 1363 if (c2 < 0 || ! UTF_8_EXTRA_OCTET_P (c2))
df7492f9
KH
1364 goto invalid_code;
1365 if (UTF_8_2_OCTET_LEADING_P (c1))
4af310db 1366 {
b0edb2c5
DL
1367 c = ((c1 & 0x1F) << 6) | (c2 & 0x3F);
1368 /* Reject overlong sequences here and below. Encoders
1369 producing them are incorrect, they can be misleading,
1370 and they mess up read/write invariance. */
1371 if (c < 128)
1372 goto invalid_code;
4af310db 1373 }
df7492f9 1374 else
aa72b389 1375 {
df7492f9 1376 ONE_MORE_BYTE (c3);
065e3595 1377 if (c3 < 0 || ! UTF_8_EXTRA_OCTET_P (c3))
df7492f9
KH
1378 goto invalid_code;
1379 if (UTF_8_3_OCTET_LEADING_P (c1))
b0edb2c5
DL
1380 {
1381 c = (((c1 & 0xF) << 12)
1382 | ((c2 & 0x3F) << 6) | (c3 & 0x3F));
72fe1301
DL
1383 if (c < 0x800
1384 || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */
b0edb2c5
DL
1385 goto invalid_code;
1386 }
df7492f9
KH
1387 else
1388 {
1389 ONE_MORE_BYTE (c4);
065e3595 1390 if (c4 < 0 || ! UTF_8_EXTRA_OCTET_P (c4))
df7492f9
KH
1391 goto invalid_code;
1392 if (UTF_8_4_OCTET_LEADING_P (c1))
b0edb2c5 1393 {
df7492f9
KH
1394 c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12)
1395 | ((c3 & 0x3F) << 6) | (c4 & 0x3F));
b0edb2c5
DL
1396 if (c < 0x10000)
1397 goto invalid_code;
1398 }
df7492f9
KH
1399 else
1400 {
1401 ONE_MORE_BYTE (c5);
065e3595 1402 if (c5 < 0 || ! UTF_8_EXTRA_OCTET_P (c5))
df7492f9
KH
1403 goto invalid_code;
1404 if (UTF_8_5_OCTET_LEADING_P (c1))
1405 {
1406 c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18)
1407 | ((c3 & 0x3F) << 12) | ((c4 & 0x3F) << 6)
1408 | (c5 & 0x3F));
b0edb2c5 1409 if ((c > MAX_CHAR) || (c < 0x200000))
df7492f9
KH
1410 goto invalid_code;
1411 }
1412 else
1413 goto invalid_code;
1414 }
1415 }
aa72b389 1416 }
b73bfc1c 1417 }
df7492f9
KH
1418
1419 *charbuf++ = c;
1420 continue;
1421
1422 invalid_code:
1423 src = src_base;
1424 consumed_chars = consumed_chars_base;
1425 ONE_MORE_BYTE (c);
1426 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c);
1427 coding->errors++;
aa72b389
KH
1428 }
1429
df7492f9
KH
1430 no_more_source:
1431 coding->consumed_char += consumed_chars_base;
1432 coding->consumed = src_base - coding->source;
1433 coding->charbuf_used = charbuf - coding->charbuf;
1434}
1435
1436
f10fe38f 1437static bool
971de7fb 1438encode_coding_utf_8 (struct coding_system *coding)
df7492f9 1439{
f10fe38f 1440 bool multibytep = coding->dst_multibyte;
df7492f9
KH
1441 int *charbuf = coding->charbuf;
1442 int *charbuf_end = charbuf + coding->charbuf_used;
1443 unsigned char *dst = coding->destination + coding->produced;
1444 unsigned char *dst_end = coding->destination + coding->dst_bytes;
d311d28c 1445 ptrdiff_t produced_chars = 0;
df7492f9
KH
1446 int c;
1447
a470d443
KH
1448 if (CODING_UTF_8_BOM (coding) == utf_with_bom)
1449 {
1450 ASSURE_DESTINATION (3);
1451 EMIT_THREE_BYTES (UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3);
1452 CODING_UTF_8_BOM (coding) = utf_without_bom;
1453 }
1454
df7492f9 1455 if (multibytep)
aa72b389 1456 {
df7492f9
KH
1457 int safe_room = MAX_MULTIBYTE_LENGTH * 2;
1458
1459 while (charbuf < charbuf_end)
b73bfc1c 1460 {
df7492f9 1461 unsigned char str[MAX_MULTIBYTE_LENGTH], *p, *pend = str;
8f924df7 1462
df7492f9
KH
1463 ASSURE_DESTINATION (safe_room);
1464 c = *charbuf++;
28f67a95
KH
1465 if (CHAR_BYTE8_P (c))
1466 {
1467 c = CHAR_TO_BYTE8 (c);
1468 EMIT_ONE_BYTE (c);
1469 }
1470 else
1471 {
db274c7a 1472 CHAR_STRING_ADVANCE_NO_UNIFY (c, pend);
28f67a95
KH
1473 for (p = str; p < pend; p++)
1474 EMIT_ONE_BYTE (*p);
1475 }
b73bfc1c 1476 }
aa72b389 1477 }
df7492f9
KH
1478 else
1479 {
1480 int safe_room = MAX_MULTIBYTE_LENGTH;
1481
1482 while (charbuf < charbuf_end)
b73bfc1c 1483 {
df7492f9
KH
1484 ASSURE_DESTINATION (safe_room);
1485 c = *charbuf++;
f03caae0
KH
1486 if (CHAR_BYTE8_P (c))
1487 *dst++ = CHAR_TO_BYTE8 (c);
1488 else
db274c7a 1489 CHAR_STRING_ADVANCE_NO_UNIFY (c, dst);
df7492f9 1490 produced_chars++;
4ed46869
KH
1491 }
1492 }
065e3595 1493 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
1494 coding->produced_char += produced_chars;
1495 coding->produced = dst - coding->destination;
1496 return 0;
4ed46869
KH
1497}
1498
b73bfc1c 1499
df7492f9 1500/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f 1501 Return true if a text is encoded in one of UTF-16 based coding systems. */
aa72b389 1502
df7492f9
KH
1503#define UTF_16_HIGH_SURROGATE_P(val) \
1504 (((val) & 0xFC00) == 0xD800)
1505
1506#define UTF_16_LOW_SURROGATE_P(val) \
1507 (((val) & 0xFC00) == 0xDC00)
93dec019 1508
aa72b389 1509
f10fe38f 1510static bool
cf84bb53
JB
1511detect_coding_utf_16 (struct coding_system *coding,
1512 struct coding_detection_info *detect_info)
aa72b389 1513{
ef1b0ba7 1514 const unsigned char *src = coding->source;
8f924df7 1515 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 1516 bool multibytep = coding->src_multibyte;
df7492f9 1517 int c1, c2;
aa72b389 1518
ff0dacd7 1519 detect_info->checked |= CATEGORY_MASK_UTF_16;
ff0dacd7 1520 if (coding->mode & CODING_MODE_LAST_BLOCK
24a73b0a 1521 && (coding->src_chars & 1))
ff0dacd7
KH
1522 {
1523 detect_info->rejected |= CATEGORY_MASK_UTF_16;
1524 return 0;
1525 }
24a73b0a 1526
f56a4450 1527 TWO_MORE_BYTES (c1, c2);
df7492f9 1528 if ((c1 == 0xFF) && (c2 == 0xFE))
aa72b389 1529 {
b49a1807
KH
1530 detect_info->found |= (CATEGORY_MASK_UTF_16_LE
1531 | CATEGORY_MASK_UTF_16_AUTO);
24a73b0a
KH
1532 detect_info->rejected |= (CATEGORY_MASK_UTF_16_BE
1533 | CATEGORY_MASK_UTF_16_BE_NOSIG
1534 | CATEGORY_MASK_UTF_16_LE_NOSIG);
aa72b389 1535 }
df7492f9 1536 else if ((c1 == 0xFE) && (c2 == 0xFF))
ff0dacd7 1537 {
b49a1807
KH
1538 detect_info->found |= (CATEGORY_MASK_UTF_16_BE
1539 | CATEGORY_MASK_UTF_16_AUTO);
24a73b0a
KH
1540 detect_info->rejected |= (CATEGORY_MASK_UTF_16_LE
1541 | CATEGORY_MASK_UTF_16_BE_NOSIG
1542 | CATEGORY_MASK_UTF_16_LE_NOSIG);
1543 }
220eeac9 1544 else if (c2 < 0)
f56a4450
KH
1545 {
1546 detect_info->rejected |= CATEGORY_MASK_UTF_16;
1547 return 0;
1548 }
2f3cbb32 1549 else
24a73b0a 1550 {
2f3cbb32
KH
1551 /* We check the dispersion of Eth and Oth bytes where E is even and
1552 O is odd. If both are high, we assume binary data.*/
1553 unsigned char e[256], o[256];
1554 unsigned e_num = 1, o_num = 1;
1555
1556 memset (e, 0, 256);
1557 memset (o, 0, 256);
1558 e[c1] = 1;
1559 o[c2] = 1;
1560
cc13543e
KH
1561 detect_info->rejected |= (CATEGORY_MASK_UTF_16_AUTO
1562 |CATEGORY_MASK_UTF_16_BE
1563 | CATEGORY_MASK_UTF_16_LE);
2f3cbb32 1564
7f1faf1c
KH
1565 while ((detect_info->rejected & CATEGORY_MASK_UTF_16)
1566 != CATEGORY_MASK_UTF_16)
2f3cbb32 1567 {
f56a4450 1568 TWO_MORE_BYTES (c1, c2);
220eeac9 1569 if (c2 < 0)
f56a4450 1570 break;
2f3cbb32
KH
1571 if (! e[c1])
1572 {
1573 e[c1] = 1;
1574 e_num++;
cc13543e
KH
1575 if (e_num >= 128)
1576 detect_info->rejected |= CATEGORY_MASK_UTF_16_BE_NOSIG;
2f3cbb32
KH
1577 }
1578 if (! o[c2])
1579 {
977b85f4 1580 o[c2] = 1;
2f3cbb32 1581 o_num++;
cc13543e
KH
1582 if (o_num >= 128)
1583 detect_info->rejected |= CATEGORY_MASK_UTF_16_LE_NOSIG;
2f3cbb32
KH
1584 }
1585 }
2f3cbb32 1586 return 0;
ff0dacd7 1587 }
2f3cbb32 1588
df7492f9 1589 no_more_source:
ff0dacd7 1590 return 1;
df7492f9 1591}
aa72b389 1592
df7492f9 1593static void
971de7fb 1594decode_coding_utf_16 (struct coding_system *coding)
df7492f9 1595{
8f924df7
KH
1596 const unsigned char *src = coding->source + coding->consumed;
1597 const unsigned char *src_end = coding->source + coding->src_bytes;
1598 const unsigned char *src_base;
69a80ea3 1599 int *charbuf = coding->charbuf + coding->charbuf_used;
df80c7f0
KH
1600 /* We may produces at most 3 chars in one loop. */
1601 int *charbuf_end = coding->charbuf + coding->charbuf_size - 2;
d311d28c 1602 ptrdiff_t consumed_chars = 0, consumed_chars_base = 0;
f10fe38f 1603 bool multibytep = coding->src_multibyte;
a470d443 1604 enum utf_bom_type bom = CODING_UTF_16_BOM (coding);
df7492f9
KH
1605 enum utf_16_endian_type endian = CODING_UTF_16_ENDIAN (coding);
1606 int surrogate = CODING_UTF_16_SURROGATE (coding);
f10fe38f
PE
1607 bool eol_dos
1608 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 1609 int byte_after_cr1 = -1, byte_after_cr2 = -1;
df7492f9 1610
a470d443 1611 if (bom == utf_with_bom)
aa72b389 1612 {
df7492f9 1613 int c, c1, c2;
4af310db 1614
aa72b389 1615 src_base = src;
df7492f9
KH
1616 ONE_MORE_BYTE (c1);
1617 ONE_MORE_BYTE (c2);
e19c3639 1618 c = (c1 << 8) | c2;
aa72b389 1619
b49a1807
KH
1620 if (endian == utf_16_big_endian
1621 ? c != 0xFEFF : c != 0xFFFE)
aa72b389 1622 {
b49a1807
KH
1623 /* The first two bytes are not BOM. Treat them as bytes
1624 for a normal character. */
1625 src = src_base;
1626 coding->errors++;
aa72b389 1627 }
a470d443 1628 CODING_UTF_16_BOM (coding) = utf_without_bom;
b49a1807 1629 }
a470d443 1630 else if (bom == utf_detect_bom)
b49a1807
KH
1631 {
1632 /* We have already tried to detect BOM and failed in
1633 detect_coding. */
a470d443 1634 CODING_UTF_16_BOM (coding) = utf_without_bom;
df7492f9 1635 }
aa72b389 1636
df7492f9
KH
1637 while (1)
1638 {
1639 int c, c1, c2;
1640
1641 src_base = src;
1642 consumed_chars_base = consumed_chars;
1643
df80c7f0 1644 if (charbuf >= charbuf_end)
b71f6f73
KH
1645 {
1646 if (byte_after_cr1 >= 0)
1647 src_base -= 2;
1648 break;
1649 }
df7492f9 1650
119852e7
KH
1651 if (byte_after_cr1 >= 0)
1652 c1 = byte_after_cr1, byte_after_cr1 = -1;
1653 else
1654 ONE_MORE_BYTE (c1);
065e3595
KH
1655 if (c1 < 0)
1656 {
1657 *charbuf++ = -c1;
1658 continue;
1659 }
119852e7
KH
1660 if (byte_after_cr2 >= 0)
1661 c2 = byte_after_cr2, byte_after_cr2 = -1;
1662 else
1663 ONE_MORE_BYTE (c2);
065e3595
KH
1664 if (c2 < 0)
1665 {
1666 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1);
1667 *charbuf++ = -c2;
1668 continue;
1669 }
df7492f9 1670 c = (endian == utf_16_big_endian
e19c3639 1671 ? ((c1 << 8) | c2) : ((c2 << 8) | c1));
119852e7 1672
df7492f9 1673 if (surrogate)
fd3ae0b9 1674 {
df7492f9 1675 if (! UTF_16_LOW_SURROGATE_P (c))
fd3ae0b9 1676 {
df7492f9
KH
1677 if (endian == utf_16_big_endian)
1678 c1 = surrogate >> 8, c2 = surrogate & 0xFF;
1679 else
1680 c1 = surrogate & 0xFF, c2 = surrogate >> 8;
1681 *charbuf++ = c1;
1682 *charbuf++ = c2;
1683 coding->errors++;
1684 if (UTF_16_HIGH_SURROGATE_P (c))
1685 CODING_UTF_16_SURROGATE (coding) = surrogate = c;
fd3ae0b9 1686 else
df7492f9 1687 *charbuf++ = c;
fd3ae0b9
KH
1688 }
1689 else
df7492f9
KH
1690 {
1691 c = ((surrogate - 0xD800) << 10) | (c - 0xDC00);
1692 CODING_UTF_16_SURROGATE (coding) = surrogate = 0;
29f7ffd0 1693 *charbuf++ = 0x10000 + c;
df7492f9 1694 }
fd3ae0b9 1695 }
aa72b389 1696 else
df7492f9
KH
1697 {
1698 if (UTF_16_HIGH_SURROGATE_P (c))
1699 CODING_UTF_16_SURROGATE (coding) = surrogate = c;
1700 else
119852e7 1701 {
2735d060 1702 if (eol_dos && c == '\r')
119852e7
KH
1703 {
1704 ONE_MORE_BYTE (byte_after_cr1);
1705 ONE_MORE_BYTE (byte_after_cr2);
1706 }
1707 *charbuf++ = c;
1708 }
8f924df7 1709 }
aa72b389 1710 }
df7492f9
KH
1711
1712 no_more_source:
1713 coding->consumed_char += consumed_chars_base;
1714 coding->consumed = src_base - coding->source;
1715 coding->charbuf_used = charbuf - coding->charbuf;
aa72b389 1716}
b73bfc1c 1717
f10fe38f 1718static bool
971de7fb 1719encode_coding_utf_16 (struct coding_system *coding)
df7492f9 1720{
f10fe38f 1721 bool multibytep = coding->dst_multibyte;
df7492f9
KH
1722 int *charbuf = coding->charbuf;
1723 int *charbuf_end = charbuf + coding->charbuf_used;
1724 unsigned char *dst = coding->destination + coding->produced;
1725 unsigned char *dst_end = coding->destination + coding->dst_bytes;
1726 int safe_room = 8;
a470d443 1727 enum utf_bom_type bom = CODING_UTF_16_BOM (coding);
f10fe38f 1728 bool big_endian = CODING_UTF_16_ENDIAN (coding) == utf_16_big_endian;
d311d28c 1729 ptrdiff_t produced_chars = 0;
df7492f9 1730 int c;
4ed46869 1731
a470d443 1732 if (bom != utf_without_bom)
df7492f9
KH
1733 {
1734 ASSURE_DESTINATION (safe_room);
1735 if (big_endian)
df7492f9 1736 EMIT_TWO_BYTES (0xFE, 0xFF);
880cf180
KH
1737 else
1738 EMIT_TWO_BYTES (0xFF, 0xFE);
a470d443 1739 CODING_UTF_16_BOM (coding) = utf_without_bom;
df7492f9
KH
1740 }
1741
1742 while (charbuf < charbuf_end)
1743 {
1744 ASSURE_DESTINATION (safe_room);
1745 c = *charbuf++;
60afa08d 1746 if (c > MAX_UNICODE_CHAR)
e19c3639 1747 c = coding->default_char;
df7492f9
KH
1748
1749 if (c < 0x10000)
1750 {
1751 if (big_endian)
1752 EMIT_TWO_BYTES (c >> 8, c & 0xFF);
1753 else
1754 EMIT_TWO_BYTES (c & 0xFF, c >> 8);
1755 }
1756 else
1757 {
1758 int c1, c2;
1759
1760 c -= 0x10000;
1761 c1 = (c >> 10) + 0xD800;
1762 c2 = (c & 0x3FF) + 0xDC00;
1763 if (big_endian)
1764 EMIT_FOUR_BYTES (c1 >> 8, c1 & 0xFF, c2 >> 8, c2 & 0xFF);
1765 else
1766 EMIT_FOUR_BYTES (c1 & 0xFF, c1 >> 8, c2 & 0xFF, c2 >> 8);
1767 }
1768 }
065e3595 1769 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
1770 coding->produced = dst - coding->destination;
1771 coding->produced_char += produced_chars;
1772 return 0;
1773}
1774
1775\f
1776/*** 6. Old Emacs' internal format (emacs-mule) ***/
1777
1778/* Emacs' internal format for representation of multiple character
1779 sets is a kind of multi-byte encoding, i.e. characters are
1780 represented by variable-length sequences of one-byte codes.
1781
1782 ASCII characters and control characters (e.g. `tab', `newline') are
1783 represented by one-byte sequences which are their ASCII codes, in
1784 the range 0x00 through 0x7F.
1785
1786 8-bit characters of the range 0x80..0x9F are represented by
1787 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
1788 code + 0x20).
1789
1790 8-bit characters of the range 0xA0..0xFF are represented by
1791 one-byte sequences which are their 8-bit code.
1792
1793 The other characters are represented by a sequence of `base
1794 leading-code', optional `extended leading-code', and one or two
1795 `position-code's. The length of the sequence is determined by the
1796 base leading-code. Leading-code takes the range 0x81 through 0x9D,
1797 whereas extended leading-code and position-code take the range 0xA0
1798 through 0xFF. See `charset.h' for more details about leading-code
1799 and position-code.
1800
1801 --- CODE RANGE of Emacs' internal format ---
1802 character set range
1803 ------------- -----
1804 ascii 0x00..0x7F
1805 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
1806 eight-bit-graphic 0xA0..0xBF
1807 ELSE 0x81..0x9D + [0xA0..0xFF]+
1808 ---------------------------------------------
1809
1810 As this is the internal character representation, the format is
1811 usually not used externally (i.e. in a file or in a data sent to a
1812 process). But, it is possible to have a text externally in this
1813 format (i.e. by encoding by the coding system `emacs-mule').
1814
1815 In that case, a sequence of one-byte codes has a slightly different
1816 form.
1817
1818 At first, all characters in eight-bit-control are represented by
1819 one-byte sequences which are their 8-bit code.
1820
1821 Next, character composition data are represented by the byte
1822 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
1823 where,
e951386e 1824 METHOD is 0xF2 plus one of composition method (enum
df7492f9
KH
1825 composition_method),
1826
1827 BYTES is 0xA0 plus a byte length of this composition data,
1828
e951386e 1829 CHARS is 0xA0 plus a number of characters composed by this
df7492f9
KH
1830 data,
1831
ad1746f5 1832 COMPONENTs are characters of multibyte form or composition
df7492f9
KH
1833 rules encoded by two-byte of ASCII codes.
1834
1835 In addition, for backward compatibility, the following formats are
1836 also recognized as composition data on decoding.
1837
1838 0x80 MSEQ ...
1839 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
1840
1841 Here,
1842 MSEQ is a multibyte form but in these special format:
1843 ASCII: 0xA0 ASCII_CODE+0x80,
1844 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
1845 RULE is a one byte code of the range 0xA0..0xF0 that
1846 represents a composition rule.
1847 */
1848
1849char emacs_mule_bytes[256];
1850
e951386e
KH
1851
1852/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f 1853 Return true if a text is encoded in 'emacs-mule'. */
e951386e 1854
f10fe38f 1855static bool
cf84bb53
JB
1856detect_coding_emacs_mule (struct coding_system *coding,
1857 struct coding_detection_info *detect_info)
e951386e
KH
1858{
1859 const unsigned char *src = coding->source, *src_base;
1860 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 1861 bool multibytep = coding->src_multibyte;
d311d28c 1862 ptrdiff_t consumed_chars = 0;
e951386e
KH
1863 int c;
1864 int found = 0;
1865
1866 detect_info->checked |= CATEGORY_MASK_EMACS_MULE;
1867 /* A coding system of this category is always ASCII compatible. */
1868 src += coding->head_ascii;
1869
1870 while (1)
1871 {
1872 src_base = src;
1873 ONE_MORE_BYTE (c);
1874 if (c < 0)
1875 continue;
1876 if (c == 0x80)
1877 {
1878 /* Perhaps the start of composite character. We simply skip
1879 it because analyzing it is too heavy for detecting. But,
1880 at least, we check that the composite character
1881 constitutes of more than 4 bytes. */
2735d060 1882 const unsigned char *src_start;
e951386e
KH
1883
1884 repeat:
2735d060 1885 src_start = src;
e951386e
KH
1886 do
1887 {
1888 ONE_MORE_BYTE (c);
1889 }
1890 while (c >= 0xA0);
1891
2735d060 1892 if (src - src_start <= 4)
e951386e
KH
1893 break;
1894 found = CATEGORY_MASK_EMACS_MULE;
1895 if (c == 0x80)
1896 goto repeat;
1897 }
1898
1899 if (c < 0x80)
1900 {
1901 if (c < 0x20
1902 && (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO))
1903 break;
1904 }
1905 else
1906 {
396475b7 1907 int more_bytes = emacs_mule_bytes[c] - 1;
e951386e
KH
1908
1909 while (more_bytes > 0)
1910 {
1911 ONE_MORE_BYTE (c);
1912 if (c < 0xA0)
1913 {
1914 src--; /* Unread the last byte. */
1915 break;
1916 }
1917 more_bytes--;
1918 }
1919 if (more_bytes != 0)
1920 break;
1921 found = CATEGORY_MASK_EMACS_MULE;
1922 }
1923 }
1924 detect_info->rejected |= CATEGORY_MASK_EMACS_MULE;
1925 return 0;
1926
1927 no_more_source:
1928 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK)
1929 {
1930 detect_info->rejected |= CATEGORY_MASK_EMACS_MULE;
1931 return 0;
1932 }
1933 detect_info->found |= found;
1934 return 1;
1935}
1936
1937
1938/* Parse emacs-mule multibyte sequence at SRC and return the decoded
1939 character. If CMP_STATUS indicates that we must expect MSEQ or
1940 RULE described above, decode it and return the negative value of
685ebdc8 1941 the decoded character or rule. If an invalid byte is found, return
e951386e
KH
1942 -1. If SRC is too short, return -2. */
1943
e2f1bab9 1944static int
cf84bb53
JB
1945emacs_mule_char (struct coding_system *coding, const unsigned char *src,
1946 int *nbytes, int *nchars, int *id,
1947 struct composition_status *cmp_status)
df7492f9 1948{
8f924df7
KH
1949 const unsigned char *src_end = coding->source + coding->src_bytes;
1950 const unsigned char *src_base = src;
f10fe38f 1951 bool multibytep = coding->src_multibyte;
2735d060 1952 int charset_ID;
df7492f9
KH
1953 unsigned code;
1954 int c;
1955 int consumed_chars = 0;
f10fe38f 1956 bool mseq_found = 0;
df7492f9
KH
1957
1958 ONE_MORE_BYTE (c);
065e3595 1959 if (c < 0)
df7492f9 1960 {
065e3595 1961 c = -c;
2735d060 1962 charset_ID = emacs_mule_charset[0];
065e3595
KH
1963 }
1964 else
1965 {
4d41e8b7
KH
1966 if (c >= 0xA0)
1967 {
e951386e
KH
1968 if (cmp_status->state != COMPOSING_NO
1969 && cmp_status->old_form)
4d41e8b7 1970 {
e951386e
KH
1971 if (cmp_status->state == COMPOSING_CHAR)
1972 {
1973 if (c == 0xA0)
1974 {
1975 ONE_MORE_BYTE (c);
1976 c -= 0x80;
1977 if (c < 0)
1978 goto invalid_code;
1979 }
1980 else
1981 c -= 0x20;
1982 mseq_found = 1;
1983 }
1984 else
1985 {
1986 *nbytes = src - src_base;
1987 *nchars = consumed_chars;
1988 return -c;
1989 }
4d41e8b7
KH
1990 }
1991 else
e951386e 1992 goto invalid_code;
4d41e8b7
KH
1993 }
1994
065e3595 1995 switch (emacs_mule_bytes[c])
b73bfc1c 1996 {
065e3595 1997 case 2:
2735d060 1998 if ((charset_ID = emacs_mule_charset[c]) < 0)
df7492f9
KH
1999 goto invalid_code;
2000 ONE_MORE_BYTE (c);
9ffd559c 2001 if (c < 0xA0)
065e3595 2002 goto invalid_code;
df7492f9 2003 code = c & 0x7F;
065e3595
KH
2004 break;
2005
2006 case 3:
2007 if (c == EMACS_MULE_LEADING_CODE_PRIVATE_11
2008 || c == EMACS_MULE_LEADING_CODE_PRIVATE_12)
2009 {
2010 ONE_MORE_BYTE (c);
2735d060 2011 if (c < 0xA0 || (charset_ID = emacs_mule_charset[c]) < 0)
065e3595
KH
2012 goto invalid_code;
2013 ONE_MORE_BYTE (c);
9ffd559c 2014 if (c < 0xA0)
065e3595
KH
2015 goto invalid_code;
2016 code = c & 0x7F;
2017 }
2018 else
2019 {
2735d060 2020 if ((charset_ID = emacs_mule_charset[c]) < 0)
065e3595
KH
2021 goto invalid_code;
2022 ONE_MORE_BYTE (c);
9ffd559c 2023 if (c < 0xA0)
065e3595
KH
2024 goto invalid_code;
2025 code = (c & 0x7F) << 8;
2026 ONE_MORE_BYTE (c);
9ffd559c 2027 if (c < 0xA0)
065e3595
KH
2028 goto invalid_code;
2029 code |= c & 0x7F;
2030 }
2031 break;
2032
2033 case 4:
2034 ONE_MORE_BYTE (c);
2735d060 2035 if (c < 0 || (charset_ID = emacs_mule_charset[c]) < 0)
df7492f9
KH
2036 goto invalid_code;
2037 ONE_MORE_BYTE (c);
9ffd559c 2038 if (c < 0xA0)
065e3595 2039 goto invalid_code;
781d7a48 2040 code = (c & 0x7F) << 8;
df7492f9 2041 ONE_MORE_BYTE (c);
9ffd559c 2042 if (c < 0xA0)
065e3595 2043 goto invalid_code;
df7492f9 2044 code |= c & 0x7F;
065e3595 2045 break;
df7492f9 2046
065e3595
KH
2047 case 1:
2048 code = c;
2735d060 2049 charset_ID = ASCII_BYTE_P (code) ? charset_ascii : charset_eight_bit;
065e3595 2050 break;
df7492f9 2051
065e3595 2052 default:
1088b922 2053 emacs_abort ();
065e3595 2054 }
b84ae584 2055 CODING_DECODE_CHAR (coding, src, src_base, src_end,
2735d060 2056 CHARSET_FROM_ID (charset_ID), code, c);
065e3595
KH
2057 if (c < 0)
2058 goto invalid_code;
df7492f9 2059 }
df7492f9
KH
2060 *nbytes = src - src_base;
2061 *nchars = consumed_chars;
ff0dacd7 2062 if (id)
2735d060 2063 *id = charset_ID;
e951386e 2064 return (mseq_found ? -c : c);
df7492f9
KH
2065
2066 no_more_source:
2067 return -2;
2068
2069 invalid_code:
2070 return -1;
2071}
2072
2073
e951386e 2074/* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
df7492f9 2075
e951386e
KH
2076/* Handle these composition sequence ('|': the end of header elements,
2077 BYTES and CHARS >= 0xA0):
df7492f9 2078
e951386e
KH
2079 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ...
2080 (2) altchar composition: 0x80 0xF4 BYTES CHARS | ALT ... ALT CHAR ...
2081 (3) alt&rule composition: 0x80 0xF5 BYTES CHARS | ALT RULE ... ALT CHAR ...
df7492f9 2082
e951386e 2083 and these old form:
1a4990fb 2084
e951386e
KH
2085 (4) relative composition: 0x80 | MSEQ ... MSEQ
2086 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ
df7492f9 2087
e951386e
KH
2088 When the starter 0x80 and the following header elements are found,
2089 this annotation header is produced.
df7492f9 2090
e951386e 2091 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ]
df7492f9 2092
e951386e
KH
2093 NCHARS is CHARS - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2094 NBYTES is BYTES - 0xA0 for (1), (2), (3), and 0 for (4), (5).
df7492f9 2095
e951386e
KH
2096 Then, upon reading the following elements, these codes are produced
2097 until the composition end is found:
df7492f9 2098
e951386e
KH
2099 (1) CHAR ... CHAR
2100 (2) ALT ... ALT CHAR ... CHAR
2101 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR
2102 (4) CHAR ... CHAR
2103 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
4ed46869 2104
e951386e
KH
2105 When the composition end is found, LENGTH and NCHARS in the
2106 annotation header is updated as below:
b73bfc1c 2107
e951386e
KH
2108 (1) LENGTH: unchanged, NCHARS: unchanged
2109 (2) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2110 (3) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2111 (4) LENGTH: unchanged, NCHARS: number of CHARs
2112 (5) LENGTH: unchanged, NCHARS: number of CHARs
df7492f9 2113
e951386e
KH
2114 If an error is found while composing, the annotation header is
2115 changed to the original composition header (plus filler -1s) as
2116 below:
2117
2118 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ]
2119 (5) [ 0x80 0xFF -1 -1- -1 ]
2120
2121 and the sequence [ -2 DECODED-RULE ] is changed to the original
2122 byte sequence as below:
2123 o the original byte sequence is B: [ B -1 ]
2124 o the original byte sequence is B1 B2: [ B1 B2 ]
2125
2126 Most of the routines are implemented by macros because many
2127 variables and labels in the caller decode_coding_emacs_mule must be
2128 accessible, and they are usually called just once (thus doesn't
2129 increase the size of compiled object). */
2130
2131/* Decode a composition rule represented by C as a component of
2132 composition sequence of Emacs 20 style. Set RULE to the decoded
2133 rule. */
2134
2135#define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \
df7492f9 2136 do { \
e951386e
KH
2137 int gref, nref; \
2138 \
4d41e8b7 2139 c -= 0xA0; \
df7492f9
KH
2140 if (c < 0 || c >= 81) \
2141 goto invalid_code; \
df7492f9 2142 gref = c / 9, nref = c % 9; \
e951386e
KH
2143 if (gref == 4) gref = 10; \
2144 if (nref == 4) nref = 10; \
2145 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
df7492f9
KH
2146 } while (0)
2147
2148
e951386e
KH
2149/* Decode a composition rule represented by C and the following byte
2150 at SRC as a component of composition sequence of Emacs 21 style.
2151 Set RULE to the decoded rule. */
781d7a48 2152
e951386e 2153#define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \
781d7a48
KH
2154 do { \
2155 int gref, nref; \
e951386e
KH
2156 \
2157 gref = c - 0x20; \
2158 if (gref < 0 || gref >= 81) \
781d7a48 2159 goto invalid_code; \
e951386e
KH
2160 ONE_MORE_BYTE (c); \
2161 nref = c - 0x20; \
2162 if (nref < 0 || nref >= 81) \
781d7a48 2163 goto invalid_code; \
e951386e 2164 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
781d7a48
KH
2165 } while (0)
2166
2167
e951386e
KH
2168/* Start of Emacs 21 style format. The first three bytes at SRC are
2169 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is the
2170 byte length of this composition information, CHARS is the number of
2171 characters composed by this composition. */
2172
2173#define DECODE_EMACS_MULE_21_COMPOSITION() \
aa72b389 2174 do { \
781d7a48 2175 enum composition_method method = c - 0xF2; \
df7492f9 2176 int nbytes, nchars; \
e951386e 2177 \
df7492f9 2178 ONE_MORE_BYTE (c); \
065e3595
KH
2179 if (c < 0) \
2180 goto invalid_code; \
df7492f9 2181 nbytes = c - 0xA0; \
e951386e 2182 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \
df7492f9
KH
2183 goto invalid_code; \
2184 ONE_MORE_BYTE (c); \
2185 nchars = c - 0xA0; \
e951386e
KH
2186 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \
2187 goto invalid_code; \
2188 cmp_status->old_form = 0; \
2189 cmp_status->method = method; \
2190 if (method == COMPOSITION_RELATIVE) \
2191 cmp_status->state = COMPOSING_CHAR; \
2192 else \
2193 cmp_status->state = COMPOSING_COMPONENT_CHAR; \
2194 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2195 cmp_status->nchars = nchars; \
2196 cmp_status->ncomps = nbytes - 4; \
2197 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \
aa72b389 2198 } while (0)
93dec019 2199
aa72b389 2200
e951386e
KH
2201/* Start of Emacs 20 style format for relative composition. */
2202
2203#define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \
2204 do { \
2205 cmp_status->old_form = 1; \
2206 cmp_status->method = COMPOSITION_RELATIVE; \
2207 cmp_status->state = COMPOSING_CHAR; \
2208 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2209 cmp_status->nchars = cmp_status->ncomps = 0; \
2210 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2211 } while (0)
2212
2213
2214/* Start of Emacs 20 style format for rule-base composition. */
2215
2216#define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \
2217 do { \
2218 cmp_status->old_form = 1; \
2219 cmp_status->method = COMPOSITION_WITH_RULE; \
2220 cmp_status->state = COMPOSING_CHAR; \
2221 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2222 cmp_status->nchars = cmp_status->ncomps = 0; \
2223 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
df7492f9
KH
2224 } while (0)
2225
2226
e951386e
KH
2227#define DECODE_EMACS_MULE_COMPOSITION_START() \
2228 do { \
2229 const unsigned char *current_src = src; \
2230 \
2231 ONE_MORE_BYTE (c); \
2232 if (c < 0) \
2233 goto invalid_code; \
2234 if (c - 0xF2 >= COMPOSITION_RELATIVE \
2235 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \
2236 DECODE_EMACS_MULE_21_COMPOSITION (); \
2237 else if (c < 0xA0) \
2238 goto invalid_code; \
2239 else if (c < 0xC0) \
2240 { \
2241 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \
2242 /* Re-read C as a composition component. */ \
2243 src = current_src; \
2244 } \
2245 else if (c == 0xFF) \
2246 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \
2247 else \
2248 goto invalid_code; \
2249 } while (0)
2250
2251#define EMACS_MULE_COMPOSITION_END() \
df7492f9 2252 do { \
e951386e 2253 int idx = - cmp_status->length; \
4d41e8b7 2254 \
e951386e
KH
2255 if (cmp_status->old_form) \
2256 charbuf[idx + 2] = cmp_status->nchars; \
2257 else if (cmp_status->method > COMPOSITION_RELATIVE) \
2258 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \
2259 cmp_status->state = COMPOSING_NO; \
2260 } while (0)
2261
2262
2263static int
cf84bb53
JB
2264emacs_mule_finish_composition (int *charbuf,
2265 struct composition_status *cmp_status)
e951386e
KH
2266{
2267 int idx = - cmp_status->length;
2268 int new_chars;
2269
2270 if (cmp_status->old_form && cmp_status->nchars > 0)
2271 {
2272 charbuf[idx + 2] = cmp_status->nchars;
2273 new_chars = 0;
2274 if (cmp_status->method == COMPOSITION_WITH_RULE
2275 && cmp_status->state == COMPOSING_CHAR)
2276 {
2277 /* The last rule was invalid. */
2278 int rule = charbuf[-1] + 0xA0;
2279
2280 charbuf[-2] = BYTE8_TO_CHAR (rule);
2281 charbuf[-1] = -1;
2282 new_chars = 1;
2283 }
2284 }
2285 else
2286 {
2287 charbuf[idx++] = BYTE8_TO_CHAR (0x80);
2288
2289 if (cmp_status->method == COMPOSITION_WITH_RULE)
2290 {
2291 charbuf[idx++] = BYTE8_TO_CHAR (0xFF);
2292 charbuf[idx++] = -3;
2293 charbuf[idx++] = 0;
2294 new_chars = 1;
2295 }
2296 else
2297 {
2298 int nchars = charbuf[idx + 1] + 0xA0;
2299 int nbytes = charbuf[idx + 2] + 0xA0;
2300
2301 charbuf[idx++] = BYTE8_TO_CHAR (0xF2 + cmp_status->method);
2302 charbuf[idx++] = BYTE8_TO_CHAR (nbytes);
2303 charbuf[idx++] = BYTE8_TO_CHAR (nchars);
2304 charbuf[idx++] = -1;
2305 new_chars = 4;
2306 }
2307 }
2308 cmp_status->state = COMPOSING_NO;
2309 return new_chars;
2310}
2311
2312#define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \
2313 do { \
2314 if (cmp_status->state != COMPOSING_NO) \
2315 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \
df7492f9
KH
2316 } while (0)
2317
aa72b389
KH
2318
2319static void
971de7fb 2320decode_coding_emacs_mule (struct coding_system *coding)
aa72b389 2321{
8f924df7
KH
2322 const unsigned char *src = coding->source + coding->consumed;
2323 const unsigned char *src_end = coding->source + coding->src_bytes;
2324 const unsigned char *src_base;
69a80ea3 2325 int *charbuf = coding->charbuf + coding->charbuf_used;
ad1746f5
KH
2326 /* We may produce two annotations (charset and composition) in one
2327 loop and one more charset annotation at the end. */
69a80ea3 2328 int *charbuf_end
15cbd324
EZ
2329 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 3)
2330 /* We can produce up to 2 characters in a loop. */
2331 - 1;
d311d28c 2332 ptrdiff_t consumed_chars = 0, consumed_chars_base;
f10fe38f 2333 bool multibytep = coding->src_multibyte;
d311d28c
PE
2334 ptrdiff_t char_offset = coding->produced_char;
2335 ptrdiff_t last_offset = char_offset;
ff0dacd7 2336 int last_id = charset_ascii;
f10fe38f
PE
2337 bool eol_dos
2338 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 2339 int byte_after_cr = -1;
e951386e 2340 struct composition_status *cmp_status = &coding->spec.emacs_mule.cmp_status;
aa72b389 2341
e951386e
KH
2342 if (cmp_status->state != COMPOSING_NO)
2343 {
2344 int i;
2345
15cbd324 2346 if (charbuf_end - charbuf < cmp_status->length)
1088b922 2347 emacs_abort ();
e951386e
KH
2348 for (i = 0; i < cmp_status->length; i++)
2349 *charbuf++ = cmp_status->carryover[i];
2350 coding->annotated = 1;
2351 }
2352
aa72b389
KH
2353 while (1)
2354 {
ee05f961 2355 int c, id IF_LINT (= 0);
df7492f9 2356
aa72b389 2357 src_base = src;
df7492f9
KH
2358 consumed_chars_base = consumed_chars;
2359
2360 if (charbuf >= charbuf_end)
b71f6f73
KH
2361 {
2362 if (byte_after_cr >= 0)
2363 src_base--;
2364 break;
2365 }
aa72b389 2366
119852e7
KH
2367 if (byte_after_cr >= 0)
2368 c = byte_after_cr, byte_after_cr = -1;
2369 else
2370 ONE_MORE_BYTE (c);
e951386e
KH
2371
2372 if (c < 0 || c == 0x80)
065e3595 2373 {
e951386e
KH
2374 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2375 if (c < 0)
2376 {
2377 *charbuf++ = -c;
2378 char_offset++;
2379 }
2380 else
2381 DECODE_EMACS_MULE_COMPOSITION_START ();
2382 continue;
065e3595 2383 }
e951386e
KH
2384
2385 if (c < 0x80)
aa72b389 2386 {
2735d060 2387 if (eol_dos && c == '\r')
119852e7 2388 ONE_MORE_BYTE (byte_after_cr);
e951386e
KH
2389 id = charset_ascii;
2390 if (cmp_status->state != COMPOSING_NO)
2391 {
2392 if (cmp_status->old_form)
2393 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2394 else if (cmp_status->state >= COMPOSING_COMPONENT_CHAR)
2395 cmp_status->ncomps--;
2396 }
2397 }
2398 else
2399 {
ee05f961 2400 int nchars IF_LINT (= 0), nbytes IF_LINT (= 0);
75f80e63
EZ
2401 /* emacs_mule_char can load a charset map from a file, which
2402 allocates a large structure and might cause buffer text
2403 to be relocated as result. Thus, we need to remember the
ad1746f5 2404 original pointer to buffer text, and fix up all related
75f80e63
EZ
2405 pointers after the call. */
2406 const unsigned char *orig = coding->source;
d311d28c 2407 ptrdiff_t offset;
e951386e
KH
2408
2409 c = emacs_mule_char (coding, src_base, &nbytes, &nchars, &id,
2410 cmp_status);
75f80e63
EZ
2411 offset = coding->source - orig;
2412 if (offset)
2413 {
2414 src += offset;
2415 src_base += offset;
2416 src_end += offset;
2417 }
e951386e
KH
2418 if (c < 0)
2419 {
2420 if (c == -1)
2421 goto invalid_code;
2422 if (c == -2)
2423 break;
2424 }
2425 src = src_base + nbytes;
2426 consumed_chars = consumed_chars_base + nchars;
2427 if (cmp_status->state >= COMPOSING_COMPONENT_CHAR)
2428 cmp_status->ncomps -= nchars;
2429 }
2430
ad1746f5 2431 /* Now if C >= 0, we found a normally encoded character, if C <
e951386e
KH
2432 0, we found an old-style composition component character or
2433 rule. */
2434
2435 if (cmp_status->state == COMPOSING_NO)
2436 {
2437 if (last_id != id)
2438 {
2439 if (last_id != charset_ascii)
2440 ADD_CHARSET_DATA (charbuf, char_offset - last_offset,
2441 last_id);
2442 last_id = id;
2443 last_offset = char_offset;
2444 }
df7492f9
KH
2445 *charbuf++ = c;
2446 char_offset++;
aa72b389 2447 }
e951386e 2448 else if (cmp_status->state == COMPOSING_CHAR)
df7492f9 2449 {
e951386e
KH
2450 if (cmp_status->old_form)
2451 {
2452 if (c >= 0)
2453 {
2454 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2455 *charbuf++ = c;
2456 char_offset++;
2457 }
2458 else
2459 {
2460 *charbuf++ = -c;
2461 cmp_status->nchars++;
2462 cmp_status->length++;
2463 if (cmp_status->nchars == MAX_COMPOSITION_COMPONENTS)
2464 EMACS_MULE_COMPOSITION_END ();
2465 else if (cmp_status->method == COMPOSITION_WITH_RULE)
2466 cmp_status->state = COMPOSING_RULE;
2467 }
2468 }
df7492f9 2469 else
e951386e
KH
2470 {
2471 *charbuf++ = c;
2472 cmp_status->length++;
2473 cmp_status->nchars--;
2474 if (cmp_status->nchars == 0)
2475 EMACS_MULE_COMPOSITION_END ();
2476 }
df7492f9 2477 }
e951386e 2478 else if (cmp_status->state == COMPOSING_RULE)
df7492f9 2479 {
e951386e 2480 int rule;
ff0dacd7 2481
e951386e 2482 if (c >= 0)
df7492f9 2483 {
e951386e
KH
2484 EMACS_MULE_COMPOSITION_END ();
2485 *charbuf++ = c;
2486 char_offset++;
df7492f9 2487 }
e951386e 2488 else
ff0dacd7 2489 {
e951386e
KH
2490 c = -c;
2491 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c, rule);
2492 if (rule < 0)
2493 goto invalid_code;
2494 *charbuf++ = -2;
2495 *charbuf++ = rule;
2496 cmp_status->length += 2;
2497 cmp_status->state = COMPOSING_CHAR;
ff0dacd7 2498 }
e951386e
KH
2499 }
2500 else if (cmp_status->state == COMPOSING_COMPONENT_CHAR)
2501 {
df7492f9 2502 *charbuf++ = c;
e951386e
KH
2503 cmp_status->length++;
2504 if (cmp_status->ncomps == 0)
2505 cmp_status->state = COMPOSING_CHAR;
2506 else if (cmp_status->ncomps > 0)
2507 {
2508 if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS)
2509 cmp_status->state = COMPOSING_COMPONENT_RULE;
2510 }
2511 else
2512 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
df7492f9 2513 }
e951386e
KH
2514 else /* COMPOSING_COMPONENT_RULE */
2515 {
2516 int rule;
2517
2518 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c, rule);
2519 if (rule < 0)
2520 goto invalid_code;
2521 *charbuf++ = -2;
2522 *charbuf++ = rule;
2523 cmp_status->length += 2;
2524 cmp_status->ncomps--;
2525 if (cmp_status->ncomps > 0)
2526 cmp_status->state = COMPOSING_COMPONENT_CHAR;
2527 else
2528 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2529 }
2530 continue;
2531
df7492f9 2532 invalid_code:
e951386e 2533 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
df7492f9
KH
2534 src = src_base;
2535 consumed_chars = consumed_chars_base;
2536 ONE_MORE_BYTE (c);
2537 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c);
ff0dacd7 2538 char_offset++;
df7492f9
KH
2539 coding->errors++;
2540 }
2541
2542 no_more_source:
e951386e
KH
2543 if (cmp_status->state != COMPOSING_NO)
2544 {
2545 if (coding->mode & CODING_MODE_LAST_BLOCK)
2546 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2547 else
2548 {
2549 int i;
2550
2551 charbuf -= cmp_status->length;
2552 for (i = 0; i < cmp_status->length; i++)
2553 cmp_status->carryover[i] = charbuf[i];
2554 }
2555 }
ff0dacd7 2556 if (last_id != charset_ascii)
69a80ea3 2557 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
df7492f9
KH
2558 coding->consumed_char += consumed_chars_base;
2559 coding->consumed = src_base - coding->source;
2560 coding->charbuf_used = charbuf - coding->charbuf;
2561}
2562
2563
2564#define EMACS_MULE_LEADING_CODES(id, codes) \
2565 do { \
2566 if (id < 0xA0) \
2567 codes[0] = id, codes[1] = 0; \
2568 else if (id < 0xE0) \
2569 codes[0] = 0x9A, codes[1] = id; \
2570 else if (id < 0xF0) \
2571 codes[0] = 0x9B, codes[1] = id; \
2572 else if (id < 0xF5) \
2573 codes[0] = 0x9C, codes[1] = id; \
2574 else \
2575 codes[0] = 0x9D, codes[1] = id; \
2576 } while (0);
2577
aa72b389 2578
f10fe38f 2579static bool
971de7fb 2580encode_coding_emacs_mule (struct coding_system *coding)
df7492f9 2581{
f10fe38f 2582 bool multibytep = coding->dst_multibyte;
df7492f9
KH
2583 int *charbuf = coding->charbuf;
2584 int *charbuf_end = charbuf + coding->charbuf_used;
2585 unsigned char *dst = coding->destination + coding->produced;
2586 unsigned char *dst_end = coding->destination + coding->dst_bytes;
2587 int safe_room = 8;
d311d28c 2588 ptrdiff_t produced_chars = 0;
24a73b0a 2589 Lisp_Object attrs, charset_list;
df7492f9 2590 int c;
ff0dacd7 2591 int preferred_charset_id = -1;
df7492f9 2592
24a73b0a 2593 CODING_GET_INFO (coding, attrs, charset_list);
eccb6815
KH
2594 if (! EQ (charset_list, Vemacs_mule_charset_list))
2595 {
4939150c
PE
2596 charset_list = Vemacs_mule_charset_list;
2597 ASET (attrs, coding_attr_charset_list, charset_list);
eccb6815 2598 }
df7492f9
KH
2599
2600 while (charbuf < charbuf_end)
2601 {
2602 ASSURE_DESTINATION (safe_room);
2603 c = *charbuf++;
ff0dacd7
KH
2604
2605 if (c < 0)
2606 {
2607 /* Handle an annotation. */
2608 switch (*charbuf)
2609 {
2610 case CODING_ANNOTATE_COMPOSITION_MASK:
2611 /* Not yet implemented. */
2612 break;
2613 case CODING_ANNOTATE_CHARSET_MASK:
2614 preferred_charset_id = charbuf[3];
2615 if (preferred_charset_id >= 0
2616 && NILP (Fmemq (make_number (preferred_charset_id),
2617 charset_list)))
2618 preferred_charset_id = -1;
2619 break;
2620 default:
1088b922 2621 emacs_abort ();
ff0dacd7
KH
2622 }
2623 charbuf += -c - 1;
2624 continue;
2625 }
2626
df7492f9
KH
2627 if (ASCII_CHAR_P (c))
2628 EMIT_ONE_ASCII_BYTE (c);
16eafb5d
KH
2629 else if (CHAR_BYTE8_P (c))
2630 {
2631 c = CHAR_TO_BYTE8 (c);
2632 EMIT_ONE_BYTE (c);
2633 }
df7492f9 2634 else
aa72b389 2635 {
df7492f9
KH
2636 struct charset *charset;
2637 unsigned code;
2638 int dimension;
2639 int emacs_mule_id;
2640 unsigned char leading_codes[2];
2641
ff0dacd7
KH
2642 if (preferred_charset_id >= 0)
2643 {
f10fe38f 2644 bool result;
5eb05ea3 2645
ff0dacd7 2646 charset = CHARSET_FROM_ID (preferred_charset_id);
5eb05ea3
KH
2647 CODING_CHAR_CHARSET_P (coding, dst, dst_end, c, charset, result);
2648 if (result)
905ca9d2
KH
2649 code = ENCODE_CHAR (charset, c);
2650 else
5eb05ea3
KH
2651 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
2652 &code, charset);
ff0dacd7
KH
2653 }
2654 else
5eb05ea3
KH
2655 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
2656 &code, charset);
df7492f9
KH
2657 if (! charset)
2658 {
2659 c = coding->default_char;
2660 if (ASCII_CHAR_P (c))
2661 {
2662 EMIT_ONE_ASCII_BYTE (c);
2663 continue;
2664 }
5eb05ea3
KH
2665 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
2666 &code, charset);
df7492f9
KH
2667 }
2668 dimension = CHARSET_DIMENSION (charset);
2669 emacs_mule_id = CHARSET_EMACS_MULE_ID (charset);
2670 EMACS_MULE_LEADING_CODES (emacs_mule_id, leading_codes);
2671 EMIT_ONE_BYTE (leading_codes[0]);
2672 if (leading_codes[1])
2673 EMIT_ONE_BYTE (leading_codes[1]);
2674 if (dimension == 1)
1fa663f9 2675 EMIT_ONE_BYTE (code | 0x80);
aa72b389 2676 else
df7492f9 2677 {
1fa663f9 2678 code |= 0x8080;
df7492f9
KH
2679 EMIT_ONE_BYTE (code >> 8);
2680 EMIT_ONE_BYTE (code & 0xFF);
2681 }
aa72b389 2682 }
aa72b389 2683 }
065e3595 2684 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
2685 coding->produced_char += produced_chars;
2686 coding->produced = dst - coding->destination;
2687 return 0;
aa72b389 2688}
b73bfc1c 2689
4ed46869 2690\f
df7492f9 2691/*** 7. ISO2022 handlers ***/
4ed46869
KH
2692
2693/* The following note describes the coding system ISO2022 briefly.
39787efd 2694 Since the intention of this note is to help understand the
5a936b46 2695 functions in this file, some parts are NOT ACCURATE or are OVERLY
39787efd 2696 SIMPLIFIED. For thorough understanding, please refer to the
5a936b46 2697 original document of ISO2022. This is equivalent to the standard
cfb43547 2698 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
4ed46869
KH
2699
2700 ISO2022 provides many mechanisms to encode several character sets
cfb43547 2701 in 7-bit and 8-bit environments. For 7-bit environments, all text
39787efd
KH
2702 is encoded using bytes less than 128. This may make the encoded
2703 text a little bit longer, but the text passes more easily through
cfb43547 2704 several types of gateway, some of which strip off the MSB (Most
8ca3766a 2705 Significant Bit).
b73bfc1c 2706
cfb43547
DL
2707 There are two kinds of character sets: control character sets and
2708 graphic character sets. The former contain control characters such
4ed46869 2709 as `newline' and `escape' to provide control functions (control
39787efd 2710 functions are also provided by escape sequences). The latter
cfb43547 2711 contain graphic characters such as 'A' and '-'. Emacs recognizes
4ed46869
KH
2712 two control character sets and many graphic character sets.
2713
2714 Graphic character sets are classified into one of the following
39787efd
KH
2715 four classes, according to the number of bytes (DIMENSION) and
2716 number of characters in one dimension (CHARS) of the set:
2717 - DIMENSION1_CHARS94
2718 - DIMENSION1_CHARS96
2719 - DIMENSION2_CHARS94
2720 - DIMENSION2_CHARS96
2721
2722 In addition, each character set is assigned an identification tag,
cfb43547 2723 unique for each set, called the "final character" (denoted as <F>
39787efd
KH
2724 hereafter). The <F> of each character set is decided by ECMA(*)
2725 when it is registered in ISO. The code range of <F> is 0x30..0x7F
2726 (0x30..0x3F are for private use only).
4ed46869
KH
2727
2728 Note (*): ECMA = European Computer Manufacturers Association
2729
cfb43547 2730 Here are examples of graphic character sets [NAME(<F>)]:
4ed46869
KH
2731 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
2732 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
2733 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
2734 o DIMENSION2_CHARS96 -- none for the moment
2735
39787efd 2736 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
4ed46869
KH
2737 C0 [0x00..0x1F] -- control character plane 0
2738 GL [0x20..0x7F] -- graphic character plane 0
2739 C1 [0x80..0x9F] -- control character plane 1
2740 GR [0xA0..0xFF] -- graphic character plane 1
2741
2742 A control character set is directly designated and invoked to C0 or
39787efd
KH
2743 C1 by an escape sequence. The most common case is that:
2744 - ISO646's control character set is designated/invoked to C0, and
2745 - ISO6429's control character set is designated/invoked to C1,
2746 and usually these designations/invocations are omitted in encoded
2747 text. In a 7-bit environment, only C0 can be used, and a control
2748 character for C1 is encoded by an appropriate escape sequence to
2749 fit into the environment. All control characters for C1 are
2750 defined to have corresponding escape sequences.
4ed46869
KH
2751
2752 A graphic character set is at first designated to one of four
2753 graphic registers (G0 through G3), then these graphic registers are
2754 invoked to GL or GR. These designations and invocations can be
2755 done independently. The most common case is that G0 is invoked to
39787efd
KH
2756 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
2757 these invocations and designations are omitted in encoded text.
2758 In a 7-bit environment, only GL can be used.
4ed46869 2759
39787efd
KH
2760 When a graphic character set of CHARS94 is invoked to GL, codes
2761 0x20 and 0x7F of the GL area work as control characters SPACE and
2762 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
2763 be used.
4ed46869
KH
2764
2765 There are two ways of invocation: locking-shift and single-shift.
2766 With locking-shift, the invocation lasts until the next different
39787efd
KH
2767 invocation, whereas with single-shift, the invocation affects the
2768 following character only and doesn't affect the locking-shift
2769 state. Invocations are done by the following control characters or
2770 escape sequences:
4ed46869
KH
2771
2772 ----------------------------------------------------------------------
39787efd 2773 abbrev function cntrl escape seq description
4ed46869 2774 ----------------------------------------------------------------------
39787efd
KH
2775 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
2776 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
2777 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
2778 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
2779 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
2780 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
2781 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
2782 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
2783 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
4ed46869 2784 ----------------------------------------------------------------------
39787efd
KH
2785 (*) These are not used by any known coding system.
2786
2787 Control characters for these functions are defined by macros
2788 ISO_CODE_XXX in `coding.h'.
4ed46869 2789
39787efd 2790 Designations are done by the following escape sequences:
4ed46869
KH
2791 ----------------------------------------------------------------------
2792 escape sequence description
2793 ----------------------------------------------------------------------
2794 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
2795 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
2796 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
2797 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
2798 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
2799 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
2800 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
2801 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
2802 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
2803 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
2804 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
2805 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
2806 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
2807 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
2808 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
2809 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
2810 ----------------------------------------------------------------------
2811
2812 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
39787efd 2813 of dimension 1, chars 94, and final character <F>, etc...
4ed46869
KH
2814
2815 Note (*): Although these designations are not allowed in ISO2022,
2816 Emacs accepts them on decoding, and produces them on encoding
39787efd 2817 CHARS96 character sets in a coding system which is characterized as
4ed46869
KH
2818 7-bit environment, non-locking-shift, and non-single-shift.
2819
2820 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
df7492f9 2821 '(' must be omitted. We refer to this as "short-form" hereafter.
4ed46869 2822
cfb43547 2823 Now you may notice that there are a lot of ways of encoding the
39787efd
KH
2824 same multilingual text in ISO2022. Actually, there exist many
2825 coding systems such as Compound Text (used in X11's inter client
8ca3766a
DL
2826 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
2827 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
4ed46869
KH
2828 localized platforms), and all of these are variants of ISO2022.
2829
2830 In addition to the above, Emacs handles two more kinds of escape
2831 sequences: ISO6429's direction specification and Emacs' private
2832 sequence for specifying character composition.
2833
39787efd 2834 ISO6429's direction specification takes the following form:
4ed46869
KH
2835 o CSI ']' -- end of the current direction
2836 o CSI '0' ']' -- end of the current direction
2837 o CSI '1' ']' -- start of left-to-right text
2838 o CSI '2' ']' -- start of right-to-left text
2839 The control character CSI (0x9B: control sequence introducer) is
39787efd
KH
2840 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
2841
2842 Character composition specification takes the following form:
ec6d2bb8
KH
2843 o ESC '0' -- start relative composition
2844 o ESC '1' -- end composition
2845 o ESC '2' -- start rule-base composition (*)
2846 o ESC '3' -- start relative composition with alternate chars (**)
2847 o ESC '4' -- start rule-base composition with alternate chars (**)
b73bfc1c 2848 Since these are not standard escape sequences of any ISO standard,
cfb43547 2849 the use of them with these meanings is restricted to Emacs only.
ec6d2bb8 2850
5a936b46
DL
2851 (*) This form is used only in Emacs 20.7 and older versions,
2852 but newer versions can safely decode it.
cfb43547 2853 (**) This form is used only in Emacs 21.1 and newer versions,
5a936b46 2854 and older versions can't decode it.
ec6d2bb8 2855
cfb43547 2856 Here's a list of example usages of these composition escape
b73bfc1c 2857 sequences (categorized by `enum composition_method').
ec6d2bb8 2858
b73bfc1c 2859 COMPOSITION_RELATIVE:
ec6d2bb8 2860 ESC 0 CHAR [ CHAR ] ESC 1
8ca3766a 2861 COMPOSITION_WITH_RULE:
ec6d2bb8 2862 ESC 2 CHAR [ RULE CHAR ] ESC 1
b73bfc1c 2863 COMPOSITION_WITH_ALTCHARS:
ec6d2bb8 2864 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
b73bfc1c 2865 COMPOSITION_WITH_RULE_ALTCHARS:
ec6d2bb8 2866 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
4ed46869 2867
74ab6df5 2868static enum iso_code_class_type iso_code_class[256];
4ed46869 2869
df7492f9
KH
2870#define SAFE_CHARSET_P(coding, id) \
2871 ((id) <= (coding)->max_charset_id \
1b3b981b 2872 && (coding)->safe_charsets[id] != 255)
df7492f9 2873
df7492f9 2874static void
971de7fb 2875setup_iso_safe_charsets (Lisp_Object attrs)
df7492f9
KH
2876{
2877 Lisp_Object charset_list, safe_charsets;
2878 Lisp_Object request;
2879 Lisp_Object reg_usage;
2880 Lisp_Object tail;
d311d28c 2881 EMACS_INT reg94, reg96;
df7492f9
KH
2882 int flags = XINT (AREF (attrs, coding_attr_iso_flags));
2883 int max_charset_id;
2884
2885 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
2886 if ((flags & CODING_ISO_FLAG_FULL_SUPPORT)
2887 && ! EQ (charset_list, Viso_2022_charset_list))
2888 {
4939150c
PE
2889 charset_list = Viso_2022_charset_list;
2890 ASET (attrs, coding_attr_charset_list, charset_list);
df7492f9
KH
2891 ASET (attrs, coding_attr_safe_charsets, Qnil);
2892 }
2893
2894 if (STRINGP (AREF (attrs, coding_attr_safe_charsets)))
2895 return;
2896
2897 max_charset_id = 0;
2898 for (tail = charset_list; CONSP (tail); tail = XCDR (tail))
2899 {
2900 int id = XINT (XCAR (tail));
2901 if (max_charset_id < id)
2902 max_charset_id = id;
2903 }
d46c5b12 2904
1b3b981b
AS
2905 safe_charsets = make_uninit_string (max_charset_id + 1);
2906 memset (SDATA (safe_charsets), 255, max_charset_id + 1);
df7492f9
KH
2907 request = AREF (attrs, coding_attr_iso_request);
2908 reg_usage = AREF (attrs, coding_attr_iso_usage);
2909 reg94 = XINT (XCAR (reg_usage));
2910 reg96 = XINT (XCDR (reg_usage));
2911
2912 for (tail = charset_list; CONSP (tail); tail = XCDR (tail))
2913 {
2914 Lisp_Object id;
2915 Lisp_Object reg;
2916 struct charset *charset;
2917
2918 id = XCAR (tail);
2919 charset = CHARSET_FROM_ID (XINT (id));
bf16eb23 2920 reg = Fcdr (Fassq (id, request));
df7492f9 2921 if (! NILP (reg))
8f924df7 2922 SSET (safe_charsets, XINT (id), XINT (reg));
df7492f9
KH
2923 else if (charset->iso_chars_96)
2924 {
2925 if (reg96 < 4)
8f924df7 2926 SSET (safe_charsets, XINT (id), reg96);
df7492f9
KH
2927 }
2928 else
2929 {
2930 if (reg94 < 4)
8f924df7 2931 SSET (safe_charsets, XINT (id), reg94);
df7492f9
KH
2932 }
2933 }
2934 ASET (attrs, coding_attr_safe_charsets, safe_charsets);
2935}
d46c5b12 2936
b6871cc7 2937
4ed46869 2938/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f
PE
2939 Return true if a text is encoded in one of ISO-2022 based coding
2940 systems. */
4ed46869 2941
f10fe38f 2942static bool
cf84bb53
JB
2943detect_coding_iso_2022 (struct coding_system *coding,
2944 struct coding_detection_info *detect_info)
4ed46869 2945{
8f924df7
KH
2946 const unsigned char *src = coding->source, *src_base = src;
2947 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f
PE
2948 bool multibytep = coding->src_multibyte;
2949 bool single_shifting = 0;
0e48bb22 2950 int id;
df7492f9 2951 int c, c1;
d311d28c 2952 ptrdiff_t consumed_chars = 0;
df7492f9 2953 int i;
ff0dacd7
KH
2954 int rejected = 0;
2955 int found = 0;
cee53ed4 2956 int composition_count = -1;
ff0dacd7
KH
2957
2958 detect_info->checked |= CATEGORY_MASK_ISO;
df7492f9
KH
2959
2960 for (i = coding_category_iso_7; i <= coding_category_iso_8_else; i++)
2961 {
2962 struct coding_system *this = &(coding_categories[i]);
2963 Lisp_Object attrs, val;
2964
c6b278e7
KH
2965 if (this->id < 0)
2966 continue;
df7492f9
KH
2967 attrs = CODING_ID_ATTRS (this->id);
2968 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT
1b3b981b 2969 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Viso_2022_charset_list))
df7492f9
KH
2970 setup_iso_safe_charsets (attrs);
2971 val = CODING_ATTR_SAFE_CHARSETS (attrs);
8f924df7 2972 this->max_charset_id = SCHARS (val) - 1;
1b3b981b 2973 this->safe_charsets = SDATA (val);
df7492f9
KH
2974 }
2975
2976 /* A coding system of this category is always ASCII compatible. */
2977 src += coding->head_ascii;
3f003981 2978
ff0dacd7 2979 while (rejected != CATEGORY_MASK_ISO)
4ed46869 2980 {
065e3595 2981 src_base = src;
df7492f9 2982 ONE_MORE_BYTE (c);
4ed46869
KH
2983 switch (c)
2984 {
2985 case ISO_CODE_ESC:
74383408
KH
2986 if (inhibit_iso_escape_detection)
2987 break;
f46869e4 2988 single_shifting = 0;
df7492f9 2989 ONE_MORE_BYTE (c);
0e48bb22 2990 if (c == 'N' || c == 'O')
d46c5b12 2991 {
ae9ff118 2992 /* ESC <Fe> for SS2 or SS3. */
ff0dacd7
KH
2993 single_shifting = 1;
2994 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_8BIT;
4ed46869 2995 }
cee53ed4
KH
2996 else if (c == '1')
2997 {
2998 /* End of composition. */
2999 if (composition_count < 0
3000 || composition_count > MAX_COMPOSITION_COMPONENTS)
3001 /* Invalid */
3002 break;
3003 composition_count = -1;
3004 found |= CATEGORY_MASK_ISO;
3005 }
ec6d2bb8
KH
3006 else if (c >= '0' && c <= '4')
3007 {
3008 /* ESC <Fp> for start/end composition. */
cee53ed4 3009 composition_count = 0;
ec6d2bb8 3010 }
bf9cdd4e 3011 else
df7492f9 3012 {
0e48bb22
AS
3013 if (c >= '(' && c <= '/')
3014 {
3015 /* Designation sequence for a charset of dimension 1. */
3016 ONE_MORE_BYTE (c1);
3017 if (c1 < ' ' || c1 >= 0x80
3018 || (id = iso_charset_table[0][c >= ','][c1]) < 0)
3019 /* Invalid designation sequence. Just ignore. */
3020 break;
3021 }
3022 else if (c == '$')
3023 {
3024 /* Designation sequence for a charset of dimension 2. */
3025 ONE_MORE_BYTE (c);
3026 if (c >= '@' && c <= 'B')
3027 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
3028 id = iso_charset_table[1][0][c];
3029 else if (c >= '(' && c <= '/')
3030 {
3031 ONE_MORE_BYTE (c1);
3032 if (c1 < ' ' || c1 >= 0x80
3033 || (id = iso_charset_table[1][c >= ','][c1]) < 0)
3034 /* Invalid designation sequence. Just ignore. */
3035 break;
3036 }
3037 else
3038 /* Invalid designation sequence. Just ignore it. */
3039 break;
3040 }
3041 else
3042 {
3043 /* Invalid escape sequence. Just ignore it. */
3044 break;
3045 }
d46c5b12 3046
0e48bb22
AS
3047 /* We found a valid designation sequence for CHARSET. */
3048 rejected |= CATEGORY_MASK_ISO_8BIT;
3049 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7],
3050 id))
3051 found |= CATEGORY_MASK_ISO_7;
3052 else
3053 rejected |= CATEGORY_MASK_ISO_7;
3054 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_tight],
3055 id))
3056 found |= CATEGORY_MASK_ISO_7_TIGHT;
3057 else
3058 rejected |= CATEGORY_MASK_ISO_7_TIGHT;
3059 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_else],
3060 id))
3061 found |= CATEGORY_MASK_ISO_7_ELSE;
3062 else
3063 rejected |= CATEGORY_MASK_ISO_7_ELSE;
3064 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_8_else],
3065 id))
3066 found |= CATEGORY_MASK_ISO_8_ELSE;
3067 else
3068 rejected |= CATEGORY_MASK_ISO_8_ELSE;
3069 }
4ed46869
KH
3070 break;
3071
4ed46869 3072 case ISO_CODE_SO:
d46c5b12 3073 case ISO_CODE_SI:
ff0dacd7 3074 /* Locking shift out/in. */
74383408
KH
3075 if (inhibit_iso_escape_detection)
3076 break;
f46869e4 3077 single_shifting = 0;
ff0dacd7 3078 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_8BIT;
d46c5b12
KH
3079 break;
3080
4ed46869 3081 case ISO_CODE_CSI:
ff0dacd7 3082 /* Control sequence introducer. */
f46869e4 3083 single_shifting = 0;
ff0dacd7
KH
3084 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE;
3085 found |= CATEGORY_MASK_ISO_8_ELSE;
3086 goto check_extra_latin;
3087
4ed46869
KH
3088 case ISO_CODE_SS2:
3089 case ISO_CODE_SS3:
ff0dacd7
KH
3090 /* Single shift. */
3091 if (inhibit_iso_escape_detection)
3092 break;
75e2a253 3093 single_shifting = 0;
ff0dacd7
KH
3094 rejected |= CATEGORY_MASK_ISO_7BIT;
3095 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1])
3096 & CODING_ISO_FLAG_SINGLE_SHIFT)
0e48bb22
AS
3097 {
3098 found |= CATEGORY_MASK_ISO_8_1;
3099 single_shifting = 1;
3100 }
ff0dacd7
KH
3101 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2])
3102 & CODING_ISO_FLAG_SINGLE_SHIFT)
0e48bb22
AS
3103 {
3104 found |= CATEGORY_MASK_ISO_8_2;
3105 single_shifting = 1;
3106 }
75e2a253
KH
3107 if (single_shifting)
3108 break;
0e48bb22
AS
3109 check_extra_latin:
3110 if (! VECTORP (Vlatin_extra_code_table)
28be1ada 3111 || NILP (AREF (Vlatin_extra_code_table, c)))
0e48bb22
AS
3112 {
3113 rejected = CATEGORY_MASK_ISO;
3114 break;
3115 }
3116 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1])
3117 & CODING_ISO_FLAG_LATIN_EXTRA)
3118 found |= CATEGORY_MASK_ISO_8_1;
3119 else
3120 rejected |= CATEGORY_MASK_ISO_8_1;
3121 rejected |= CATEGORY_MASK_ISO_8_2;
3122 break;
4ed46869
KH
3123
3124 default:
065e3595
KH
3125 if (c < 0)
3126 continue;
4ed46869 3127 if (c < 0x80)
f46869e4 3128 {
cee53ed4
KH
3129 if (composition_count >= 0)
3130 composition_count++;
f46869e4
KH
3131 single_shifting = 0;
3132 break;
3133 }
ff0dacd7 3134 if (c >= 0xA0)
c4825358 3135 {
ff0dacd7
KH
3136 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE;
3137 found |= CATEGORY_MASK_ISO_8_1;
f46869e4 3138 /* Check the length of succeeding codes of the range
ff0dacd7
KH
3139 0xA0..0FF. If the byte length is even, we include
3140 CATEGORY_MASK_ISO_8_2 in `found'. We can check this
3141 only when we are not single shifting. */
3142 if (! single_shifting
3143 && ! (rejected & CATEGORY_MASK_ISO_8_2))
f46869e4 3144 {
2735d060 3145 int len = 1;
b73bfc1c
KH
3146 while (src < src_end)
3147 {
d12bd917 3148 src_base = src;
df7492f9 3149 ONE_MORE_BYTE (c);
b73bfc1c 3150 if (c < 0xA0)
d12bd917
KH
3151 {
3152 src = src_base;
3153 break;
3154 }
2735d060 3155 len++;
b73bfc1c
KH
3156 }
3157
2735d060 3158 if (len & 1 && src < src_end)
cee53ed4
KH
3159 {
3160 rejected |= CATEGORY_MASK_ISO_8_2;
3161 if (composition_count >= 0)
2735d060 3162 composition_count += len;
cee53ed4 3163 }
f46869e4 3164 else
cee53ed4
KH
3165 {
3166 found |= CATEGORY_MASK_ISO_8_2;
3167 if (composition_count >= 0)
2735d060 3168 composition_count += len / 2;
cee53ed4 3169 }
f46869e4 3170 }
ff0dacd7 3171 break;
4ed46869 3172 }
4ed46869
KH
3173 }
3174 }
ff0dacd7
KH
3175 detect_info->rejected |= CATEGORY_MASK_ISO;
3176 return 0;
4ed46869 3177
df7492f9 3178 no_more_source:
ff0dacd7
KH
3179 detect_info->rejected |= rejected;
3180 detect_info->found |= (found & ~rejected);
df7492f9 3181 return 1;
4ed46869 3182}
ec6d2bb8 3183
4ed46869 3184
134b9549
KH
3185/* Set designation state into CODING. Set CHARS_96 to -1 if the
3186 escape sequence should be kept. */
df7492f9
KH
3187#define DECODE_DESIGNATION(reg, dim, chars_96, final) \
3188 do { \
3189 int id, prev; \
3190 \
3191 if (final < '0' || final >= 128 \
3192 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \
3193 || !SAFE_CHARSET_P (coding, id)) \
3194 { \
3195 CODING_ISO_DESIGNATION (coding, reg) = -2; \
134b9549
KH
3196 chars_96 = -1; \
3197 break; \
df7492f9
KH
3198 } \
3199 prev = CODING_ISO_DESIGNATION (coding, reg); \
bf16eb23
KH
3200 if (id == charset_jisx0201_roman) \
3201 { \
3202 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
3203 id = charset_ascii; \
3204 } \
3205 else if (id == charset_jisx0208_1978) \
3206 { \
3207 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
3208 id = charset_jisx0208; \
3209 } \
df7492f9
KH
3210 CODING_ISO_DESIGNATION (coding, reg) = id; \
3211 /* If there was an invalid designation to REG previously, and this \
3212 designation is ASCII to REG, we should keep this designation \
3213 sequence. */ \
3214 if (prev == -2 && id == charset_ascii) \
134b9549 3215 chars_96 = -1; \
4ed46869
KH
3216 } while (0)
3217
d46c5b12 3218
e951386e
KH
3219/* Handle these composition sequence (ALT: alternate char):
3220
3221 (1) relative composition: ESC 0 CHAR ... ESC 1
3222 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3223 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1
3224 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1
3225
3226 When the start sequence (ESC 0/2/3/4) is found, this annotation
3227 header is produced.
3228
3229 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ]
3230
3231 Then, upon reading CHAR or RULE (one or two bytes), these codes are
3232 produced until the end sequence (ESC 1) is found:
3233
3234 (1) CHAR ... CHAR
3235 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
3236 (3) ALT ... ALT -1 -1 CHAR ... CHAR
3237 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR
3238
3239 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the
3240 annotation header is updated as below:
3241
3242 (1) LENGTH: unchanged, NCHARS: number of CHARs
3243 (2) LENGTH: unchanged, NCHARS: number of CHARs
3244 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs
3245 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs
3246
3247 If an error is found while composing, the annotation header is
3248 changed to:
3249
3250 [ ESC '0'/'2'/'3'/'4' -2 0 ]
3251
3252 and the sequence [ -2 DECODED-RULE ] is changed to the original
3253 byte sequence as below:
3254 o the original byte sequence is B: [ B -1 ]
3255 o the original byte sequence is B1 B2: [ B1 B2 ]
3256 and the sequence [ -1 -1 ] is changed to the original byte
3257 sequence:
3258 [ ESC '0' ]
3259*/
3260
3261/* Decode a composition rule C1 and maybe one more byte from the
66ebf983 3262 source, and set RULE to the encoded composition rule. If the rule
d5efd1d1 3263 is invalid, goto invalid_code. */
e951386e 3264
66ebf983 3265#define DECODE_COMPOSITION_RULE(rule) \
e951386e
KH
3266 do { \
3267 rule = c1 - 32; \
3268 if (rule < 0) \
d5efd1d1 3269 goto invalid_code; \
e951386e
KH
3270 if (rule < 81) /* old format (before ver.21) */ \
3271 { \
3272 int gref = (rule) / 9; \
3273 int nref = (rule) % 9; \
3274 if (gref == 4) gref = 10; \
3275 if (nref == 4) nref = 10; \
3276 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
e951386e
KH
3277 } \
3278 else /* new format (after ver.21) */ \
3279 { \
2735d060 3280 int b; \
e951386e 3281 \
2735d060 3282 ONE_MORE_BYTE (b); \
d5efd1d1
PE
3283 if (! COMPOSITION_ENCODE_RULE_VALID (rule - 81, b - 32)) \
3284 goto invalid_code; \
2735d060 3285 rule = COMPOSITION_ENCODE_RULE (rule - 81, b - 32); \
d5efd1d1 3286 rule += 0x100; /* Distinguish it from the old format. */ \
e951386e
KH
3287 } \
3288 } while (0)
3289
3290#define ENCODE_COMPOSITION_RULE(rule) \
df7492f9 3291 do { \
e951386e
KH
3292 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \
3293 \
3294 if (rule < 0x100) /* old format */ \
df7492f9 3295 { \
e951386e
KH
3296 if (gref == 10) gref = 4; \
3297 if (nref == 10) nref = 4; \
3298 charbuf[idx] = 32 + gref * 9 + nref; \
3299 charbuf[idx + 1] = -1; \
3300 new_chars++; \
df7492f9 3301 } \
e951386e 3302 else /* new format */ \
df7492f9 3303 { \
e951386e
KH
3304 charbuf[idx] = 32 + 81 + gref; \
3305 charbuf[idx + 1] = 32 + nref; \
3306 new_chars += 2; \
df7492f9
KH
3307 } \
3308 } while (0)
3309
e951386e
KH
3310/* Finish the current composition as invalid. */
3311
e951386e 3312static int
971de7fb 3313finish_composition (int *charbuf, struct composition_status *cmp_status)
e951386e
KH
3314{
3315 int idx = - cmp_status->length;
3316 int new_chars;
3317
3318 /* Recover the original ESC sequence */
3319 charbuf[idx++] = ISO_CODE_ESC;
3320 charbuf[idx++] = (cmp_status->method == COMPOSITION_RELATIVE ? '0'
3321 : cmp_status->method == COMPOSITION_WITH_RULE ? '2'
3322 : cmp_status->method == COMPOSITION_WITH_ALTCHARS ? '3'
3323 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */
3324 : '4');
3325 charbuf[idx++] = -2;
3326 charbuf[idx++] = 0;
3327 charbuf[idx++] = -1;
3328 new_chars = cmp_status->nchars;
3329 if (cmp_status->method >= COMPOSITION_WITH_RULE)
3330 for (; idx < 0; idx++)
3331 {
3332 int elt = charbuf[idx];
3333
3334 if (elt == -2)
3335 {
3336 ENCODE_COMPOSITION_RULE (charbuf[idx + 1]);
3337 idx++;
3338 }
3339 else if (elt == -1)
3340 {
3341 charbuf[idx++] = ISO_CODE_ESC;
3342 charbuf[idx] = '0';
3343 new_chars += 2;
3344 }
3345 }
3346 cmp_status->state = COMPOSING_NO;
3347 return new_chars;
3348}
3349
ad1746f5 3350/* If characters are under composition, finish the composition. */
e951386e
KH
3351#define MAYBE_FINISH_COMPOSITION() \
3352 do { \
3353 if (cmp_status->state != COMPOSING_NO) \
3354 char_offset += finish_composition (charbuf, cmp_status); \
3355 } while (0)
d46c5b12 3356
aa72b389 3357/* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
e951386e 3358
aa72b389
KH
3359 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
3360 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
df7492f9
KH
3361 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1
3362 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1
ec6d2bb8 3363
e951386e
KH
3364 Produce this annotation sequence now:
3365
3366 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ]
3367*/
3368
3369#define DECODE_COMPOSITION_START(c1) \
3370 do { \
3371 if (c1 == '0' \
3372 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \
3373 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3374 || (cmp_status->state == COMPOSING_COMPONENT_RULE \
3375 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \
3376 { \
3377 *charbuf++ = -1; \
3378 *charbuf++= -1; \
3379 cmp_status->state = COMPOSING_CHAR; \
3380 cmp_status->length += 2; \
3381 } \
3382 else \
3383 { \
3384 MAYBE_FINISH_COMPOSITION (); \
3385 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \
3386 : c1 == '2' ? COMPOSITION_WITH_RULE \
3387 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
3388 : COMPOSITION_WITH_RULE_ALTCHARS); \
3389 cmp_status->state \
3390 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \
3391 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
3392 cmp_status->length = MAX_ANNOTATION_LENGTH; \
3393 cmp_status->nchars = cmp_status->ncomps = 0; \
3394 coding->annotated = 1; \
3395 } \
ec6d2bb8
KH
3396 } while (0)
3397
ec6d2bb8 3398
e951386e 3399/* Handle composition end sequence ESC 1. */
df7492f9
KH
3400
3401#define DECODE_COMPOSITION_END() \
ec6d2bb8 3402 do { \
e951386e
KH
3403 if (cmp_status->nchars == 0 \
3404 || ((cmp_status->state == COMPOSING_CHAR) \
3405 == (cmp_status->method == COMPOSITION_WITH_RULE))) \
ec6d2bb8 3406 { \
e951386e
KH
3407 MAYBE_FINISH_COMPOSITION (); \
3408 goto invalid_code; \
ec6d2bb8 3409 } \
e951386e
KH
3410 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3411 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \
3412 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \
3413 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \
3414 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \
3415 char_offset += cmp_status->nchars; \
3416 cmp_status->state = COMPOSING_NO; \
ec6d2bb8
KH
3417 } while (0)
3418
e951386e 3419/* Store a composition rule RULE in charbuf, and update cmp_status. */
df7492f9 3420
e951386e
KH
3421#define STORE_COMPOSITION_RULE(rule) \
3422 do { \
3423 *charbuf++ = -2; \
3424 *charbuf++ = rule; \
3425 cmp_status->length += 2; \
3426 cmp_status->state--; \
3427 } while (0)
ec6d2bb8 3428
e951386e
KH
3429/* Store a composed char or a component char C in charbuf, and update
3430 cmp_status. */
3431
3432#define STORE_COMPOSITION_CHAR(c) \
ec6d2bb8 3433 do { \
e951386e
KH
3434 *charbuf++ = (c); \
3435 cmp_status->length++; \
3436 if (cmp_status->state == COMPOSING_CHAR) \
3437 cmp_status->nchars++; \
df7492f9 3438 else \
e951386e
KH
3439 cmp_status->ncomps++; \
3440 if (cmp_status->method == COMPOSITION_WITH_RULE \
3441 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \
3442 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \
3443 cmp_status->state++; \
ec6d2bb8 3444 } while (0)
88993dfd 3445
d46c5b12 3446
4ed46869
KH
3447/* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3448
b73bfc1c 3449static void
971de7fb 3450decode_coding_iso_2022 (struct coding_system *coding)
4ed46869 3451{
8f924df7
KH
3452 const unsigned char *src = coding->source + coding->consumed;
3453 const unsigned char *src_end = coding->source + coding->src_bytes;
3454 const unsigned char *src_base;
69a80ea3 3455 int *charbuf = coding->charbuf + coding->charbuf_used;
ad1746f5
KH
3456 /* We may produce two annotations (charset and composition) in one
3457 loop and one more charset annotation at the end. */
ff0dacd7 3458 int *charbuf_end
df80c7f0 3459 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 3);
d311d28c 3460 ptrdiff_t consumed_chars = 0, consumed_chars_base;
f10fe38f 3461 bool multibytep = coding->src_multibyte;
4ed46869 3462 /* Charsets invoked to graphic plane 0 and 1 respectively. */
df7492f9
KH
3463 int charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
3464 int charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1);
134b9549 3465 int charset_id_2, charset_id_3;
df7492f9
KH
3466 struct charset *charset;
3467 int c;
e951386e 3468 struct composition_status *cmp_status = CODING_ISO_CMP_STATUS (coding);
66ebf983 3469 Lisp_Object attrs = CODING_ID_ATTRS (coding->id);
d311d28c
PE
3470 ptrdiff_t char_offset = coding->produced_char;
3471 ptrdiff_t last_offset = char_offset;
ff0dacd7 3472 int last_id = charset_ascii;
f10fe38f
PE
3473 bool eol_dos
3474 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 3475 int byte_after_cr = -1;
e951386e 3476 int i;
df7492f9 3477
df7492f9 3478 setup_iso_safe_charsets (attrs);
1b3b981b 3479 coding->safe_charsets = SDATA (CODING_ATTR_SAFE_CHARSETS (attrs));
b73bfc1c 3480
e951386e
KH
3481 if (cmp_status->state != COMPOSING_NO)
3482 {
15cbd324 3483 if (charbuf_end - charbuf < cmp_status->length)
1088b922 3484 emacs_abort ();
e951386e
KH
3485 for (i = 0; i < cmp_status->length; i++)
3486 *charbuf++ = cmp_status->carryover[i];
3487 coding->annotated = 1;
3488 }
3489
b73bfc1c 3490 while (1)
4ed46869 3491 {
cf299835 3492 int c1, c2, c3;
b73bfc1c
KH
3493
3494 src_base = src;
df7492f9
KH
3495 consumed_chars_base = consumed_chars;
3496
3497 if (charbuf >= charbuf_end)
b71f6f73
KH
3498 {
3499 if (byte_after_cr >= 0)
3500 src_base--;
3501 break;
3502 }
df7492f9 3503
119852e7
KH
3504 if (byte_after_cr >= 0)
3505 c1 = byte_after_cr, byte_after_cr = -1;
3506 else
3507 ONE_MORE_BYTE (c1);
065e3595
KH
3508 if (c1 < 0)
3509 goto invalid_code;
4ed46869 3510
e951386e 3511 if (CODING_ISO_EXTSEGMENT_LEN (coding) > 0)
4ed46869 3512 {
e951386e
KH
3513 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1);
3514 char_offset++;
3515 CODING_ISO_EXTSEGMENT_LEN (coding)--;
3516 continue;
3517 }
3518
3519 if (CODING_ISO_EMBEDDED_UTF_8 (coding))
3520 {
3521 if (c1 == ISO_CODE_ESC)
ec6d2bb8 3522 {
e951386e
KH
3523 if (src + 1 >= src_end)
3524 goto no_more_source;
3525 *charbuf++ = ISO_CODE_ESC;
3526 char_offset++;
3527 if (src[0] == '%' && src[1] == '@')
df7492f9 3528 {
e951386e
KH
3529 src += 2;
3530 consumed_chars += 2;
3531 char_offset += 2;
3532 /* We are sure charbuf can contain two more chars. */
3533 *charbuf++ = '%';
3534 *charbuf++ = '@';
3535 CODING_ISO_EMBEDDED_UTF_8 (coding) = 0;
df7492f9 3536 }
4ed46869 3537 }
e951386e
KH
3538 else
3539 {
3540 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1);
3541 char_offset++;
3542 }
3543 continue;
3544 }
3545
3546 if ((cmp_status->state == COMPOSING_RULE
3547 || cmp_status->state == COMPOSING_COMPONENT_RULE)
3548 && c1 != ISO_CODE_ESC)
3549 {
66ebf983 3550 int rule;
e951386e 3551
66ebf983 3552 DECODE_COMPOSITION_RULE (rule);
e951386e
KH
3553 STORE_COMPOSITION_RULE (rule);
3554 continue;
3555 }
3556
3557 /* We produce at most one character. */
3558 switch (iso_code_class [c1])
3559 {
3560 case ISO_0x20_or_0x7F:
df7492f9
KH
3561 if (charset_id_0 < 0
3562 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0)))
781d7a48
KH
3563 /* This is SPACE or DEL. */
3564 charset = CHARSET_FROM_ID (charset_ascii);
3565 else
3566 charset = CHARSET_FROM_ID (charset_id_0);
3567 break;
4ed46869
KH
3568
3569 case ISO_graphic_plane_0:
134b9549
KH
3570 if (charset_id_0 < 0)
3571 charset = CHARSET_FROM_ID (charset_ascii);
3572 else
3573 charset = CHARSET_FROM_ID (charset_id_0);
4ed46869
KH
3574 break;
3575
3576 case ISO_0xA0_or_0xFF:
df7492f9
KH
3577 if (charset_id_1 < 0
3578 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1))
3579 || CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS)
3580 goto invalid_code;
4ed46869
KH
3581 /* This is a graphic character, we fall down ... */
3582
3583 case ISO_graphic_plane_1:
df7492f9
KH
3584 if (charset_id_1 < 0)
3585 goto invalid_code;
3586 charset = CHARSET_FROM_ID (charset_id_1);
4ed46869
KH
3587 break;
3588
df7492f9 3589 case ISO_control_0:
2735d060 3590 if (eol_dos && c1 == '\r')
119852e7 3591 ONE_MORE_BYTE (byte_after_cr);
df7492f9
KH
3592 MAYBE_FINISH_COMPOSITION ();
3593 charset = CHARSET_FROM_ID (charset_ascii);
4ed46869
KH
3594 break;
3595
df7492f9 3596 case ISO_control_1:
df7492f9
KH
3597 goto invalid_code;
3598
4ed46869 3599 case ISO_shift_out:
df7492f9
KH
3600 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)
3601 || CODING_ISO_DESIGNATION (coding, 1) < 0)
3602 goto invalid_code;
3603 CODING_ISO_INVOCATION (coding, 0) = 1;
3604 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
b73bfc1c 3605 continue;
4ed46869
KH
3606
3607 case ISO_shift_in:
df7492f9
KH
3608 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT))
3609 goto invalid_code;
3610 CODING_ISO_INVOCATION (coding, 0) = 0;
3611 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
b73bfc1c 3612 continue;
4ed46869
KH
3613
3614 case ISO_single_shift_2_7:
a63dba42
KH
3615 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS))
3616 goto invalid_code;
4ed46869 3617 case ISO_single_shift_2:
df7492f9
KH
3618 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT))
3619 goto invalid_code;
4ed46869
KH
3620 /* SS2 is handled as an escape sequence of ESC 'N' */
3621 c1 = 'N';
3622 goto label_escape_sequence;
3623
3624 case ISO_single_shift_3:
df7492f9
KH
3625 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT))
3626 goto invalid_code;
4ed46869
KH
3627 /* SS2 is handled as an escape sequence of ESC 'O' */
3628 c1 = 'O';
3629 goto label_escape_sequence;
3630
3631 case ISO_control_sequence_introducer:
3632 /* CSI is handled as an escape sequence of ESC '[' ... */
3633 c1 = '[';
3634 goto label_escape_sequence;
3635
3636 case ISO_escape:
3637 ONE_MORE_BYTE (c1);
3638 label_escape_sequence:
df7492f9 3639 /* Escape sequences handled here are invocation,
4ed46869
KH
3640 designation, direction specification, and character
3641 composition specification. */
3642 switch (c1)
3643 {
3644 case '&': /* revision of following character set */
3645 ONE_MORE_BYTE (c1);
3646 if (!(c1 >= '@' && c1 <= '~'))
df7492f9 3647 goto invalid_code;
4ed46869
KH
3648 ONE_MORE_BYTE (c1);
3649 if (c1 != ISO_CODE_ESC)
df7492f9 3650 goto invalid_code;
4ed46869
KH
3651 ONE_MORE_BYTE (c1);
3652 goto label_escape_sequence;
3653
3654 case '$': /* designation of 2-byte character set */
df7492f9
KH
3655 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION))
3656 goto invalid_code;
134b9549
KH
3657 {
3658 int reg, chars96;
3659
3660 ONE_MORE_BYTE (c1);
3661 if (c1 >= '@' && c1 <= 'B')
3662 { /* designation of JISX0208.1978, GB2312.1980,
88993dfd 3663 or JISX0208.1980 */
134b9549
KH
3664 reg = 0, chars96 = 0;
3665 }
3666 else if (c1 >= 0x28 && c1 <= 0x2B)
3667 { /* designation of DIMENSION2_CHARS94 character set */
3668 reg = c1 - 0x28, chars96 = 0;
3669 ONE_MORE_BYTE (c1);
3670 }
3671 else if (c1 >= 0x2C && c1 <= 0x2F)
3672 { /* designation of DIMENSION2_CHARS96 character set */
3673 reg = c1 - 0x2C, chars96 = 1;
3674 ONE_MORE_BYTE (c1);
3675 }
3676 else
3677 goto invalid_code;
3678 DECODE_DESIGNATION (reg, 2, chars96, c1);
3679 /* We must update these variables now. */
3680 if (reg == 0)
3681 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
3682 else if (reg == 1)
3683 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1);
3684 if (chars96 < 0)
3685 goto invalid_code;
3686 }
b73bfc1c 3687 continue;
4ed46869
KH
3688
3689 case 'n': /* invocation of locking-shift-2 */
df7492f9
KH
3690 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)
3691 || CODING_ISO_DESIGNATION (coding, 2) < 0)
3692 goto invalid_code;
3693 CODING_ISO_INVOCATION (coding, 0) = 2;
3694 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
b73bfc1c 3695 continue;
4ed46869
KH
3696
3697 case 'o': /* invocation of locking-shift-3 */
df7492f9
KH
3698 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)
3699 || CODING_ISO_DESIGNATION (coding, 3) < 0)
3700 goto invalid_code;
3701 CODING_ISO_INVOCATION (coding, 0) = 3;
3702 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
b73bfc1c 3703 continue;
4ed46869
KH
3704
3705 case 'N': /* invocation of single-shift-2 */
df7492f9
KH
3706 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)
3707 || CODING_ISO_DESIGNATION (coding, 2) < 0)
3708 goto invalid_code;
134b9549
KH
3709 charset_id_2 = CODING_ISO_DESIGNATION (coding, 2);
3710 if (charset_id_2 < 0)
3711 charset = CHARSET_FROM_ID (charset_ascii);
3712 else
3713 charset = CHARSET_FROM_ID (charset_id_2);
b73bfc1c 3714 ONE_MORE_BYTE (c1);
e7046a18 3715 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0))
df7492f9 3716 goto invalid_code;
4ed46869
KH
3717 break;
3718
3719 case 'O': /* invocation of single-shift-3 */
df7492f9
KH
3720 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)
3721 || CODING_ISO_DESIGNATION (coding, 3) < 0)
3722 goto invalid_code;
134b9549
KH
3723 charset_id_3 = CODING_ISO_DESIGNATION (coding, 3);
3724 if (charset_id_3 < 0)
3725 charset = CHARSET_FROM_ID (charset_ascii);
3726 else
3727 charset = CHARSET_FROM_ID (charset_id_3);
b73bfc1c 3728 ONE_MORE_BYTE (c1);
e7046a18 3729 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0))
df7492f9 3730 goto invalid_code;
4ed46869
KH
3731 break;
3732
ec6d2bb8 3733 case '0': case '2': case '3': case '4': /* start composition */
df7492f9
KH
3734 if (! (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK))
3735 goto invalid_code;
e951386e
KH
3736 if (last_id != charset_ascii)
3737 {
3738 ADD_CHARSET_DATA (charbuf, char_offset- last_offset, last_id);
3739 last_id = charset_ascii;
3740 last_offset = char_offset;
3741 }
ec6d2bb8 3742 DECODE_COMPOSITION_START (c1);
b73bfc1c 3743 continue;
4ed46869 3744
ec6d2bb8 3745 case '1': /* end composition */
e951386e 3746 if (cmp_status->state == COMPOSING_NO)
df7492f9
KH
3747 goto invalid_code;
3748 DECODE_COMPOSITION_END ();
b73bfc1c 3749 continue;
4ed46869
KH
3750
3751 case '[': /* specification of direction */
de59072a 3752 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION))
df7492f9 3753 goto invalid_code;
4ed46869 3754 /* For the moment, nested direction is not supported.
d46c5b12 3755 So, `coding->mode & CODING_MODE_DIRECTION' zero means
ad1746f5 3756 left-to-right, and nonzero means right-to-left. */
4ed46869
KH
3757 ONE_MORE_BYTE (c1);
3758 switch (c1)
3759 {
3760 case ']': /* end of the current direction */
d46c5b12 3761 coding->mode &= ~CODING_MODE_DIRECTION;
4ed46869
KH
3762
3763 case '0': /* end of the current direction */
3764 case '1': /* start of left-to-right direction */
3765 ONE_MORE_BYTE (c1);
3766 if (c1 == ']')
d46c5b12 3767 coding->mode &= ~CODING_MODE_DIRECTION;
4ed46869 3768 else
df7492f9 3769 goto invalid_code;
4ed46869
KH
3770 break;
3771
3772 case '2': /* start of right-to-left direction */
3773 ONE_MORE_BYTE (c1);
3774 if (c1 == ']')
d46c5b12 3775 coding->mode |= CODING_MODE_DIRECTION;
4ed46869 3776 else
df7492f9 3777 goto invalid_code;
4ed46869
KH
3778 break;
3779
3780 default:
df7492f9 3781 goto invalid_code;
4ed46869 3782 }
b73bfc1c 3783 continue;
4ed46869 3784
103e0180 3785 case '%':
103e0180
KH
3786 ONE_MORE_BYTE (c1);
3787 if (c1 == '/')
3788 {
3789 /* CTEXT extended segment:
3790 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
3791 We keep these bytes as is for the moment.
3792 They may be decoded by post-read-conversion. */
3793 int dim, M, L;
4776e638 3794 int size;
8f924df7 3795
103e0180 3796 ONE_MORE_BYTE (dim);
7a84eee5 3797 if (dim < '0' || dim > '4')
e951386e 3798 goto invalid_code;
103e0180 3799 ONE_MORE_BYTE (M);
e951386e
KH
3800 if (M < 128)
3801 goto invalid_code;
103e0180 3802 ONE_MORE_BYTE (L);
e951386e
KH
3803 if (L < 128)
3804 goto invalid_code;
103e0180 3805 size = ((M - 128) * 128) + (L - 128);
e951386e 3806 if (charbuf + 6 > charbuf_end)
4776e638
KH
3807 goto break_loop;
3808 *charbuf++ = ISO_CODE_ESC;
3809 *charbuf++ = '%';
3810 *charbuf++ = '/';
3811 *charbuf++ = dim;
3812 *charbuf++ = BYTE8_TO_CHAR (M);
3813 *charbuf++ = BYTE8_TO_CHAR (L);
e951386e 3814 CODING_ISO_EXTSEGMENT_LEN (coding) = size;
103e0180
KH
3815 }
3816 else if (c1 == 'G')
3817 {
103e0180
KH
3818 /* XFree86 extension for embedding UTF-8 in CTEXT:
3819 ESC % G --UTF-8-BYTES-- ESC % @
3820 We keep these bytes as is for the moment.
3821 They may be decoded by post-read-conversion. */
e951386e 3822 if (charbuf + 3 > charbuf_end)
4776e638 3823 goto break_loop;
e951386e
KH
3824 *charbuf++ = ISO_CODE_ESC;
3825 *charbuf++ = '%';
3826 *charbuf++ = 'G';
3827 CODING_ISO_EMBEDDED_UTF_8 (coding) = 1;
103e0180
KH
3828 }
3829 else
4776e638 3830 goto invalid_code;
103e0180 3831 continue;
4776e638 3832 break;
103e0180 3833
4ed46869 3834 default:
df7492f9
KH
3835 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION))
3836 goto invalid_code;
134b9549
KH
3837 {
3838 int reg, chars96;
3839
3840 if (c1 >= 0x28 && c1 <= 0x2B)
3841 { /* designation of DIMENSION1_CHARS94 character set */
3842 reg = c1 - 0x28, chars96 = 0;
3843 ONE_MORE_BYTE (c1);
3844 }
3845 else if (c1 >= 0x2C && c1 <= 0x2F)
3846 { /* designation of DIMENSION1_CHARS96 character set */
3847 reg = c1 - 0x2C, chars96 = 1;
3848 ONE_MORE_BYTE (c1);
3849 }
3850 else
3851 goto invalid_code;
3852 DECODE_DESIGNATION (reg, 1, chars96, c1);
3853 /* We must update these variables now. */
3854 if (reg == 0)
3855 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0);
3856 else if (reg == 1)
3857 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1);
3858 if (chars96 < 0)
3859 goto invalid_code;
3860 }
b73bfc1c 3861 continue;
4ed46869 3862 }
413bb2db
PE
3863 break;
3864
3865 default:
1088b922 3866 emacs_abort ();
b73bfc1c 3867 }
4ed46869 3868
e951386e
KH
3869 if (cmp_status->state == COMPOSING_NO
3870 && charset->id != charset_ascii
ff0dacd7
KH
3871 && last_id != charset->id)
3872 {
3873 if (last_id != charset_ascii)
69a80ea3 3874 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
ff0dacd7
KH
3875 last_id = charset->id;
3876 last_offset = char_offset;
3877 }
3878
b73bfc1c 3879 /* Now we know CHARSET and 1st position code C1 of a character.
cf299835
KH
3880 Produce a decoded character while getting 2nd and 3rd
3881 position codes C2, C3 if necessary. */
df7492f9 3882 if (CHARSET_DIMENSION (charset) > 1)
b73bfc1c
KH
3883 {
3884 ONE_MORE_BYTE (c2);
cf299835
KH
3885 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0)
3886 || ((c1 & 0x80) != (c2 & 0x80)))
b73bfc1c 3887 /* C2 is not in a valid range. */
df7492f9 3888 goto invalid_code;
cf299835
KH
3889 if (CHARSET_DIMENSION (charset) == 2)
3890 c1 = (c1 << 8) | c2;
3891 else
df7492f9 3892 {
cf299835
KH
3893 ONE_MORE_BYTE (c3);
3894 if (c3 < 0x20 || (c3 >= 0x80 && c3 < 0xA0)
3895 || ((c1 & 0x80) != (c3 & 0x80)))
3896 /* C3 is not in a valid range. */
df7492f9 3897 goto invalid_code;
cf299835 3898 c1 = (c1 << 16) | (c2 << 8) | c2;
df7492f9
KH
3899 }
3900 }
cf299835 3901 c1 &= 0x7F7F7F;
df7492f9
KH
3902 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c);
3903 if (c < 0)
3904 {
3905 MAYBE_FINISH_COMPOSITION ();
3906 for (; src_base < src; src_base++, char_offset++)
3907 {
3908 if (ASCII_BYTE_P (*src_base))
3909 *charbuf++ = *src_base;
3910 else
3911 *charbuf++ = BYTE8_TO_CHAR (*src_base);
3912 }
3913 }
e951386e 3914 else if (cmp_status->state == COMPOSING_NO)
df7492f9
KH
3915 {
3916 *charbuf++ = c;
3917 char_offset++;
4ed46869 3918 }
e951386e
KH
3919 else if ((cmp_status->state == COMPOSING_CHAR
3920 ? cmp_status->nchars
3921 : cmp_status->ncomps)
3922 >= MAX_COMPOSITION_COMPONENTS)
781d7a48 3923 {
e951386e
KH
3924 /* Too long composition. */
3925 MAYBE_FINISH_COMPOSITION ();
3926 *charbuf++ = c;
3927 char_offset++;
4ed46869 3928 }
e951386e
KH
3929 else
3930 STORE_COMPOSITION_CHAR (c);
4ed46869
KH
3931 continue;
3932
df7492f9
KH
3933 invalid_code:
3934 MAYBE_FINISH_COMPOSITION ();
4ed46869 3935 src = src_base;
df7492f9
KH
3936 consumed_chars = consumed_chars_base;
3937 ONE_MORE_BYTE (c);
065e3595 3938 *charbuf++ = c < 0 ? -c : ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c);
ff0dacd7 3939 char_offset++;
df7492f9 3940 coding->errors++;
4776e638
KH
3941 continue;
3942
3943 break_loop:
3944 break;
4ed46869 3945 }
fb88bf2d 3946
df7492f9 3947 no_more_source:
e951386e
KH
3948 if (cmp_status->state != COMPOSING_NO)
3949 {
3950 if (coding->mode & CODING_MODE_LAST_BLOCK)
3951 MAYBE_FINISH_COMPOSITION ();
3952 else
3953 {
3954 charbuf -= cmp_status->length;
3955 for (i = 0; i < cmp_status->length; i++)
3956 cmp_status->carryover[i] = charbuf[i];
3957 }
3958 }
3959 else if (last_id != charset_ascii)
69a80ea3 3960 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
df7492f9
KH
3961 coding->consumed_char += consumed_chars_base;
3962 coding->consumed = src_base - coding->source;
3963 coding->charbuf_used = charbuf - coding->charbuf;
4ed46869
KH
3964}
3965
b73bfc1c 3966
f4dee582 3967/* ISO2022 encoding stuff. */
4ed46869
KH
3968
3969/*
f4dee582 3970 It is not enough to say just "ISO2022" on encoding, we have to
df7492f9 3971 specify more details. In Emacs, each coding system of ISO2022
4ed46869 3972 variant has the following specifications:
df7492f9 3973 1. Initial designation to G0 thru G3.
4ed46869
KH
3974 2. Allows short-form designation?
3975 3. ASCII should be designated to G0 before control characters?
3976 4. ASCII should be designated to G0 at end of line?
3977 5. 7-bit environment or 8-bit environment?
3978 6. Use locking-shift?
3979 7. Use Single-shift?
3980 And the following two are only for Japanese:
3981 8. Use ASCII in place of JIS0201-1976-Roman?
3982 9. Use JISX0208-1983 in place of JISX0208-1978?
df7492f9
KH
3983 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits
3984 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more
f4dee582 3985 details.
4ed46869
KH
3986*/
3987
3988/* Produce codes (escape sequence) for designating CHARSET to graphic
b73bfc1c
KH
3989 register REG at DST, and increment DST. If <final-char> of CHARSET is
3990 '@', 'A', or 'B' and the coding system CODING allows, produce
3991 designation sequence of short-form. */
4ed46869
KH
3992
3993#define ENCODE_DESIGNATION(charset, reg, coding) \
3994 do { \
df7492f9 3995 unsigned char final_char = CHARSET_ISO_FINAL (charset); \
675e2c69
DN
3996 const char *intermediate_char_94 = "()*+"; \
3997 const char *intermediate_char_96 = ",-./"; \
df7492f9 3998 int revision = -1; \
df7492f9
KH
3999 \
4000 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \
c197f191 4001 revision = CHARSET_ISO_REVISION (charset); \
df7492f9
KH
4002 \
4003 if (revision >= 0) \
70c22245 4004 { \
df7492f9
KH
4005 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \
4006 EMIT_ONE_BYTE ('@' + revision); \
4ed46869 4007 } \
df7492f9 4008 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \
4ed46869
KH
4009 if (CHARSET_DIMENSION (charset) == 1) \
4010 { \
2735d060 4011 int b; \
df7492f9 4012 if (! CHARSET_ISO_CHARS_96 (charset)) \
2735d060 4013 b = intermediate_char_94[reg]; \
4ed46869 4014 else \
2735d060
PE
4015 b = intermediate_char_96[reg]; \
4016 EMIT_ONE_ASCII_BYTE (b); \
4ed46869
KH
4017 } \
4018 else \
4019 { \
df7492f9
KH
4020 EMIT_ONE_ASCII_BYTE ('$'); \
4021 if (! CHARSET_ISO_CHARS_96 (charset)) \
4ed46869 4022 { \
df7492f9 4023 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \
b73bfc1c
KH
4024 || reg != 0 \
4025 || final_char < '@' || final_char > 'B') \
df7492f9 4026 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \
4ed46869
KH
4027 } \
4028 else \
df7492f9 4029 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \
4ed46869 4030 } \
df7492f9
KH
4031 EMIT_ONE_ASCII_BYTE (final_char); \
4032 \
4033 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \
4ed46869
KH
4034 } while (0)
4035
df7492f9 4036
4ed46869
KH
4037/* The following two macros produce codes (control character or escape
4038 sequence) for ISO2022 single-shift functions (single-shift-2 and
4039 single-shift-3). */
4040
df7492f9
KH
4041#define ENCODE_SINGLE_SHIFT_2 \
4042 do { \
4043 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4044 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \
4045 else \
4046 EMIT_ONE_BYTE (ISO_CODE_SS2); \
4047 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4ed46869
KH
4048 } while (0)
4049
df7492f9
KH
4050
4051#define ENCODE_SINGLE_SHIFT_3 \
4052 do { \
4053 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4054 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \
4055 else \
4056 EMIT_ONE_BYTE (ISO_CODE_SS3); \
4057 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4ed46869
KH
4058 } while (0)
4059
df7492f9 4060
4ed46869
KH
4061/* The following four macros produce codes (control character or
4062 escape sequence) for ISO2022 locking-shift functions (shift-in,
4063 shift-out, locking-shift-2, and locking-shift-3). */
4064
df7492f9
KH
4065#define ENCODE_SHIFT_IN \
4066 do { \
4067 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \
4068 CODING_ISO_INVOCATION (coding, 0) = 0; \
4ed46869
KH
4069 } while (0)
4070
df7492f9
KH
4071
4072#define ENCODE_SHIFT_OUT \
4073 do { \
4074 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \
4075 CODING_ISO_INVOCATION (coding, 0) = 1; \
4ed46869
KH
4076 } while (0)
4077
df7492f9
KH
4078
4079#define ENCODE_LOCKING_SHIFT_2 \
4080 do { \
4081 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4082 CODING_ISO_INVOCATION (coding, 0) = 2; \
4ed46869
KH
4083 } while (0)
4084
df7492f9
KH
4085
4086#define ENCODE_LOCKING_SHIFT_3 \
4087 do { \
4088 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4089 CODING_ISO_INVOCATION (coding, 0) = 3; \
4ed46869
KH
4090 } while (0)
4091
df7492f9 4092
f4dee582
RS
4093/* Produce codes for a DIMENSION1 character whose character set is
4094 CHARSET and whose position-code is C1. Designation and invocation
4ed46869
KH
4095 sequences are also produced in advance if necessary. */
4096
6e85d753
KH
4097#define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
4098 do { \
df7492f9 4099 int id = CHARSET_ID (charset); \
bf16eb23
KH
4100 \
4101 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
4102 && id == charset_ascii) \
4103 { \
4104 id = charset_jisx0201_roman; \
4105 charset = CHARSET_FROM_ID (id); \
4106 } \
4107 \
df7492f9 4108 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
6e85d753 4109 { \
df7492f9
KH
4110 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4111 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
6e85d753 4112 else \
df7492f9
KH
4113 EMIT_ONE_BYTE (c1 | 0x80); \
4114 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
6e85d753
KH
4115 break; \
4116 } \
df7492f9 4117 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
6e85d753 4118 { \
df7492f9 4119 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
6e85d753
KH
4120 break; \
4121 } \
df7492f9 4122 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
6e85d753 4123 { \
df7492f9 4124 EMIT_ONE_BYTE (c1 | 0x80); \
6e85d753
KH
4125 break; \
4126 } \
6e85d753
KH
4127 else \
4128 /* Since CHARSET is not yet invoked to any graphic planes, we \
4129 must invoke it, or, at first, designate it to some graphic \
4130 register. Then repeat the loop to actually produce the \
4131 character. */ \
df7492f9
KH
4132 dst = encode_invocation_designation (charset, coding, dst, \
4133 &produced_chars); \
4ed46869
KH
4134 } while (1)
4135
df7492f9 4136
f4dee582
RS
4137/* Produce codes for a DIMENSION2 character whose character set is
4138 CHARSET and whose position-codes are C1 and C2. Designation and
4ed46869
KH
4139 invocation codes are also produced in advance if necessary. */
4140
6e85d753
KH
4141#define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
4142 do { \
df7492f9 4143 int id = CHARSET_ID (charset); \
bf16eb23
KH
4144 \
4145 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
4146 && id == charset_jisx0208) \
4147 { \
4148 id = charset_jisx0208_1978; \
4149 charset = CHARSET_FROM_ID (id); \
4150 } \
4151 \
df7492f9 4152 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
6e85d753 4153 { \
df7492f9
KH
4154 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4155 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
6e85d753 4156 else \
df7492f9
KH
4157 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4158 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
6e85d753
KH
4159 break; \
4160 } \
df7492f9 4161 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
6e85d753 4162 { \
df7492f9 4163 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
6e85d753
KH
4164 break; \
4165 } \
df7492f9 4166 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
6e85d753 4167 { \
df7492f9 4168 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
6e85d753
KH
4169 break; \
4170 } \
6e85d753
KH
4171 else \
4172 /* Since CHARSET is not yet invoked to any graphic planes, we \
4173 must invoke it, or, at first, designate it to some graphic \
4174 register. Then repeat the loop to actually produce the \
4175 character. */ \
df7492f9
KH
4176 dst = encode_invocation_designation (charset, coding, dst, \
4177 &produced_chars); \
4ed46869
KH
4178 } while (1)
4179
05e6f5dc 4180
df7492f9
KH
4181#define ENCODE_ISO_CHARACTER(charset, c) \
4182 do { \
8f50130c 4183 unsigned code; \
5eb05ea3 4184 CODING_ENCODE_CHAR (coding, dst, dst_end, (charset), (c), code); \
df7492f9
KH
4185 \
4186 if (CHARSET_DIMENSION (charset) == 1) \
4187 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \
4188 else \
4189 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \
84fbb8a0 4190 } while (0)
bdd9fb48 4191
05e6f5dc 4192
4ed46869 4193/* Produce designation and invocation codes at a place pointed by DST
df7492f9 4194 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4ed46869
KH
4195 Return new DST. */
4196
e2f1bab9 4197static unsigned char *
cf84bb53
JB
4198encode_invocation_designation (struct charset *charset,
4199 struct coding_system *coding,
d311d28c 4200 unsigned char *dst, ptrdiff_t *p_nchars)
4ed46869 4201{
f10fe38f 4202 bool multibytep = coding->dst_multibyte;
d311d28c 4203 ptrdiff_t produced_chars = *p_nchars;
4ed46869 4204 int reg; /* graphic register number */
df7492f9 4205 int id = CHARSET_ID (charset);
4ed46869
KH
4206
4207 /* At first, check designations. */
4208 for (reg = 0; reg < 4; reg++)
df7492f9 4209 if (id == CODING_ISO_DESIGNATION (coding, reg))
4ed46869
KH
4210 break;
4211
4212 if (reg >= 4)
4213 {
4214 /* CHARSET is not yet designated to any graphic registers. */
4215 /* At first check the requested designation. */
df7492f9
KH
4216 reg = CODING_ISO_REQUEST (coding, id);
4217 if (reg < 0)
1ba9e4ab
KH
4218 /* Since CHARSET requests no special designation, designate it
4219 to graphic register 0. */
4ed46869
KH
4220 reg = 0;
4221
4222 ENCODE_DESIGNATION (charset, reg, coding);
4223 }
4224
df7492f9
KH
4225 if (CODING_ISO_INVOCATION (coding, 0) != reg
4226 && CODING_ISO_INVOCATION (coding, 1) != reg)
4ed46869
KH
4227 {
4228 /* Since the graphic register REG is not invoked to any graphic
4229 planes, invoke it to graphic plane 0. */
4230 switch (reg)
4231 {
4232 case 0: /* graphic register 0 */
4233 ENCODE_SHIFT_IN;
4234 break;
4235
4236 case 1: /* graphic register 1 */
4237 ENCODE_SHIFT_OUT;
4238 break;
4239
4240 case 2: /* graphic register 2 */
df7492f9 4241 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)
4ed46869
KH
4242 ENCODE_SINGLE_SHIFT_2;
4243 else
4244 ENCODE_LOCKING_SHIFT_2;
4245 break;
4246
4247 case 3: /* graphic register 3 */
df7492f9 4248 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)
4ed46869
KH
4249 ENCODE_SINGLE_SHIFT_3;
4250 else
4251 ENCODE_LOCKING_SHIFT_3;
4252 break;
4253 }
4254 }
b73bfc1c 4255
df7492f9 4256 *p_nchars = produced_chars;
4ed46869
KH
4257 return dst;
4258}
4259
4ed46869
KH
4260
4261/* Produce codes for designation and invocation to reset the graphic
4262 planes and registers to initial state. */
df7492f9
KH
4263#define ENCODE_RESET_PLANE_AND_REGISTER() \
4264 do { \
4265 int reg; \
4266 struct charset *charset; \
4267 \
4268 if (CODING_ISO_INVOCATION (coding, 0) != 0) \
4269 ENCODE_SHIFT_IN; \
4270 for (reg = 0; reg < 4; reg++) \
4271 if (CODING_ISO_INITIAL (coding, reg) >= 0 \
4272 && (CODING_ISO_DESIGNATION (coding, reg) \
4273 != CODING_ISO_INITIAL (coding, reg))) \
4274 { \
4275 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \
4276 ENCODE_DESIGNATION (charset, reg, coding); \
4277 } \
4ed46869
KH
4278 } while (0)
4279
df7492f9 4280
bdd9fb48 4281/* Produce designation sequences of charsets in the line started from
5eb05ea3
KH
4282 CHARBUF to a place pointed by DST, and return the number of
4283 produced bytes. DST should not directly point a buffer text area
4284 which may be relocated by char_charset call.
bdd9fb48
KH
4285
4286 If the current block ends before any end-of-line, we may fail to
d46c5b12
KH
4287 find all the necessary designations. */
4288
6e6c82a4 4289static ptrdiff_t
5eb05ea3
KH
4290encode_designation_at_bol (struct coding_system *coding,
4291 int *charbuf, int *charbuf_end,
461c2ab9 4292 unsigned char *dst)
e0e989f6 4293{
75a3b399 4294 unsigned char *orig = dst;
df7492f9 4295 struct charset *charset;
bdd9fb48
KH
4296 /* Table of charsets to be designated to each graphic register. */
4297 int r[4];
df7492f9 4298 int c, found = 0, reg;
d311d28c 4299 ptrdiff_t produced_chars = 0;
f10fe38f 4300 bool multibytep = coding->dst_multibyte;
df7492f9
KH
4301 Lisp_Object attrs;
4302 Lisp_Object charset_list;
4303
4304 attrs = CODING_ID_ATTRS (coding->id);
4305 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
4306 if (EQ (charset_list, Qiso_2022))
4307 charset_list = Viso_2022_charset_list;
bdd9fb48
KH
4308
4309 for (reg = 0; reg < 4; reg++)
4310 r[reg] = -1;
4311
5eb05ea3 4312 while (charbuf < charbuf_end && found < 4)
e0e989f6 4313 {
df7492f9
KH
4314 int id;
4315
4316 c = *charbuf++;
b73bfc1c
KH
4317 if (c == '\n')
4318 break;
df7492f9
KH
4319 charset = char_charset (c, charset_list, NULL);
4320 id = CHARSET_ID (charset);
4321 reg = CODING_ISO_REQUEST (coding, id);
4322 if (reg >= 0 && r[reg] < 0)
bdd9fb48
KH
4323 {
4324 found++;
df7492f9 4325 r[reg] = id;
bdd9fb48 4326 }
bdd9fb48
KH
4327 }
4328
4329 if (found)
4330 {
4331 for (reg = 0; reg < 4; reg++)
4332 if (r[reg] >= 0
df7492f9
KH
4333 && CODING_ISO_DESIGNATION (coding, reg) != r[reg])
4334 ENCODE_DESIGNATION (CHARSET_FROM_ID (r[reg]), reg, coding);
e0e989f6 4335 }
b73bfc1c 4336
5eb05ea3 4337 return dst - orig;
e0e989f6
KH
4338}
4339
4ed46869
KH
4340/* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
4341
f10fe38f 4342static bool
971de7fb 4343encode_coding_iso_2022 (struct coding_system *coding)
4ed46869 4344{
f10fe38f 4345 bool multibytep = coding->dst_multibyte;
df7492f9
KH
4346 int *charbuf = coding->charbuf;
4347 int *charbuf_end = charbuf + coding->charbuf_used;
4348 unsigned char *dst = coding->destination + coding->produced;
4349 unsigned char *dst_end = coding->destination + coding->dst_bytes;
4350 int safe_room = 16;
f10fe38f 4351 bool bol_designation
df7492f9
KH
4352 = (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
4353 && CODING_ISO_BOL (coding));
d311d28c 4354 ptrdiff_t produced_chars = 0;
df7492f9 4355 Lisp_Object attrs, eol_type, charset_list;
f10fe38f 4356 bool ascii_compatible;
b73bfc1c 4357 int c;
ff0dacd7 4358 int preferred_charset_id = -1;
05e6f5dc 4359
24a73b0a 4360 CODING_GET_INFO (coding, attrs, charset_list);
0a9564cb 4361 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id);
24a73b0a
KH
4362 if (VECTORP (eol_type))
4363 eol_type = Qunix;
4364
004068e4 4365 setup_iso_safe_charsets (attrs);
ff0dacd7 4366 /* Charset list may have been changed. */
287c57d7 4367 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
1b3b981b 4368 coding->safe_charsets = SDATA (CODING_ATTR_SAFE_CHARSETS (attrs));
0eecad43 4369
a552b35a
KH
4370 ascii_compatible
4371 = (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))
4372 && ! (CODING_ISO_FLAGS (coding) & (CODING_ISO_FLAG_DESIGNATION
4373 | CODING_ISO_FLAG_LOCKING_SHIFT)));
bdd9fb48 4374
df7492f9 4375 while (charbuf < charbuf_end)
4ed46869 4376 {
df7492f9 4377 ASSURE_DESTINATION (safe_room);
b73bfc1c 4378
df7492f9 4379 if (bol_designation)
b73bfc1c 4380 {
bdd9fb48 4381 /* We have to produce designation sequences if any now. */
5eb05ea3
KH
4382 unsigned char desig_buf[16];
4383 int nbytes;
8f50130c 4384 ptrdiff_t offset;
5eb05ea3
KH
4385
4386 charset_map_loaded = 0;
4387 nbytes = encode_designation_at_bol (coding, charbuf, charbuf_end,
4388 desig_buf);
4389 if (charset_map_loaded
c1892f11 4390 && (offset = coding_change_destination (coding)))
5eb05ea3
KH
4391 {
4392 dst += offset;
4393 dst_end += offset;
4394 }
4395 memcpy (dst, desig_buf, nbytes);
4396 dst += nbytes;
df7492f9 4397 /* We are sure that designation sequences are all ASCII bytes. */
5eb05ea3
KH
4398 produced_chars += nbytes;
4399 bol_designation = 0;
4400 ASSURE_DESTINATION (safe_room);
e0e989f6
KH
4401 }
4402
df7492f9 4403 c = *charbuf++;
ec6d2bb8 4404
ff0dacd7
KH
4405 if (c < 0)
4406 {
4407 /* Handle an annotation. */
4408 switch (*charbuf)
ec6d2bb8 4409 {
ff0dacd7
KH
4410 case CODING_ANNOTATE_COMPOSITION_MASK:
4411 /* Not yet implemented. */
4412 break;
4413 case CODING_ANNOTATE_CHARSET_MASK:
cf7dfdf5 4414 preferred_charset_id = charbuf[2];
ff0dacd7
KH
4415 if (preferred_charset_id >= 0
4416 && NILP (Fmemq (make_number (preferred_charset_id),
4417 charset_list)))
4418 preferred_charset_id = -1;
4419 break;
4420 default:
1088b922 4421 emacs_abort ();
4ed46869 4422 }
ff0dacd7
KH
4423 charbuf += -c - 1;
4424 continue;
4ed46869 4425 }
ec6d2bb8 4426
b73bfc1c
KH
4427 /* Now encode the character C. */
4428 if (c < 0x20 || c == 0x7F)
4429 {
df7492f9
KH
4430 if (c == '\n'
4431 || (c == '\r' && EQ (eol_type, Qmac)))
19a8d9e0 4432 {
df7492f9
KH
4433 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL)
4434 ENCODE_RESET_PLANE_AND_REGISTER ();
4435 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_INIT_AT_BOL)
b73bfc1c 4436 {
df7492f9
KH
4437 int i;
4438
4439 for (i = 0; i < 4; i++)
4440 CODING_ISO_DESIGNATION (coding, i)
4441 = CODING_ISO_INITIAL (coding, i);
b73bfc1c 4442 }
f10fe38f
PE
4443 bol_designation = ((CODING_ISO_FLAGS (coding)
4444 & CODING_ISO_FLAG_DESIGNATE_AT_BOL)
4445 != 0);
19a8d9e0 4446 }
df7492f9
KH
4447 else if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_CNTL)
4448 ENCODE_RESET_PLANE_AND_REGISTER ();
4449 EMIT_ONE_ASCII_BYTE (c);
4ed46869 4450 }
df7492f9 4451 else if (ASCII_CHAR_P (c))
88993dfd 4452 {
df7492f9
KH
4453 if (ascii_compatible)
4454 EMIT_ONE_ASCII_BYTE (c);
93dec019 4455 else
19a8d9e0 4456 {
bf16eb23
KH
4457 struct charset *charset = CHARSET_FROM_ID (charset_ascii);
4458 ENCODE_ISO_CHARACTER (charset, c);
19a8d9e0 4459 }
4ed46869 4460 }
16eafb5d 4461 else if (CHAR_BYTE8_P (c))
88993dfd 4462 {
16eafb5d
KH
4463 c = CHAR_TO_BYTE8 (c);
4464 EMIT_ONE_BYTE (c);
88993dfd 4465 }
b73bfc1c 4466 else
df7492f9 4467 {
ff0dacd7 4468 struct charset *charset;
b73bfc1c 4469
ff0dacd7
KH
4470 if (preferred_charset_id >= 0)
4471 {
f10fe38f 4472 bool result;
5eb05ea3 4473
ff0dacd7 4474 charset = CHARSET_FROM_ID (preferred_charset_id);
5eb05ea3
KH
4475 CODING_CHAR_CHARSET_P (coding, dst, dst_end, c, charset, result);
4476 if (! result)
4477 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
4478 NULL, charset);
ff0dacd7
KH
4479 }
4480 else
5eb05ea3
KH
4481 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
4482 NULL, charset);
df7492f9
KH
4483 if (!charset)
4484 {
41cbe562
KH
4485 if (coding->mode & CODING_MODE_SAFE_ENCODING)
4486 {
4487 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION;
4488 charset = CHARSET_FROM_ID (charset_ascii);
4489 }
4490 else
4491 {
4492 c = coding->default_char;
5eb05ea3
KH
4493 CODING_CHAR_CHARSET (coding, dst, dst_end, c,
4494 charset_list, NULL, charset);
41cbe562 4495 }
df7492f9
KH
4496 }
4497 ENCODE_ISO_CHARACTER (charset, c);
4498 }
84fbb8a0 4499 }
b73bfc1c 4500
df7492f9
KH
4501 if (coding->mode & CODING_MODE_LAST_BLOCK
4502 && CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL)
4503 {
4504 ASSURE_DESTINATION (safe_room);
4505 ENCODE_RESET_PLANE_AND_REGISTER ();
4506 }
065e3595 4507 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
4508 CODING_ISO_BOL (coding) = bol_designation;
4509 coding->produced_char += produced_chars;
4510 coding->produced = dst - coding->destination;
4511 return 0;
4ed46869
KH
4512}
4513
4514\f
df7492f9 4515/*** 8,9. SJIS and BIG5 handlers ***/
4ed46869 4516
df7492f9 4517/* Although SJIS and BIG5 are not ISO's coding system, they are used
4ed46869
KH
4518 quite widely. So, for the moment, Emacs supports them in the bare
4519 C code. But, in the future, they may be supported only by CCL. */
4520
4521/* SJIS is a coding system encoding three character sets: ASCII, right
4522 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
4523 as is. A character of charset katakana-jisx0201 is encoded by
4524 "position-code + 0x80". A character of charset japanese-jisx0208
4525 is encoded in 2-byte but two position-codes are divided and shifted
df7492f9 4526 so that it fit in the range below.
4ed46869
KH
4527
4528 --- CODE RANGE of SJIS ---
4529 (character set) (range)
4530 ASCII 0x00 .. 0x7F
df7492f9 4531 KATAKANA-JISX0201 0xA0 .. 0xDF
c28a9453 4532 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
d14d03ac 4533 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
4ed46869
KH
4534 -------------------------------
4535
4536*/
4537
4538/* BIG5 is a coding system encoding two character sets: ASCII and
4539 Big5. An ASCII character is encoded as is. Big5 is a two-byte
df7492f9 4540 character set and is encoded in two-byte.
4ed46869
KH
4541
4542 --- CODE RANGE of BIG5 ---
4543 (character set) (range)
4544 ASCII 0x00 .. 0x7F
4545 Big5 (1st byte) 0xA1 .. 0xFE
4546 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
4547 --------------------------
4548
df7492f9 4549 */
4ed46869
KH
4550
4551/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f 4552 Return true if a text is encoded in SJIS. */
4ed46869 4553
f10fe38f 4554static bool
cf84bb53
JB
4555detect_coding_sjis (struct coding_system *coding,
4556 struct coding_detection_info *detect_info)
4ed46869 4557{
065e3595 4558 const unsigned char *src = coding->source, *src_base;
8f924df7 4559 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 4560 bool multibytep = coding->src_multibyte;
d311d28c 4561 ptrdiff_t consumed_chars = 0;
df7492f9 4562 int found = 0;
b73bfc1c 4563 int c;
f07190ca
KH
4564 Lisp_Object attrs, charset_list;
4565 int max_first_byte_of_2_byte_code;
4566
4567 CODING_GET_INFO (coding, attrs, charset_list);
4568 max_first_byte_of_2_byte_code
4569 = (XINT (Flength (charset_list)) > 3 ? 0xFC : 0xEF);
df7492f9 4570
ff0dacd7 4571 detect_info->checked |= CATEGORY_MASK_SJIS;
df7492f9
KH
4572 /* A coding system of this category is always ASCII compatible. */
4573 src += coding->head_ascii;
4ed46869 4574
b73bfc1c 4575 while (1)
4ed46869 4576 {
065e3595 4577 src_base = src;
df7492f9 4578 ONE_MORE_BYTE (c);
682169fe
KH
4579 if (c < 0x80)
4580 continue;
f07190ca
KH
4581 if ((c >= 0x81 && c <= 0x9F)
4582 || (c >= 0xE0 && c <= max_first_byte_of_2_byte_code))
4ed46869 4583 {
df7492f9 4584 ONE_MORE_BYTE (c);
682169fe 4585 if (c < 0x40 || c == 0x7F || c > 0xFC)
df7492f9 4586 break;
ff0dacd7 4587 found = CATEGORY_MASK_SJIS;
4ed46869 4588 }
df7492f9 4589 else if (c >= 0xA0 && c < 0xE0)
ff0dacd7 4590 found = CATEGORY_MASK_SJIS;
df7492f9
KH
4591 else
4592 break;
4ed46869 4593 }
ff0dacd7 4594 detect_info->rejected |= CATEGORY_MASK_SJIS;
df7492f9
KH
4595 return 0;
4596
4597 no_more_source:
065e3595 4598 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK)
89528eb3 4599 {
ff0dacd7 4600 detect_info->rejected |= CATEGORY_MASK_SJIS;
89528eb3 4601 return 0;
4ed46869 4602 }
ff0dacd7
KH
4603 detect_info->found |= found;
4604 return 1;
4ed46869
KH
4605}
4606
4607/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f 4608 Return true if a text is encoded in BIG5. */
4ed46869 4609
f10fe38f 4610static bool
cf84bb53
JB
4611detect_coding_big5 (struct coding_system *coding,
4612 struct coding_detection_info *detect_info)
4ed46869 4613{
065e3595 4614 const unsigned char *src = coding->source, *src_base;
8f924df7 4615 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 4616 bool multibytep = coding->src_multibyte;
d311d28c 4617 ptrdiff_t consumed_chars = 0;
df7492f9 4618 int found = 0;
b73bfc1c 4619 int c;
fa42c37f 4620
ff0dacd7 4621 detect_info->checked |= CATEGORY_MASK_BIG5;
df7492f9
KH
4622 /* A coding system of this category is always ASCII compatible. */
4623 src += coding->head_ascii;
fa42c37f 4624
b73bfc1c 4625 while (1)
fa42c37f 4626 {
065e3595 4627 src_base = src;
df7492f9
KH
4628 ONE_MORE_BYTE (c);
4629 if (c < 0x80)
fa42c37f 4630 continue;
df7492f9 4631 if (c >= 0xA1)
fa42c37f 4632 {
df7492f9
KH
4633 ONE_MORE_BYTE (c);
4634 if (c < 0x40 || (c >= 0x7F && c <= 0xA0))
fa42c37f 4635 return 0;
ff0dacd7 4636 found = CATEGORY_MASK_BIG5;
fa42c37f 4637 }
df7492f9
KH
4638 else
4639 break;
fa42c37f 4640 }
ff0dacd7 4641 detect_info->rejected |= CATEGORY_MASK_BIG5;
fa42c37f 4642 return 0;
fa42c37f 4643
df7492f9 4644 no_more_source:
065e3595 4645 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK)
89528eb3 4646 {
ff0dacd7 4647 detect_info->rejected |= CATEGORY_MASK_BIG5;
89528eb3
KH
4648 return 0;
4649 }
ff0dacd7
KH
4650 detect_info->found |= found;
4651 return 1;
fa42c37f
KH
4652}
4653
f10fe38f 4654/* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
fa42c37f 4655
b73bfc1c 4656static void
971de7fb 4657decode_coding_sjis (struct coding_system *coding)
4ed46869 4658{
8f924df7
KH
4659 const unsigned char *src = coding->source + coding->consumed;
4660 const unsigned char *src_end = coding->source + coding->src_bytes;
4661 const unsigned char *src_base;
69a80ea3 4662 int *charbuf = coding->charbuf + coding->charbuf_used;
ad1746f5 4663 /* We may produce one charset annotation in one loop and one more at
df80c7f0 4664 the end. */
69a80ea3 4665 int *charbuf_end
df80c7f0 4666 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2);
d311d28c 4667 ptrdiff_t consumed_chars = 0, consumed_chars_base;
f10fe38f 4668 bool multibytep = coding->src_multibyte;
df7492f9 4669 struct charset *charset_roman, *charset_kanji, *charset_kana;
57a47f8a 4670 struct charset *charset_kanji2;
24a73b0a 4671 Lisp_Object attrs, charset_list, val;
d311d28c
PE
4672 ptrdiff_t char_offset = coding->produced_char;
4673 ptrdiff_t last_offset = char_offset;
ff0dacd7 4674 int last_id = charset_ascii;
f10fe38f
PE
4675 bool eol_dos
4676 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 4677 int byte_after_cr = -1;
a5d301df 4678
24a73b0a 4679 CODING_GET_INFO (coding, attrs, charset_list);
df7492f9
KH
4680
4681 val = charset_list;
4682 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
89528eb3 4683 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
57a47f8a
KH
4684 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
4685 charset_kanji2 = NILP (val) ? NULL : CHARSET_FROM_ID (XINT (XCAR (val)));
fa42c37f 4686
b73bfc1c 4687 while (1)
4ed46869 4688 {
df7492f9 4689 int c, c1;
24a73b0a 4690 struct charset *charset;
fa42c37f 4691
b73bfc1c 4692 src_base = src;
df7492f9 4693 consumed_chars_base = consumed_chars;
fa42c37f 4694
df7492f9 4695 if (charbuf >= charbuf_end)
b71f6f73
KH
4696 {
4697 if (byte_after_cr >= 0)
4698 src_base--;
4699 break;
4700 }
df7492f9 4701
119852e7
KH
4702 if (byte_after_cr >= 0)
4703 c = byte_after_cr, byte_after_cr = -1;
4704 else
4705 ONE_MORE_BYTE (c);
065e3595
KH
4706 if (c < 0)
4707 goto invalid_code;
24a73b0a 4708 if (c < 0x80)
119852e7 4709 {
2735d060 4710 if (eol_dos && c == '\r')
119852e7
KH
4711 ONE_MORE_BYTE (byte_after_cr);
4712 charset = charset_roman;
4713 }
57a47f8a 4714 else if (c == 0x80 || c == 0xA0)
8e921c4b 4715 goto invalid_code;
57a47f8a
KH
4716 else if (c >= 0xA1 && c <= 0xDF)
4717 {
4718 /* SJIS -> JISX0201-Kana */
4719 c &= 0x7F;
4720 charset = charset_kana;
4721 }
4722 else if (c <= 0xEF)
df7492f9 4723 {
57a47f8a
KH
4724 /* SJIS -> JISX0208 */
4725 ONE_MORE_BYTE (c1);
4726 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC)
24a73b0a 4727 goto invalid_code;
57a47f8a
KH
4728 c = (c << 8) | c1;
4729 SJIS_TO_JIS (c);
4730 charset = charset_kanji;
4731 }
4732 else if (c <= 0xFC && charset_kanji2)
4733 {
c6876370 4734 /* SJIS -> JISX0213-2 */
57a47f8a
KH
4735 ONE_MORE_BYTE (c1);
4736 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC)
24a73b0a 4737 goto invalid_code;
57a47f8a
KH
4738 c = (c << 8) | c1;
4739 SJIS_TO_JIS2 (c);
4740 charset = charset_kanji2;
df7492f9 4741 }
57a47f8a
KH
4742 else
4743 goto invalid_code;
24a73b0a
KH
4744 if (charset->id != charset_ascii
4745 && last_id != charset->id)
4746 {
4747 if (last_id != charset_ascii)
69a80ea3 4748 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
24a73b0a
KH
4749 last_id = charset->id;
4750 last_offset = char_offset;
4751 }
4752 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c);
df7492f9 4753 *charbuf++ = c;
ff0dacd7 4754 char_offset++;
df7492f9 4755 continue;
b73bfc1c 4756
df7492f9
KH
4757 invalid_code:
4758 src = src_base;
4759 consumed_chars = consumed_chars_base;
4760 ONE_MORE_BYTE (c);
065e3595 4761 *charbuf++ = c < 0 ? -c : BYTE8_TO_CHAR (c);
ff0dacd7 4762 char_offset++;
df7492f9
KH
4763 coding->errors++;
4764 }
fa42c37f 4765
df7492f9 4766 no_more_source:
ff0dacd7 4767 if (last_id != charset_ascii)
69a80ea3 4768 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
df7492f9
KH
4769 coding->consumed_char += consumed_chars_base;
4770 coding->consumed = src_base - coding->source;
4771 coding->charbuf_used = charbuf - coding->charbuf;
fa42c37f
KH
4772}
4773
b73bfc1c 4774static void
971de7fb 4775decode_coding_big5 (struct coding_system *coding)
4ed46869 4776{
8f924df7
KH
4777 const unsigned char *src = coding->source + coding->consumed;
4778 const unsigned char *src_end = coding->source + coding->src_bytes;
4779 const unsigned char *src_base;
69a80ea3 4780 int *charbuf = coding->charbuf + coding->charbuf_used;
ad1746f5 4781 /* We may produce one charset annotation in one loop and one more at
df80c7f0 4782 the end. */
69a80ea3 4783 int *charbuf_end
df80c7f0 4784 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2);
d311d28c 4785 ptrdiff_t consumed_chars = 0, consumed_chars_base;
f10fe38f 4786 bool multibytep = coding->src_multibyte;
df7492f9 4787 struct charset *charset_roman, *charset_big5;
24a73b0a 4788 Lisp_Object attrs, charset_list, val;
d311d28c
PE
4789 ptrdiff_t char_offset = coding->produced_char;
4790 ptrdiff_t last_offset = char_offset;
ff0dacd7 4791 int last_id = charset_ascii;
f10fe38f
PE
4792 bool eol_dos
4793 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 4794 int byte_after_cr = -1;
df7492f9 4795
24a73b0a 4796 CODING_GET_INFO (coding, attrs, charset_list);
df7492f9
KH
4797 val = charset_list;
4798 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
4799 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val)));
4ed46869 4800
b73bfc1c 4801 while (1)
4ed46869 4802 {
df7492f9 4803 int c, c1;
24a73b0a 4804 struct charset *charset;
b73bfc1c
KH
4805
4806 src_base = src;
df7492f9
KH
4807 consumed_chars_base = consumed_chars;
4808
4809 if (charbuf >= charbuf_end)
b71f6f73
KH
4810 {
4811 if (byte_after_cr >= 0)
4812 src_base--;
4813 break;
4814 }
df7492f9 4815
119852e7 4816 if (byte_after_cr >= 0)
14daee73 4817 c = byte_after_cr, byte_after_cr = -1;
119852e7
KH
4818 else
4819 ONE_MORE_BYTE (c);
b73bfc1c 4820
065e3595
KH
4821 if (c < 0)
4822 goto invalid_code;
24a73b0a 4823 if (c < 0x80)
119852e7 4824 {
2735d060 4825 if (eol_dos && c == '\r')
119852e7
KH
4826 ONE_MORE_BYTE (byte_after_cr);
4827 charset = charset_roman;
4828 }
24a73b0a 4829 else
4ed46869 4830 {
24a73b0a
KH
4831 /* BIG5 -> Big5 */
4832 if (c < 0xA1 || c > 0xFE)
4833 goto invalid_code;
4834 ONE_MORE_BYTE (c1);
4835 if (c1 < 0x40 || (c1 > 0x7E && c1 < 0xA1) || c1 > 0xFE)
4836 goto invalid_code;
4837 c = c << 8 | c1;
4838 charset = charset_big5;
4ed46869 4839 }
24a73b0a
KH
4840 if (charset->id != charset_ascii
4841 && last_id != charset->id)
df7492f9 4842 {
24a73b0a 4843 if (last_id != charset_ascii)
69a80ea3 4844 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
24a73b0a
KH
4845 last_id = charset->id;
4846 last_offset = char_offset;
4ed46869 4847 }
24a73b0a 4848 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c);
df7492f9 4849 *charbuf++ = c;
ff0dacd7 4850 char_offset++;
fb88bf2d
KH
4851 continue;
4852
df7492f9 4853 invalid_code:
4ed46869 4854 src = src_base;
df7492f9
KH
4855 consumed_chars = consumed_chars_base;
4856 ONE_MORE_BYTE (c);
065e3595 4857 *charbuf++ = c < 0 ? -c : BYTE8_TO_CHAR (c);
ff0dacd7 4858 char_offset++;
df7492f9 4859 coding->errors++;
fb88bf2d 4860 }
d46c5b12 4861
df7492f9 4862 no_more_source:
ff0dacd7 4863 if (last_id != charset_ascii)
69a80ea3 4864 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
df7492f9
KH
4865 coding->consumed_char += consumed_chars_base;
4866 coding->consumed = src_base - coding->source;
4867 coding->charbuf_used = charbuf - coding->charbuf;
4ed46869
KH
4868}
4869
4870/* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
b73bfc1c
KH
4871 This function can encode charsets `ascii', `katakana-jisx0201',
4872 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
4873 are sure that all these charsets are registered as official charset
4ed46869 4874 (i.e. do not have extended leading-codes). Characters of other
f10fe38f 4875 charsets are produced without any encoding. */
4ed46869 4876
f10fe38f 4877static bool
971de7fb 4878encode_coding_sjis (struct coding_system *coding)
4ed46869 4879{
f10fe38f 4880 bool multibytep = coding->dst_multibyte;
df7492f9
KH
4881 int *charbuf = coding->charbuf;
4882 int *charbuf_end = charbuf + coding->charbuf_used;
4883 unsigned char *dst = coding->destination + coding->produced;
4884 unsigned char *dst_end = coding->destination + coding->dst_bytes;
4885 int safe_room = 4;
d311d28c 4886 ptrdiff_t produced_chars = 0;
24a73b0a 4887 Lisp_Object attrs, charset_list, val;
f10fe38f 4888 bool ascii_compatible;
66ebf983 4889 struct charset *charset_kanji, *charset_kana;
57a47f8a 4890 struct charset *charset_kanji2;
df7492f9 4891 int c;
a5d301df 4892
24a73b0a 4893 CODING_GET_INFO (coding, attrs, charset_list);
66ebf983 4894 val = XCDR (charset_list);
df7492f9 4895 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
57a47f8a
KH
4896 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
4897 charset_kanji2 = NILP (val) ? NULL : CHARSET_FROM_ID (XINT (XCAR (val)));
4ed46869 4898
df7492f9 4899 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs));
93dec019 4900
df7492f9
KH
4901 while (charbuf < charbuf_end)
4902 {
4903 ASSURE_DESTINATION (safe_room);
4904 c = *charbuf++;
b73bfc1c 4905 /* Now encode the character C. */
df7492f9
KH
4906 if (ASCII_CHAR_P (c) && ascii_compatible)
4907 EMIT_ONE_ASCII_BYTE (c);
16eafb5d
KH
4908 else if (CHAR_BYTE8_P (c))
4909 {
4910 c = CHAR_TO_BYTE8 (c);
4911 EMIT_ONE_BYTE (c);
4912 }
df7492f9 4913 else
b73bfc1c 4914 {
df7492f9 4915 unsigned code;
5eb05ea3
KH
4916 struct charset *charset;
4917 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
4918 &code, charset);
df7492f9
KH
4919
4920 if (!charset)
4ed46869 4921 {
41cbe562 4922 if (coding->mode & CODING_MODE_SAFE_ENCODING)
b73bfc1c 4923 {
41cbe562
KH
4924 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION;
4925 charset = CHARSET_FROM_ID (charset_ascii);
b73bfc1c 4926 }
41cbe562 4927 else
b73bfc1c 4928 {
41cbe562 4929 c = coding->default_char;
5eb05ea3
KH
4930 CODING_CHAR_CHARSET (coding, dst, dst_end, c,
4931 charset_list, &code, charset);
b73bfc1c 4932 }
b73bfc1c 4933 }
df7492f9 4934 if (code == CHARSET_INVALID_CODE (charset))
1088b922 4935 emacs_abort ();
df7492f9
KH
4936 if (charset == charset_kanji)
4937 {
4938 int c1, c2;
4939 JIS_TO_SJIS (code);
4940 c1 = code >> 8, c2 = code & 0xFF;
4941 EMIT_TWO_BYTES (c1, c2);
4942 }
4943 else if (charset == charset_kana)
4944 EMIT_ONE_BYTE (code | 0x80);
57a47f8a
KH
4945 else if (charset_kanji2 && charset == charset_kanji2)
4946 {
4947 int c1, c2;
4948
4949 c1 = code >> 8;
f07190ca
KH
4950 if (c1 == 0x21 || (c1 >= 0x23 && c1 <= 0x25)
4951 || c1 == 0x28
57a47f8a
KH
4952 || (c1 >= 0x2C && c1 <= 0x2F) || c1 >= 0x6E)
4953 {
4954 JIS_TO_SJIS2 (code);
4955 c1 = code >> 8, c2 = code & 0xFF;
4956 EMIT_TWO_BYTES (c1, c2);
4957 }
4958 else
4959 EMIT_ONE_ASCII_BYTE (code & 0x7F);
4960 }
df7492f9
KH
4961 else
4962 EMIT_ONE_ASCII_BYTE (code & 0x7F);
4963 }
4964 }
065e3595 4965 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
4966 coding->produced_char += produced_chars;
4967 coding->produced = dst - coding->destination;
4968 return 0;
4969}
4970
f10fe38f 4971static bool
971de7fb 4972encode_coding_big5 (struct coding_system *coding)
df7492f9 4973{
f10fe38f 4974 bool multibytep = coding->dst_multibyte;
df7492f9
KH
4975 int *charbuf = coding->charbuf;
4976 int *charbuf_end = charbuf + coding->charbuf_used;
4977 unsigned char *dst = coding->destination + coding->produced;
4978 unsigned char *dst_end = coding->destination + coding->dst_bytes;
4979 int safe_room = 4;
d311d28c 4980 ptrdiff_t produced_chars = 0;
24a73b0a 4981 Lisp_Object attrs, charset_list, val;
f10fe38f 4982 bool ascii_compatible;
66ebf983 4983 struct charset *charset_big5;
df7492f9
KH
4984 int c;
4985
24a73b0a 4986 CODING_GET_INFO (coding, attrs, charset_list);
66ebf983 4987 val = XCDR (charset_list);
df7492f9
KH
4988 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val)));
4989 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs));
4990
4991 while (charbuf < charbuf_end)
4992 {
4993 ASSURE_DESTINATION (safe_room);
4994 c = *charbuf++;
4995 /* Now encode the character C. */
4996 if (ASCII_CHAR_P (c) && ascii_compatible)
4997 EMIT_ONE_ASCII_BYTE (c);
16eafb5d
KH
4998 else if (CHAR_BYTE8_P (c))
4999 {
5000 c = CHAR_TO_BYTE8 (c);
5001 EMIT_ONE_BYTE (c);
b73bfc1c
KH
5002 }
5003 else
5004 {
df7492f9 5005 unsigned code;
5eb05ea3
KH
5006 struct charset *charset;
5007 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
5008 &code, charset);
df7492f9
KH
5009
5010 if (! charset)
b73bfc1c 5011 {
41cbe562 5012 if (coding->mode & CODING_MODE_SAFE_ENCODING)
b73bfc1c 5013 {
41cbe562
KH
5014 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION;
5015 charset = CHARSET_FROM_ID (charset_ascii);
b73bfc1c 5016 }
41cbe562 5017 else
0eecad43 5018 {
41cbe562 5019 c = coding->default_char;
5eb05ea3
KH
5020 CODING_CHAR_CHARSET (coding, dst, dst_end, c,
5021 charset_list, &code, charset);
0eecad43 5022 }
4ed46869 5023 }
df7492f9 5024 if (code == CHARSET_INVALID_CODE (charset))
1088b922 5025 emacs_abort ();
df7492f9 5026 if (charset == charset_big5)
b73bfc1c 5027 {
df7492f9
KH
5028 int c1, c2;
5029
5030 c1 = code >> 8, c2 = code & 0xFF;
5031 EMIT_TWO_BYTES (c1, c2);
b73bfc1c 5032 }
df7492f9
KH
5033 else
5034 EMIT_ONE_ASCII_BYTE (code & 0x7F);
4ed46869 5035 }
4ed46869 5036 }
065e3595 5037 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
5038 coding->produced_char += produced_chars;
5039 coding->produced = dst - coding->destination;
5040 return 0;
4ed46869
KH
5041}
5042
5043\f
df7492f9 5044/*** 10. CCL handlers ***/
1397dc18
KH
5045
5046/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f
PE
5047 Return true if a text is encoded in a coding system of which
5048 encoder/decoder are written in CCL program. */
1397dc18 5049
f10fe38f 5050static bool
cf84bb53
JB
5051detect_coding_ccl (struct coding_system *coding,
5052 struct coding_detection_info *detect_info)
1397dc18 5053{
065e3595 5054 const unsigned char *src = coding->source, *src_base;
8f924df7 5055 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 5056 bool multibytep = coding->src_multibyte;
d311d28c 5057 ptrdiff_t consumed_chars = 0;
df7492f9 5058 int found = 0;
0e219d54 5059 unsigned char *valids;
d311d28c 5060 ptrdiff_t head_ascii = coding->head_ascii;
df7492f9
KH
5061 Lisp_Object attrs;
5062
ff0dacd7
KH
5063 detect_info->checked |= CATEGORY_MASK_CCL;
5064
df7492f9 5065 coding = &coding_categories[coding_category_ccl];
0e219d54 5066 valids = CODING_CCL_VALIDS (coding);
df7492f9
KH
5067 attrs = CODING_ID_ATTRS (coding->id);
5068 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs)))
5069 src += head_ascii;
1397dc18 5070
b73bfc1c 5071 while (1)
1397dc18 5072 {
df7492f9 5073 int c;
065e3595
KH
5074
5075 src_base = src;
df7492f9 5076 ONE_MORE_BYTE (c);
065e3595 5077 if (c < 0 || ! valids[c])
df7492f9 5078 break;
ff0dacd7
KH
5079 if ((valids[c] > 1))
5080 found = CATEGORY_MASK_CCL;
df7492f9 5081 }
ff0dacd7 5082 detect_info->rejected |= CATEGORY_MASK_CCL;
df7492f9
KH
5083 return 0;
5084
5085 no_more_source:
ff0dacd7
KH
5086 detect_info->found |= found;
5087 return 1;
df7492f9
KH
5088}
5089
5090static void
971de7fb 5091decode_coding_ccl (struct coding_system *coding)
df7492f9 5092{
7c78e542 5093 const unsigned char *src = coding->source + coding->consumed;
8f924df7 5094 const unsigned char *src_end = coding->source + coding->src_bytes;
69a80ea3
KH
5095 int *charbuf = coding->charbuf + coding->charbuf_used;
5096 int *charbuf_end = coding->charbuf + coding->charbuf_size;
d311d28c 5097 ptrdiff_t consumed_chars = 0;
f10fe38f 5098 bool multibytep = coding->src_multibyte;
d0396581 5099 struct ccl_program *ccl = &coding->spec.ccl->ccl;
df7492f9 5100 int source_charbuf[1024];
fbdc1721 5101 int source_byteidx[1025];
24a73b0a 5102 Lisp_Object attrs, charset_list;
df7492f9 5103
24a73b0a 5104 CODING_GET_INFO (coding, attrs, charset_list);
df7492f9 5105
d0396581 5106 while (1)
df7492f9 5107 {
7c78e542 5108 const unsigned char *p = src;
df7492f9
KH
5109 int i = 0;
5110
5111 if (multibytep)
fbdc1721
KH
5112 {
5113 while (i < 1024 && p < src_end)
5114 {
5115 source_byteidx[i] = p - src;
5116 source_charbuf[i++] = STRING_CHAR_ADVANCE (p);
5117 }
5118 source_byteidx[i] = p - src;
5119 }
df7492f9
KH
5120 else
5121 while (i < 1024 && p < src_end)
5122 source_charbuf[i++] = *p++;
8f924df7 5123
df7492f9 5124 if (p == src_end && coding->mode & CODING_MODE_LAST_BLOCK)
d0396581
KH
5125 ccl->last_block = 1;
5126 ccl_driver (ccl, source_charbuf, charbuf, i, charbuf_end - charbuf,
5127 charset_list);
5128 charbuf += ccl->produced;
fbdc1721 5129 if (multibytep)
d0396581 5130 src += source_byteidx[ccl->consumed];
df7492f9 5131 else
d0396581
KH
5132 src += ccl->consumed;
5133 consumed_chars += ccl->consumed;
5134 if (p == src_end || ccl->status != CCL_STAT_SUSPEND_BY_SRC)
df7492f9
KH
5135 break;
5136 }
5137
d0396581 5138 switch (ccl->status)
df7492f9
KH
5139 {
5140 case CCL_STAT_SUSPEND_BY_SRC:
065e3595 5141 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC);
df7492f9
KH
5142 break;
5143 case CCL_STAT_SUSPEND_BY_DST:
d0396581 5144 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_DST);
df7492f9
KH
5145 break;
5146 case CCL_STAT_QUIT:
5147 case CCL_STAT_INVALID_CMD:
065e3595 5148 record_conversion_result (coding, CODING_RESULT_INTERRUPT);
df7492f9
KH
5149 break;
5150 default:
065e3595 5151 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
5152 break;
5153 }
5154 coding->consumed_char += consumed_chars;
5155 coding->consumed = src - coding->source;
5156 coding->charbuf_used = charbuf - coding->charbuf;
5157}
5158
f10fe38f 5159static bool
971de7fb 5160encode_coding_ccl (struct coding_system *coding)
df7492f9 5161{
fb608df3 5162 struct ccl_program *ccl = &coding->spec.ccl->ccl;
f10fe38f 5163 bool multibytep = coding->dst_multibyte;
df7492f9
KH
5164 int *charbuf = coding->charbuf;
5165 int *charbuf_end = charbuf + coding->charbuf_used;
5166 unsigned char *dst = coding->destination + coding->produced;
5167 unsigned char *dst_end = coding->destination + coding->dst_bytes;
df7492f9 5168 int destination_charbuf[1024];
d311d28c 5169 ptrdiff_t produced_chars = 0;
a53e2e89 5170 int i;
24a73b0a 5171 Lisp_Object attrs, charset_list;
df7492f9 5172
24a73b0a 5173 CODING_GET_INFO (coding, attrs, charset_list);
fb608df3
KH
5174 if (coding->consumed_char == coding->src_chars
5175 && coding->mode & CODING_MODE_LAST_BLOCK)
5176 ccl->last_block = 1;
df7492f9 5177
76470ad1 5178 do
df7492f9 5179 {
fb608df3 5180 ccl_driver (ccl, charbuf, destination_charbuf,
8cffd3e7 5181 charbuf_end - charbuf, 1024, charset_list);
df7492f9 5182 if (multibytep)
8cffd3e7 5183 {
fb608df3
KH
5184 ASSURE_DESTINATION (ccl->produced * 2);
5185 for (i = 0; i < ccl->produced; i++)
8cffd3e7
KH
5186 EMIT_ONE_BYTE (destination_charbuf[i] & 0xFF);
5187 }
df7492f9
KH
5188 else
5189 {
fb608df3
KH
5190 ASSURE_DESTINATION (ccl->produced);
5191 for (i = 0; i < ccl->produced; i++)
df7492f9 5192 *dst++ = destination_charbuf[i] & 0xFF;
fb608df3 5193 produced_chars += ccl->produced;
df7492f9 5194 }
fb608df3
KH
5195 charbuf += ccl->consumed;
5196 if (ccl->status == CCL_STAT_QUIT
5197 || ccl->status == CCL_STAT_INVALID_CMD)
8cffd3e7 5198 break;
df7492f9 5199 }
76470ad1 5200 while (charbuf < charbuf_end);
df7492f9 5201
fb608df3 5202 switch (ccl->status)
df7492f9
KH
5203 {
5204 case CCL_STAT_SUSPEND_BY_SRC:
065e3595 5205 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC);
df7492f9
KH
5206 break;
5207 case CCL_STAT_SUSPEND_BY_DST:
065e3595 5208 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_DST);
df7492f9
KH
5209 break;
5210 case CCL_STAT_QUIT:
5211 case CCL_STAT_INVALID_CMD:
065e3595 5212 record_conversion_result (coding, CODING_RESULT_INTERRUPT);
df7492f9
KH
5213 break;
5214 default:
065e3595 5215 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9 5216 break;
1397dc18 5217 }
df7492f9
KH
5218
5219 coding->produced_char += produced_chars;
5220 coding->produced = dst - coding->destination;
5221 return 0;
1397dc18
KH
5222}
5223
5224\f
df7492f9 5225/*** 10, 11. no-conversion handlers ***/
4ed46869 5226
b73bfc1c 5227/* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
4ed46869 5228
b73bfc1c 5229static void
971de7fb 5230decode_coding_raw_text (struct coding_system *coding)
4ed46869 5231{
f10fe38f
PE
5232 bool eol_dos
5233 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 5234
df7492f9 5235 coding->chars_at_source = 1;
119852e7
KH
5236 coding->consumed_char = coding->src_chars;
5237 coding->consumed = coding->src_bytes;
2735d060 5238 if (eol_dos && coding->source[coding->src_bytes - 1] == '\r')
119852e7
KH
5239 {
5240 coding->consumed_char--;
5241 coding->consumed--;
5242 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC);
5243 }
5244 else
5245 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9 5246}
4ed46869 5247
f10fe38f 5248static bool
971de7fb 5249encode_coding_raw_text (struct coding_system *coding)
df7492f9 5250{
f10fe38f 5251 bool multibytep = coding->dst_multibyte;
df7492f9
KH
5252 int *charbuf = coding->charbuf;
5253 int *charbuf_end = coding->charbuf + coding->charbuf_used;
5254 unsigned char *dst = coding->destination + coding->produced;
5255 unsigned char *dst_end = coding->destination + coding->dst_bytes;
d311d28c 5256 ptrdiff_t produced_chars = 0;
b73bfc1c
KH
5257 int c;
5258
df7492f9 5259 if (multibytep)
b73bfc1c 5260 {
df7492f9 5261 int safe_room = MAX_MULTIBYTE_LENGTH * 2;
4ed46869 5262
df7492f9
KH
5263 if (coding->src_multibyte)
5264 while (charbuf < charbuf_end)
5265 {
5266 ASSURE_DESTINATION (safe_room);
5267 c = *charbuf++;
5268 if (ASCII_CHAR_P (c))
5269 EMIT_ONE_ASCII_BYTE (c);
5270 else if (CHAR_BYTE8_P (c))
5271 {
5272 c = CHAR_TO_BYTE8 (c);
5273 EMIT_ONE_BYTE (c);
5274 }
5275 else
5276 {
5277 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str;
93dec019 5278
df7492f9 5279 CHAR_STRING_ADVANCE (c, p1);
8abc3f12 5280 do
9d123124
KH
5281 {
5282 EMIT_ONE_BYTE (*p0);
5283 p0++;
5284 }
8abc3f12 5285 while (p0 < p1);
df7492f9
KH
5286 }
5287 }
b73bfc1c 5288 else
df7492f9
KH
5289 while (charbuf < charbuf_end)
5290 {
5291 ASSURE_DESTINATION (safe_room);
5292 c = *charbuf++;
5293 EMIT_ONE_BYTE (c);
5294 }
5295 }
5296 else
4ed46869 5297 {
df7492f9 5298 if (coding->src_multibyte)
d46c5b12 5299 {
df7492f9
KH
5300 int safe_room = MAX_MULTIBYTE_LENGTH;
5301
5302 while (charbuf < charbuf_end)
d46c5b12 5303 {
df7492f9
KH
5304 ASSURE_DESTINATION (safe_room);
5305 c = *charbuf++;
5306 if (ASCII_CHAR_P (c))
5307 *dst++ = c;
5308 else if (CHAR_BYTE8_P (c))
5309 *dst++ = CHAR_TO_BYTE8 (c);
b73bfc1c 5310 else
df7492f9 5311 CHAR_STRING_ADVANCE (c, dst);
d46c5b12
KH
5312 }
5313 }
df7492f9
KH
5314 else
5315 {
5316 ASSURE_DESTINATION (charbuf_end - charbuf);
5317 while (charbuf < charbuf_end && dst < dst_end)
5318 *dst++ = *charbuf++;
8f924df7 5319 }
319a3947 5320 produced_chars = dst - (coding->destination + coding->produced);
4ed46869 5321 }
065e3595 5322 record_conversion_result (coding, CODING_RESULT_SUCCESS);
a0ed9b27 5323 coding->produced_char += produced_chars;
df7492f9
KH
5324 coding->produced = dst - coding->destination;
5325 return 0;
4ed46869
KH
5326}
5327
ff0dacd7 5328/* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
f10fe38f 5329 Return true if a text is encoded in a charset-based coding system. */
ff0dacd7 5330
f10fe38f 5331static bool
cf84bb53
JB
5332detect_coding_charset (struct coding_system *coding,
5333 struct coding_detection_info *detect_info)
1397dc18 5334{
065e3595 5335 const unsigned char *src = coding->source, *src_base;
8f924df7 5336 const unsigned char *src_end = coding->source + coding->src_bytes;
f10fe38f 5337 bool multibytep = coding->src_multibyte;
d311d28c 5338 ptrdiff_t consumed_chars = 0;
07295713 5339 Lisp_Object attrs, valids, name;
584948ac 5340 int found = 0;
d311d28c 5341 ptrdiff_t head_ascii = coding->head_ascii;
f10fe38f 5342 bool check_latin_extra = 0;
1397dc18 5343
ff0dacd7
KH
5344 detect_info->checked |= CATEGORY_MASK_CHARSET;
5345
df7492f9
KH
5346 coding = &coding_categories[coding_category_charset];
5347 attrs = CODING_ID_ATTRS (coding->id);
5348 valids = AREF (attrs, coding_attr_charset_valids);
07295713 5349 name = CODING_ID_NAME (coding->id);
51b59d79 5350 if (strncmp (SSDATA (SYMBOL_NAME (name)),
237aabf4 5351 "iso-8859-", sizeof ("iso-8859-") - 1) == 0
51b59d79 5352 || strncmp (SSDATA (SYMBOL_NAME (name)),
237aabf4 5353 "iso-latin-", sizeof ("iso-latin-") - 1) == 0)
07295713 5354 check_latin_extra = 1;
237aabf4 5355
df7492f9 5356 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs)))
716b3fa0 5357 src += head_ascii;
1397dc18 5358
b73bfc1c 5359 while (1)
1397dc18 5360 {
df7492f9 5361 int c;
716b3fa0
KH
5362 Lisp_Object val;
5363 struct charset *charset;
5364 int dim, idx;
1397dc18 5365
065e3595 5366 src_base = src;
df7492f9 5367 ONE_MORE_BYTE (c);
065e3595
KH
5368 if (c < 0)
5369 continue;
716b3fa0
KH
5370 val = AREF (valids, c);
5371 if (NILP (val))
df7492f9 5372 break;
584948ac 5373 if (c >= 0x80)
07295713
KH
5374 {
5375 if (c < 0xA0
237aabf4
JR
5376 && check_latin_extra
5377 && (!VECTORP (Vlatin_extra_code_table)
28be1ada 5378 || NILP (AREF (Vlatin_extra_code_table, c))))
07295713
KH
5379 break;
5380 found = CATEGORY_MASK_CHARSET;
5381 }
716b3fa0
KH
5382 if (INTEGERP (val))
5383 {
5384 charset = CHARSET_FROM_ID (XFASTINT (val));
5385 dim = CHARSET_DIMENSION (charset);
5386 for (idx = 1; idx < dim; idx++)
5387 {
5388 if (src == src_end)
5389 goto too_short;
5390 ONE_MORE_BYTE (c);
2f9442b8
PE
5391 if (c < charset->code_space[(dim - 1 - idx) * 4]
5392 || c > charset->code_space[(dim - 1 - idx) * 4 + 1])
716b3fa0
KH
5393 break;
5394 }
5395 if (idx < dim)
5396 break;
5397 }
5398 else
5399 {
5400 idx = 1;
5401 for (; CONSP (val); val = XCDR (val))
5402 {
5403 charset = CHARSET_FROM_ID (XFASTINT (XCAR (val)));
5404 dim = CHARSET_DIMENSION (charset);
5405 while (idx < dim)
5406 {
5407 if (src == src_end)
5408 goto too_short;
5409 ONE_MORE_BYTE (c);
5410 if (c < charset->code_space[(dim - 1 - idx) * 4]
5411 || c > charset->code_space[(dim - 1 - idx) * 4 + 1])
5412 break;
5413 idx++;
5414 }
5415 if (idx == dim)
5416 {
5417 val = Qnil;
5418 break;
5419 }
5420 }
5421 if (CONSP (val))
5422 break;
5423 }
df7492f9 5424 }
716b3fa0 5425 too_short:
ff0dacd7 5426 detect_info->rejected |= CATEGORY_MASK_CHARSET;
df7492f9 5427 return 0;
4ed46869 5428
df7492f9 5429 no_more_source:
ff0dacd7
KH
5430 detect_info->found |= found;
5431 return 1;
df7492f9 5432}
b73bfc1c 5433
b73bfc1c 5434static void
971de7fb 5435decode_coding_charset (struct coding_system *coding)
4ed46869 5436{
8f924df7
KH
5437 const unsigned char *src = coding->source + coding->consumed;
5438 const unsigned char *src_end = coding->source + coding->src_bytes;
5439 const unsigned char *src_base;
69a80ea3 5440 int *charbuf = coding->charbuf + coding->charbuf_used;
ad1746f5 5441 /* We may produce one charset annotation in one loop and one more at
df80c7f0 5442 the end. */
69a80ea3 5443 int *charbuf_end
df80c7f0 5444 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2);
d311d28c 5445 ptrdiff_t consumed_chars = 0, consumed_chars_base;
f10fe38f 5446 bool multibytep = coding->src_multibyte;
66ebf983
PE
5447 Lisp_Object attrs = CODING_ID_ATTRS (coding->id);
5448 Lisp_Object valids;
d311d28c
PE
5449 ptrdiff_t char_offset = coding->produced_char;
5450 ptrdiff_t last_offset = char_offset;
ff0dacd7 5451 int last_id = charset_ascii;
f10fe38f
PE
5452 bool eol_dos
5453 = !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos);
119852e7 5454 int byte_after_cr = -1;
df7492f9 5455
4eb6d3f1 5456 valids = AREF (attrs, coding_attr_charset_valids);
b73bfc1c 5457
df7492f9 5458 while (1)
4ed46869 5459 {
4eb6d3f1 5460 int c;
24a73b0a
KH
5461 Lisp_Object val;
5462 struct charset *charset;
5463 int dim;
5464 int len = 1;
5465 unsigned code;
df7492f9
KH
5466
5467 src_base = src;
5468 consumed_chars_base = consumed_chars;
b73bfc1c 5469
df7492f9 5470 if (charbuf >= charbuf_end)
b71f6f73
KH
5471 {
5472 if (byte_after_cr >= 0)
5473 src_base--;
5474 break;
5475 }
df7492f9 5476
119852e7
KH
5477 if (byte_after_cr >= 0)
5478 {
5479 c = byte_after_cr;
5480 byte_after_cr = -1;
5481 }
5482 else
5483 {
5484 ONE_MORE_BYTE (c);
2735d060 5485 if (eol_dos && c == '\r')
119852e7
KH
5486 ONE_MORE_BYTE (byte_after_cr);
5487 }
065e3595
KH
5488 if (c < 0)
5489 goto invalid_code;
24a73b0a
KH
5490 code = c;
5491
5492 val = AREF (valids, c);
1b17adfd 5493 if (! INTEGERP (val) && ! CONSP (val))
24a73b0a
KH
5494 goto invalid_code;
5495 if (INTEGERP (val))
d46c5b12 5496 {
24a73b0a
KH
5497 charset = CHARSET_FROM_ID (XFASTINT (val));
5498 dim = CHARSET_DIMENSION (charset);
5499 while (len < dim)
b73bfc1c 5500 {
24a73b0a
KH
5501 ONE_MORE_BYTE (c);
5502 code = (code << 8) | c;
5503 len++;
b73bfc1c 5504 }
24a73b0a
KH
5505 CODING_DECODE_CHAR (coding, src, src_base, src_end,
5506 charset, code, c);
d46c5b12 5507 }
df7492f9 5508 else
d46c5b12 5509 {
24a73b0a
KH
5510 /* VAL is a list of charset IDs. It is assured that the
5511 list is sorted by charset dimensions (smaller one
5512 comes first). */
5513 while (CONSP (val))
4eb6d3f1 5514 {
24a73b0a 5515 charset = CHARSET_FROM_ID (XFASTINT (XCAR (val)));
c7c66a95 5516 dim = CHARSET_DIMENSION (charset);
f9d71dcd 5517 while (len < dim)
4eb6d3f1 5518 {
acb2a965
KH
5519 ONE_MORE_BYTE (c);
5520 code = (code << 8) | c;
f9d71dcd 5521 len++;
4eb6d3f1 5522 }
24a73b0a
KH
5523 CODING_DECODE_CHAR (coding, src, src_base,
5524 src_end, charset, code, c);
5525 if (c >= 0)
5526 break;
5527 val = XCDR (val);
ff0dacd7 5528 }
d46c5b12 5529 }
24a73b0a
KH
5530 if (c < 0)
5531 goto invalid_code;
5532 if (charset->id != charset_ascii
5533 && last_id != charset->id)
5534 {
5535 if (last_id != charset_ascii)
69a80ea3 5536 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
24a73b0a
KH
5537 last_id = charset->id;
5538 last_offset = char_offset;
5539 }
5540
df7492f9 5541 *charbuf++ = c;
ff0dacd7 5542 char_offset++;
df7492f9
KH
5543 continue;
5544
5545 invalid_code:
5546 src = src_base;
5547 consumed_chars = consumed_chars_base;
5548 ONE_MORE_BYTE (c);
065e3595 5549 *charbuf++ = c < 0 ? -c : ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c);
ff0dacd7 5550 char_offset++;
df7492f9 5551 coding->errors++;
4ed46869
KH
5552 }
5553
df7492f9 5554 no_more_source:
ff0dacd7 5555 if (last_id != charset_ascii)
69a80ea3 5556 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id);
df7492f9
KH
5557 coding->consumed_char += consumed_chars_base;
5558 coding->consumed = src_base - coding->source;
5559 coding->charbuf_used = charbuf - coding->charbuf;
4ed46869
KH
5560}
5561
f10fe38f 5562static bool
971de7fb 5563encode_coding_charset (struct coding_system *coding)
4ed46869 5564{
f10fe38f 5565 bool multibytep = coding->dst_multibyte;
df7492f9
KH
5566 int *charbuf = coding->charbuf;
5567 int *charbuf_end = charbuf + coding->charbuf_used;
5568 unsigned char *dst = coding->destination + coding->produced;
5569 unsigned char *dst_end = coding->destination + coding->dst_bytes;
5570 int safe_room = MAX_MULTIBYTE_LENGTH;
d311d28c 5571 ptrdiff_t produced_chars = 0;
24a73b0a 5572 Lisp_Object attrs, charset_list;
f10fe38f 5573 bool ascii_compatible;
b73bfc1c 5574 int c;
b73bfc1c 5575
24a73b0a 5576 CODING_GET_INFO (coding, attrs, charset_list);
df7492f9 5577 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs));
fb88bf2d 5578
df7492f9 5579 while (charbuf < charbuf_end)
4ed46869 5580 {
4eb6d3f1 5581 struct charset *charset;
df7492f9 5582 unsigned code;
8f924df7 5583
df7492f9
KH
5584 ASSURE_DESTINATION (safe_room);
5585 c = *charbuf++;
5586 if (ascii_compatible && ASCII_CHAR_P (c))
5587 EMIT_ONE_ASCII_BYTE (c);
16eafb5d 5588 else if (CHAR_BYTE8_P (c))
4ed46869 5589 {
16eafb5d
KH
5590 c = CHAR_TO_BYTE8 (c);
5591 EMIT_ONE_BYTE (c);
d46c5b12 5592 }
d46c5b12 5593 else
b73bfc1c 5594 {
5eb05ea3
KH
5595 CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list,
5596 &code, charset);
5597
4eb6d3f1
KH
5598 if (charset)
5599 {
5600 if (CHARSET_DIMENSION (charset) == 1)
5601 EMIT_ONE_BYTE (code);
5602 else if (CHARSET_DIMENSION (charset) == 2)
5603 EMIT_TWO_BYTES (code >> 8, code & 0xFF);
5604 else if (CHARSET_DIMENSION (charset) == 3)
5605 EMIT_THREE_BYTES (code >> 16, (code >> 8) & 0xFF, code & 0xFF);
5606 else
5607 EMIT_FOUR_BYTES (code >> 24, (code >> 16) & 0xFF,
5608 (code >> 8) & 0xFF, code & 0xFF);
5609 }
5610 else
41cbe562
KH
5611 {
5612 if (coding->mode & CODING_MODE_SAFE_ENCODING)
5613 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION;
5614 else
5615 c = coding->default_char;
5616 EMIT_ONE_BYTE (c);
5617 }
4ed46869 5618 }
4ed46869
KH
5619 }
5620
065e3595 5621 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9
KH
5622 coding->produced_char += produced_chars;
5623 coding->produced = dst - coding->destination;
5624 return 0;
4ed46869
KH
5625}
5626
5627\f
1397dc18 5628/*** 7. C library functions ***/
4ed46869 5629
df7492f9
KH
5630/* Setup coding context CODING from information about CODING_SYSTEM.
5631 If CODING_SYSTEM is nil, `no-conversion' is assumed. If
5632 CODING_SYSTEM is invalid, signal an error. */
4ed46869 5633
ec6d2bb8 5634void
971de7fb 5635setup_coding_system (Lisp_Object coding_system, struct coding_system *coding)
4ed46869 5636{
df7492f9
KH
5637 Lisp_Object attrs;
5638 Lisp_Object eol_type;
5639 Lisp_Object coding_type;
4608c386 5640 Lisp_Object val;
4ed46869 5641
df7492f9 5642 if (NILP (coding_system))
ae6f73fa 5643 coding_system = Qundecided;
c07c8e12 5644
df7492f9 5645 CHECK_CODING_SYSTEM_GET_ID (coding_system, coding->id);
1f5dbf34 5646
df7492f9 5647 attrs = CODING_ID_ATTRS (coding->id);
0a9564cb 5648 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id);
1f5dbf34 5649
df7492f9
KH
5650 coding->mode = 0;
5651 coding->head_ascii = -1;
4a015c45
KH
5652 if (VECTORP (eol_type))
5653 coding->common_flags = (CODING_REQUIRE_DECODING_MASK
5654 | CODING_REQUIRE_DETECTION_MASK);
5655 else if (! EQ (eol_type, Qunix))
5656 coding->common_flags = (CODING_REQUIRE_DECODING_MASK
5657 | CODING_REQUIRE_ENCODING_MASK);
5658 else
5659 coding->common_flags = 0;
5e5c78be
KH
5660 if (! NILP (CODING_ATTR_POST_READ (attrs)))
5661 coding->common_flags |= CODING_REQUIRE_DECODING_MASK;
5662 if (! NILP (CODING_ATTR_PRE_WRITE (attrs)))
5663 coding->common_flags |= CODING_REQUIRE_ENCODING_MASK;
8f924df7
KH
5664 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs)))
5665 coding->common_flags |= CODING_FOR_UNIBYTE_MASK;
1f5dbf34 5666
df7492f9 5667 val = CODING_ATTR_SAFE_CHARSETS (attrs);
8f924df7 5668 coding->max_charset_id = SCHARS (val) - 1;
1b3b981b 5669 coding->safe_charsets = SDATA (val);
df7492f9 5670 coding->default_char = XINT (CODING_ATTR_DEFAULT_CHAR (attrs));
624bda09 5671 coding->carryover_bytes = 0;
4608c386 5672
df7492f9
KH
5673 coding_type = CODING_ATTR_TYPE (attrs);
5674 if (EQ (coding_type, Qundecided))
d46c5b12 5675 {
df7492f9
KH
5676 coding->detector = NULL;
5677 coding->decoder = decode_coding_raw_text;
5678 coding->encoder = encode_coding_raw_text;
5679 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK;
d46c5b12 5680 }
df7492f9 5681 else if (EQ (coding_type, Qiso_2022))
d46c5b12 5682 {
df7492f9
KH
5683 int i;
5684 int flags = XINT (AREF (attrs, coding_attr_iso_flags));
5685
5686 /* Invoke graphic register 0 to plane 0. */
5687 CODING_ISO_INVOCATION (coding, 0) = 0;
5688 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */
5689 CODING_ISO_INVOCATION (coding, 1)
5690 = (flags & CODING_ISO_FLAG_SEVEN_BITS ? -1 : 1);
5691 /* Setup the initial status of designation. */
5692 for (i = 0; i < 4; i++)
5693 CODING_ISO_DESIGNATION (coding, i) = CODING_ISO_INITIAL (coding, i);
5694 /* Not single shifting initially. */
5695 CODING_ISO_SINGLE_SHIFTING (coding) = 0;
5696 /* Beginning of buffer should also be regarded as bol. */
5697 CODING_ISO_BOL (coding) = 1;
5698 coding->detector = detect_coding_iso_2022;
5699 coding->decoder = decode_coding_iso_2022;
5700 coding->encoder = encode_coding_iso_2022;
5701 if (flags & CODING_ISO_FLAG_SAFE)
5702 coding->mode |= CODING_MODE_SAFE_ENCODING;
d46c5b12 5703 coding->common_flags
df7492f9
KH
5704 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK
5705 | CODING_REQUIRE_FLUSHING_MASK);
5706 if (flags & CODING_ISO_FLAG_COMPOSITION)
5707 coding->common_flags |= CODING_ANNOTATE_COMPOSITION_MASK;
ff0dacd7
KH
5708 if (flags & CODING_ISO_FLAG_DESIGNATION)
5709 coding->common_flags |= CODING_ANNOTATE_CHARSET_MASK;
df7492f9
KH
5710 if (flags & CODING_ISO_FLAG_FULL_SUPPORT)
5711 {
5712 setup_iso_safe_charsets (attrs);
5713 val = CODING_ATTR_SAFE_CHARSETS (attrs);
8f924df7 5714 coding->max_charset_id = SCHARS (val) - 1;
1b3b981b 5715 coding->safe_charsets = SDATA (val);
df7492f9
KH
5716 }
5717 CODING_ISO_FLAGS (coding) = flags;
e951386e
KH
5718 CODING_ISO_CMP_STATUS (coding)->state = COMPOSING_NO;
5719 CODING_ISO_CMP_STATUS (coding)->method = COMPOSITION_NO;
5720 CODING_ISO_EXTSEGMENT_LEN (coding) = 0;
5721 CODING_ISO_EMBEDDED_UTF_8 (coding) = 0;
d46c5b12 5722 }
df7492f9 5723 else if (EQ (coding_type, Qcharset))
d46c5b12 5724 {
df7492f9
KH
5725 coding->detector = detect_coding_charset;
5726 coding->decoder = decode_coding_charset;
5727 coding->encoder = encode_coding_charset;
d46c5b12 5728 coding->common_flags
df7492f9 5729 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK);
d46c5b12 5730 }
df7492f9 5731 else if (EQ (coding_type, Qutf_8))
d46c5b12 5732 {
a470d443
KH
5733 val = AREF (attrs, coding_attr_utf_bom);
5734 CODING_UTF_8_BOM (coding) = (CONSP (val) ? utf_detect_bom
5735 : EQ (val, Qt) ? utf_with_bom
5736 : utf_without_bom);
df7492f9
KH
5737 coding->detector = detect_coding_utf_8;
5738 coding->decoder = decode_coding_utf_8;
5739 coding->encoder = encode_coding_utf_8;
5740 coding->common_flags
5741 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK);
a470d443
KH
5742 if (CODING_UTF_8_BOM (coding) == utf_detect_bom)
5743 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK;
df7492f9
KH
5744 }
5745 else if (EQ (coding_type, Qutf_16))
5746 {
a470d443
KH
5747 val = AREF (attrs, coding_attr_utf_bom);
5748 CODING_UTF_16_BOM (coding) = (CONSP (val) ? utf_detect_bom
5749 : EQ (val, Qt) ? utf_with_bom
5750 : utf_without_bom);
df7492f9 5751 val = AREF (attrs, coding_attr_utf_16_endian);
b49a1807 5752 CODING_UTF_16_ENDIAN (coding) = (EQ (val, Qbig) ? utf_16_big_endian
df7492f9 5753 : utf_16_little_endian);
e19c3639 5754 CODING_UTF_16_SURROGATE (coding) = 0;
df7492f9
KH
5755 coding->detector = detect_coding_utf_16;
5756 coding->decoder = decode_coding_utf_16;
5757 coding->encoder = encode_coding_utf_16;
5758 coding->common_flags
5759 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK);
a470d443 5760 if (CODING_UTF_16_BOM (coding) == utf_detect_bom)
b49a1807 5761 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK;
d46c5b12 5762 }
df7492f9 5763 else if (EQ (coding_type, Qccl))
4ed46869 5764 {
df7492f9
KH
5765 coding->detector = detect_coding_ccl;
5766 coding->decoder = decode_coding_ccl;
5767 coding->encoder = encode_coding_ccl;
c952af22 5768 coding->common_flags
df7492f9
KH
5769 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK
5770 | CODING_REQUIRE_FLUSHING_MASK);
5771 }
5772 else if (EQ (coding_type, Qemacs_mule))
5773 {
5774 coding->detector = detect_coding_emacs_mule;
5775 coding->decoder = decode_coding_emacs_mule;
5776 coding->encoder = encode_coding_emacs_mule;
c952af22 5777 coding->common_flags
df7492f9
KH
5778 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK);
5779 if (! NILP (AREF (attrs, coding_attr_emacs_mule_full))
5780 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Vemacs_mule_charset_list))
5781 {
5782 Lisp_Object tail, safe_charsets;
5783 int max_charset_id = 0;
5784
5785 for (tail = Vemacs_mule_charset_list; CONSP (tail);
5786 tail = XCDR (tail))
5787 if (max_charset_id < XFASTINT (XCAR (tail)))
5788 max_charset_id = XFASTINT (XCAR (tail));
1b3b981b
AS
5789 safe_charsets = make_uninit_string (max_charset_id + 1);
5790 memset (SDATA (safe_charsets), 255, max_charset_id + 1);
df7492f9
KH
5791 for (tail = Vemacs_mule_charset_list; CONSP (tail);
5792 tail = XCDR (tail))
8f924df7 5793 SSET (safe_charsets, XFASTINT (XCAR (tail)), 0);
df7492f9 5794 coding->max_charset_id = max_charset_id;
1b3b981b 5795 coding->safe_charsets = SDATA (safe_charsets);
df7492f9 5796 }
e951386e
KH
5797 coding->spec.emacs_mule.cmp_status.state = COMPOSING_NO;
5798 coding->spec.emacs_mule.cmp_status.method = COMPOSITION_NO;
df7492f9
KH
5799 }
5800 else if (EQ (coding_type, Qshift_jis))
5801 {
5802 coding->detector = detect_coding_sjis;
5803 coding->decoder = decode_coding_sjis;
5804 coding->encoder = encode_coding_sjis;
c952af22 5805 coding->common_flags
df7492f9
KH
5806 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK);
5807 }
5808 else if (EQ (coding_type, Qbig5))
5809 {
5810 coding->detector = detect_coding_big5;
5811 coding->decoder = decode_coding_big5;
5812 coding->encoder = encode_coding_big5;
c952af22 5813 coding->common_flags
df7492f9
KH
5814 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK);
5815 }
5816 else /* EQ (coding_type, Qraw_text) */
ec6d2bb8 5817 {
df7492f9
KH
5818 coding->detector = NULL;
5819 coding->decoder = decode_coding_raw_text;
5820 coding->encoder = encode_coding_raw_text;
ea29edf2
KH
5821 if (! EQ (eol_type, Qunix))
5822 {
5823 coding->common_flags |= CODING_REQUIRE_DECODING_MASK;
5824 if (! VECTORP (eol_type))
5825 coding->common_flags |= CODING_REQUIRE_ENCODING_MASK;
5826 }
5827
4ed46869 5828 }
4ed46869 5829
df7492f9 5830 return;
4ed46869
KH
5831}
5832
0ff61e78
KH
5833/* Return a list of charsets supported by CODING. */
5834
5835Lisp_Object
971de7fb 5836coding_charset_list (struct coding_system *coding)
0ff61e78 5837{
35befdaa 5838 Lisp_Object attrs, charset_list;
0ff61e78
KH
5839
5840 CODING_GET_INFO (coding, attrs, charset_list);
5841 if (EQ (CODING_ATTR_TYPE (attrs), Qiso_2022))
5842 {
5843 int flags = XINT (AREF (attrs, coding_attr_iso_flags));
5844
5845 if (flags & CODING_ISO_FLAG_FULL_SUPPORT)
5846 charset_list = Viso_2022_charset_list;
5847 }
5848 else if (EQ (CODING_ATTR_TYPE (attrs), Qemacs_mule))
5849 {
5850 charset_list = Vemacs_mule_charset_list;
5851 }
5852 return charset_list;
5853}
5854
5855
e9f91ece
KH
5856/* Return a list of charsets supported by CODING-SYSTEM. */
5857
5858Lisp_Object
971de7fb 5859coding_system_charset_list (Lisp_Object coding_system)
e9f91ece 5860{
d3411f89 5861 ptrdiff_t id;
e9f91ece
KH
5862 Lisp_Object attrs, charset_list;
5863
5864 CHECK_CODING_SYSTEM_GET_ID (coding_system, id);
5865 attrs = CODING_ID_ATTRS (id);
5866
5867 if (EQ (CODING_ATTR_TYPE (attrs), Qiso_2022))
5868 {
5869 int flags = XINT (AREF (attrs, coding_attr_iso_flags));
5870
5871 if (flags & CODING_ISO_FLAG_FULL_SUPPORT)
5872 charset_list = Viso_2022_charset_list;
5873 else
5874 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
5875 }
5876 else if (EQ (CODING_ATTR_TYPE (attrs), Qemacs_mule))
5877 {
5878 charset_list = Vemacs_mule_charset_list;
5879 }
5880 else
5881 {
5882 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
5883 }
5884 return charset_list;
5885}
5886
5887
df7492f9
KH
5888/* Return raw-text or one of its subsidiaries that has the same
5889 eol_type as CODING-SYSTEM. */
ec6d2bb8 5890
df7492f9 5891Lisp_Object
971de7fb 5892raw_text_coding_system (Lisp_Object coding_system)
ec6d2bb8 5893{
0be8721c 5894 Lisp_Object spec, attrs;
df7492f9 5895 Lisp_Object eol_type, raw_text_eol_type;
ec6d2bb8 5896
d3e4cb56
KH
5897 if (NILP (coding_system))
5898 return Qraw_text;
df7492f9
KH
5899 spec = CODING_SYSTEM_SPEC (coding_system);
5900 attrs = AREF (spec, 0);
ec6d2bb8 5901
df7492f9
KH
5902 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
5903 return coding_system;
ec6d2bb8 5904
df7492f9
KH
5905 eol_type = AREF (spec, 2);
5906 if (VECTORP (eol_type))
5907 return Qraw_text;
5908 spec = CODING_SYSTEM_SPEC (Qraw_text);
5909 raw_text_eol_type = AREF (spec, 2);
5910 return (EQ (eol_type, Qunix) ? AREF (raw_text_eol_type, 0)
5911 : EQ (eol_type, Qdos) ? AREF (raw_text_eol_type, 1)
5912 : AREF (raw_text_eol_type, 2));
ec6d2bb8
KH
5913}
5914
54f78171 5915
1911a33b
KH
5916/* If CODING_SYSTEM doesn't specify end-of-line format, return one of
5917 the subsidiary that has the same eol-spec as PARENT (if it is not
5918 nil and specifies end-of-line format) or the system's setting
fcbcfb64 5919 (system_eol_type). */
df7492f9
KH
5920
5921Lisp_Object
971de7fb 5922coding_inherit_eol_type (Lisp_Object coding_system, Lisp_Object parent)
54f78171 5923{
3e139625 5924 Lisp_Object spec, eol_type;
54f78171 5925
d3e4cb56
KH
5926 if (NILP (coding_system))
5927 coding_system = Qraw_text;
df7492f9 5928 spec = CODING_SYSTEM_SPEC (coding_system);
df7492f9 5929 eol_type = AREF (spec, 2);
fcbcfb64 5930 if (VECTORP (eol_type))
df7492f9 5931 {
df7492f9
KH
5932 Lisp_Object parent_eol_type;
5933
fcbcfb64
KH
5934 if (! NILP (parent))
5935 {
5936 Lisp_Object parent_spec;
5937
4a015c45 5938 parent_spec = CODING_SYSTEM_SPEC (parent);
fcbcfb64 5939 parent_eol_type = AREF (parent_spec, 2);
1911a33b 5940 if (VECTORP (parent_eol_type))
4628bef1 5941 parent_eol_type = system_eol_type;
fcbcfb64
KH
5942 }
5943 else
5944 parent_eol_type = system_eol_type;
df7492f9
KH
5945 if (EQ (parent_eol_type, Qunix))
5946 coding_system = AREF (eol_type, 0);
5947 else if (EQ (parent_eol_type, Qdos))
5948 coding_system = AREF (eol_type, 1);
5949 else if (EQ (parent_eol_type, Qmac))
5950 coding_system = AREF (eol_type, 2);
54f78171 5951 }
df7492f9 5952 return coding_system;
54f78171
KH
5953}
5954
fcaf8878
KH
5955
5956/* Check if text-conversion and eol-conversion of CODING_SYSTEM are
5957 decided for writing to a process. If not, complement them, and
5958 return a new coding system. */
5959
5960Lisp_Object
4628bef1 5961complement_process_encoding_system (Lisp_Object coding_system)
fcaf8878 5962{
5886ec9c
KH
5963 Lisp_Object coding_base = Qnil, eol_base = Qnil;
5964 Lisp_Object spec, attrs;
93d50df8 5965 int i;
fcaf8878 5966
93d50df8 5967 for (i = 0; i < 3; i++)
fcaf8878 5968 {
93d50df8
KH
5969 if (i == 1)
5970 coding_system = CDR_SAFE (Vdefault_process_coding_system);
5971 else if (i == 2)
5972 coding_system = preferred_coding_system ();
5973 spec = CODING_SYSTEM_SPEC (coding_system);
5974 if (NILP (spec))
5975 continue;
5976 attrs = AREF (spec, 0);
5977 if (NILP (coding_base) && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided))
5978 coding_base = CODING_ATTR_BASE_NAME (attrs);
5979 if (NILP (eol_base) && ! VECTORP (AREF (spec, 2)))
5980 eol_base = coding_system;
5981 if (! NILP (coding_base) && ! NILP (eol_base))
5982 break;
fcaf8878 5983 }
fcaf8878 5984
93d50df8
KH
5985 if (i > 0)
5986 /* The original CODING_SYSTEM didn't specify text-conversion or
5987 eol-conversion. Be sure that we return a fully complemented
5988 coding system. */
5989 coding_system = coding_inherit_eol_type (coding_base, eol_base);
5990 return coding_system;
fcaf8878
KH
5991}
5992
5993
4ed46869
KH
5994/* Emacs has a mechanism to automatically detect a coding system if it
5995 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
5996 it's impossible to distinguish some coding systems accurately
5997 because they use the same range of codes. So, at first, coding
5998 systems are categorized into 7, those are:
5999
0ef69138 6000 o coding-category-emacs-mule
4ed46869
KH
6001
6002 The category for a coding system which has the same code range
6003 as Emacs' internal format. Assigned the coding-system (Lisp
0ef69138 6004 symbol) `emacs-mule' by default.
4ed46869
KH
6005
6006 o coding-category-sjis
6007
6008 The category for a coding system which has the same code range
6009 as SJIS. Assigned the coding-system (Lisp
7717c392 6010 symbol) `japanese-shift-jis' by default.
4ed46869
KH
6011
6012 o coding-category-iso-7
6013
6014 The category for a coding system which has the same code range
7717c392 6015 as ISO2022 of 7-bit environment. This doesn't use any locking
d46c5b12
KH
6016 shift and single shift functions. This can encode/decode all
6017 charsets. Assigned the coding-system (Lisp symbol)
6018 `iso-2022-7bit' by default.
6019
6020 o coding-category-iso-7-tight
6021
6022 Same as coding-category-iso-7 except that this can
6023 encode/decode only the specified charsets.
4ed46869
KH
6024
6025 o coding-category-iso-8-1
6026
6027 The category for a coding system which has the same code range
6028 as ISO2022 of 8-bit environment and graphic plane 1 used only
7717c392
KH
6029 for DIMENSION1 charset. This doesn't use any locking shift
6030 and single shift functions. Assigned the coding-system (Lisp
6031 symbol) `iso-latin-1' by default.
4ed46869
KH
6032
6033 o coding-category-iso-8-2
6034
6035 The category for a coding system which has the same code range
6036 as ISO2022 of 8-bit environment and graphic plane 1 used only
7717c392
KH
6037 for DIMENSION2 charset. This doesn't use any locking shift
6038 and single shift functions. Assigned the coding-system (Lisp
6039 symbol) `japanese-iso-8bit' by default.
4ed46869 6040
7717c392 6041 o coding-category-iso-7-else
4ed46869
KH
6042
6043 The category for a coding system which has the same code range
ad1746f5 6044 as ISO2022 of 7-bit environment but uses locking shift or
7717c392
KH
6045 single shift functions. Assigned the coding-system (Lisp
6046 symbol) `iso-2022-7bit-lock' by default.
6047
6048 o coding-category-iso-8-else
6049
6050 The category for a coding system which has the same code range
ad1746f5 6051 as ISO2022 of 8-bit environment but uses locking shift or
7717c392
KH
6052 single shift functions. Assigned the coding-system (Lisp
6053 symbol) `iso-2022-8bit-ss2' by default.
4ed46869
KH
6054
6055 o coding-category-big5
6056
6057 The category for a coding system which has the same code range
6058 as BIG5. Assigned the coding-system (Lisp symbol)
e0e989f6 6059 `cn-big5' by default.
4ed46869 6060
fa42c37f
KH
6061 o coding-category-utf-8
6062
6063 The category for a coding system which has the same code range
6e76ae91 6064 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp
fa42c37f
KH
6065 symbol) `utf-8' by default.
6066
6067 o coding-category-utf-16-be
6068
6069 The category for a coding system in which a text has an
6070 Unicode signature (cf. Unicode Standard) in the order of BIG
6071 endian at the head. Assigned the coding-system (Lisp symbol)
6072 `utf-16-be' by default.
6073
6074 o coding-category-utf-16-le
6075
6076 The category for a coding system in which a text has an
6077 Unicode signature (cf. Unicode Standard) in the order of
6078 LITTLE endian at the head. Assigned the coding-system (Lisp
6079 symbol) `utf-16-le' by default.
6080
1397dc18
KH
6081 o coding-category-ccl
6082
6083 The category for a coding system of which encoder/decoder is
6084 written in CCL programs. The default value is nil, i.e., no
6085 coding system is assigned.
6086
4ed46869
KH
6087 o coding-category-binary
6088
6089 The category for a coding system not categorized in any of the
6090 above. Assigned the coding-system (Lisp symbol)
e0e989f6 6091 `no-conversion' by default.
4ed46869
KH
6092
6093 Each of them is a Lisp symbol and the value is an actual
df7492f9 6094 `coding-system's (this is also a Lisp symbol) assigned by a user.
4ed46869
KH
6095 What Emacs does actually is to detect a category of coding system.
6096 Then, it uses a `coding-system' assigned to it. If Emacs can't
df7492f9 6097 decide only one possible category, it selects a category of the
4ed46869
KH
6098 highest priority. Priorities of categories are also specified by a
6099 user in a Lisp variable `coding-category-list'.
6100
6101*/
6102
df7492f9
KH
6103#define EOL_SEEN_NONE 0
6104#define EOL_SEEN_LF 1
6105#define EOL_SEEN_CR 2
6106#define EOL_SEEN_CRLF 4
66cfb530 6107
ff0dacd7
KH
6108/* Detect how end-of-line of a text of length SRC_BYTES pointed by
6109 SOURCE is encoded. If CATEGORY is one of
6110 coding_category_utf_16_XXXX, assume that CR and LF are encoded by
6111 two-byte, else they are encoded by one-byte.
6112
6113 Return one of EOL_SEEN_XXX. */
4ed46869 6114
bc4bc72a 6115#define MAX_EOL_CHECK_COUNT 3
d46c5b12
KH
6116
6117static int
d311d28c 6118detect_eol (const unsigned char *source, ptrdiff_t src_bytes,
cf84bb53 6119 enum coding_category category)
4ed46869 6120{
f6cbaf43 6121 const unsigned char *src = source, *src_end = src + src_bytes;
4ed46869 6122 unsigned char c;
df7492f9
KH
6123 int total = 0;
6124 int eol_seen = EOL_SEEN_NONE;
4ed46869 6125
89528eb3 6126 if ((1 << category) & CATEGORY_MASK_UTF_16)
4ed46869 6127 {
f10fe38f
PE
6128 bool msb = category == (coding_category_utf_16_le
6129 | coding_category_utf_16_le_nosig);
6130 bool lsb = !msb;
fa42c37f 6131
df7492f9 6132 while (src + 1 < src_end)
fa42c37f 6133 {
df7492f9
KH
6134 c = src[lsb];
6135 if (src[msb] == 0 && (c == '\n' || c == '\r'))
fa42c37f 6136 {
df7492f9
KH
6137 int this_eol;
6138
6139 if (c == '\n')
6140 this_eol = EOL_SEEN_LF;
6141 else if (src + 3 >= src_end
6142 || src[msb + 2] != 0
6143 || src[lsb + 2] != '\n')
6144 this_eol = EOL_SEEN_CR;
fa42c37f 6145 else
75f4f1ac
EZ
6146 {
6147 this_eol = EOL_SEEN_CRLF;
6148 src += 2;
6149 }
df7492f9
KH
6150
6151 if (eol_seen == EOL_SEEN_NONE)
6152 /* This is the first end-of-line. */
6153 eol_seen = this_eol;
6154 else if (eol_seen != this_eol)
fa42c37f 6155 {
75f4f1ac
EZ
6156 /* The found type is different from what found before.
6157 Allow for stray ^M characters in DOS EOL files. */
ef1b0ba7
SM
6158 if ((eol_seen == EOL_SEEN_CR && this_eol == EOL_SEEN_CRLF)
6159 || (eol_seen == EOL_SEEN_CRLF
6160 && this_eol == EOL_SEEN_CR))
75f4f1ac
EZ
6161 eol_seen = EOL_SEEN_CRLF;
6162 else
6163 {
6164 eol_seen = EOL_SEEN_LF;
6165 break;
6166 }
fa42c37f 6167 }
df7492f9
KH
6168 if (++total == MAX_EOL_CHECK_COUNT)
6169 break;
fa42c37f 6170 }
df7492f9 6171 src += 2;
fa42c37f 6172 }
bcf26d6a 6173 }
d46c5b12 6174 else
ef1b0ba7
SM
6175 while (src < src_end)
6176 {
6177 c = *src++;
6178 if (c == '\n' || c == '\r')
6179 {
6180 int this_eol;
d46c5b12 6181
ef1b0ba7
SM
6182 if (c == '\n')
6183 this_eol = EOL_SEEN_LF;
6184 else if (src >= src_end || *src != '\n')
6185 this_eol = EOL_SEEN_CR;
6186 else
6187 this_eol = EOL_SEEN_CRLF, src++;
d46c5b12 6188
ef1b0ba7
SM
6189 if (eol_seen == EOL_SEEN_NONE)
6190 /* This is the first end-of-line. */
6191 eol_seen = this_eol;
6192 else if (eol_seen != this_eol)
6193 {
6194 /* The found type is different from what found before.
6195 Allow for stray ^M characters in DOS EOL files. */
6196 if ((eol_seen == EOL_SEEN_CR && this_eol == EOL_SEEN_CRLF)
6197 || (eol_seen == EOL_SEEN_CRLF && this_eol == EOL_SEEN_CR))
6198 eol_seen = EOL_SEEN_CRLF;
6199 else
6200 {
6201 eol_seen = EOL_SEEN_LF;
6202 break;
6203 }
6204 }
6205 if (++total == MAX_EOL_CHECK_COUNT)
6206 break;
6207 }
6208 }
df7492f9 6209 return eol_seen;
73be902c
KH
6210}
6211
df7492f9 6212
24a73b0a 6213static Lisp_Object
971de7fb 6214adjust_coding_eol_type (struct coding_system *coding, int eol_seen)
73be902c 6215{
0be8721c 6216 Lisp_Object eol_type;
8f924df7 6217
df7492f9
KH
6218 eol_type = CODING_ID_EOL_TYPE (coding->id);
6219 if (eol_seen & EOL_SEEN_LF)
24a73b0a
KH
6220 {
6221 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 0));
6222 eol_type = Qunix;
6223 }
6f197c07 6224 else if (eol_seen & EOL_SEEN_CRLF)
24a73b0a
KH
6225 {
6226 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 1));
6227 eol_type = Qdos;
6228 }
6f197c07 6229 else if (eol_seen & EOL_SEEN_CR)
24a73b0a
KH
6230 {
6231 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 2));
6232 eol_type = Qmac;
6233 }
6234 return eol_type;
d46c5b12 6235}
4ed46869 6236
df7492f9
KH
6237/* Detect how a text specified in CODING is encoded. If a coding
6238 system is detected, update fields of CODING by the detected coding
6239 system. */
0a28aafb 6240
74ab6df5 6241static void
971de7fb 6242detect_coding (struct coding_system *coding)
d46c5b12 6243{
8f924df7 6244 const unsigned char *src, *src_end;
f10fe38f 6245 unsigned int saved_mode = coding->mode;
d46c5b12 6246
df7492f9
KH
6247 coding->consumed = coding->consumed_char = 0;
6248 coding->produced = coding->produced_char = 0;
6249 coding_set_source (coding);
1c3478b0 6250
df7492f9 6251 src_end = coding->source + coding->src_bytes;
c0e16b14 6252 coding->head_ascii = 0;
1c3478b0 6253
df7492f9
KH
6254 /* If we have not yet decided the text encoding type, detect it
6255 now. */
6256 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qundecided))
b73bfc1c 6257 {
df7492f9 6258 int c, i;
6cb21a4f 6259 struct coding_detection_info detect_info;
f10fe38f 6260 bool null_byte_found = 0, eight_bit_found = 0;
df7492f9 6261
6cb21a4f 6262 detect_info.checked = detect_info.found = detect_info.rejected = 0;
2f3cbb32 6263 for (src = coding->source; src < src_end; src++)
d46c5b12 6264 {
df7492f9 6265 c = *src;
6cb21a4f 6266 if (c & 0x80)
6cb21a4f 6267 {
2f3cbb32 6268 eight_bit_found = 1;
2f3cbb32
KH
6269 if (null_byte_found)
6270 break;
6271 }
6272 else if (c < 0x20)
6273 {
6274 if ((c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)
6275 && ! inhibit_iso_escape_detection
6276 && ! detect_info.checked)
6cb21a4f 6277 {
2f3cbb32
KH
6278 if (detect_coding_iso_2022 (coding, &detect_info))
6279 {
6280 /* We have scanned the whole data. */
6281 if (! (detect_info.rejected & CATEGORY_MASK_ISO_7_ELSE))
c0e16b14
KH
6282 {
6283 /* We didn't find an 8-bit code. We may
6284 have found a null-byte, but it's very
ce5b453a 6285 rare that a binary file conforms to
c0e16b14
KH
6286 ISO-2022. */
6287 src = src_end;
6288 coding->head_ascii = src - coding->source;
6289 }
6290 detect_info.rejected |= ~CATEGORY_MASK_ISO_ESCAPE;
2f3cbb32
KH
6291 break;
6292 }
6293 }
97b1b294 6294 else if (! c && !inhibit_null_byte_detection)
2f3cbb32
KH
6295 {
6296 null_byte_found = 1;
6297 if (eight_bit_found)
6298 break;
6cb21a4f 6299 }
c006c0c8
KH
6300 if (! eight_bit_found)
6301 coding->head_ascii++;
6cb21a4f 6302 }
c006c0c8 6303 else if (! eight_bit_found)
c0e16b14 6304 coding->head_ascii++;
d46c5b12 6305 }
df7492f9 6306
2f3cbb32
KH
6307 if (null_byte_found || eight_bit_found
6308 || coding->head_ascii < coding->src_bytes
6cb21a4f 6309 || detect_info.found)
d46c5b12 6310 {
ff0dacd7
KH
6311 enum coding_category category;
6312 struct coding_system *this;
df7492f9 6313
6cb21a4f
KH
6314 if (coding->head_ascii == coding->src_bytes)
6315 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
6316 for (i = 0; i < coding_category_raw_text; i++)
6317 {
6318 category = coding_priorities[i];
6319 this = coding_categories + category;
6320 if (detect_info.found & (1 << category))
24a73b0a 6321 break;
6cb21a4f
KH
6322 }
6323 else
2f3cbb32
KH
6324 {
6325 if (null_byte_found)
ff0dacd7 6326 {
2f3cbb32
KH
6327 detect_info.checked |= ~CATEGORY_MASK_UTF_16;
6328 detect_info.rejected |= ~CATEGORY_MASK_UTF_16;
ff0dacd7 6329 }
2f3cbb32
KH
6330 for (i = 0; i < coding_category_raw_text; i++)
6331 {
6332 category = coding_priorities[i];
6333 this = coding_categories + category;
6334 if (this->id < 0)
6335 {
6336 /* No coding system of this category is defined. */
6337 detect_info.rejected |= (1 << category);
6338 }
6339 else if (category >= coding_category_raw_text)
6340 continue;
6341 else if (detect_info.checked & (1 << category))
6342 {
6343 if (detect_info.found & (1 << category))
6344 break;
6345 }
6346 else if ((*(this->detector)) (coding, &detect_info)
6347 && detect_info.found & (1 << category))
6348 {
6349 if (category == coding_category_utf_16_auto)
6350 {
6351 if (detect_info.found & CATEGORY_MASK_UTF_16_LE)
6352 category = coding_category_utf_16_le;
6353 else
6354 category = coding_category_utf_16_be;
6355 }
6356 break;
6357 }
6358 }
2f3cbb32 6359 }
c0e16b14
KH
6360
6361 if (i < coding_category_raw_text)
6362 setup_coding_system (CODING_ID_NAME (this->id), coding);
6363 else if (null_byte_found)
6364 setup_coding_system (Qno_conversion, coding);
6365 else if ((detect_info.rejected & CATEGORY_MASK_ANY)
6366 == CATEGORY_MASK_ANY)
6367 setup_coding_system (Qraw_text, coding);
6368 else if (detect_info.rejected)
6369 for (i = 0; i < coding_category_raw_text; i++)
6370 if (! (detect_info.rejected & (1 << coding_priorities[i])))
6371 {
6372 this = coding_categories + coding_priorities[i];
6373 setup_coding_system (CODING_ID_NAME (this->id), coding);
6374 break;
6375 }
d46c5b12 6376 }
b73bfc1c 6377 }
a470d443
KH
6378 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding->id)))
6379 == coding_category_utf_8_auto)
6380 {
6381 Lisp_Object coding_systems;
6382 struct coding_detection_info detect_info;
6383
6384 coding_systems
6385 = AREF (CODING_ID_ATTRS (coding->id), coding_attr_utf_bom);
6386 detect_info.found = detect_info.rejected = 0;
6387 coding->head_ascii = 0;
6388 if (CONSP (coding_systems)
6389 && detect_coding_utf_8 (coding, &detect_info))
6390 {
6391 if (detect_info.found & CATEGORY_MASK_UTF_8_SIG)
6392 setup_coding_system (XCAR (coding_systems), coding);
6393 else
6394 setup_coding_system (XCDR (coding_systems), coding);
6395 }
6396 }
24a73b0a
KH
6397 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding->id)))
6398 == coding_category_utf_16_auto)
b49a1807
KH
6399 {
6400 Lisp_Object coding_systems;
6401 struct coding_detection_info detect_info;
6402
6403 coding_systems
a470d443 6404 = AREF (CODING_ID_ATTRS (coding->id), coding_attr_utf_bom);
b49a1807 6405 detect_info.found = detect_info.rejected = 0;
a470d443 6406 coding->head_ascii = 0;
b49a1807 6407 if (CONSP (coding_systems)
24a73b0a 6408 && detect_coding_utf_16 (coding, &detect_info))
b49a1807
KH
6409 {
6410 if (detect_info.found & CATEGORY_MASK_UTF_16_LE)
6411 setup_coding_system (XCAR (coding_systems), coding);
24a73b0a 6412 else if (detect_info.found & CATEGORY_MASK_UTF_16_BE)
b49a1807
KH
6413 setup_coding_system (XCDR (coding_systems), coding);
6414 }
6415 }
73cce38d 6416 coding->mode = saved_mode;
4ed46869 6417}
4ed46869 6418
d46c5b12 6419
aaaf0b1e 6420static void
971de7fb 6421decode_eol (struct coding_system *coding)
aaaf0b1e 6422{
24a73b0a
KH
6423 Lisp_Object eol_type;
6424 unsigned char *p, *pbeg, *pend;
3ed051d4 6425
24a73b0a 6426 eol_type = CODING_ID_EOL_TYPE (coding->id);
0a9564cb 6427 if (EQ (eol_type, Qunix) || inhibit_eol_conversion)
24a73b0a
KH
6428 return;
6429
6430 if (NILP (coding->dst_object))
6431 pbeg = coding->destination;
6432 else
6433 pbeg = BYTE_POS_ADDR (coding->dst_pos_byte);
6434 pend = pbeg + coding->produced;
6435
6436 if (VECTORP (eol_type))
aaaf0b1e 6437 {
df7492f9 6438 int eol_seen = EOL_SEEN_NONE;
4ed46869 6439
24a73b0a 6440 for (p = pbeg; p < pend; p++)
aaaf0b1e 6441 {
df7492f9
KH
6442 if (*p == '\n')
6443 eol_seen |= EOL_SEEN_LF;
6444 else if (*p == '\r')
aaaf0b1e 6445 {
df7492f9 6446 if (p + 1 < pend && *(p + 1) == '\n')
aaaf0b1e 6447 {
df7492f9
KH
6448 eol_seen |= EOL_SEEN_CRLF;
6449 p++;
aaaf0b1e 6450 }
aaaf0b1e 6451 else
df7492f9 6452 eol_seen |= EOL_SEEN_CR;
aaaf0b1e 6453 }
aaaf0b1e 6454 }
75f4f1ac
EZ
6455 /* Handle DOS-style EOLs in a file with stray ^M characters. */
6456 if ((eol_seen & EOL_SEEN_CRLF) != 0
6457 && (eol_seen & EOL_SEEN_CR) != 0
6458 && (eol_seen & EOL_SEEN_LF) == 0)
6459 eol_seen = EOL_SEEN_CRLF;
6460 else if (eol_seen != EOL_SEEN_NONE
24a73b0a
KH
6461 && eol_seen != EOL_SEEN_LF
6462 && eol_seen != EOL_SEEN_CRLF
6463 && eol_seen != EOL_SEEN_CR)
6464 eol_seen = EOL_SEEN_LF;
df7492f9 6465 if (eol_seen != EOL_SEEN_NONE)
24a73b0a 6466 eol_type = adjust_coding_eol_type (coding, eol_seen);
aaaf0b1e 6467 }
d46c5b12 6468
24a73b0a 6469 if (EQ (eol_type, Qmac))
27901516 6470 {
24a73b0a 6471 for (p = pbeg; p < pend; p++)
df7492f9
KH
6472 if (*p == '\r')
6473 *p = '\n';
4ed46869 6474 }
24a73b0a 6475 else if (EQ (eol_type, Qdos))
df7492f9 6476 {
d311d28c 6477 ptrdiff_t n = 0;
b73bfc1c 6478
24a73b0a
KH
6479 if (NILP (coding->dst_object))
6480 {
4347441b
KH
6481 /* Start deleting '\r' from the tail to minimize the memory
6482 movement. */
24a73b0a
KH
6483 for (p = pend - 2; p >= pbeg; p--)
6484 if (*p == '\r')
6485 {
72af86bd 6486 memmove (p, p + 1, pend-- - p - 1);
24a73b0a
KH
6487 n++;
6488 }
6489 }
6490 else
6491 {
d311d28c
PE
6492 ptrdiff_t pos_byte = coding->dst_pos_byte;
6493 ptrdiff_t pos = coding->dst_pos;
6494 ptrdiff_t pos_end = pos + coding->produced_char - 1;
4347441b
KH
6495
6496 while (pos < pos_end)
6497 {
6498 p = BYTE_POS_ADDR (pos_byte);
6499 if (*p == '\r' && p[1] == '\n')
6500 {
6501 del_range_2 (pos, pos_byte, pos + 1, pos_byte + 1, 0);
6502 n++;
6503 pos_end--;
6504 }
6505 pos++;
69b8522d
KH
6506 if (coding->dst_multibyte)
6507 pos_byte += BYTES_BY_CHAR_HEAD (*p);
6508 else
6509 pos_byte++;
4347441b 6510 }
24a73b0a
KH
6511 }
6512 coding->produced -= n;
6513 coding->produced_char -= n;
aaaf0b1e 6514 }
4ed46869
KH
6515}
6516
7d64c6ad 6517
a6f87d34 6518/* Return a translation table (or list of them) from coding system
f10fe38f
PE
6519 attribute vector ATTRS for encoding (if ENCODEP) or decoding (if
6520 not ENCODEP). */
7d64c6ad 6521
e6a54062 6522static Lisp_Object
f10fe38f 6523get_translation_table (Lisp_Object attrs, bool encodep, int *max_lookup)
7d64c6ad
KH
6524{
6525 Lisp_Object standard, translation_table;
09ee6fdd 6526 Lisp_Object val;
7d64c6ad 6527
4bed5909
CY
6528 if (NILP (Venable_character_translation))
6529 {
6530 if (max_lookup)
6531 *max_lookup = 0;
6532 return Qnil;
6533 }
7d64c6ad
KH
6534 if (encodep)
6535 translation_table = CODING_ATTR_ENCODE_TBL (attrs),
6536 standard = Vstandard_translation_table_for_encode;
6537 else
6538 translation_table = CODING_ATTR_DECODE_TBL (attrs),
6539 standard = Vstandard_translation_table_for_decode;
7d64c6ad 6540 if (NILP (translation_table))
09ee6fdd
KH
6541 translation_table = standard;
6542 else
a6f87d34 6543 {
09ee6fdd
KH
6544 if (SYMBOLP (translation_table))
6545 translation_table = Fget (translation_table, Qtranslation_table);
6546 else if (CONSP (translation_table))
6547 {
6548 translation_table = Fcopy_sequence (translation_table);
6549 for (val = translation_table; CONSP (val); val = XCDR (val))
6550 if (SYMBOLP (XCAR (val)))
6551 XSETCAR (val, Fget (XCAR (val), Qtranslation_table));
6552 }
6553 if (CHAR_TABLE_P (standard))
6554 {
6555 if (CONSP (translation_table))
6556 translation_table = nconc2 (translation_table,
6557 Fcons (standard, Qnil));
6558 else
6559 translation_table = Fcons (translation_table,
6560 Fcons (standard, Qnil));
6561 }
a6f87d34 6562 }
2170c8f0
KH
6563
6564 if (max_lookup)
09ee6fdd 6565 {
2170c8f0
KH
6566 *max_lookup = 1;
6567 if (CHAR_TABLE_P (translation_table)
6568 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table)) > 1)
6569 {
6570 val = XCHAR_TABLE (translation_table)->extras[1];
6571 if (NATNUMP (val) && *max_lookup < XFASTINT (val))
6572 *max_lookup = XFASTINT (val);
6573 }
6574 else if (CONSP (translation_table))
6575 {
2735d060 6576 Lisp_Object tail;
09ee6fdd 6577
2170c8f0
KH
6578 for (tail = translation_table; CONSP (tail); tail = XCDR (tail))
6579 if (CHAR_TABLE_P (XCAR (tail))
6580 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail))) > 1)
6581 {
2735d060
PE
6582 Lisp_Object tailval = XCHAR_TABLE (XCAR (tail))->extras[1];
6583 if (NATNUMP (tailval) && *max_lookup < XFASTINT (tailval))
6584 *max_lookup = XFASTINT (tailval);
2170c8f0
KH
6585 }
6586 }
a6f87d34 6587 }
7d64c6ad
KH
6588 return translation_table;
6589}
6590
09ee6fdd
KH
6591#define LOOKUP_TRANSLATION_TABLE(table, c, trans) \
6592 do { \
6593 trans = Qnil; \
6594 if (CHAR_TABLE_P (table)) \
6595 { \
6596 trans = CHAR_TABLE_REF (table, c); \
6597 if (CHARACTERP (trans)) \
6598 c = XFASTINT (trans), trans = Qnil; \
6599 } \
6600 else if (CONSP (table)) \
6601 { \
6602 Lisp_Object tail; \
6603 \
6604 for (tail = table; CONSP (tail); tail = XCDR (tail)) \
6605 if (CHAR_TABLE_P (XCAR (tail))) \
6606 { \
6607 trans = CHAR_TABLE_REF (XCAR (tail), c); \
6608 if (CHARACTERP (trans)) \
6609 c = XFASTINT (trans), trans = Qnil; \
6610 else if (! NILP (trans)) \
6611 break; \
6612 } \
6613 } \
e6a54062
KH
6614 } while (0)
6615
7d64c6ad 6616
e951386e
KH
6617/* Return a translation of character(s) at BUF according to TRANS.
6618 TRANS is TO-CHAR or ((FROM . TO) ...) where
6619 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...].
6620 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a
6621 translation is found, and Qnil if not found..
6622 If BUF is too short to lookup characters in FROM, return Qt. */
6623
69a80ea3 6624static Lisp_Object
971de7fb 6625get_translation (Lisp_Object trans, int *buf, int *buf_end)
69a80ea3 6626{
e951386e
KH
6627
6628 if (INTEGERP (trans))
6629 return trans;
6630 for (; CONSP (trans); trans = XCDR (trans))
69a80ea3 6631 {
e951386e
KH
6632 Lisp_Object val = XCAR (trans);
6633 Lisp_Object from = XCAR (val);
2c6a9faa
PE
6634 ptrdiff_t len = ASIZE (from);
6635 ptrdiff_t i;
69a80ea3 6636
e951386e 6637 for (i = 0; i < len; i++)
69a80ea3 6638 {
e951386e
KH
6639 if (buf + i == buf_end)
6640 return Qt;
6641 if (XINT (AREF (from, i)) != buf[i])
6642 break;
69a80ea3 6643 }
e951386e
KH
6644 if (i == len)
6645 return val;
69a80ea3 6646 }
e951386e 6647 return Qnil;
69a80ea3
KH
6648}
6649
6650
d46c5b12 6651static int
cf84bb53 6652produce_chars (struct coding_system *coding, Lisp_Object translation_table,
f10fe38f 6653 bool last_block)
4ed46869 6654{
df7492f9
KH
6655 unsigned char *dst = coding->destination + coding->produced;
6656 unsigned char *dst_end = coding->destination + coding->dst_bytes;
d311d28c
PE
6657 ptrdiff_t produced;
6658 ptrdiff_t produced_chars = 0;
69a80ea3 6659 int carryover = 0;
4ed46869 6660
df7492f9 6661 if (! coding->chars_at_source)
4ed46869 6662 {
119852e7 6663 /* Source characters are in coding->charbuf. */
fba4576f
AS
6664 int *buf = coding->charbuf;
6665 int *buf_end = buf + coding->charbuf_used;
4ed46869 6666
db274c7a
KH
6667 if (EQ (coding->src_object, coding->dst_object))
6668 {
6669 coding_set_source (coding);
6670 dst_end = ((unsigned char *) coding->source) + coding->consumed;
6671 }
4ed46869 6672
df7492f9 6673 while (buf < buf_end)
4ed46869 6674 {
27bb1ca4
PE
6675 int c = *buf;
6676 ptrdiff_t i;
bc4bc72a 6677
df7492f9
KH
6678 if (c >= 0)
6679 {
d311d28c 6680 ptrdiff_t from_nchars = 1, to_nchars = 1;
69a80ea3
KH
6681 Lisp_Object trans = Qnil;
6682
09ee6fdd 6683 LOOKUP_TRANSLATION_TABLE (translation_table, c, trans);
e6a54062 6684 if (! NILP (trans))
69a80ea3 6685 {
e951386e
KH
6686 trans = get_translation (trans, buf, buf_end);
6687 if (INTEGERP (trans))
6688 c = XINT (trans);
6689 else if (CONSP (trans))
6690 {
6691 from_nchars = ASIZE (XCAR (trans));
6692 trans = XCDR (trans);
6693 if (INTEGERP (trans))
6694 c = XINT (trans);
6695 else
6696 {
6697 to_nchars = ASIZE (trans);
6698 c = XINT (AREF (trans, 0));
6699 }
6700 }
6701 else if (EQ (trans, Qt) && ! last_block)
69a80ea3 6702 break;
69a80ea3
KH
6703 }
6704
5d009b3a 6705 if ((dst_end - dst) / MAX_MULTIBYTE_LENGTH < to_nchars)
69a80ea3 6706 {
5d009b3a
PE
6707 if (((min (PTRDIFF_MAX, SIZE_MAX) - (buf_end - buf))
6708 / MAX_MULTIBYTE_LENGTH)
6709 < to_nchars)
6710 memory_full (SIZE_MAX);
69a80ea3
KH
6711 dst = alloc_destination (coding,
6712 buf_end - buf
6713 + MAX_MULTIBYTE_LENGTH * to_nchars,
6714 dst);
db274c7a
KH
6715 if (EQ (coding->src_object, coding->dst_object))
6716 {
6717 coding_set_source (coding);
e951386e
KH
6718 dst_end = (((unsigned char *) coding->source)
6719 + coding->consumed);
db274c7a
KH
6720 }
6721 else
6722 dst_end = coding->destination + coding->dst_bytes;
69a80ea3
KH
6723 }
6724
433f7f87 6725 for (i = 0; i < to_nchars; i++)
69a80ea3 6726 {
433f7f87
KH
6727 if (i > 0)
6728 c = XINT (AREF (trans, i));
69a80ea3
KH
6729 if (coding->dst_multibyte
6730 || ! CHAR_BYTE8_P (c))
db274c7a 6731 CHAR_STRING_ADVANCE_NO_UNIFY (c, dst);
69a80ea3
KH
6732 else
6733 *dst++ = CHAR_TO_BYTE8 (c);
6734 }
6735 produced_chars += to_nchars;
e951386e 6736 buf += from_nchars;
d46c5b12 6737 }
df7492f9 6738 else
69a80ea3
KH
6739 /* This is an annotation datum. (-C) is the length. */
6740 buf += -c;
4ed46869 6741 }
69a80ea3 6742 carryover = buf_end - buf;
4ed46869 6743 }
fa42c37f 6744 else
fa42c37f 6745 {
119852e7 6746 /* Source characters are at coding->source. */
8f924df7 6747 const unsigned char *src = coding->source;
119852e7 6748 const unsigned char *src_end = src + coding->consumed;
4ed46869 6749
db274c7a
KH
6750 if (EQ (coding->dst_object, coding->src_object))
6751 dst_end = (unsigned char *) src;
df7492f9 6752 if (coding->src_multibyte != coding->dst_multibyte)
fa42c37f 6753 {
df7492f9 6754 if (coding->src_multibyte)
fa42c37f 6755 {
f10fe38f 6756 bool multibytep = 1;
d311d28c 6757 ptrdiff_t consumed_chars = 0;
d46c5b12 6758
df7492f9
KH
6759 while (1)
6760 {
8f924df7 6761 const unsigned char *src_base = src;
df7492f9 6762 int c;
b73bfc1c 6763
df7492f9 6764 ONE_MORE_BYTE (c);
119852e7 6765 if (dst == dst_end)
df7492f9 6766 {
119852e7
KH
6767 if (EQ (coding->src_object, coding->dst_object))
6768 dst_end = (unsigned char *) src;
6769 if (dst == dst_end)
df7492f9 6770 {
d311d28c 6771 ptrdiff_t offset = src - coding->source;
119852e7
KH
6772
6773 dst = alloc_destination (coding, src_end - src + 1,
6774 dst);
6775 dst_end = coding->destination + coding->dst_bytes;
6776 coding_set_source (coding);
6777 src = coding->source + offset;
5c1ca13d 6778 src_end = coding->source + coding->consumed;
db274c7a
KH
6779 if (EQ (coding->src_object, coding->dst_object))
6780 dst_end = (unsigned char *) src;
df7492f9 6781 }
df7492f9
KH
6782 }
6783 *dst++ = c;
6784 produced_chars++;
6785 }
6786 no_more_source:
6787 ;
fa42c37f
KH
6788 }
6789 else
df7492f9
KH
6790 while (src < src_end)
6791 {
f10fe38f 6792 bool multibytep = 1;
df7492f9 6793 int c = *src++;
b73bfc1c 6794
df7492f9
KH
6795 if (dst >= dst_end - 1)
6796 {
2c78b7e1 6797 if (EQ (coding->src_object, coding->dst_object))
8f924df7 6798 dst_end = (unsigned char *) src;
2c78b7e1
KH
6799 if (dst >= dst_end - 1)
6800 {
d311d28c
PE
6801 ptrdiff_t offset = src - coding->source;
6802 ptrdiff_t more_bytes;
119852e7 6803
db274c7a
KH
6804 if (EQ (coding->src_object, coding->dst_object))
6805 more_bytes = ((src_end - src) / 2) + 2;
6806 else
6807 more_bytes = src_end - src + 2;
6808 dst = alloc_destination (coding, more_bytes, dst);
2c78b7e1
KH
6809 dst_end = coding->destination + coding->dst_bytes;
6810 coding_set_source (coding);
119852e7 6811 src = coding->source + offset;
5c1ca13d 6812 src_end = coding->source + coding->consumed;
db274c7a
KH
6813 if (EQ (coding->src_object, coding->dst_object))
6814 dst_end = (unsigned char *) src;
2c78b7e1 6815 }
df7492f9
KH
6816 }
6817 EMIT_ONE_BYTE (c);
6818 }
d46c5b12 6819 }
df7492f9
KH
6820 else
6821 {
6822 if (!EQ (coding->src_object, coding->dst_object))
fa42c37f 6823 {
d311d28c 6824 ptrdiff_t require = coding->src_bytes - coding->dst_bytes;
4ed46869 6825
df7492f9 6826 if (require > 0)
fa42c37f 6827 {
d311d28c 6828 ptrdiff_t offset = src - coding->source;
df7492f9
KH
6829
6830 dst = alloc_destination (coding, require, dst);
6831 coding_set_source (coding);
6832 src = coding->source + offset;
5c1ca13d 6833 src_end = coding->source + coding->consumed;
fa42c37f
KH
6834 }
6835 }
119852e7 6836 produced_chars = coding->consumed_char;
df7492f9 6837 while (src < src_end)
14daee73 6838 *dst++ = *src++;
fa42c37f
KH
6839 }
6840 }
6841
df7492f9 6842 produced = dst - (coding->destination + coding->produced);
284201e4 6843 if (BUFFERP (coding->dst_object) && produced_chars > 0)
df7492f9
KH
6844 insert_from_gap (produced_chars, produced);
6845 coding->produced += produced;
6846 coding->produced_char += produced_chars;
69a80ea3 6847 return carryover;
fa42c37f
KH
6848}
6849
ff0dacd7
KH
6850/* Compose text in CODING->object according to the annotation data at
6851 CHARBUF. CHARBUF is an array:
e951386e 6852 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ]
df7492f9 6853 */
4ed46869 6854
55d4c1b2 6855static inline void
d311d28c 6856produce_composition (struct coding_system *coding, int *charbuf, ptrdiff_t pos)
4ed46869 6857{
df7492f9 6858 int len;
d311d28c 6859 ptrdiff_t to;
df7492f9 6860 enum composition_method method;
df7492f9 6861 Lisp_Object components;
fa42c37f 6862
e951386e 6863 len = -charbuf[0] - MAX_ANNOTATION_LENGTH;
69a80ea3 6864 to = pos + charbuf[2];
e951386e 6865 method = (enum composition_method) (charbuf[4]);
d46c5b12 6866
df7492f9
KH
6867 if (method == COMPOSITION_RELATIVE)
6868 components = Qnil;
e951386e 6869 else
d46c5b12 6870 {
df7492f9 6871 Lisp_Object args[MAX_COMPOSITION_COMPONENTS * 2 - 1];
e951386e 6872 int i, j;
b73bfc1c 6873
e951386e
KH
6874 if (method == COMPOSITION_WITH_RULE)
6875 len = charbuf[2] * 3 - 2;
6876 charbuf += MAX_ANNOTATION_LENGTH;
6877 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */
6878 for (i = j = 0; i < len && charbuf[i] != -1; i++, j++)
9ffd559c 6879 {
e951386e
KH
6880 if (charbuf[i] >= 0)
6881 args[j] = make_number (charbuf[i]);
6882 else
6883 {
6884 i++;
6885 args[j] = make_number (charbuf[i] % 0x100);
6886 }
9ffd559c 6887 }
e951386e 6888 components = (i == j ? Fstring (j, args) : Fvector (j, args));
d46c5b12 6889 }
69a80ea3 6890 compose_text (pos, to, components, Qnil, coding->dst_object);
d46c5b12
KH
6891}
6892
d46c5b12 6893
ff0dacd7
KH
6894/* Put `charset' property on text in CODING->object according to
6895 the annotation data at CHARBUF. CHARBUF is an array:
69a80ea3 6896 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ]
ff0dacd7 6897 */
d46c5b12 6898
55d4c1b2 6899static inline void
d311d28c 6900produce_charset (struct coding_system *coding, int *charbuf, ptrdiff_t pos)
d46c5b12 6901{
d311d28c 6902 ptrdiff_t from = pos - charbuf[2];
69a80ea3 6903 struct charset *charset = CHARSET_FROM_ID (charbuf[3]);
b73bfc1c 6904
69a80ea3 6905 Fput_text_property (make_number (from), make_number (pos),
ff0dacd7
KH
6906 Qcharset, CHARSET_NAME (charset),
6907 coding->dst_object);
d46c5b12
KH
6908}
6909
d46c5b12 6910
df7492f9
KH
6911#define CHARBUF_SIZE 0x4000
6912
6913#define ALLOC_CONVERSION_WORK_AREA(coding) \
6914 do { \
8510724d 6915 int size = CHARBUF_SIZE; \
df7492f9
KH
6916 \
6917 coding->charbuf = NULL; \
6918 while (size > 1024) \
6919 { \
38182d90 6920 coding->charbuf = alloca (sizeof (int) * size); \
df7492f9
KH
6921 if (coding->charbuf) \
6922 break; \
6923 size >>= 1; \
6924 } \
6925 if (! coding->charbuf) \
6926 { \
065e3595 6927 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_MEM); \
f10fe38f 6928 return; \
df7492f9
KH
6929 } \
6930 coding->charbuf_size = size; \
6931 } while (0)
4ed46869 6932
d46c5b12
KH
6933
6934static void
d311d28c 6935produce_annotation (struct coding_system *coding, ptrdiff_t pos)
d46c5b12 6936{
df7492f9
KH
6937 int *charbuf = coding->charbuf;
6938 int *charbuf_end = charbuf + coding->charbuf_used;
d46c5b12 6939
ff0dacd7
KH
6940 if (NILP (coding->dst_object))
6941 return;
d46c5b12 6942
df7492f9 6943 while (charbuf < charbuf_end)
a84f1519 6944 {
df7492f9 6945 if (*charbuf >= 0)
e951386e 6946 pos++, charbuf++;
d46c5b12 6947 else
d46c5b12 6948 {
df7492f9 6949 int len = -*charbuf;
e951386e
KH
6950
6951 if (len > 2)
6952 switch (charbuf[1])
6953 {
6954 case CODING_ANNOTATE_COMPOSITION_MASK:
6955 produce_composition (coding, charbuf, pos);
6956 break;
6957 case CODING_ANNOTATE_CHARSET_MASK:
6958 produce_charset (coding, charbuf, pos);
6959 break;
6960 }
df7492f9 6961 charbuf += len;
d46c5b12 6962 }
a84f1519 6963 }
d46c5b12
KH
6964}
6965
df7492f9
KH
6966/* Decode the data at CODING->src_object into CODING->dst_object.
6967 CODING->src_object is a buffer, a string, or nil.
6968 CODING->dst_object is a buffer.
d46c5b12 6969
df7492f9
KH
6970 If CODING->src_object is a buffer, it must be the current buffer.
6971 In this case, if CODING->src_pos is positive, it is a position of
6972 the source text in the buffer, otherwise, the source text is in the
6973 gap area of the buffer, and CODING->src_pos specifies the offset of
6974 the text from GPT (which must be the same as PT). If this is the
6975 same buffer as CODING->dst_object, CODING->src_pos must be
6976 negative.
d46c5b12 6977
b6828792 6978 If CODING->src_object is a string, CODING->src_pos is an index to
df7492f9 6979 that string.
d46c5b12 6980
df7492f9
KH
6981 If CODING->src_object is nil, CODING->source must already point to
6982 the non-relocatable memory area. In this case, CODING->src_pos is
6983 an offset from CODING->source.
73be902c 6984
df7492f9
KH
6985 The decoded data is inserted at the current point of the buffer
6986 CODING->dst_object.
6987*/
d46c5b12 6988
f10fe38f 6989static void
971de7fb 6990decode_coding (struct coding_system *coding)
d46c5b12 6991{
df7492f9 6992 Lisp_Object attrs;
24a73b0a 6993 Lisp_Object undo_list;
7d64c6ad 6994 Lisp_Object translation_table;
d0396581 6995 struct ccl_spec cclspec;
69a80ea3
KH
6996 int carryover;
6997 int i;
d46c5b12 6998
df7492f9
KH
6999 if (BUFFERP (coding->src_object)
7000 && coding->src_pos > 0
7001 && coding->src_pos < GPT
7002 && coding->src_pos + coding->src_chars > GPT)
7003 move_gap_both (coding->src_pos, coding->src_pos_byte);
d46c5b12 7004
24a73b0a 7005 undo_list = Qt;
df7492f9 7006 if (BUFFERP (coding->dst_object))
1c3478b0 7007 {
a3d794a1 7008 set_buffer_internal (XBUFFER (coding->dst_object));
df7492f9
KH
7009 if (GPT != PT)
7010 move_gap_both (PT, PT_BYTE);
f48b82fd
GR
7011
7012 /* We must disable undo_list in order to record the whole insert
7013 transaction via record_insert at the end. But doing so also
7014 disables the recording of the first change to the undo_list.
7015 Therefore we check for first change here and record it via
7016 record_first_change if needed. */
7017 if (MODIFF <= SAVE_MODIFF)
7018 record_first_change ();
7019
4b4deea2 7020 undo_list = BVAR (current_buffer, undo_list);
39eb03f1 7021 bset_undo_list (current_buffer, Qt);
1c3478b0
KH
7022 }
7023
df7492f9
KH
7024 coding->consumed = coding->consumed_char = 0;
7025 coding->produced = coding->produced_char = 0;
7026 coding->chars_at_source = 0;
065e3595 7027 record_conversion_result (coding, CODING_RESULT_SUCCESS);
df7492f9 7028 coding->errors = 0;
1c3478b0 7029
df7492f9
KH
7030 ALLOC_CONVERSION_WORK_AREA (coding);
7031
7032 attrs = CODING_ID_ATTRS (coding->id);
2170c8f0 7033 translation_table = get_translation_table (attrs, 0, NULL);
df7492f9 7034
69a80ea3 7035 carryover = 0;
d0396581
KH
7036 if (coding->decoder == decode_coding_ccl)
7037 {
7038 coding->spec.ccl = &cclspec;
7039 setup_ccl_program (&cclspec.ccl, CODING_CCL_DECODER (coding));
7040 }
df7492f9 7041 do
b73bfc1c 7042 {
d311d28c 7043 ptrdiff_t pos = coding->dst_pos + coding->produced_char;
69a80ea3 7044
df7492f9
KH
7045 coding_set_source (coding);
7046 coding->annotated = 0;
69a80ea3 7047 coding->charbuf_used = carryover;
df7492f9 7048 (*(coding->decoder)) (coding);
df7492f9 7049 coding_set_destination (coding);
69a80ea3 7050 carryover = produce_chars (coding, translation_table, 0);
df7492f9 7051 if (coding->annotated)
69a80ea3
KH
7052 produce_annotation (coding, pos);
7053 for (i = 0; i < carryover; i++)
7054 coding->charbuf[i]
7055 = coding->charbuf[coding->charbuf_used - carryover + i];
d46c5b12 7056 }
d0396581
KH
7057 while (coding->result == CODING_RESULT_INSUFFICIENT_DST
7058 || (coding->consumed < coding->src_bytes
7059 && (coding->result == CODING_RESULT_SUCCESS
7060 || coding->result == CODING_RESULT_INVALID_SRC)));
d46c5b12 7061
69a80ea3
KH
7062 if (carryover > 0)
7063 {
7064 coding_set_destination (coding);
7065 coding->charbuf_used = carryover;
7066 produce_chars (coding, translation_table, 1);
7067 }
7068
df7492f9
KH
7069 coding->carryover_bytes = 0;
7070 if (coding->consumed < coding->src_bytes)
d46c5b12 7071 {
df7492f9 7072 int nbytes = coding->src_bytes - coding->consumed;
8f924df7 7073 const unsigned char *src;
df7492f9
KH
7074
7075 coding_set_source (coding);
7076 coding_set_destination (coding);
7077 src = coding->source + coding->consumed;
7078
7079 if (coding->mode & CODING_MODE_LAST_BLOCK)
1c3478b0 7080 {
df7492f9
KH
7081 /* Flush out unprocessed data as binary chars. We are sure
7082 that the number of data is less than the size of
7083 coding->charbuf. */
065e3595 7084 coding->charbuf_used = 0;
b2dab6c8
JR
7085 coding->chars_at_source = 0;
7086
df7492f9 7087 while (nbytes-- > 0)
1c3478b0 7088 {
df7492f9 7089 int c = *src++;
98725083 7090
1c91457d
KH
7091 if (c & 0x80)
7092 c = BYTE8_TO_CHAR (c);
7093 coding->charbuf[coding->charbuf_used++] = c;
1c3478b0 7094 }
f6cbaf43 7095 produce_chars (coding, Qnil, 1);
d46c5b12 7096 }
d46c5b12 7097 else
df7492f9
KH
7098 {
7099 /* Record unprocessed bytes in coding->carryover. We are
7100 sure that the number of data is less than the size of
7101 coding->carryover. */
7102 unsigned char *p = coding->carryover;
7103
f289d375
KH
7104 if (nbytes > sizeof coding->carryover)
7105 nbytes = sizeof coding->carryover;
df7492f9
KH
7106 coding->carryover_bytes = nbytes;
7107 while (nbytes-- > 0)
7108 *p++ = *src++;
1c3478b0 7109 }
df7492f9 7110 coding->consumed = coding->src_bytes;
b73bfc1c 7111 }
69f76525 7112
0a9564cb
EZ
7113 if (! EQ (CODING_ID_EOL_TYPE (coding->id), Qunix)
7114 && !inhibit_eol_conversion)
4347441b 7115 decode_eol (coding);
24a73b0a
KH
7116 if (BUFFERP (coding->dst_object))
7117 {
39eb03f1 7118 bset_undo_list (current_buffer, undo_list);
24a73b0a
KH
7119 record_insert (coding->dst_pos, coding->produced_char);
7120 }
4ed46869
KH
7121}
7122
aaaf0b1e 7123
e1c23804 7124/* Extract an annotation datum from a composition starting at POS and
ff0dacd7
KH
7125 ending before LIMIT of CODING->src_object (buffer or string), store
7126 the data in BUF, set *STOP to a starting position of the next
7127 composition (if any) or to LIMIT, and return the address of the
7128 next element of BUF.
7129
7130 If such an annotation is not found, set *STOP to a starting
7131 position of a composition after POS (if any) or to LIMIT, and
7132 return BUF. */
7133
55d4c1b2 7134static inline int *
d311d28c 7135handle_composition_annotation (ptrdiff_t pos, ptrdiff_t limit,
cf84bb53 7136 struct coding_system *coding, int *buf,
d311d28c 7137 ptrdiff_t *stop)
aaaf0b1e 7138{
d311d28c 7139 ptrdiff_t start, end;
ff0dacd7 7140 Lisp_Object prop;
aaaf0b1e 7141
ff0dacd7
KH
7142 if (! find_composition (pos, limit, &start, &end, &prop, coding->src_object)
7143 || end > limit)
7144 *stop = limit;
7145 else if (start > pos)
7146 *stop = start;
7147 else
aaaf0b1e 7148 {
ff0dacd7 7149 if (start == pos)
aaaf0b1e 7150 {
ff0dacd7
KH
7151 /* We found a composition. Store the corresponding
7152 annotation data in BUF. */
7153 int *head = buf;
7154 enum composition_method method = COMPOSITION_METHOD (prop);
7155 int nchars = COMPOSITION_LENGTH (prop);
7156
e951386e 7157 ADD_COMPOSITION_DATA (buf, nchars, 0, method);
ff0dacd7 7158 if (method != COMPOSITION_RELATIVE)
aaaf0b1e 7159 {
ff0dacd7 7160 Lisp_Object components;
2c6a9faa 7161 ptrdiff_t i, len, i_byte;
ff0dacd7
KH
7162
7163 components = COMPOSITION_COMPONENTS (prop);
7164 if (VECTORP (components))
aaaf0b1e 7165 {
77b37c05 7166 len = ASIZE (components);
ff0dacd7
KH
7167 for (i = 0; i < len; i++)
7168 *buf++ = XINT (AREF (components, i));
aaaf0b1e 7169 }
ff0dacd7 7170 else if (STRINGP (components))
aaaf0b1e 7171 {
8f924df7 7172 len = SCHARS (components);
ff0dacd7
KH
7173 i = i_byte = 0;
7174 while (i < len)
7175 {
7176 FETCH_STRING_CHAR_ADVANCE (*buf, components, i, i_byte);
7177 buf++;
7178 }
7179 }
7180 else if (INTEGERP (components))
7181 {
7182 len = 1;
7183 *buf++ = XINT (components);
7184 }
7185 else if (CONSP (components))
7186 {
7187 for (len = 0; CONSP (components);
7188 len++, components = XCDR (components))
7189 *buf++ = XINT (XCAR (components));
aaaf0b1e 7190 }
aaaf0b1e 7191 else
1088b922 7192 emacs_abort ();
ff0dacd7 7193 *head -= len;
aaaf0b1e 7194 }
aaaf0b1e 7195 }
ff0dacd7
KH
7196
7197 if (find_composition (end, limit, &start, &end, &prop,
7198 coding->src_object)
7199 && end <= limit)
7200 *stop = start;
7201 else
7202 *stop = limit;
aaaf0b1e 7203 }
ff0dacd7
KH
7204 return buf;
7205}
7206
7207
e1c23804 7208/* Extract an annotation datum from a text property `charset' at POS of
ff0dacd7
KH
7209 CODING->src_object (buffer of string), store the data in BUF, set
7210 *STOP to the position where the value of `charset' property changes
7211 (limiting by LIMIT), and return the address of the next element of
7212 BUF.
7213
7214 If the property value is nil, set *STOP to the position where the
7215 property value is non-nil (limiting by LIMIT), and return BUF. */
7216
55d4c1b2 7217static inline int *
d311d28c 7218handle_charset_annotation (ptrdiff_t pos, ptrdiff_t limit,
cf84bb53 7219 struct coding_system *coding, int *buf,
d311d28c 7220 ptrdiff_t *stop)
ff0dacd7
KH
7221{
7222 Lisp_Object val, next;
7223 int id;
7224
7225 val = Fget_text_property (make_number (pos), Qcharset, coding->src_object);
7226 if (! NILP (val) && CHARSETP (val))
7227 id = XINT (CHARSET_SYMBOL_ID (val));
7228 else
7229 id = -1;
69a80ea3 7230 ADD_CHARSET_DATA (buf, 0, id);
ff0dacd7
KH
7231 next = Fnext_single_property_change (make_number (pos), Qcharset,
7232 coding->src_object,
7233 make_number (limit));
7234 *stop = XINT (next);
7235 return buf;
7236}
7237
7238
df7492f9 7239static void
cf84bb53
JB
7240consume_chars (struct coding_system *coding, Lisp_Object translation_table,
7241 int max_lookup)
df7492f9
KH
7242{
7243 int *buf = coding->charbuf;
ff0dacd7 7244 int *buf_end = coding->charbuf + coding->charbuf_size;
7c78e542 7245 const unsigned char *src = coding->source + coding->consumed;
4776e638 7246 const unsigned char *src_end = coding->source + coding->src_bytes;
d311d28c
PE
7247 ptrdiff_t pos = coding->src_pos + coding->consumed_char;
7248 ptrdiff_t end_pos = coding->src_pos + coding->src_chars;
f10fe38f 7249 bool multibytep = coding->src_multibyte;
df7492f9
KH
7250 Lisp_Object eol_type;
7251 int c;
d311d28c 7252 ptrdiff_t stop, stop_composition, stop_charset;
09ee6fdd 7253 int *lookup_buf = NULL;
433f7f87
KH
7254
7255 if (! NILP (translation_table))
09ee6fdd 7256 lookup_buf = alloca (sizeof (int) * max_lookup);
88993dfd 7257
0a9564cb 7258 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id);
df7492f9
KH
7259 if (VECTORP (eol_type))
7260 eol_type = Qunix;
88993dfd 7261
df7492f9
KH
7262 /* Note: composition handling is not yet implemented. */
7263 coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK;
ec6d2bb8 7264
0b5670c9
KH
7265 if (NILP (coding->src_object))
7266 stop = stop_composition = stop_charset = end_pos;
ff0dacd7 7267 else
0b5670c9
KH
7268 {
7269 if (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK)
7270 stop = stop_composition = pos;
7271 else
7272 stop = stop_composition = end_pos;
7273 if (coding->common_flags & CODING_ANNOTATE_CHARSET_MASK)
7274 stop = stop_charset = pos;
7275 else
7276 stop_charset = end_pos;
7277 }
ec6d2bb8 7278
24a73b0a 7279 /* Compensate for CRLF and conversion. */
ff0dacd7 7280 buf_end -= 1 + MAX_ANNOTATION_LENGTH;
df7492f9 7281 while (buf < buf_end)
aaaf0b1e 7282 {
433f7f87
KH
7283 Lisp_Object trans;
7284
df7492f9 7285 if (pos == stop)
ec6d2bb8 7286 {
df7492f9
KH
7287 if (pos == end_pos)
7288 break;
ff0dacd7
KH
7289 if (pos == stop_composition)
7290 buf = handle_composition_annotation (pos, end_pos, coding,
7291 buf, &stop_composition);
7292 if (pos == stop_charset)
7293 buf = handle_charset_annotation (pos, end_pos, coding,
7294 buf, &stop_charset);
7295 stop = (stop_composition < stop_charset
7296 ? stop_composition : stop_charset);
df7492f9
KH
7297 }
7298
7299 if (! multibytep)
4776e638 7300 {
d311d28c 7301 int bytes;
aaaf0b1e 7302
4d1e6632
KH
7303 if (coding->encoder == encode_coding_raw_text
7304 || coding->encoder == encode_coding_ccl)
ea29edf2
KH
7305 c = *src++, pos++;
7306 else if ((bytes = MULTIBYTE_LENGTH (src, src_end)) > 0)
db274c7a 7307 c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos += bytes;
4776e638 7308 else
f03caae0 7309 c = BYTE8_TO_CHAR (*src), src++, pos++;
4776e638 7310 }
df7492f9 7311 else
db274c7a 7312 c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos++;
df7492f9
KH
7313 if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY))
7314 c = '\n';
7315 if (! EQ (eol_type, Qunix))
aaaf0b1e 7316 {
df7492f9 7317 if (c == '\n')
aaaf0b1e 7318 {
df7492f9
KH
7319 if (EQ (eol_type, Qdos))
7320 *buf++ = '\r';
7321 else
7322 c = '\r';
aaaf0b1e
KH
7323 }
7324 }
433f7f87 7325
e6a54062 7326 trans = Qnil;
09ee6fdd 7327 LOOKUP_TRANSLATION_TABLE (translation_table, c, trans);
e6a54062 7328 if (NILP (trans))
433f7f87
KH
7329 *buf++ = c;
7330 else
7331 {
2c6a9faa 7332 ptrdiff_t from_nchars = 1, to_nchars = 1;
433f7f87
KH
7333 int *lookup_buf_end;
7334 const unsigned char *p = src;
7335 int i;
7336
7337 lookup_buf[0] = c;
7338 for (i = 1; i < max_lookup && p < src_end; i++)
7339 lookup_buf[i] = STRING_CHAR_ADVANCE (p);
7340 lookup_buf_end = lookup_buf + i;
e951386e
KH
7341 trans = get_translation (trans, lookup_buf, lookup_buf_end);
7342 if (INTEGERP (trans))
7343 c = XINT (trans);
7344 else if (CONSP (trans))
7345 {
7346 from_nchars = ASIZE (XCAR (trans));
7347 trans = XCDR (trans);
7348 if (INTEGERP (trans))
7349 c = XINT (trans);
7350 else
7351 {
7352 to_nchars = ASIZE (trans);
2c6a9faa 7353 if (buf_end - buf < to_nchars)
e951386e
KH
7354 break;
7355 c = XINT (AREF (trans, 0));
7356 }
7357 }
7358 else
433f7f87 7359 break;
e951386e 7360 *buf++ = c;
433f7f87
KH
7361 for (i = 1; i < to_nchars; i++)
7362 *buf++ = XINT (AREF (trans, i));
7363 for (i = 1; i < from_nchars; i++, pos++)
7364 src += MULTIBYTE_LENGTH_NO_CHECK (src);
7365 }
aaaf0b1e 7366 }
ec6d2bb8 7367
df7492f9
KH
7368 coding->consumed = src - coding->source;
7369 coding->consumed_char = pos - coding->src_pos;
7370 coding->charbuf_used = buf - coding->charbuf;
7371 coding->chars_at_source = 0;
aaaf0b1e
KH
7372}
7373
4ed46869 7374
df7492f9
KH
7375/* Encode the text at CODING->src_object into CODING->dst_object.
7376 CODING->src_object is a buffer or a string.
7377 CODING->dst_object is a buffer or nil.
7378
7379 If CODING->src_object is a buffer, it must be the current buffer.
7380 In this case, if CODING->src_pos is positive, it is a position of
7381 the source text in the buffer, otherwise. the source text is in the
7382 gap area of the buffer, and coding->src_pos specifies the offset of
7383 the text from GPT (which must be the same as PT). If this is the
7384 same buffer as CODING->dst_object, CODING->src_pos must be
7385 negative and CODING should not have `pre-write-conversion'.
7386
7387 If CODING->src_object is a string, CODING should not have
7388 `pre-write-conversion'.
7389
7390 If CODING->dst_object is a buffer, the encoded data is inserted at
7391 the current point of that buffer.
7392
7393 If CODING->dst_object is nil, the encoded data is placed at the
7394 memory area specified by CODING->destination. */
7395
f10fe38f 7396static void
971de7fb 7397encode_coding (struct coding_system *coding)
4ed46869 7398{
df7492f9 7399 Lisp_Object attrs;
7d64c6ad 7400 Lisp_Object translation_table;
09ee6fdd 7401 int max_lookup;
fb608df3 7402 struct ccl_spec cclspec;
9861e777 7403
df7492f9 7404 attrs = CODING_ID_ATTRS (coding->id);
ea29edf2
KH
7405 if (coding->encoder == encode_coding_raw_text)
7406 translation_table = Qnil, max_lookup = 0;
7407 else
7408 translation_table = get_translation_table (attrs, 1, &max_lookup);
4ed46869 7409
df7492f9 7410 if (BUFFERP (coding->dst_object))
8844fa83 7411 {
df7492f9
KH
7412 set_buffer_internal (XBUFFER (coding->dst_object));
7413 coding->dst_multibyte
4b4deea2 7414 = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
8844fa83 7415 }
4ed46869 7416
b73bfc1c 7417 coding->consumed = coding->consumed_char = 0;
df7492f9 7418 coding->produced = coding->produced_char = 0;
065e3595 7419 record_conversion_result (coding, CODING_RESULT_SUCCESS);
b73bfc1c 7420 coding->errors = 0;
b73bfc1c 7421
df7492f9 7422 ALLOC_CONVERSION_WORK_AREA (coding);
4ed46869 7423
fb608df3
KH
7424 if (coding->encoder == encode_coding_ccl)
7425 {
7426 coding->spec.ccl = &cclspec;
7427 setup_ccl_program (&cclspec.ccl, CODING_CCL_ENCODER (coding));
7428 }
df7492f9
KH
7429 do {
7430 coding_set_source (coding);
09ee6fdd 7431 consume_chars (coding, translation_table, max_lookup);
df7492f9
KH
7432 coding_set_destination (coding);
7433 (*(coding->encoder)) (coding);
7434 } while (coding->consumed_char < coding->src_chars);
7435
284201e4 7436 if (BUFFERP (coding->dst_object) && coding->produced_char > 0)
df7492f9 7437 insert_from_gap (coding->produced_char, coding->produced);
ec6d2bb8
KH
7438}
7439
fb88bf2d 7440
24a73b0a
KH
7441/* Name (or base name) of work buffer for code conversion. */
7442static Lisp_Object Vcode_conversion_workbuf_name;
d46c5b12 7443
24a73b0a
KH
7444/* A working buffer used by the top level conversion. Once it is
7445 created, it is never destroyed. It has the name
7446 Vcode_conversion_workbuf_name. The other working buffers are
7447 destroyed after the use is finished, and their names are modified
7448 versions of Vcode_conversion_workbuf_name. */
7449static Lisp_Object Vcode_conversion_reused_workbuf;
b73bfc1c 7450
f10fe38f
PE
7451/* True iff Vcode_conversion_reused_workbuf is already in use. */
7452static bool reused_workbuf_in_use;
4ed46869 7453
24a73b0a 7454
ad1746f5 7455/* Return a working buffer of code conversion. MULTIBYTE specifies the
24a73b0a 7456 multibyteness of returning buffer. */
b73bfc1c 7457
f6cbaf43 7458static Lisp_Object
f10fe38f 7459make_conversion_work_buffer (bool multibyte)
df7492f9 7460{
24a73b0a
KH
7461 Lisp_Object name, workbuf;
7462 struct buffer *current;
4ed46869 7463
f10fe38f 7464 if (reused_workbuf_in_use)
065e3595
KH
7465 {
7466 name = Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name, Qnil);
7467 workbuf = Fget_buffer_create (name);
7468 }
df7492f9 7469 else
065e3595 7470 {
f10fe38f 7471 reused_workbuf_in_use = 1;
159bd5a2 7472 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf)))
a993c7a1
KH
7473 Vcode_conversion_reused_workbuf
7474 = Fget_buffer_create (Vcode_conversion_workbuf_name);
7475 workbuf = Vcode_conversion_reused_workbuf;
065e3595 7476 }
24a73b0a
KH
7477 current = current_buffer;
7478 set_buffer_internal (XBUFFER (workbuf));
df36ff1f
CY
7479 /* We can't allow modification hooks to run in the work buffer. For
7480 instance, directory_files_internal assumes that file decoding
7481 doesn't compile new regexps. */
7482 Fset (Fmake_local_variable (Qinhibit_modification_hooks), Qt);
3ed051d4 7483 Ferase_buffer ();
39eb03f1
PE
7484 bset_undo_list (current_buffer, Qt);
7485 bset_enable_multibyte_characters (current_buffer, multibyte ? Qt : Qnil);
df7492f9 7486 set_buffer_internal (current);
24a73b0a 7487 return workbuf;
df7492f9 7488}
d46c5b12 7489
24a73b0a 7490
4776e638 7491static Lisp_Object
971de7fb 7492code_conversion_restore (Lisp_Object arg)
4776e638 7493{
24a73b0a 7494 Lisp_Object current, workbuf;
948bdcf3 7495 struct gcpro gcpro1;
24a73b0a 7496
948bdcf3 7497 GCPRO1 (arg);
24a73b0a
KH
7498 current = XCAR (arg);
7499 workbuf = XCDR (arg);
7500 if (! NILP (workbuf))
7501 {
7502 if (EQ (workbuf, Vcode_conversion_reused_workbuf))
7503 reused_workbuf_in_use = 0;
d17337e5 7504 else
24a73b0a
KH
7505 Fkill_buffer (workbuf);
7506 }
7507 set_buffer_internal (XBUFFER (current));
948bdcf3 7508 UNGCPRO;
4776e638
KH
7509 return Qnil;
7510}
b73bfc1c 7511
24a73b0a 7512Lisp_Object
f10fe38f 7513code_conversion_save (bool with_work_buf, bool multibyte)
df7492f9 7514{
24a73b0a 7515 Lisp_Object workbuf = Qnil;
b73bfc1c 7516
4776e638 7517 if (with_work_buf)
24a73b0a
KH
7518 workbuf = make_conversion_work_buffer (multibyte);
7519 record_unwind_protect (code_conversion_restore,
7520 Fcons (Fcurrent_buffer (), workbuf));
4776e638 7521 return workbuf;
df7492f9 7522}
d46c5b12 7523
f10fe38f 7524void
cf84bb53 7525decode_coding_gap (struct coding_system *coding,
d311d28c 7526 ptrdiff_t chars, ptrdiff_t bytes)
df7492f9 7527{
d311d28c 7528 ptrdiff_t count = SPECPDL_INDEX ();
5e5c78be 7529 Lisp_Object attrs;
fb88bf2d 7530
24a73b0a 7531 code_conversion_save (0, 0);
ec6d2bb8 7532
24a73b0a 7533 coding->src_object = Fcurrent_buffer ();
df7492f9
KH
7534 coding->src_chars = chars;
7535 coding->src_bytes = bytes;
7536 coding->src_pos = -chars;
7537 coding->src_pos_byte = -bytes;
7538 coding->src_multibyte = chars < bytes;
24a73b0a 7539 coding->dst_object = coding->src_object;
df7492f9
KH
7540 coding->dst_pos = PT;
7541 coding->dst_pos_byte = PT_BYTE;
4b4deea2 7542 coding->dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4ed46869 7543
df7492f9
KH
7544 if (CODING_REQUIRE_DETECTION (coding))
7545 detect_coding (coding);
8f924df7 7546
9286b333 7547 coding->mode |= CODING_MODE_LAST_BLOCK;
287c57d7 7548 current_buffer->text->inhibit_shrinking = 1;
df7492f9 7549 decode_coding (coding);
287c57d7 7550 current_buffer->text->inhibit_shrinking = 0;
d46c5b12 7551
5e5c78be
KH
7552 attrs = CODING_ID_ATTRS (coding->id);
7553 if (! NILP (CODING_ATTR_POST_READ (attrs)))
b73bfc1c 7554 {
d311d28c 7555 ptrdiff_t prev_Z = Z, prev_Z_BYTE = Z_BYTE;
5e5c78be
KH
7556 Lisp_Object val;
7557
7558 TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte);
5e5c78be
KH
7559 val = call1 (CODING_ATTR_POST_READ (attrs),
7560 make_number (coding->produced_char));
5e5c78be
KH
7561 CHECK_NATNUM (val);
7562 coding->produced_char += Z - prev_Z;
7563 coding->produced += Z_BYTE - prev_Z_BYTE;
b73bfc1c 7564 }
4ed46869 7565
df7492f9 7566 unbind_to (count, Qnil);
b73bfc1c 7567}
52d41803 7568
d46c5b12 7569
df7492f9
KH
7570/* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in
7571 SRC_OBJECT into DST_OBJECT by coding context CODING.
b73bfc1c 7572
df7492f9 7573 SRC_OBJECT is a buffer, a string, or Qnil.
b73bfc1c 7574
df7492f9
KH
7575 If it is a buffer, the text is at point of the buffer. FROM and TO
7576 are positions in the buffer.
b73bfc1c 7577
df7492f9
KH
7578 If it is a string, the text is at the beginning of the string.
7579 FROM and TO are indices to the string.
4ed46869 7580
df7492f9
KH
7581 If it is nil, the text is at coding->source. FROM and TO are
7582 indices to coding->source.
bb10be8b 7583
df7492f9 7584 DST_OBJECT is a buffer, Qt, or Qnil.
4ed46869 7585
df7492f9
KH
7586 If it is a buffer, the decoded text is inserted at point of the
7587 buffer. If the buffer is the same as SRC_OBJECT, the source text
7588 is deleted.
4ed46869 7589
df7492f9
KH
7590 If it is Qt, a string is made from the decoded text, and
7591 set in CODING->dst_object.
d46c5b12 7592
df7492f9 7593 If it is Qnil, the decoded text is stored at CODING->destination.
2cb26057 7594 The caller must allocate CODING->dst_bytes bytes at
df7492f9
KH
7595 CODING->destination by xmalloc. If the decoded text is longer than
7596 CODING->dst_bytes, CODING->destination is relocated by xrealloc.
7597 */
d46c5b12 7598
df7492f9 7599void
cf84bb53
JB
7600decode_coding_object (struct coding_system *coding,
7601 Lisp_Object src_object,
d311d28c
PE
7602 ptrdiff_t from, ptrdiff_t from_byte,
7603 ptrdiff_t to, ptrdiff_t to_byte,
cf84bb53 7604 Lisp_Object dst_object)
d46c5b12 7605{
d311d28c 7606 ptrdiff_t count = SPECPDL_INDEX ();
c4a63b12 7607 unsigned char *destination IF_LINT (= NULL);
d311d28c
PE
7608 ptrdiff_t dst_bytes IF_LINT (= 0);
7609 ptrdiff_t chars = to - from;
7610 ptrdiff_t bytes = to_byte - from_byte;
df7492f9 7611 Lisp_Object attrs;
f10fe38f
PE
7612 ptrdiff_t saved_pt = -1, saved_pt_byte IF_LINT (= 0);
7613 bool need_marker_adjustment = 0;
b3bfad50 7614 Lisp_Object old_deactivate_mark;
d46c5b12 7615
b3bfad50 7616 old_deactivate_mark = Vdeactivate_mark;
93dec019 7617
df7492f9 7618 if (NILP (dst_object))
d46c5b12 7619 {
df7492f9
KH
7620 destination = coding->destination;
7621 dst_bytes = coding->dst_bytes;
d46c5b12 7622 }
93dec019 7623
df7492f9
KH
7624 coding->src_object = src_object;
7625 coding->src_chars = chars;
7626 coding->src_bytes = bytes;
7627 coding->src_multibyte = chars < bytes;
70ad9fc4 7628
df7492f9 7629 if (STRINGP (src_object))
d46c5b12 7630 {
df7492f9
KH
7631 coding->src_pos = from;
7632 coding->src_pos_byte = from_byte;
d46c5b12 7633 }
df7492f9 7634 else if (BUFFERP (src_object))
88993dfd 7635 {
df7492f9
KH
7636 set_buffer_internal (XBUFFER (src_object));
7637 if (from != GPT)
7638 move_gap_both (from, from_byte);
7639 if (EQ (src_object, dst_object))
fb88bf2d 7640 {
64cedb0c
KH
7641 struct Lisp_Marker *tail;
7642
7643 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
7644 {
7645 tail->need_adjustment
7646 = tail->charpos == (tail->insertion_type ? from : to);
7647 need_marker_adjustment |= tail->need_adjustment;
7648 }
4776e638 7649 saved_pt = PT, saved_pt_byte = PT_BYTE;
df7492f9 7650 TEMP_SET_PT_BOTH (from, from_byte);
f4a3cc44 7651 current_buffer->text->inhibit_shrinking = 1;
df7492f9
KH
7652 del_range_both (from, from_byte, to, to_byte, 1);
7653 coding->src_pos = -chars;
7654 coding->src_pos_byte = -bytes;
fb88bf2d 7655 }
df7492f9 7656 else
fb88bf2d 7657 {
df7492f9
KH
7658 coding->src_pos = from;
7659 coding->src_pos_byte = from_byte;
fb88bf2d 7660 }
88993dfd
KH
7661 }
7662
df7492f9
KH
7663 if (CODING_REQUIRE_DETECTION (coding))
7664 detect_coding (coding);
7665 attrs = CODING_ID_ATTRS (coding->id);
d46c5b12 7666
2cb26057
KH
7667 if (EQ (dst_object, Qt)
7668 || (! NILP (CODING_ATTR_POST_READ (attrs))
7669 && NILP (dst_object)))
b73bfc1c 7670 {
a1567c45
SM
7671 coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding);
7672 coding->dst_object = code_conversion_save (1, coding->dst_multibyte);
df7492f9
KH
7673 coding->dst_pos = BEG;
7674 coding->dst_pos_byte = BEG_BYTE;
b73bfc1c 7675 }
df7492f9 7676 else if (BUFFERP (dst_object))
d46c5b12 7677 {
24a73b0a 7678 code_conversion_save (0, 0);
df7492f9
KH
7679 coding->dst_object = dst_object;
7680 coding->dst_pos = BUF_PT (XBUFFER (dst_object));
7681 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object));
7682 coding->dst_multibyte
4b4deea2 7683 = ! NILP (BVAR (XBUFFER (dst_object), enable_multibyte_characters));
d46c5b12
KH
7684 }
7685 else
7686 {
24a73b0a 7687 code_conversion_save (0, 0);
df7492f9 7688 coding->dst_object = Qnil;
0154725e
SM
7689 /* Most callers presume this will return a multibyte result, and they
7690 won't use `binary' or `raw-text' anyway, so let's not worry about
7691 CODING_FOR_UNIBYTE. */
bb555731 7692 coding->dst_multibyte = 1;
d46c5b12
KH
7693 }
7694
df7492f9 7695 decode_coding (coding);
fa46990e 7696
df7492f9
KH
7697 if (BUFFERP (coding->dst_object))
7698 set_buffer_internal (XBUFFER (coding->dst_object));
d46c5b12 7699
df7492f9 7700 if (! NILP (CODING_ATTR_POST_READ (attrs)))
d46c5b12 7701 {
b3bfad50 7702 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
d311d28c 7703 ptrdiff_t prev_Z = Z, prev_Z_BYTE = Z_BYTE;
2b4f9037 7704 Lisp_Object val;
d46c5b12 7705
c0cc7f7f 7706 TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte);
b3bfad50
KH
7707 GCPRO5 (coding->src_object, coding->dst_object, src_object, dst_object,
7708 old_deactivate_mark);
d4850d67
KH
7709 val = safe_call1 (CODING_ATTR_POST_READ (attrs),
7710 make_number (coding->produced_char));
df7492f9
KH
7711 UNGCPRO;
7712 CHECK_NATNUM (val);
7713 coding->produced_char += Z - prev_Z;
7714 coding->produced += Z_BYTE - prev_Z_BYTE;
d46c5b12 7715 }
de79a6a5 7716
df7492f9 7717 if (EQ (dst_object, Qt))
ec6d2bb8 7718 {
df7492f9
KH
7719 coding->dst_object = Fbuffer_string ();
7720 }
7721 else if (NILP (dst_object) && BUFFERP (coding->dst_object))
7722 {
7723 set_buffer_internal (XBUFFER (coding->dst_object));
7724 if (dst_bytes < coding->produced)
7725 {
b3bfad50 7726 destination = xrealloc (destination, coding->produced);
df7492f9
KH
7727 if (! destination)
7728 {
065e3595 7729 record_conversion_result (coding,
ebaf11b6 7730 CODING_RESULT_INSUFFICIENT_MEM);
df7492f9
KH
7731 unbind_to (count, Qnil);
7732 return;
7733 }
7734 if (BEGV < GPT && GPT < BEGV + coding->produced_char)
7735 move_gap_both (BEGV, BEGV_BYTE);
72af86bd 7736 memcpy (destination, BEGV_ADDR, coding->produced);
df7492f9 7737 coding->destination = destination;
d46c5b12 7738 }
ec6d2bb8 7739 }
b73bfc1c 7740
4776e638
KH
7741 if (saved_pt >= 0)
7742 {
7743 /* This is the case of:
7744 (BUFFERP (src_object) && EQ (src_object, dst_object))
7745 As we have moved PT while replacing the original buffer
7746 contents, we must recover it now. */
7747 set_buffer_internal (XBUFFER (src_object));
f4a3cc44 7748 current_buffer->text->inhibit_shrinking = 0;
4776e638
KH
7749 if (saved_pt < from)
7750 TEMP_SET_PT_BOTH (saved_pt, saved_pt_byte);
7751 else if (saved_pt < from + chars)
7752 TEMP_SET_PT_BOTH (from, from_byte);
4b4deea2 7753 else if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
4776e638
KH
7754 TEMP_SET_PT_BOTH (saved_pt + (coding->produced_char - chars),
7755 saved_pt_byte + (coding->produced - bytes));
7756 else
7757 TEMP_SET_PT_BOTH (saved_pt + (coding->produced - bytes),
7758 saved_pt_byte + (coding->produced - bytes));
64cedb0c
KH
7759
7760 if (need_marker_adjustment)
7761 {
7762 struct Lisp_Marker *tail;
7763
7764 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
7765 if (tail->need_adjustment)
7766 {
7767 tail->need_adjustment = 0;
7768 if (tail->insertion_type)
7769 {
7770 tail->bytepos = from_byte;
7771 tail->charpos = from;
7772 }
7773 else
7774 {
7775 tail->bytepos = from_byte + coding->produced;
7776 tail->charpos
4b4deea2 7777 = (NILP (BVAR (current_buffer, enable_multibyte_characters))
64cedb0c
KH
7778 ? tail->bytepos : from + coding->produced_char);
7779 }
7780 }
7781 }
d46c5b12 7782 }
4776e638 7783
b3bfad50 7784 Vdeactivate_mark = old_deactivate_mark;
065e3595 7785 unbind_to (count, coding->dst_object);
d46c5b12
KH
7786}
7787
d46c5b12 7788
df7492f9 7789void
cf84bb53
JB
7790encode_coding_object (struct coding_system *coding,
7791 Lisp_Object src_object,
d311d28c
PE
7792 ptrdiff_t from, ptrdiff_t from_byte,
7793 ptrdiff_t to, ptrdiff_t to_byte,
cf84bb53 7794 Lisp_Object dst_object)
d46c5b12 7795{
d311d28c
PE
7796 ptrdiff_t count = SPECPDL_INDEX ();
7797 ptrdiff_t chars = to - from;
7798 ptrdiff_t bytes = to_byte - from_byte;
df7492f9 7799 Lisp_Object attrs;
f10fe38f
PE
7800 ptrdiff_t saved_pt = -1, saved_pt_byte IF_LINT (= 0);
7801 bool need_marker_adjustment = 0;
7802 bool kill_src_buffer = 0;
b3bfad50 7803 Lisp_Object old_deactivate_mark;
df7492f9 7804
b3bfad50 7805 old_deactivate_mark = Vdeactivate_mark;
df7492f9
KH
7806
7807 coding->src_object = src_object;
7808 coding->src_chars = chars;
7809 coding->src_bytes = bytes;
7810 coding->src_multibyte = chars < bytes;
7811
7812 attrs = CODING_ID_ATTRS (coding->id);
7813
64cedb0c
KH
7814 if (EQ (src_object, dst_object))
7815 {
7816 struct Lisp_Marker *tail;
7817
7818 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
7819 {
7820 tail->need_adjustment
7821 = tail->charpos == (tail->insertion_type ? from : to);
7822 need_marker_adjustment |= tail->need_adjustment;
7823 }
7824 }
7825
df7492f9 7826 if (! NILP (CODING_ATTR_PRE_WRITE (attrs)))
6bac5b12 7827 {
24a73b0a 7828 coding->src_object = code_conversion_save (1, coding->src_multibyte);
df7492f9
KH
7829 set_buffer_internal (XBUFFER (coding->src_object));
7830 if (STRINGP (src_object))
7831 insert_from_string (src_object, from, from_byte, chars, bytes, 0);
7832 else if (BUFFERP (src_object))
7833 insert_from_buffer (XBUFFER (src_object), from, chars, 0);
7834 else
b68864e5 7835 insert_1_both ((char *) coding->source + from, chars, bytes, 0, 0, 0);
d46c5b12 7836
df7492f9
KH
7837 if (EQ (src_object, dst_object))
7838 {
7839 set_buffer_internal (XBUFFER (src_object));
4776e638 7840 saved_pt = PT, saved_pt_byte = PT_BYTE;
df7492f9
KH
7841 del_range_both (from, from_byte, to, to_byte, 1);
7842 set_buffer_internal (XBUFFER (coding->src_object));
7843 }
7844
d4850d67 7845 {
b3bfad50 7846 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
d4850d67 7847
b3bfad50
KH
7848 GCPRO5 (coding->src_object, coding->dst_object, src_object, dst_object,
7849 old_deactivate_mark);
6cd7a139
DA
7850 safe_call2 (CODING_ATTR_PRE_WRITE (attrs),
7851 make_number (BEG), make_number (Z));
b3bfad50 7852 UNGCPRO;
d4850d67 7853 }
c02d943b
KH
7854 if (XBUFFER (coding->src_object) != current_buffer)
7855 kill_src_buffer = 1;
ac87bbef 7856 coding->src_object = Fcurrent_buffer ();
df7492f9
KH
7857 if (BEG != GPT)
7858 move_gap_both (BEG, BEG_BYTE);
7859 coding->src_chars = Z - BEG;
7860 coding->src_bytes = Z_BYTE - BEG_BYTE;
7861 coding->src_pos = BEG;
7862 coding->src_pos_byte = BEG_BYTE;
7863 coding->src_multibyte = Z < Z_BYTE;
7864 }
7865 else if (STRINGP (src_object))
d46c5b12 7866 {
24a73b0a 7867 code_conversion_save (0, 0);
df7492f9
KH
7868 coding->src_pos = from;
7869 coding->src_pos_byte = from_byte;
b73bfc1c 7870 }
df7492f9 7871 else if (BUFFERP (src_object))
b73bfc1c 7872 {
24a73b0a 7873 code_conversion_save (0, 0);
df7492f9 7874 set_buffer_internal (XBUFFER (src_object));
df7492f9 7875 if (EQ (src_object, dst_object))
d46c5b12 7876 {
4776e638 7877 saved_pt = PT, saved_pt_byte = PT_BYTE;
ff0dacd7
KH
7878 coding->src_object = del_range_1 (from, to, 1, 1);
7879 coding->src_pos = 0;
7880 coding->src_pos_byte = 0;
d46c5b12 7881 }
df7492f9 7882 else
d46c5b12 7883 {
ff0dacd7
KH
7884 if (from < GPT && to >= GPT)
7885 move_gap_both (from, from_byte);
df7492f9
KH
7886 coding->src_pos = from;
7887 coding->src_pos_byte = from_byte;
d46c5b12 7888 }
d46c5b12 7889 }
4776e638 7890 else
24a73b0a 7891 code_conversion_save (0, 0);
d46c5b12 7892
df7492f9 7893 if (BUFFERP (dst_object))
88993dfd 7894 {
df7492f9 7895 coding->dst_object = dst_object;
28f67a95
KH
7896 if (EQ (src_object, dst_object))
7897 {
7898 coding->dst_pos = from;
7899 coding->dst_pos_byte = from_byte;
7900 }
7901 else
7902 {
319a3947
KH
7903 struct buffer *current = current_buffer;
7904
7905 set_buffer_temp (XBUFFER (dst_object));
7906 coding->dst_pos = PT;
7907 coding->dst_pos_byte = PT_BYTE;
7908 move_gap_both (coding->dst_pos, coding->dst_pos_byte);
7909 set_buffer_temp (current);
28f67a95 7910 }
df7492f9 7911 coding->dst_multibyte
4b4deea2 7912 = ! NILP (BVAR (XBUFFER (dst_object), enable_multibyte_characters));
88993dfd 7913 }
df7492f9 7914 else if (EQ (dst_object, Qt))
d46c5b12 7915 {
5d009b3a 7916 ptrdiff_t dst_bytes = max (1, coding->src_chars);
df7492f9 7917 coding->dst_object = Qnil;
23f86fce 7918 coding->destination = xmalloc (dst_bytes);
5d009b3a 7919 coding->dst_bytes = dst_bytes;
df7492f9 7920 coding->dst_multibyte = 0;
d46c5b12
KH
7921 }
7922 else
7923 {
df7492f9
KH
7924 coding->dst_object = Qnil;
7925 coding->dst_multibyte = 0;
d46c5b12
KH
7926 }
7927
df7492f9 7928 encode_coding (coding);
d46c5b12 7929
df7492f9 7930 if (EQ (dst_object, Qt))
d46c5b12 7931 {
df7492f9
KH
7932 if (BUFFERP (coding->dst_object))
7933 coding->dst_object = Fbuffer_string ();
7934 else
d46c5b12 7935 {
df7492f9
KH
7936 coding->dst_object
7937 = make_unibyte_string ((char *) coding->destination,
7938 coding->produced);
7939 xfree (coding->destination);
d46c5b12 7940 }
4ed46869 7941 }
d46c5b12 7942
4776e638
KH
7943 if (saved_pt >= 0)
7944 {
7945 /* This is the case of:
7946 (BUFFERP (src_object) && EQ (src_object, dst_object))
7947 As we have moved PT while replacing the original buffer
7948 contents, we must recover it now. */
7949 set_buffer_internal (XBUFFER (src_object));
7950 if (saved_pt < from)
7951 TEMP_SET_PT_BOTH (saved_pt, saved_pt_byte);
7952 else if (saved_pt < from + chars)
7953 TEMP_SET_PT_BOTH (from, from_byte);
4b4deea2 7954 else if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
4776e638
KH
7955 TEMP_SET_PT_BOTH (saved_pt + (coding->produced_char - chars),
7956 saved_pt_byte + (coding->produced - bytes));
d46c5b12 7957 else
4776e638
KH
7958 TEMP_SET_PT_BOTH (saved_pt + (coding->produced - bytes),
7959 saved_pt_byte + (coding->produced - bytes));
64cedb0c
KH
7960
7961 if (need_marker_adjustment)
7962 {
7963 struct Lisp_Marker *tail;
7964
7965 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
7966 if (tail->need_adjustment)
7967 {
7968 tail->need_adjustment = 0;
7969 if (tail->insertion_type)
7970 {
7971 tail->bytepos = from_byte;
7972 tail->charpos = from;
7973 }
7974 else
7975 {
7976 tail->bytepos = from_byte + coding->produced;
7977 tail->charpos
4b4deea2 7978 = (NILP (BVAR (current_buffer, enable_multibyte_characters))
64cedb0c
KH
7979 ? tail->bytepos : from + coding->produced_char);
7980 }
7981 }
7982 }
4776e638
KH
7983 }
7984
c02d943b
KH
7985 if (kill_src_buffer)
7986 Fkill_buffer (coding->src_object);
b3bfad50
KH
7987
7988 Vdeactivate_mark = old_deactivate_mark;
df7492f9 7989 unbind_to (count, Qnil);
b73bfc1c
KH
7990}
7991
df7492f9 7992
b73bfc1c 7993Lisp_Object
971de7fb 7994preferred_coding_system (void)
b73bfc1c 7995{
df7492f9 7996 int id = coding_categories[coding_priorities[0]].id;
2391eaa4 7997
df7492f9 7998 return CODING_ID_NAME (id);
4ed46869
KH
7999}
8000
8001\f
8002#ifdef emacs
1397dc18 8003/*** 8. Emacs Lisp library functions ***/
4ed46869 8004
a7ca3326 8005DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0,
48b0f3ae 8006 doc: /* Return t if OBJECT is nil or a coding-system.
df7492f9 8007See the documentation of `define-coding-system' for information
48b0f3ae 8008about coding-system objects. */)
5842a27b 8009 (Lisp_Object object)
4ed46869 8010{
d4a1d553
JB
8011 if (NILP (object)
8012 || CODING_SYSTEM_ID (object) >= 0)
44e8490d 8013 return Qt;
d4a1d553
JB
8014 if (! SYMBOLP (object)
8015 || NILP (Fget (object, Qcoding_system_define_form)))
44e8490d
KH
8016 return Qnil;
8017 return Qt;
4ed46869
KH
8018}
8019
a7ca3326 8020DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system,
9d991de8 8021 Sread_non_nil_coding_system, 1, 1, 0,
48b0f3ae 8022 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
5842a27b 8023 (Lisp_Object prompt)
4ed46869 8024{
e0e989f6 8025 Lisp_Object val;
9d991de8
RS
8026 do
8027 {
4608c386
KH
8028 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil,
8029 Qt, Qnil, Qcoding_system_history, Qnil, Qnil);
9d991de8 8030 }
8f924df7 8031 while (SCHARS (val) == 0);
e0e989f6 8032 return (Fintern (val, Qnil));
4ed46869
KH
8033}
8034
a7ca3326 8035DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0,
48b0f3ae 8036 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT.
c7183fb8
GM
8037If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8038Ignores case when completing coding systems (all Emacs coding systems
8039are lower-case). */)
5842a27b 8040 (Lisp_Object prompt, Lisp_Object default_coding_system)
4ed46869 8041{
f44d27ce 8042 Lisp_Object val;
d311d28c 8043 ptrdiff_t count = SPECPDL_INDEX ();
c7183fb8 8044
9b787f3e 8045 if (SYMBOLP (default_coding_system))
57d25e6f 8046 default_coding_system = SYMBOL_NAME (default_coding_system);
c7183fb8 8047 specbind (Qcompletion_ignore_case, Qt);
4608c386 8048 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil,
9b787f3e
RS
8049 Qt, Qnil, Qcoding_system_history,
8050 default_coding_system, Qnil);
c7183fb8 8051 unbind_to (count, Qnil);
8f924df7 8052 return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil));
4ed46869
KH
8053}
8054
a7ca3326 8055DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system,
4ed46869 8056 1, 1, 0,
48b0f3ae 8057 doc: /* Check validity of CODING-SYSTEM.
9ffd559c
KH
8058If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
8059It is valid if it is nil or a symbol defined as a coding system by the
8060function `define-coding-system'. */)
5842a27b 8061 (Lisp_Object coding_system)
4ed46869 8062{
44e8490d
KH
8063 Lisp_Object define_form;
8064
8065 define_form = Fget (coding_system, Qcoding_system_define_form);
8066 if (! NILP (define_form))
8067 {
8068 Fput (coding_system, Qcoding_system_define_form, Qnil);
8069 safe_eval (define_form);
8070 }
4ed46869
KH
8071 if (!NILP (Fcoding_system_p (coding_system)))
8072 return coding_system;
fcad4ec4 8073 xsignal1 (Qcoding_system_error, coding_system);
4ed46869 8074}
df7492f9 8075
3a73fa5d 8076\f
89528eb3 8077/* Detect how the bytes at SRC of length SRC_BYTES are encoded. If
f10fe38f 8078 HIGHEST, return the coding system of the highest
ad1746f5 8079 priority among the detected coding systems. Otherwise return a
89528eb3 8080 list of detected coding systems sorted by their priorities. If
f10fe38f 8081 MULTIBYTEP, it is assumed that the bytes are in correct
89528eb3
KH
8082 multibyte form but contains only ASCII and eight-bit chars.
8083 Otherwise, the bytes are raw bytes.
8084
8085 CODING-SYSTEM controls the detection as below:
8086
8087 If it is nil, detect both text-format and eol-format. If the
8088 text-format part of CODING-SYSTEM is already specified
8089 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format
8090 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'),
8091 detect only text-format. */
8092
d46c5b12 8093Lisp_Object
cf84bb53 8094detect_coding_system (const unsigned char *src,
d311d28c 8095 ptrdiff_t src_chars, ptrdiff_t src_bytes,
f10fe38f 8096 bool highest, bool multibytep,
cf84bb53 8097 Lisp_Object coding_system)
4ed46869 8098{
8f924df7 8099 const unsigned char *src_end = src + src_bytes;
df7492f9 8100 Lisp_Object attrs, eol_type;
4533845d 8101 Lisp_Object val = Qnil;
df7492f9 8102 struct coding_system coding;
d3411f89 8103 ptrdiff_t id;
ff0dacd7 8104 struct coding_detection_info detect_info;
24a73b0a 8105 enum coding_category base_category;
f10fe38f 8106 bool null_byte_found = 0, eight_bit_found = 0;
b73bfc1c 8107
df7492f9
KH
8108 if (NILP (coding_system))
8109 coding_system = Qundecided;
8110 setup_coding_system (coding_system, &coding);
8111 attrs = CODING_ID_ATTRS (coding.id);
8112 eol_type = CODING_ID_EOL_TYPE (coding.id);
89528eb3 8113 coding_system = CODING_ATTR_BASE_NAME (attrs);
4ed46869 8114
df7492f9 8115 coding.source = src;
24a73b0a 8116 coding.src_chars = src_chars;
df7492f9
KH
8117 coding.src_bytes = src_bytes;
8118 coding.src_multibyte = multibytep;
8119 coding.consumed = 0;
89528eb3 8120 coding.mode |= CODING_MODE_LAST_BLOCK;
c0e16b14 8121 coding.head_ascii = 0;
d46c5b12 8122
ff0dacd7 8123 detect_info.checked = detect_info.found = detect_info.rejected = 0;
d46c5b12 8124
89528eb3 8125 /* At first, detect text-format if necessary. */
24a73b0a
KH
8126 base_category = XINT (CODING_ATTR_CATEGORY (attrs));
8127 if (base_category == coding_category_undecided)
4ed46869 8128 {
c4a63b12
PE
8129 enum coding_category category IF_LINT (= 0);
8130 struct coding_system *this IF_LINT (= NULL);
ff0dacd7 8131 int c, i;
88993dfd 8132
24a73b0a 8133 /* Skip all ASCII bytes except for a few ISO2022 controls. */
2f3cbb32 8134 for (; src < src_end; src++)
4ed46869 8135 {
df7492f9 8136 c = *src;
6cb21a4f 8137 if (c & 0x80)
6cb21a4f 8138 {
2f3cbb32 8139 eight_bit_found = 1;
2f3cbb32
KH
8140 if (null_byte_found)
8141 break;
8142 }
c0e16b14 8143 else if (c < 0x20)
2f3cbb32
KH
8144 {
8145 if ((c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)
8146 && ! inhibit_iso_escape_detection
8147 && ! detect_info.checked)
6cb21a4f 8148 {
2f3cbb32
KH
8149 if (detect_coding_iso_2022 (&coding, &detect_info))
8150 {
8151 /* We have scanned the whole data. */
8152 if (! (detect_info.rejected & CATEGORY_MASK_ISO_7_ELSE))
c0e16b14
KH
8153 {
8154 /* We didn't find an 8-bit code. We may
8155 have found a null-byte, but it's very
8156 rare that a binary file confirm to
8157 ISO-2022. */
8158 src = src_end;
8159 coding.head_ascii = src - coding.source;
8160 }
8161 detect_info.rejected |= ~CATEGORY_MASK_ISO_ESCAPE;
2f3cbb32
KH
8162 break;
8163 }
8164 }
97b1b294 8165 else if (! c && !inhibit_null_byte_detection)
2f3cbb32
KH
8166 {
8167 null_byte_found = 1;
8168 if (eight_bit_found)
8169 break;
6cb21a4f 8170 }
c006c0c8
KH
8171 if (! eight_bit_found)
8172 coding.head_ascii++;
6cb21a4f 8173 }
c006c0c8 8174 else if (! eight_bit_found)
c0e16b14 8175 coding.head_ascii++;
4ed46869 8176 }
88993dfd 8177
2f3cbb32
KH
8178 if (null_byte_found || eight_bit_found
8179 || coding.head_ascii < coding.src_bytes
6cb21a4f
KH
8180 || detect_info.found)
8181 {
2f3cbb32 8182 if (coding.head_ascii == coding.src_bytes)
6cb21a4f
KH
8183 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
8184 for (i = 0; i < coding_category_raw_text; i++)
ff0dacd7 8185 {
6cb21a4f 8186 category = coding_priorities[i];
c7266f4a 8187 this = coding_categories + category;
6cb21a4f 8188 if (detect_info.found & (1 << category))
ff0dacd7
KH
8189 break;
8190 }
6cb21a4f 8191 else
2f3cbb32
KH
8192 {
8193 if (null_byte_found)
8194 {
8195 detect_info.checked |= ~CATEGORY_MASK_UTF_16;
8196 detect_info.rejected |= ~CATEGORY_MASK_UTF_16;
8197 }
8198 for (i = 0; i < coding_category_raw_text; i++)
8199 {
8200 category = coding_priorities[i];
8201 this = coding_categories + category;
6cb21a4f 8202
2f3cbb32
KH
8203 if (this->id < 0)
8204 {
8205 /* No coding system of this category is defined. */
8206 detect_info.rejected |= (1 << category);
8207 }
8208 else if (category >= coding_category_raw_text)
8209 continue;
8210 else if (detect_info.checked & (1 << category))
8211 {
8212 if (highest
8213 && (detect_info.found & (1 << category)))
6cb21a4f 8214 break;
2f3cbb32
KH
8215 }
8216 else if ((*(this->detector)) (&coding, &detect_info)
8217 && highest
8218 && (detect_info.found & (1 << category)))
8219 {
8220 if (category == coding_category_utf_16_auto)
8221 {
8222 if (detect_info.found & CATEGORY_MASK_UTF_16_LE)
8223 category = coding_category_utf_16_le;
8224 else
8225 category = coding_category_utf_16_be;
8226 }
8227 break;
8228 }
8229 }
8230 }
6cb21a4f 8231 }
ec6d2bb8 8232
4cddb209
KH
8233 if ((detect_info.rejected & CATEGORY_MASK_ANY) == CATEGORY_MASK_ANY
8234 || null_byte_found)
ec6d2bb8 8235 {
ff0dacd7 8236 detect_info.found = CATEGORY_MASK_RAW_TEXT;
4cddb209 8237 id = CODING_SYSTEM_ID (Qno_conversion);
89528eb3
KH
8238 val = Fcons (make_number (id), Qnil);
8239 }
ff0dacd7 8240 else if (! detect_info.rejected && ! detect_info.found)
89528eb3 8241 {
ff0dacd7 8242 detect_info.found = CATEGORY_MASK_ANY;
89528eb3
KH
8243 id = coding_categories[coding_category_undecided].id;
8244 val = Fcons (make_number (id), Qnil);
8245 }
8246 else if (highest)
8247 {
ff0dacd7 8248 if (detect_info.found)
ec6d2bb8 8249 {
ff0dacd7
KH
8250 detect_info.found = 1 << category;
8251 val = Fcons (make_number (this->id), Qnil);
8252 }
8253 else
8254 for (i = 0; i < coding_category_raw_text; i++)
8255 if (! (detect_info.rejected & (1 << coding_priorities[i])))
8256 {
8257 detect_info.found = 1 << coding_priorities[i];
8258 id = coding_categories[coding_priorities[i]].id;
8259 val = Fcons (make_number (id), Qnil);
8260 break;
8261 }
8262 }
89528eb3
KH
8263 else
8264 {
ff0dacd7
KH
8265 int mask = detect_info.rejected | detect_info.found;
8266 int found = 0;
ec6d2bb8 8267
89528eb3 8268 for (i = coding_category_raw_text - 1; i >= 0; i--)
ff0dacd7
KH
8269 {
8270 category = coding_priorities[i];
8271 if (! (mask & (1 << category)))
ec6d2bb8 8272 {
ff0dacd7
KH
8273 found |= 1 << category;
8274 id = coding_categories[category].id;
c7266f4a
KH
8275 if (id >= 0)
8276 val = Fcons (make_number (id), val);
ff0dacd7
KH
8277 }
8278 }
8279 for (i = coding_category_raw_text - 1; i >= 0; i--)
8280 {
8281 category = coding_priorities[i];
8282 if (detect_info.found & (1 << category))
8283 {
8284 id = coding_categories[category].id;
8285 val = Fcons (make_number (id), val);
ec6d2bb8 8286 }
ec6d2bb8 8287 }
ff0dacd7 8288 detect_info.found |= found;
ec6d2bb8 8289 }
ec6d2bb8 8290 }
a470d443
KH
8291 else if (base_category == coding_category_utf_8_auto)
8292 {
8293 if (detect_coding_utf_8 (&coding, &detect_info))
8294 {
8295 struct coding_system *this;
8296
8297 if (detect_info.found & CATEGORY_MASK_UTF_8_SIG)
8298 this = coding_categories + coding_category_utf_8_sig;
8299 else
8300 this = coding_categories + coding_category_utf_8_nosig;
8301 val = Fcons (make_number (this->id), Qnil);
8302 }
8303 }
24a73b0a
KH
8304 else if (base_category == coding_category_utf_16_auto)
8305 {
8306 if (detect_coding_utf_16 (&coding, &detect_info))
8307 {
24a73b0a
KH
8308 struct coding_system *this;
8309
8310 if (detect_info.found & CATEGORY_MASK_UTF_16_LE)
8311 this = coding_categories + coding_category_utf_16_le;
8312 else if (detect_info.found & CATEGORY_MASK_UTF_16_BE)
8313 this = coding_categories + coding_category_utf_16_be;
8314 else if (detect_info.rejected & CATEGORY_MASK_UTF_16_LE_NOSIG)
8315 this = coding_categories + coding_category_utf_16_be_nosig;
8316 else
8317 this = coding_categories + coding_category_utf_16_le_nosig;
8318 val = Fcons (make_number (this->id), Qnil);
8319 }
8320 }
df7492f9
KH
8321 else
8322 {
ff0dacd7 8323 detect_info.found = 1 << XINT (CODING_ATTR_CATEGORY (attrs));
89528eb3 8324 val = Fcons (make_number (coding.id), Qnil);
4ed46869 8325 }
df7492f9 8326
89528eb3 8327 /* Then, detect eol-format if necessary. */
df7492f9 8328 {
4533845d 8329 int normal_eol = -1, utf_16_be_eol = -1, utf_16_le_eol = -1;
df7492f9
KH
8330 Lisp_Object tail;
8331
89528eb3
KH
8332 if (VECTORP (eol_type))
8333 {
ff0dacd7 8334 if (detect_info.found & ~CATEGORY_MASK_UTF_16)
2f3cbb32
KH
8335 {
8336 if (null_byte_found)
8337 normal_eol = EOL_SEEN_LF;
8338 else
8339 normal_eol = detect_eol (coding.source, src_bytes,
8340 coding_category_raw_text);
8341 }
ff0dacd7
KH
8342 if (detect_info.found & (CATEGORY_MASK_UTF_16_BE
8343 | CATEGORY_MASK_UTF_16_BE_NOSIG))
89528eb3
KH
8344 utf_16_be_eol = detect_eol (coding.source, src_bytes,
8345 coding_category_utf_16_be);
ff0dacd7
KH
8346 if (detect_info.found & (CATEGORY_MASK_UTF_16_LE
8347 | CATEGORY_MASK_UTF_16_LE_NOSIG))
89528eb3
KH
8348 utf_16_le_eol = detect_eol (coding.source, src_bytes,
8349 coding_category_utf_16_le);
8350 }
8351 else
8352 {
8353 if (EQ (eol_type, Qunix))
8354 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_LF;
8355 else if (EQ (eol_type, Qdos))
8356 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CRLF;
8357 else
8358 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CR;
8359 }
8360
df7492f9
KH
8361 for (tail = val; CONSP (tail); tail = XCDR (tail))
8362 {
89528eb3 8363 enum coding_category category;
df7492f9 8364 int this_eol;
89528eb3
KH
8365
8366 id = XINT (XCAR (tail));
8367 attrs = CODING_ID_ATTRS (id);
8368 category = XINT (CODING_ATTR_CATEGORY (attrs));
8369 eol_type = CODING_ID_EOL_TYPE (id);
df7492f9
KH
8370 if (VECTORP (eol_type))
8371 {
89528eb3
KH
8372 if (category == coding_category_utf_16_be
8373 || category == coding_category_utf_16_be_nosig)
8374 this_eol = utf_16_be_eol;
8375 else if (category == coding_category_utf_16_le
8376 || category == coding_category_utf_16_le_nosig)
8377 this_eol = utf_16_le_eol;
df7492f9 8378 else
89528eb3
KH
8379 this_eol = normal_eol;
8380
df7492f9
KH
8381 if (this_eol == EOL_SEEN_LF)
8382 XSETCAR (tail, AREF (eol_type, 0));
8383 else if (this_eol == EOL_SEEN_CRLF)
8384 XSETCAR (tail, AREF (eol_type, 1));
8385 else if (this_eol == EOL_SEEN_CR)
8386 XSETCAR (tail, AREF (eol_type, 2));
89528eb3
KH
8387 else
8388 XSETCAR (tail, CODING_ID_NAME (id));
df7492f9 8389 }
89528eb3
KH
8390 else
8391 XSETCAR (tail, CODING_ID_NAME (id));
df7492f9
KH
8392 }
8393 }
ec6d2bb8 8394
4533845d 8395 return (highest ? (CONSP (val) ? XCAR (val) : Qnil) : val);
ec6d2bb8
KH
8396}
8397
ec6d2bb8 8398
d46c5b12
KH
8399DEFUN ("detect-coding-region", Fdetect_coding_region, Sdetect_coding_region,
8400 2, 3, 0,
48b0f3ae
PJ
8401 doc: /* Detect coding system of the text in the region between START and END.
8402Return a list of possible coding systems ordered by priority.
b811c52b
KH
8403The coding systems to try and their priorities follows what
8404the function `coding-system-priority-list' (which see) returns.
ec6d2bb8 8405
12e0131a 8406If only ASCII characters are found (except for such ISO-2022 control
d4a1d553
JB
8407characters as ESC), it returns a list of single element `undecided'
8408or its subsidiary coding system according to a detected end-of-line
8409format.
ec6d2bb8 8410
48b0f3ae
PJ
8411If optional argument HIGHEST is non-nil, return the coding system of
8412highest priority. */)
5842a27b 8413 (Lisp_Object start, Lisp_Object end, Lisp_Object highest)
d46c5b12 8414{
d311d28c
PE
8415 ptrdiff_t from, to;
8416 ptrdiff_t from_byte, to_byte;
ec6d2bb8 8417
b7826503
PJ
8418 CHECK_NUMBER_COERCE_MARKER (start);
8419 CHECK_NUMBER_COERCE_MARKER (end);
ec6d2bb8 8420
d46c5b12
KH
8421 validate_region (&start, &end);
8422 from = XINT (start), to = XINT (end);
8423 from_byte = CHAR_TO_BYTE (from);
8424 to_byte = CHAR_TO_BYTE (to);
ec6d2bb8 8425
d46c5b12
KH
8426 if (from < GPT && to >= GPT)
8427 move_gap_both (to, to_byte);
c210f766 8428
d46c5b12 8429 return detect_coding_system (BYTE_POS_ADDR (from_byte),
24a73b0a 8430 to - from, to_byte - from_byte,
0a28aafb 8431 !NILP (highest),
4b4deea2 8432 !NILP (BVAR (current_buffer
5d8ea120 8433 , enable_multibyte_characters)),
df7492f9 8434 Qnil);
ec6d2bb8
KH
8435}
8436
d46c5b12
KH
8437DEFUN ("detect-coding-string", Fdetect_coding_string, Sdetect_coding_string,
8438 1, 2, 0,
48b0f3ae
PJ
8439 doc: /* Detect coding system of the text in STRING.
8440Return a list of possible coding systems ordered by priority.
67ceab9d
KH
8441The coding systems to try and their priorities follows what
8442the function `coding-system-priority-list' (which see) returns.
fb88bf2d 8443
12e0131a 8444If only ASCII characters are found (except for such ISO-2022 control
d4a1d553
JB
8445characters as ESC), it returns a list of single element `undecided'
8446or its subsidiary coding system according to a detected end-of-line
8447format.
d46c5b12 8448
48b0f3ae
PJ
8449If optional argument HIGHEST is non-nil, return the coding system of
8450highest priority. */)
5842a27b 8451 (Lisp_Object string, Lisp_Object highest)
d46c5b12 8452{
b7826503 8453 CHECK_STRING (string);
b73bfc1c 8454
24a73b0a
KH
8455 return detect_coding_system (SDATA (string),
8456 SCHARS (string), SBYTES (string),
8f924df7 8457 !NILP (highest), STRING_MULTIBYTE (string),
df7492f9 8458 Qnil);
4ed46869 8459}
4ed46869 8460
b73bfc1c 8461
f10fe38f 8462static inline bool
971de7fb 8463char_encodable_p (int c, Lisp_Object attrs)
05e6f5dc 8464{
df7492f9 8465 Lisp_Object tail;
df7492f9 8466 struct charset *charset;
7d64c6ad 8467 Lisp_Object translation_table;
d46c5b12 8468
7d64c6ad 8469 translation_table = CODING_ATTR_TRANS_TBL (attrs);
a6f87d34 8470 if (! NILP (translation_table))
7d64c6ad 8471 c = translate_char (translation_table, c);
df7492f9
KH
8472 for (tail = CODING_ATTR_CHARSET_LIST (attrs);
8473 CONSP (tail); tail = XCDR (tail))
e133c8fa 8474 {
df7492f9
KH
8475 charset = CHARSET_FROM_ID (XINT (XCAR (tail)));
8476 if (CHAR_CHARSET_P (c, charset))
8477 break;
e133c8fa 8478 }
df7492f9 8479 return (! NILP (tail));
05e6f5dc 8480}
83fa074f 8481
fb88bf2d 8482
df7492f9
KH
8483/* Return a list of coding systems that safely encode the text between
8484 START and END. If EXCLUDE is non-nil, it is a list of coding
8485 systems not to check. The returned list doesn't contain any such
48468dac 8486 coding systems. In any case, if the text contains only ASCII or is
df7492f9 8487 unibyte, return t. */
e077cc80 8488
df7492f9
KH
8489DEFUN ("find-coding-systems-region-internal",
8490 Ffind_coding_systems_region_internal,
8491 Sfind_coding_systems_region_internal, 2, 3, 0,
8492 doc: /* Internal use only. */)
5842a27b 8493 (Lisp_Object start, Lisp_Object end, Lisp_Object exclude)
df7492f9
KH
8494{
8495 Lisp_Object coding_attrs_list, safe_codings;
d311d28c 8496 ptrdiff_t start_byte, end_byte;
7c78e542 8497 const unsigned char *p, *pbeg, *pend;
df7492f9 8498 int c;
0e727afa 8499 Lisp_Object tail, elt, work_table;
d46c5b12 8500
df7492f9
KH
8501 if (STRINGP (start))
8502 {
8503 if (!STRING_MULTIBYTE (start)
8f924df7 8504 || SCHARS (start) == SBYTES (start))
df7492f9
KH
8505 return Qt;
8506 start_byte = 0;
8f924df7 8507 end_byte = SBYTES (start);
df7492f9
KH
8508 }
8509 else
d46c5b12 8510 {
df7492f9
KH
8511 CHECK_NUMBER_COERCE_MARKER (start);
8512 CHECK_NUMBER_COERCE_MARKER (end);
8513 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end))
8514 args_out_of_range (start, end);
4b4deea2 8515 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
df7492f9
KH
8516 return Qt;
8517 start_byte = CHAR_TO_BYTE (XINT (start));
8518 end_byte = CHAR_TO_BYTE (XINT (end));
8519 if (XINT (end) - XINT (start) == end_byte - start_byte)
8520 return Qt;
d46c5b12 8521
e1c23804 8522 if (XINT (start) < GPT && XINT (end) > GPT)
d46c5b12 8523 {
e1c23804
DL
8524 if ((GPT - XINT (start)) < (XINT (end) - GPT))
8525 move_gap_both (XINT (start), start_byte);
df7492f9 8526 else
e1c23804 8527 move_gap_both (XINT (end), end_byte);
d46c5b12
KH
8528 }
8529 }
8530
df7492f9
KH
8531 coding_attrs_list = Qnil;
8532 for (tail = Vcoding_system_list; CONSP (tail); tail = XCDR (tail))
8533 if (NILP (exclude)
8534 || NILP (Fmemq (XCAR (tail), exclude)))
8535 {
8536 Lisp_Object attrs;
d46c5b12 8537
df7492f9
KH
8538 attrs = AREF (CODING_SYSTEM_SPEC (XCAR (tail)), 0);
8539 if (EQ (XCAR (tail), CODING_ATTR_BASE_NAME (attrs))
8540 && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided))
7d64c6ad
KH
8541 {
8542 ASET (attrs, coding_attr_trans_tbl,
2170c8f0 8543 get_translation_table (attrs, 1, NULL));
7d64c6ad
KH
8544 coding_attrs_list = Fcons (attrs, coding_attrs_list);
8545 }
df7492f9 8546 }
d46c5b12 8547
df7492f9 8548 if (STRINGP (start))
8f924df7 8549 p = pbeg = SDATA (start);
df7492f9
KH
8550 else
8551 p = pbeg = BYTE_POS_ADDR (start_byte);
8552 pend = p + (end_byte - start_byte);
b843d1ae 8553
df7492f9
KH
8554 while (p < pend && ASCII_BYTE_P (*p)) p++;
8555 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--;
d46c5b12 8556
0e727afa 8557 work_table = Fmake_char_table (Qnil, Qnil);
05e6f5dc 8558 while (p < pend)
72d1a715 8559 {
df7492f9
KH
8560 if (ASCII_BYTE_P (*p))
8561 p++;
72d1a715
RS
8562 else
8563 {
df7492f9 8564 c = STRING_CHAR_ADVANCE (p);
0e727afa
YM
8565 if (!NILP (char_table_ref (work_table, c)))
8566 /* This character was already checked. Ignore it. */
8567 continue;
12410ef1 8568
df7492f9
KH
8569 charset_map_loaded = 0;
8570 for (tail = coding_attrs_list; CONSP (tail);)
8571 {
8572 elt = XCAR (tail);
8573 if (NILP (elt))
8574 tail = XCDR (tail);
8575 else if (char_encodable_p (c, elt))
8576 tail = XCDR (tail);
8577 else if (CONSP (XCDR (tail)))
8578 {
8579 XSETCAR (tail, XCAR (XCDR (tail)));
8580 XSETCDR (tail, XCDR (XCDR (tail)));
8581 }
8582 else
8583 {
8584 XSETCAR (tail, Qnil);
8585 tail = XCDR (tail);
8586 }
8587 }
8588 if (charset_map_loaded)
8589 {
d311d28c 8590 ptrdiff_t p_offset = p - pbeg, pend_offset = pend - pbeg;
05e6f5dc 8591
df7492f9 8592 if (STRINGP (start))
8f924df7 8593 pbeg = SDATA (start);
df7492f9
KH
8594 else
8595 pbeg = BYTE_POS_ADDR (start_byte);
8596 p = pbeg + p_offset;
8597 pend = pbeg + pend_offset;
8598 }
0e727afa 8599 char_table_set (work_table, c, Qt);
df7492f9 8600 }
ec6d2bb8 8601 }
fb88bf2d 8602
988b3759 8603 safe_codings = list2 (Qraw_text, Qno_conversion);
df7492f9
KH
8604 for (tail = coding_attrs_list; CONSP (tail); tail = XCDR (tail))
8605 if (! NILP (XCAR (tail)))
8606 safe_codings = Fcons (CODING_ATTR_BASE_NAME (XCAR (tail)), safe_codings);
ec6d2bb8 8607
05e6f5dc
KH
8608 return safe_codings;
8609}
4956c225 8610
d46c5b12 8611
8f924df7
KH
8612DEFUN ("unencodable-char-position", Funencodable_char_position,
8613 Sunencodable_char_position, 3, 5, 0,
8614 doc: /*
8615Return position of first un-encodable character in a region.
d4a1d553 8616START and END specify the region and CODING-SYSTEM specifies the
8f924df7 8617encoding to check. Return nil if CODING-SYSTEM does encode the region.
d46c5b12 8618
8f924df7
KH
8619If optional 4th argument COUNT is non-nil, it specifies at most how
8620many un-encodable characters to search. In this case, the value is a
8621list of positions.
d46c5b12 8622
8f924df7
KH
8623If optional 5th argument STRING is non-nil, it is a string to search
8624for un-encodable characters. In that case, START and END are indexes
8625to the string. */)
5842a27b 8626 (Lisp_Object start, Lisp_Object end, Lisp_Object coding_system, Lisp_Object count, Lisp_Object string)
8f924df7 8627{
d311d28c 8628 EMACS_INT n;
8f924df7 8629 struct coding_system coding;
7d64c6ad 8630 Lisp_Object attrs, charset_list, translation_table;
8f924df7 8631 Lisp_Object positions;
d311d28c 8632 ptrdiff_t from, to;
8f924df7 8633 const unsigned char *p, *stop, *pend;
f10fe38f 8634 bool ascii_compatible;
fb88bf2d 8635
8f924df7
KH
8636 setup_coding_system (Fcheck_coding_system (coding_system), &coding);
8637 attrs = CODING_ID_ATTRS (coding.id);
8638 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
8639 return Qnil;
8640 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs));
8641 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
2170c8f0 8642 translation_table = get_translation_table (attrs, 1, NULL);
fb88bf2d 8643
8f924df7
KH
8644 if (NILP (string))
8645 {
8646 validate_region (&start, &end);
8647 from = XINT (start);
8648 to = XINT (end);
4b4deea2 8649 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
8f924df7
KH
8650 || (ascii_compatible
8651 && (to - from) == (CHAR_TO_BYTE (to) - (CHAR_TO_BYTE (from)))))
8652 return Qnil;
8653 p = CHAR_POS_ADDR (from);
8654 pend = CHAR_POS_ADDR (to);
8655 if (from < GPT && to >= GPT)
8656 stop = GPT_ADDR;
8657 else
8658 stop = pend;
8659 }
8660 else
8661 {
8662 CHECK_STRING (string);
8663 CHECK_NATNUM (start);
8664 CHECK_NATNUM (end);
d311d28c
PE
8665 if (! (XINT (start) <= XINT (end) && XINT (end) <= SCHARS (string)))
8666 args_out_of_range_3 (string, start, end);
8f924df7
KH
8667 from = XINT (start);
8668 to = XINT (end);
8f924df7
KH
8669 if (! STRING_MULTIBYTE (string))
8670 return Qnil;
8671 p = SDATA (string) + string_char_to_byte (string, from);
8672 stop = pend = SDATA (string) + string_char_to_byte (string, to);
8673 if (ascii_compatible && (to - from) == (pend - p))
8674 return Qnil;
8675 }
f2558efd 8676
8f924df7
KH
8677 if (NILP (count))
8678 n = 1;
8679 else
b73bfc1c 8680 {
8f924df7
KH
8681 CHECK_NATNUM (count);
8682 n = XINT (count);
b73bfc1c
KH
8683 }
8684
8f924df7 8685 positions = Qnil;
3633e3aa 8686 charset_map_loaded = 0;
8f924df7 8687 while (1)
d46c5b12 8688 {
8f924df7 8689 int c;
ec6d2bb8 8690
8f924df7
KH
8691 if (ascii_compatible)
8692 while (p < stop && ASCII_BYTE_P (*p))
8693 p++, from++;
8694 if (p >= stop)
0e79d667 8695 {
8f924df7
KH
8696 if (p >= pend)
8697 break;
8698 stop = pend;
8699 p = GAP_END_ADDR;
0e79d667 8700 }
ec6d2bb8 8701
8f924df7
KH
8702 c = STRING_CHAR_ADVANCE (p);
8703 if (! (ASCII_CHAR_P (c) && ascii_compatible)
7d64c6ad
KH
8704 && ! char_charset (translate_char (translation_table, c),
8705 charset_list, NULL))
ec6d2bb8 8706 {
8f924df7
KH
8707 positions = Fcons (make_number (from), positions);
8708 n--;
8709 if (n == 0)
8710 break;
ec6d2bb8
KH
8711 }
8712
8f924df7 8713 from++;
3633e3aa
KH
8714 if (charset_map_loaded && NILP (string))
8715 {
8716 p = CHAR_POS_ADDR (from);
8717 pend = CHAR_POS_ADDR (to);
8718 if (from < GPT && to >= GPT)
8719 stop = GPT_ADDR;
8720 else
8721 stop = pend;
8722 charset_map_loaded = 0;
8723 }
8f924df7 8724 }
d46c5b12 8725
8f924df7
KH
8726 return (NILP (count) ? Fcar (positions) : Fnreverse (positions));
8727}
d46c5b12 8728
d46c5b12 8729
df7492f9
KH
8730DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region,
8731 Scheck_coding_systems_region, 3, 3, 0,
8732 doc: /* Check if the region is encodable by coding systems.
d46c5b12 8733
df7492f9
KH
8734START and END are buffer positions specifying the region.
8735CODING-SYSTEM-LIST is a list of coding systems to check.
d46c5b12 8736
df7492f9 8737The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where
d4a1d553 8738CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the
df7492f9
KH
8739whole region, POS0, POS1, ... are buffer positions where non-encodable
8740characters are found.
93dec019 8741
df7492f9
KH
8742If all coding systems in CODING-SYSTEM-LIST can encode the region, the
8743value is nil.
93dec019 8744
df7492f9
KH
8745START may be a string. In that case, check if the string is
8746encodable, and the value contains indices to the string instead of
5704f39a
KH
8747buffer positions. END is ignored.
8748
4c1958f4 8749If the current buffer (or START if it is a string) is unibyte, the value
5704f39a 8750is nil. */)
5842a27b 8751 (Lisp_Object start, Lisp_Object end, Lisp_Object coding_system_list)
05e6f5dc 8752{
df7492f9 8753 Lisp_Object list;
d311d28c
PE
8754 ptrdiff_t start_byte, end_byte;
8755 ptrdiff_t pos;
7c78e542 8756 const unsigned char *p, *pbeg, *pend;
df7492f9 8757 int c;
7d64c6ad 8758 Lisp_Object tail, elt, attrs;
70ad9fc4 8759
05e6f5dc
KH
8760 if (STRINGP (start))
8761 {
df7492f9 8762 if (!STRING_MULTIBYTE (start)
4c1958f4 8763 || SCHARS (start) == SBYTES (start))
df7492f9
KH
8764 return Qnil;
8765 start_byte = 0;
8f924df7 8766 end_byte = SBYTES (start);
df7492f9 8767 pos = 0;
d46c5b12 8768 }
05e6f5dc 8769 else
b73bfc1c 8770 {
b7826503
PJ
8771 CHECK_NUMBER_COERCE_MARKER (start);
8772 CHECK_NUMBER_COERCE_MARKER (end);
05e6f5dc
KH
8773 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end))
8774 args_out_of_range (start, end);
4b4deea2 8775 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
df7492f9
KH
8776 return Qnil;
8777 start_byte = CHAR_TO_BYTE (XINT (start));
8778 end_byte = CHAR_TO_BYTE (XINT (end));
8779 if (XINT (end) - XINT (start) == end_byte - start_byte)
5704f39a 8780 return Qnil;
df7492f9 8781
e1c23804 8782 if (XINT (start) < GPT && XINT (end) > GPT)
b73bfc1c 8783 {
e1c23804
DL
8784 if ((GPT - XINT (start)) < (XINT (end) - GPT))
8785 move_gap_both (XINT (start), start_byte);
df7492f9 8786 else
e1c23804 8787 move_gap_both (XINT (end), end_byte);
b73bfc1c 8788 }
e1c23804 8789 pos = XINT (start);
b73bfc1c 8790 }
7553d0e1 8791
df7492f9
KH
8792 list = Qnil;
8793 for (tail = coding_system_list; CONSP (tail); tail = XCDR (tail))
12410ef1 8794 {
df7492f9 8795 elt = XCAR (tail);
7d64c6ad 8796 attrs = AREF (CODING_SYSTEM_SPEC (elt), 0);
2170c8f0
KH
8797 ASET (attrs, coding_attr_trans_tbl,
8798 get_translation_table (attrs, 1, NULL));
7d64c6ad 8799 list = Fcons (Fcons (elt, Fcons (attrs, Qnil)), list);
12410ef1
KH
8800 }
8801
df7492f9 8802 if (STRINGP (start))
8f924df7 8803 p = pbeg = SDATA (start);
72d1a715 8804 else
df7492f9
KH
8805 p = pbeg = BYTE_POS_ADDR (start_byte);
8806 pend = p + (end_byte - start_byte);
4ed46869 8807
df7492f9
KH
8808 while (p < pend && ASCII_BYTE_P (*p)) p++, pos++;
8809 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--;
ec6d2bb8 8810
df7492f9 8811 while (p < pend)
d46c5b12 8812 {
df7492f9
KH
8813 if (ASCII_BYTE_P (*p))
8814 p++;
e133c8fa 8815 else
05e6f5dc 8816 {
df7492f9
KH
8817 c = STRING_CHAR_ADVANCE (p);
8818
8819 charset_map_loaded = 0;
8820 for (tail = list; CONSP (tail); tail = XCDR (tail))
8821 {
8822 elt = XCDR (XCAR (tail));
8823 if (! char_encodable_p (c, XCAR (elt)))
8824 XSETCDR (elt, Fcons (make_number (pos), XCDR (elt)));
8825 }
8826 if (charset_map_loaded)
8827 {
d311d28c 8828 ptrdiff_t p_offset = p - pbeg, pend_offset = pend - pbeg;
df7492f9
KH
8829
8830 if (STRINGP (start))
8f924df7 8831 pbeg = SDATA (start);
df7492f9
KH
8832 else
8833 pbeg = BYTE_POS_ADDR (start_byte);
8834 p = pbeg + p_offset;
8835 pend = pbeg + pend_offset;
8836 }
05e6f5dc 8837 }
df7492f9 8838 pos++;
d46c5b12 8839 }
4ed46869 8840
df7492f9
KH
8841 tail = list;
8842 list = Qnil;
8843 for (; CONSP (tail); tail = XCDR (tail))
ec6d2bb8 8844 {
df7492f9
KH
8845 elt = XCAR (tail);
8846 if (CONSP (XCDR (XCDR (elt))))
8847 list = Fcons (Fcons (XCAR (elt), Fnreverse (XCDR (XCDR (elt)))),
8848 list);
ec6d2bb8 8849 }
2b4f9037 8850
df7492f9 8851 return list;
d46c5b12
KH
8852}
8853
3fd9494b 8854
74ab6df5 8855static Lisp_Object
cf84bb53
JB
8856code_convert_region (Lisp_Object start, Lisp_Object end,
8857 Lisp_Object coding_system, Lisp_Object dst_object,
f10fe38f 8858 bool encodep, bool norecord)
4ed46869 8859{
3a73fa5d 8860 struct coding_system coding;
d311d28c 8861 ptrdiff_t from, from_byte, to, to_byte;
df7492f9 8862 Lisp_Object src_object;
4ed46869 8863
b7826503
PJ
8864 CHECK_NUMBER_COERCE_MARKER (start);
8865 CHECK_NUMBER_COERCE_MARKER (end);
df7492f9
KH
8866 if (NILP (coding_system))
8867 coding_system = Qno_conversion;
8868 else
8869 CHECK_CODING_SYSTEM (coding_system);
8870 src_object = Fcurrent_buffer ();
8871 if (NILP (dst_object))
8872 dst_object = src_object;
8873 else if (! EQ (dst_object, Qt))
8874 CHECK_BUFFER (dst_object);
3a73fa5d 8875
d46c5b12
KH
8876 validate_region (&start, &end);
8877 from = XFASTINT (start);
df7492f9 8878 from_byte = CHAR_TO_BYTE (from);
d46c5b12 8879 to = XFASTINT (end);
df7492f9 8880 to_byte = CHAR_TO_BYTE (to);
764ca8da 8881
df7492f9
KH
8882 setup_coding_system (coding_system, &coding);
8883 coding.mode |= CODING_MODE_LAST_BLOCK;
ec6d2bb8 8884
df7492f9
KH
8885 if (encodep)
8886 encode_coding_object (&coding, src_object, from, from_byte, to, to_byte,
8887 dst_object);
8888 else
8889 decode_coding_object (&coding, src_object, from, from_byte, to, to_byte,
8890 dst_object);
8891 if (! norecord)
8892 Vlast_coding_system_used = CODING_ID_NAME (coding.id);
ec6d2bb8 8893
df7492f9
KH
8894 return (BUFFERP (dst_object)
8895 ? make_number (coding.produced_char)
8896 : coding.dst_object);
4031e2bf 8897}
78108bcd 8898
4ed46869 8899
4031e2bf 8900DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region,
df7492f9 8901 3, 4, "r\nzCoding system: ",
48b0f3ae 8902 doc: /* Decode the current region from the specified coding system.
df7492f9
KH
8903When called from a program, takes four arguments:
8904 START, END, CODING-SYSTEM, and DESTINATION.
8905START and END are buffer positions.
8844fa83 8906
df7492f9 8907Optional 4th arguments DESTINATION specifies where the decoded text goes.
2354b80b 8908If nil, the region between START and END is replaced by the decoded text.
1560f91a
EZ
8909If buffer, the decoded text is inserted in that buffer after point (point
8910does not move).
446dcd75 8911In those cases, the length of the decoded text is returned.
319a3947 8912If DESTINATION is t, the decoded text is returned.
8844fa83 8913
48b0f3ae
PJ
8914This function sets `last-coding-system-used' to the precise coding system
8915used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
319a3947 8916not fully specified.) */)
5842a27b 8917 (Lisp_Object start, Lisp_Object end, Lisp_Object coding_system, Lisp_Object destination)
4031e2bf 8918{
df7492f9 8919 return code_convert_region (start, end, coding_system, destination, 0, 0);
3a73fa5d 8920}
8844fa83 8921
3a73fa5d 8922DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region,
df7492f9
KH
8923 3, 4, "r\nzCoding system: ",
8924 doc: /* Encode the current region by specified coding system.
d4a1d553
JB
8925When called from a program, takes four arguments:
8926 START, END, CODING-SYSTEM and DESTINATION.
8927START and END are buffer positions.
d46c5b12 8928
df7492f9
KH
8929Optional 4th arguments DESTINATION specifies where the encoded text goes.
8930If nil, the region between START and END is replace by the encoded text.
1560f91a
EZ
8931If buffer, the encoded text is inserted in that buffer after point (point
8932does not move).
446dcd75 8933In those cases, the length of the encoded text is returned.
319a3947 8934If DESTINATION is t, the encoded text is returned.
2391eaa4 8935
48b0f3ae
PJ
8936This function sets `last-coding-system-used' to the precise coding system
8937used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
319a3947 8938not fully specified.) */)
5842a27b 8939 (Lisp_Object start, Lisp_Object end, Lisp_Object coding_system, Lisp_Object destination)
3a73fa5d 8940{
df7492f9 8941 return code_convert_region (start, end, coding_system, destination, 1, 0);
b73bfc1c
KH
8942}
8943
8944Lisp_Object
6f704c76 8945code_convert_string (Lisp_Object string, Lisp_Object coding_system,
f10fe38f
PE
8946 Lisp_Object dst_object, bool encodep, bool nocopy,
8947 bool norecord)
b73bfc1c 8948{
4031e2bf 8949 struct coding_system coding;
d311d28c 8950 ptrdiff_t chars, bytes;
ec6d2bb8 8951
b7826503 8952 CHECK_STRING (string);
d46c5b12 8953 if (NILP (coding_system))
4956c225 8954 {
df7492f9
KH
8955 if (! norecord)
8956 Vlast_coding_system_used = Qno_conversion;
8957 if (NILP (dst_object))
8958 return (nocopy ? Fcopy_sequence (string) : string);
4956c225 8959 }
b73bfc1c 8960
df7492f9
KH
8961 if (NILP (coding_system))
8962 coding_system = Qno_conversion;
8963 else
8964 CHECK_CODING_SYSTEM (coding_system);
8965 if (NILP (dst_object))
8966 dst_object = Qt;
8967 else if (! EQ (dst_object, Qt))
8968 CHECK_BUFFER (dst_object);
73be902c 8969
df7492f9 8970 setup_coding_system (coding_system, &coding);
d46c5b12 8971 coding.mode |= CODING_MODE_LAST_BLOCK;
8f924df7
KH
8972 chars = SCHARS (string);
8973 bytes = SBYTES (string);
df7492f9
KH
8974 if (encodep)
8975 encode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object);
8976 else
8977 decode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object);
8978 if (! norecord)
8979 Vlast_coding_system_used = CODING_ID_NAME (coding.id);
73be902c 8980
df7492f9
KH
8981 return (BUFFERP (dst_object)
8982 ? make_number (coding.produced_char)
8983 : coding.dst_object);
4ed46869 8984}
73be902c 8985
b73bfc1c 8986
ecec61c1 8987/* Encode or decode STRING according to CODING_SYSTEM.
ec6d2bb8 8988 Do not set Vlast_coding_system_used.
4ed46869 8989
ec6d2bb8
KH
8990 This function is called only from macros DECODE_FILE and
8991 ENCODE_FILE, thus we ignore character composition. */
4ed46869 8992
ecec61c1 8993Lisp_Object
cf84bb53 8994code_convert_string_norecord (Lisp_Object string, Lisp_Object coding_system,
f10fe38f 8995 bool encodep)
4ed46869 8996{
0be8721c 8997 return code_convert_string (string, coding_system, Qt, encodep, 0, 1);
4ed46869
KH
8998}
8999
4ed46869 9000
a7ca3326 9001DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string,
df7492f9
KH
9002 2, 4, 0,
9003 doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
9004
9005Optional third arg NOCOPY non-nil means it is OK to return STRING itself
9006if the decoding operation is trivial.
ecec61c1 9007
d4a1d553 9008Optional fourth arg BUFFER non-nil means that the decoded text is
1560f91a
EZ
9009inserted in that buffer after point (point does not move). In this
9010case, the return value is the length of the decoded text.
ecec61c1 9011
df7492f9
KH
9012This function sets `last-coding-system-used' to the precise coding system
9013used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
d4a1d553 9014not fully specified.) */)
5842a27b 9015 (Lisp_Object string, Lisp_Object coding_system, Lisp_Object nocopy, Lisp_Object buffer)
4ed46869 9016{
df7492f9
KH
9017 return code_convert_string (string, coding_system, buffer,
9018 0, ! NILP (nocopy), 0);
4ed46869
KH
9019}
9020
df7492f9
KH
9021DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string,
9022 2, 4, 0,
9023 doc: /* Encode STRING to CODING-SYSTEM, and return the result.
9024
9025Optional third arg NOCOPY non-nil means it is OK to return STRING
9026itself if the encoding operation is trivial.
9027
d4a1d553 9028Optional fourth arg BUFFER non-nil means that the encoded text is
1560f91a
EZ
9029inserted in that buffer after point (point does not move). In this
9030case, the return value is the length of the encoded text.
df7492f9
KH
9031
9032This function sets `last-coding-system-used' to the precise coding system
9033used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9034not fully specified.) */)
5842a27b 9035 (Lisp_Object string, Lisp_Object coding_system, Lisp_Object nocopy, Lisp_Object buffer)
4ed46869 9036{
df7492f9 9037 return code_convert_string (string, coding_system, buffer,
4550efdf 9038 1, ! NILP (nocopy), 0);
4ed46869 9039}
df7492f9 9040
3a73fa5d 9041\f
4ed46869 9042DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0,
48b0f3ae
PJ
9043 doc: /* Decode a Japanese character which has CODE in shift_jis encoding.
9044Return the corresponding character. */)
5842a27b 9045 (Lisp_Object code)
4ed46869 9046{
df7492f9
KH
9047 Lisp_Object spec, attrs, val;
9048 struct charset *charset_roman, *charset_kanji, *charset_kana, *charset;
5fdb398c
PE
9049 EMACS_INT ch;
9050 int c;
4ed46869 9051
df7492f9 9052 CHECK_NATNUM (code);
5fdb398c 9053 ch = XFASTINT (code);
df7492f9
KH
9054 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec);
9055 attrs = AREF (spec, 0);
4ed46869 9056
5fdb398c 9057 if (ASCII_BYTE_P (ch)
df7492f9
KH
9058 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)))
9059 return code;
4ed46869 9060
df7492f9
KH
9061 val = CODING_ATTR_CHARSET_LIST (attrs);
9062 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
004068e4
KH
9063 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
9064 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val)));
fa42c37f 9065
5fdb398c
PE
9066 if (ch <= 0x7F)
9067 {
9068 c = ch;
9069 charset = charset_roman;
9070 }
9071 else if (ch >= 0xA0 && ch < 0xDF)
55ab7be3 9072 {
5fdb398c 9073 c = ch - 0x80;
df7492f9 9074 charset = charset_kana;
4ed46869 9075 }
55ab7be3 9076 else
4ed46869 9077 {
5fdb398c
PE
9078 EMACS_INT c1 = ch >> 8;
9079 int c2 = ch & 0xFF;
df7492f9 9080
2735d060
PE
9081 if (c1 < 0x81 || (c1 > 0x9F && c1 < 0xE0) || c1 > 0xEF
9082 || c2 < 0x40 || c2 == 0x7F || c2 > 0xFC)
c2982e87 9083 error ("Invalid code: %"pI"d", ch);
5fdb398c 9084 c = ch;
df7492f9
KH
9085 SJIS_TO_JIS (c);
9086 charset = charset_kanji;
4ed46869 9087 }
df7492f9
KH
9088 c = DECODE_CHAR (charset, c);
9089 if (c < 0)
c2982e87 9090 error ("Invalid code: %"pI"d", ch);
df7492f9 9091 return make_number (c);
93dec019 9092}
4ed46869 9093
48b0f3ae 9094
4ed46869 9095DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0,
8acf0c0e 9096 doc: /* Encode a Japanese character CH to shift_jis encoding.
48b0f3ae 9097Return the corresponding code in SJIS. */)
5842a27b 9098 (Lisp_Object ch)
4ed46869 9099{
df7492f9
KH
9100 Lisp_Object spec, attrs, charset_list;
9101 int c;
9102 struct charset *charset;
9103 unsigned code;
48b0f3ae 9104
df7492f9
KH
9105 CHECK_CHARACTER (ch);
9106 c = XFASTINT (ch);
9107 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec);
9108 attrs = AREF (spec, 0);
9109
9110 if (ASCII_CHAR_P (c)
9111 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)))
9112 return ch;
9113
9114 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
9115 charset = char_charset (c, charset_list, &code);
9116 if (code == CHARSET_INVALID_CODE (charset))
e6c3da20 9117 error ("Can't encode by shift_jis encoding: %c", c);
df7492f9
KH
9118 JIS_TO_SJIS (code);
9119
9120 return make_number (code);
4ed46869
KH
9121}
9122
9123DEFUN ("decode-big5-char", Fdecode_big5_char, Sdecode_big5_char, 1, 1, 0,
48b0f3ae
PJ
9124 doc: /* Decode a Big5 character which has CODE in BIG5 coding system.
9125Return the corresponding character. */)
5842a27b 9126 (Lisp_Object code)
d46c5b12 9127{
df7492f9
KH
9128 Lisp_Object spec, attrs, val;
9129 struct charset *charset_roman, *charset_big5, *charset;
5fdb398c 9130 EMACS_INT ch;
df7492f9 9131 int c;
6289dd10 9132
df7492f9 9133 CHECK_NATNUM (code);
5fdb398c 9134 ch = XFASTINT (code);
df7492f9
KH
9135 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec);
9136 attrs = AREF (spec, 0);
4ed46869 9137
5fdb398c 9138 if (ASCII_BYTE_P (ch)
df7492f9
KH
9139 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)))
9140 return code;
6289dd10 9141
df7492f9
KH
9142 val = CODING_ATTR_CHARSET_LIST (attrs);
9143 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val);
9144 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val)));
c210f766 9145
5fdb398c
PE
9146 if (ch <= 0x7F)
9147 {
9148 c = ch;
9149 charset = charset_roman;
9150 }
c28a9453
KH
9151 else
9152 {
5fdb398c
PE
9153 EMACS_INT b1 = ch >> 8;
9154 int b2 = ch & 0x7F;
df7492f9
KH
9155 if (b1 < 0xA1 || b1 > 0xFE
9156 || b2 < 0x40 || (b2 > 0x7E && b2 < 0xA1) || b2 > 0xFE)
c2982e87 9157 error ("Invalid code: %"pI"d", ch);
5fdb398c 9158 c = ch;
df7492f9 9159 charset = charset_big5;
c28a9453 9160 }
5fdb398c 9161 c = DECODE_CHAR (charset, c);
df7492f9 9162 if (c < 0)
c2982e87 9163 error ("Invalid code: %"pI"d", ch);
df7492f9 9164 return make_number (c);
d46c5b12 9165}
6289dd10 9166
4ed46869 9167DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0,
8acf0c0e 9168 doc: /* Encode the Big5 character CH to BIG5 coding system.
48b0f3ae 9169Return the corresponding character code in Big5. */)
5842a27b 9170 (Lisp_Object ch)
4ed46869 9171{
df7492f9
KH
9172 Lisp_Object spec, attrs, charset_list;
9173 struct charset *charset;
9174 int c;
9175 unsigned code;
9176
9177 CHECK_CHARACTER (ch);
9178 c = XFASTINT (ch);
9179 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec);
9180 attrs = AREF (spec, 0);
9181 if (ASCII_CHAR_P (c)
9182 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)))
9183 return ch;
9184
9185 charset_list = CODING_ATTR_CHARSET_LIST (attrs);
9186 charset = char_charset (c, charset_list, &code);
9187 if (code == CHARSET_INVALID_CODE (charset))
e6c3da20 9188 error ("Can't encode by Big5 encoding: %c", c);
df7492f9
KH
9189
9190 return make_number (code);
4ed46869 9191}
48b0f3ae 9192
3a73fa5d 9193\f
002fdb44 9194DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal,
68bba4e4 9195 Sset_terminal_coding_system_internal, 1, 2, 0,
48b0f3ae 9196 doc: /* Internal use only. */)
5842a27b 9197 (Lisp_Object coding_system, Lisp_Object terminal)
4ed46869 9198{
b18fad6d
KH
9199 struct terminal *term = get_terminal (terminal, 1);
9200 struct coding_system *terminal_coding = TERMINAL_TERMINAL_CODING (term);
b7826503 9201 CHECK_SYMBOL (coding_system);
b8299c66 9202 setup_coding_system (Fcheck_coding_system (coding_system), terminal_coding);
70c22245 9203 /* We had better not send unsafe characters to terminal. */
c73bd236 9204 terminal_coding->mode |= CODING_MODE_SAFE_ENCODING;
ad1746f5 9205 /* Character composition should be disabled. */
c73bd236 9206 terminal_coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK;
b8299c66
KL
9207 terminal_coding->src_multibyte = 1;
9208 terminal_coding->dst_multibyte = 0;
3f22b86f
PE
9209 tset_charset_list
9210 (term, (terminal_coding->common_flags & CODING_REQUIRE_ENCODING_MASK
9211 ? coding_charset_list (terminal_coding)
9212 : Fcons (make_number (charset_ascii), Qnil)));
4ed46869
KH
9213 return Qnil;
9214}
9215
c4825358
KH
9216DEFUN ("set-safe-terminal-coding-system-internal",
9217 Fset_safe_terminal_coding_system_internal,
48b0f3ae 9218 Sset_safe_terminal_coding_system_internal, 1, 1, 0,
ddb67bdc 9219 doc: /* Internal use only. */)
5842a27b 9220 (Lisp_Object coding_system)
d46c5b12 9221{
b7826503 9222 CHECK_SYMBOL (coding_system);
c4825358
KH
9223 setup_coding_system (Fcheck_coding_system (coding_system),
9224 &safe_terminal_coding);
ad1746f5 9225 /* Character composition should be disabled. */
df7492f9 9226 safe_terminal_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK;
b73bfc1c
KH
9227 safe_terminal_coding.src_multibyte = 1;
9228 safe_terminal_coding.dst_multibyte = 0;
c4825358
KH
9229 return Qnil;
9230}
4ed46869 9231
002fdb44 9232DEFUN ("terminal-coding-system", Fterminal_coding_system,
68bba4e4 9233 Sterminal_coding_system, 0, 1, 0,
6ed8eeff 9234 doc: /* Return coding system specified for terminal output on the given terminal.
708e05dc 9235TERMINAL may be a terminal object, a frame, or nil for the selected
6ed8eeff 9236frame's terminal device. */)
5842a27b 9237 (Lisp_Object terminal)
4ed46869 9238{
985773c9
MB
9239 struct coding_system *terminal_coding
9240 = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1));
9241 Lisp_Object coding_system = CODING_ID_NAME (terminal_coding->id);
ae6f73fa 9242
6d5eb5b0 9243 /* For backward compatibility, return nil if it is `undecided'. */
f75c90a9 9244 return (! EQ (coding_system, Qundecided) ? coding_system : Qnil);
4ed46869
KH
9245}
9246
002fdb44 9247DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal,
68bba4e4 9248 Sset_keyboard_coding_system_internal, 1, 2, 0,
48b0f3ae 9249 doc: /* Internal use only. */)
5842a27b 9250 (Lisp_Object coding_system, Lisp_Object terminal)
4ed46869 9251{
6ed8eeff 9252 struct terminal *t = get_terminal (terminal, 1);
b7826503 9253 CHECK_SYMBOL (coding_system);
624bda09
KH
9254 if (NILP (coding_system))
9255 coding_system = Qno_conversion;
9256 else
9257 Fcheck_coding_system (coding_system);
9258 setup_coding_system (coding_system, TERMINAL_KEYBOARD_CODING (t));
ad1746f5 9259 /* Character composition should be disabled. */
c73bd236
MB
9260 TERMINAL_KEYBOARD_CODING (t)->common_flags
9261 &= ~CODING_ANNOTATE_COMPOSITION_MASK;
4ed46869
KH
9262 return Qnil;
9263}
9264
9265DEFUN ("keyboard-coding-system",
985773c9 9266 Fkeyboard_coding_system, Skeyboard_coding_system, 0, 1, 0,
48b0f3ae 9267 doc: /* Return coding system specified for decoding keyboard input. */)
5842a27b 9268 (Lisp_Object terminal)
4ed46869 9269{
985773c9
MB
9270 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING
9271 (get_terminal (terminal, 1))->id);
4ed46869
KH
9272}
9273
4ed46869 9274\f
a7ca3326 9275DEFUN ("find-operation-coding-system", Ffind_operation_coding_system,
a5d301df 9276 Sfind_operation_coding_system, 1, MANY, 0,
48b0f3ae
PJ
9277 doc: /* Choose a coding system for an operation based on the target name.
9278The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9279DECODING-SYSTEM is the coding system to use for decoding
9280\(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9281for encoding (in case OPERATION does encoding).
05e6f5dc 9282
48b0f3ae
PJ
9283The first argument OPERATION specifies an I/O primitive:
9284 For file I/O, `insert-file-contents' or `write-region'.
9285 For process I/O, `call-process', `call-process-region', or `start-process'.
9286 For network I/O, `open-network-stream'.
05e6f5dc 9287
48b0f3ae
PJ
9288The remaining arguments should be the same arguments that were passed
9289to the primitive. Depending on which primitive, one of those arguments
9290is selected as the TARGET. For example, if OPERATION does file I/O,
9291whichever argument specifies the file name is TARGET.
05e6f5dc 9292
48b0f3ae 9293TARGET has a meaning which depends on OPERATION:
b883cdb2 9294 For file I/O, TARGET is a file name (except for the special case below).
48b0f3ae 9295 For process I/O, TARGET is a process name.
d4a1d553 9296 For network I/O, TARGET is a service name or a port number.
05e6f5dc 9297
d4a1d553 9298This function looks up what is specified for TARGET in
48b0f3ae
PJ
9299`file-coding-system-alist', `process-coding-system-alist',
9300or `network-coding-system-alist' depending on OPERATION.
9301They may specify a coding system, a cons of coding systems,
9302or a function symbol to call.
9303In the last case, we call the function with one argument,
9304which is a list of all the arguments given to this function.
1011c487
MB
9305If the function can't decide a coding system, it can return
9306`undecided' so that the normal code-detection is performed.
48b0f3ae 9307
b883cdb2
MB
9308If OPERATION is `insert-file-contents', the argument corresponding to
9309TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
9310file name to look up, and BUFFER is a buffer that contains the file's
9311contents (not yet decoded). If `file-coding-system-alist' specifies a
9312function to call for FILENAME, that function should examine the
9313contents of BUFFER instead of reading the file.
9314
d918f936 9315usage: (find-operation-coding-system OPERATION ARGUMENTS...) */)
f66c7cf8 9316 (ptrdiff_t nargs, Lisp_Object *args)
6b89e3aa 9317{
4ed46869
KH
9318 Lisp_Object operation, target_idx, target, val;
9319 register Lisp_Object chain;
177c0ea7 9320
4ed46869
KH
9321 if (nargs < 2)
9322 error ("Too few arguments");
9323 operation = args[0];
9324 if (!SYMBOLP (operation)
d311d28c 9325 || (target_idx = Fget (operation, Qtarget_idx), !NATNUMP (target_idx)))
3ed051d4 9326 error ("Invalid first argument");
7b09a37a 9327 if (nargs <= 1 + XFASTINT (target_idx))
94dcfacf 9328 error ("Too few arguments for operation `%s'",
8f924df7 9329 SDATA (SYMBOL_NAME (operation)));
c5101a77 9330 target = args[XFASTINT (target_idx) + 1];
4ed46869 9331 if (!(STRINGP (target)
091a0ff0
KH
9332 || (EQ (operation, Qinsert_file_contents) && CONSP (target)
9333 && STRINGP (XCAR (target)) && BUFFERP (XCDR (target)))
4ed46869 9334 || (EQ (operation, Qopen_network_stream) && INTEGERP (target))))
94dcfacf
EZ
9335 error ("Invalid argument %"pI"d of operation `%s'",
9336 XFASTINT (target_idx) + 1, SDATA (SYMBOL_NAME (operation)));
091a0ff0
KH
9337 if (CONSP (target))
9338 target = XCAR (target);
4ed46869 9339
2e34157c
RS
9340 chain = ((EQ (operation, Qinsert_file_contents)
9341 || EQ (operation, Qwrite_region))
02ba4723 9342 ? Vfile_coding_system_alist
2e34157c 9343 : (EQ (operation, Qopen_network_stream)
02ba4723
KH
9344 ? Vnetwork_coding_system_alist
9345 : Vprocess_coding_system_alist));
4ed46869
KH
9346 if (NILP (chain))
9347 return Qnil;
9348
03699b14 9349 for (; CONSP (chain); chain = XCDR (chain))
6b89e3aa 9350 {
f44d27ce 9351 Lisp_Object elt;
6b89e3aa 9352
df7492f9 9353 elt = XCAR (chain);
4ed46869
KH
9354 if (CONSP (elt)
9355 && ((STRINGP (target)
03699b14
KR
9356 && STRINGP (XCAR (elt))
9357 && fast_string_match (XCAR (elt), target) >= 0)
9358 || (INTEGERP (target) && EQ (target, XCAR (elt)))))
6b89e3aa 9359 {
03699b14 9360 val = XCDR (elt);
b19fd4c5
KH
9361 /* Here, if VAL is both a valid coding system and a valid
9362 function symbol, we return VAL as a coding system. */
02ba4723
KH
9363 if (CONSP (val))
9364 return val;
9365 if (! SYMBOLP (val))
9366 return Qnil;
9367 if (! NILP (Fcoding_system_p (val)))
9368 return Fcons (val, val);
b19fd4c5 9369 if (! NILP (Ffboundp (val)))
6b89e3aa 9370 {
e2b97060
MB
9371 /* We use call1 rather than safe_call1
9372 so as to get bug reports about functions called here
9373 which don't handle the current interface. */
9374 val = call1 (val, Flist (nargs, args));
b19fd4c5
KH
9375 if (CONSP (val))
9376 return val;
9377 if (SYMBOLP (val) && ! NILP (Fcoding_system_p (val)))
9378 return Fcons (val, val);
6b89e3aa 9379 }
02ba4723 9380 return Qnil;
6b89e3aa
KH
9381 }
9382 }
4ed46869 9383 return Qnil;
6b89e3aa
KH
9384}
9385
df7492f9 9386DEFUN ("set-coding-system-priority", Fset_coding_system_priority,
a3f6ee6d 9387 Sset_coding_system_priority, 0, MANY, 0,
da7db224 9388 doc: /* Assign higher priority to the coding systems given as arguments.
d4a1d553 9389If multiple coding systems belong to the same category,
a3181084
DL
9390all but the first one are ignored.
9391
d4a1d553 9392usage: (set-coding-system-priority &rest coding-systems) */)
f66c7cf8 9393 (ptrdiff_t nargs, Lisp_Object *args)
df7492f9 9394{
f66c7cf8 9395 ptrdiff_t i, j;
f10fe38f 9396 bool changed[coding_category_max];
df7492f9
KH
9397 enum coding_category priorities[coding_category_max];
9398
72af86bd 9399 memset (changed, 0, sizeof changed);
6b89e3aa 9400
df7492f9 9401 for (i = j = 0; i < nargs; i++)
6b89e3aa 9402 {
df7492f9
KH
9403 enum coding_category category;
9404 Lisp_Object spec, attrs;
6b89e3aa 9405
df7492f9
KH
9406 CHECK_CODING_SYSTEM_GET_SPEC (args[i], spec);
9407 attrs = AREF (spec, 0);
9408 category = XINT (CODING_ATTR_CATEGORY (attrs));
9409 if (changed[category])
9410 /* Ignore this coding system because a coding system of the
9411 same category already had a higher priority. */
9412 continue;
9413 changed[category] = 1;
9414 priorities[j++] = category;
9415 if (coding_categories[category].id >= 0
9416 && ! EQ (args[i], CODING_ID_NAME (coding_categories[category].id)))
9417 setup_coding_system (args[i], &coding_categories[category]);
ff563fce 9418 Fset (AREF (Vcoding_category_table, category), args[i]);
df7492f9 9419 }
6b89e3aa 9420
df7492f9
KH
9421 /* Now we have decided top J priorities. Reflect the order of the
9422 original priorities to the remaining priorities. */
6b89e3aa 9423
df7492f9 9424 for (i = j, j = 0; i < coding_category_max; i++, j++)
6b89e3aa 9425 {
df7492f9
KH
9426 while (j < coding_category_max
9427 && changed[coding_priorities[j]])
9428 j++;
9429 if (j == coding_category_max)
1088b922 9430 emacs_abort ();
df7492f9
KH
9431 priorities[i] = coding_priorities[j];
9432 }
6b89e3aa 9433
72af86bd 9434 memcpy (coding_priorities, priorities, sizeof priorities);
177c0ea7 9435
ff563fce
KH
9436 /* Update `coding-category-list'. */
9437 Vcoding_category_list = Qnil;
c5101a77 9438 for (i = coding_category_max; i-- > 0; )
ff563fce
KH
9439 Vcoding_category_list
9440 = Fcons (AREF (Vcoding_category_table, priorities[i]),
9441 Vcoding_category_list);
6b89e3aa 9442
df7492f9 9443 return Qnil;
6b89e3aa
KH
9444}
9445
df7492f9
KH
9446DEFUN ("coding-system-priority-list", Fcoding_system_priority_list,
9447 Scoding_system_priority_list, 0, 1, 0,
da7db224 9448 doc: /* Return a list of coding systems ordered by their priorities.
b811c52b
KH
9449The list contains a subset of coding systems; i.e. coding systems
9450assigned to each coding category (see `coding-category-list').
9451
da7db224 9452HIGHESTP non-nil means just return the highest priority one. */)
5842a27b 9453 (Lisp_Object highestp)
d46c5b12
KH
9454{
9455 int i;
df7492f9 9456 Lisp_Object val;
6b89e3aa 9457
df7492f9 9458 for (i = 0, val = Qnil; i < coding_category_max; i++)
d46c5b12 9459 {
df7492f9
KH
9460 enum coding_category category = coding_priorities[i];
9461 int id = coding_categories[category].id;
9462 Lisp_Object attrs;
068a9dbd 9463
df7492f9
KH
9464 if (id < 0)
9465 continue;
9466 attrs = CODING_ID_ATTRS (id);
9467 if (! NILP (highestp))
9468 return CODING_ATTR_BASE_NAME (attrs);
9469 val = Fcons (CODING_ATTR_BASE_NAME (attrs), val);
9470 }
9471 return Fnreverse (val);
9472}
068a9dbd 9473
91433552 9474static const char *const suffixes[] = { "-unix", "-dos", "-mac" };
068a9dbd
KH
9475
9476static Lisp_Object
971de7fb 9477make_subsidiaries (Lisp_Object base)
068a9dbd 9478{
df7492f9 9479 Lisp_Object subsidiaries;
1bfdaf10 9480 ptrdiff_t base_name_len = SBYTES (SYMBOL_NAME (base));
38182d90 9481 char *buf = alloca (base_name_len + 6);
df7492f9 9482 int i;
068a9dbd 9483
72af86bd 9484 memcpy (buf, SDATA (SYMBOL_NAME (base)), base_name_len);
df7492f9
KH
9485 subsidiaries = Fmake_vector (make_number (3), Qnil);
9486 for (i = 0; i < 3; i++)
068a9dbd 9487 {
1bfdaf10 9488 strcpy (buf + base_name_len, suffixes[i]);
df7492f9 9489 ASET (subsidiaries, i, intern (buf));
068a9dbd 9490 }
df7492f9 9491 return subsidiaries;
068a9dbd
KH
9492}
9493
9494
df7492f9
KH
9495DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal,
9496 Sdefine_coding_system_internal, coding_arg_max, MANY, 0,
1fcd6c8b
DL
9497 doc: /* For internal use only.
9498usage: (define-coding-system-internal ...) */)
f66c7cf8 9499 (ptrdiff_t nargs, Lisp_Object *args)
068a9dbd 9500{
df7492f9
KH
9501 Lisp_Object name;
9502 Lisp_Object spec_vec; /* [ ATTRS ALIASE EOL_TYPE ] */
9503 Lisp_Object attrs; /* Vector of attributes. */
9504 Lisp_Object eol_type;
9505 Lisp_Object aliases;
9506 Lisp_Object coding_type, charset_list, safe_charsets;
9507 enum coding_category category;
9508 Lisp_Object tail, val;
9509 int max_charset_id = 0;
9510 int i;
068a9dbd 9511
df7492f9
KH
9512 if (nargs < coding_arg_max)
9513 goto short_args;
068a9dbd 9514
df7492f9 9515 attrs = Fmake_vector (make_number (coding_attr_last_index), Qnil);
068a9dbd 9516
df7492f9
KH
9517 name = args[coding_arg_name];
9518 CHECK_SYMBOL (name);
4939150c 9519 ASET (attrs, coding_attr_base_name, name);
068a9dbd 9520
df7492f9
KH
9521 val = args[coding_arg_mnemonic];
9522 if (! STRINGP (val))
9523 CHECK_CHARACTER (val);
4939150c 9524 ASET (attrs, coding_attr_mnemonic, val);
068a9dbd 9525
df7492f9
KH
9526 coding_type = args[coding_arg_coding_type];
9527 CHECK_SYMBOL (coding_type);
4939150c 9528 ASET (attrs, coding_attr_type, coding_type);
068a9dbd 9529
df7492f9
KH
9530 charset_list = args[coding_arg_charset_list];
9531 if (SYMBOLP (charset_list))
9532 {
9533 if (EQ (charset_list, Qiso_2022))
9534 {
9535 if (! EQ (coding_type, Qiso_2022))
9536 error ("Invalid charset-list");
9537 charset_list = Viso_2022_charset_list;
9538 }
9539 else if (EQ (charset_list, Qemacs_mule))
9540 {
9541 if (! EQ (coding_type, Qemacs_mule))
9542 error ("Invalid charset-list");
9543 charset_list = Vemacs_mule_charset_list;
9544 }
9545 for (tail = charset_list; CONSP (tail); tail = XCDR (tail))
d311d28c
PE
9546 {
9547 if (! RANGED_INTEGERP (0, XCAR (tail), INT_MAX - 1))
9548 error ("Invalid charset-list");
9549 if (max_charset_id < XFASTINT (XCAR (tail)))
9550 max_charset_id = XFASTINT (XCAR (tail));
9551 }
df7492f9 9552 }
068a9dbd
KH
9553 else
9554 {
df7492f9 9555 charset_list = Fcopy_sequence (charset_list);
985773c9 9556 for (tail = charset_list; CONSP (tail); tail = XCDR (tail))
068a9dbd 9557 {
df7492f9
KH
9558 struct charset *charset;
9559
985773c9 9560 val = XCAR (tail);
df7492f9
KH
9561 CHECK_CHARSET_GET_CHARSET (val, charset);
9562 if (EQ (coding_type, Qiso_2022)
9563 ? CHARSET_ISO_FINAL (charset) < 0
9564 : EQ (coding_type, Qemacs_mule)
9565 ? CHARSET_EMACS_MULE_ID (charset) < 0
9566 : 0)
9567 error ("Can't handle charset `%s'",
8f924df7 9568 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
df7492f9 9569
8f924df7 9570 XSETCAR (tail, make_number (charset->id));
df7492f9
KH
9571 if (max_charset_id < charset->id)
9572 max_charset_id = charset->id;
068a9dbd
KH
9573 }
9574 }
4939150c 9575 ASET (attrs, coding_attr_charset_list, charset_list);
068a9dbd 9576
1b3b981b
AS
9577 safe_charsets = make_uninit_string (max_charset_id + 1);
9578 memset (SDATA (safe_charsets), 255, max_charset_id + 1);
df7492f9 9579 for (tail = charset_list; CONSP (tail); tail = XCDR (tail))
8f924df7 9580 SSET (safe_charsets, XFASTINT (XCAR (tail)), 0);
4939150c 9581 ASET (attrs, coding_attr_safe_charsets, safe_charsets);
068a9dbd 9582
4939150c 9583 ASET (attrs, coding_attr_ascii_compat, args[coding_arg_ascii_compatible_p]);
3a73fa5d 9584
df7492f9 9585 val = args[coding_arg_decode_translation_table];
a6f87d34 9586 if (! CHAR_TABLE_P (val) && ! CONSP (val))
7d64c6ad 9587 CHECK_SYMBOL (val);
4939150c 9588 ASET (attrs, coding_attr_decode_tbl, val);
3a73fa5d 9589
df7492f9 9590 val = args[coding_arg_encode_translation_table];
a6f87d34 9591 if (! CHAR_TABLE_P (val) && ! CONSP (val))
7d64c6ad 9592 CHECK_SYMBOL (val);
4939150c 9593 ASET (attrs, coding_attr_encode_tbl, val);
d46c5b12 9594
df7492f9
KH
9595 val = args[coding_arg_post_read_conversion];
9596 CHECK_SYMBOL (val);
4939150c 9597 ASET (attrs, coding_attr_post_read, val);
d46c5b12 9598
df7492f9
KH
9599 val = args[coding_arg_pre_write_conversion];
9600 CHECK_SYMBOL (val);
4939150c 9601 ASET (attrs, coding_attr_pre_write, val);
3a73fa5d 9602
df7492f9
KH
9603 val = args[coding_arg_default_char];
9604 if (NILP (val))
4939150c 9605 ASET (attrs, coding_attr_default_char, make_number (' '));
df7492f9
KH
9606 else
9607 {
8f924df7 9608 CHECK_CHARACTER (val);
4939150c 9609 ASET (attrs, coding_attr_default_char, val);
df7492f9 9610 }
4031e2bf 9611
8f924df7 9612 val = args[coding_arg_for_unibyte];
4939150c 9613 ASET (attrs, coding_attr_for_unibyte, NILP (val) ? Qnil : Qt);
3a73fa5d 9614
df7492f9
KH
9615 val = args[coding_arg_plist];
9616 CHECK_LIST (val);
4939150c 9617 ASET (attrs, coding_attr_plist, val);
3a73fa5d 9618
df7492f9
KH
9619 if (EQ (coding_type, Qcharset))
9620 {
c7c66a95
KH
9621 /* Generate a lisp vector of 256 elements. Each element is nil,
9622 integer, or a list of charset IDs.
3a73fa5d 9623
c7c66a95
KH
9624 If Nth element is nil, the byte code N is invalid in this
9625 coding system.
4ed46869 9626
c7c66a95
KH
9627 If Nth element is a number NUM, N is the first byte of a
9628 charset whose ID is NUM.
4ed46869 9629
c7c66a95
KH
9630 If Nth element is a list of charset IDs, N is the first byte
9631 of one of them. The list is sorted by dimensions of the
ad1746f5 9632 charsets. A charset of smaller dimension comes first. */
df7492f9 9633 val = Fmake_vector (make_number (256), Qnil);
4ed46869 9634
5c99c2e6 9635 for (tail = charset_list; CONSP (tail); tail = XCDR (tail))
df7492f9 9636 {
c7c66a95
KH
9637 struct charset *charset = CHARSET_FROM_ID (XFASTINT (XCAR (tail)));
9638 int dim = CHARSET_DIMENSION (charset);
9639 int idx = (dim - 1) * 4;
4ed46869 9640
5c99c2e6 9641 if (CHARSET_ASCII_COMPATIBLE_P (charset))
4939150c 9642 ASET (attrs, coding_attr_ascii_compat, Qt);
4031e2bf 9643
15d143f7
KH
9644 for (i = charset->code_space[idx];
9645 i <= charset->code_space[idx + 1]; i++)
9646 {
c7c66a95
KH
9647 Lisp_Object tmp, tmp2;
9648 int dim2;
ec6d2bb8 9649
c7c66a95
KH
9650 tmp = AREF (val, i);
9651 if (NILP (tmp))
9652 tmp = XCAR (tail);
9653 else if (NUMBERP (tmp))
9654 {
9655 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp)));
9656 if (dim < dim2)
c7c66a95 9657 tmp = Fcons (XCAR (tail), Fcons (tmp, Qnil));
f9d71dcd
KH
9658 else
9659 tmp = Fcons (tmp, Fcons (XCAR (tail), Qnil));
c7c66a95 9660 }
15d143f7 9661 else
c7c66a95
KH
9662 {
9663 for (tmp2 = tmp; CONSP (tmp2); tmp2 = XCDR (tmp2))
9664 {
9665 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2))));
9666 if (dim < dim2)
9667 break;
9668 }
9669 if (NILP (tmp2))
9670 tmp = nconc2 (tmp, Fcons (XCAR (tail), Qnil));
9671 else
9672 {
9673 XSETCDR (tmp2, Fcons (XCAR (tmp2), XCDR (tmp2)));
9674 XSETCAR (tmp2, XCAR (tail));
9675 }
9676 }
9677 ASET (val, i, tmp);
15d143f7 9678 }
df7492f9
KH
9679 }
9680 ASET (attrs, coding_attr_charset_valids, val);
9681 category = coding_category_charset;
9682 }
9683 else if (EQ (coding_type, Qccl))
9684 {
9685 Lisp_Object valids;
ecec61c1 9686
df7492f9
KH
9687 if (nargs < coding_arg_ccl_max)
9688 goto short_args;
ecec61c1 9689
df7492f9
KH
9690 val = args[coding_arg_ccl_decoder];
9691 CHECK_CCL_PROGRAM (val);
9692 if (VECTORP (val))
9693 val = Fcopy_sequence (val);
9694 ASET (attrs, coding_attr_ccl_decoder, val);
ecec61c1 9695
df7492f9
KH
9696 val = args[coding_arg_ccl_encoder];
9697 CHECK_CCL_PROGRAM (val);
9698 if (VECTORP (val))
9699 val = Fcopy_sequence (val);
9700 ASET (attrs, coding_attr_ccl_encoder, val);
ecec61c1 9701
df7492f9
KH
9702 val = args[coding_arg_ccl_valids];
9703 valids = Fmake_string (make_number (256), make_number (0));
7d7bbefd 9704 for (tail = val; CONSP (tail); tail = XCDR (tail))
df7492f9 9705 {
8dcbea82 9706 int from, to;
ecec61c1 9707
34348bd4 9708 val = XCAR (tail);
df7492f9 9709 if (INTEGERP (val))
8dcbea82 9710 {
d311d28c 9711 if (! (0 <= XINT (val) && XINT (val) <= 255))
8dcbea82 9712 args_out_of_range_3 (val, make_number (0), make_number (255));
d311d28c 9713 from = to = XINT (val);
8dcbea82 9714 }
df7492f9
KH
9715 else
9716 {
df7492f9 9717 CHECK_CONS (val);
8f924df7 9718 CHECK_NATNUM_CAR (val);
d311d28c
PE
9719 CHECK_NUMBER_CDR (val);
9720 if (XINT (XCAR (val)) > 255)
8dcbea82
KH
9721 args_out_of_range_3 (XCAR (val),
9722 make_number (0), make_number (255));
d311d28c
PE
9723 from = XINT (XCAR (val));
9724 if (! (from <= XINT (XCDR (val)) && XINT (XCDR (val)) <= 255))
8dcbea82
KH
9725 args_out_of_range_3 (XCDR (val),
9726 XCAR (val), make_number (255));
d311d28c 9727 to = XINT (XCDR (val));
df7492f9 9728 }
8dcbea82 9729 for (i = from; i <= to; i++)
8f924df7 9730 SSET (valids, i, 1);
df7492f9
KH
9731 }
9732 ASET (attrs, coding_attr_ccl_valids, valids);
4ed46869 9733
df7492f9 9734 category = coding_category_ccl;
55ab7be3 9735 }
df7492f9 9736 else if (EQ (coding_type, Qutf_16))
55ab7be3 9737 {
df7492f9 9738 Lisp_Object bom, endian;
4ed46869 9739
4939150c 9740 ASET (attrs, coding_attr_ascii_compat, Qnil);
4ed46869 9741
df7492f9
KH
9742 if (nargs < coding_arg_utf16_max)
9743 goto short_args;
4ed46869 9744
df7492f9
KH
9745 bom = args[coding_arg_utf16_bom];
9746 if (! NILP (bom) && ! EQ (bom, Qt))
9747 {
9748 CHECK_CONS (bom);
8f924df7
KH
9749 val = XCAR (bom);
9750 CHECK_CODING_SYSTEM (val);
9751 val = XCDR (bom);
9752 CHECK_CODING_SYSTEM (val);
df7492f9 9753 }
a470d443 9754 ASET (attrs, coding_attr_utf_bom, bom);
df7492f9
KH
9755
9756 endian = args[coding_arg_utf16_endian];
b49a1807
KH
9757 CHECK_SYMBOL (endian);
9758 if (NILP (endian))
9759 endian = Qbig;
9760 else if (! EQ (endian, Qbig) && ! EQ (endian, Qlittle))
8f924df7 9761 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian)));
df7492f9
KH
9762 ASET (attrs, coding_attr_utf_16_endian, endian);
9763
9764 category = (CONSP (bom)
9765 ? coding_category_utf_16_auto
9766 : NILP (bom)
b49a1807 9767 ? (EQ (endian, Qbig)
df7492f9
KH
9768 ? coding_category_utf_16_be_nosig
9769 : coding_category_utf_16_le_nosig)
b49a1807 9770 : (EQ (endian, Qbig)
df7492f9
KH
9771 ? coding_category_utf_16_be
9772 : coding_category_utf_16_le));
9773 }
9774 else if (EQ (coding_type, Qiso_2022))
9775 {
9776 Lisp_Object initial, reg_usage, request, flags;
1397dc18 9777
df7492f9
KH
9778 if (nargs < coding_arg_iso2022_max)
9779 goto short_args;
9780
9781 initial = Fcopy_sequence (args[coding_arg_iso2022_initial]);
9782 CHECK_VECTOR (initial);
9783 for (i = 0; i < 4; i++)
9784 {
9785 val = Faref (initial, make_number (i));
9786 if (! NILP (val))
9787 {
584948ac
KH
9788 struct charset *charset;
9789
9790 CHECK_CHARSET_GET_CHARSET (val, charset);
9791 ASET (initial, i, make_number (CHARSET_ID (charset)));
9792 if (i == 0 && CHARSET_ASCII_COMPATIBLE_P (charset))
4939150c 9793 ASET (attrs, coding_attr_ascii_compat, Qt);
df7492f9
KH
9794 }
9795 else
9796 ASET (initial, i, make_number (-1));
9797 }
9798
9799 reg_usage = args[coding_arg_iso2022_reg_usage];
9800 CHECK_CONS (reg_usage);
8f924df7
KH
9801 CHECK_NUMBER_CAR (reg_usage);
9802 CHECK_NUMBER_CDR (reg_usage);
df7492f9
KH
9803
9804 request = Fcopy_sequence (args[coding_arg_iso2022_request]);
7d7bbefd 9805 for (tail = request; CONSP (tail); tail = XCDR (tail))
1397dc18 9806 {
df7492f9 9807 int id;
2735d060 9808 Lisp_Object tmp1;
df7492f9 9809
34348bd4 9810 val = XCAR (tail);
df7492f9 9811 CHECK_CONS (val);
2735d060
PE
9812 tmp1 = XCAR (val);
9813 CHECK_CHARSET_GET_ID (tmp1, id);
8f924df7 9814 CHECK_NATNUM_CDR (val);
df7492f9 9815 if (XINT (XCDR (val)) >= 4)
c2982e87 9816 error ("Invalid graphic register number: %"pI"d", XINT (XCDR (val)));
8f924df7 9817 XSETCAR (val, make_number (id));
1397dc18 9818 }
4ed46869 9819
df7492f9
KH
9820 flags = args[coding_arg_iso2022_flags];
9821 CHECK_NATNUM (flags);
d311d28c 9822 i = XINT (flags) & INT_MAX;
df7492f9 9823 if (EQ (args[coding_arg_charset_list], Qiso_2022))
d311d28c
PE
9824 i |= CODING_ISO_FLAG_FULL_SUPPORT;
9825 flags = make_number (i);
df7492f9
KH
9826
9827 ASET (attrs, coding_attr_iso_initial, initial);
9828 ASET (attrs, coding_attr_iso_usage, reg_usage);
9829 ASET (attrs, coding_attr_iso_request, request);
9830 ASET (attrs, coding_attr_iso_flags, flags);
9831 setup_iso_safe_charsets (attrs);
9832
9833 if (i & CODING_ISO_FLAG_SEVEN_BITS)
9834 category = ((i & (CODING_ISO_FLAG_LOCKING_SHIFT
9835 | CODING_ISO_FLAG_SINGLE_SHIFT))
9836 ? coding_category_iso_7_else
9837 : EQ (args[coding_arg_charset_list], Qiso_2022)
9838 ? coding_category_iso_7
9839 : coding_category_iso_7_tight);
9840 else
9841 {
9842 int id = XINT (AREF (initial, 1));
9843
c6fb6e98 9844 category = (((i & CODING_ISO_FLAG_LOCKING_SHIFT)
df7492f9
KH
9845 || EQ (args[coding_arg_charset_list], Qiso_2022)
9846 || id < 0)
9847 ? coding_category_iso_8_else
9848 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id)) == 1)
9849 ? coding_category_iso_8_1
9850 : coding_category_iso_8_2);
9851 }
0ce7886f
KH
9852 if (category != coding_category_iso_8_1
9853 && category != coding_category_iso_8_2)
4939150c 9854 ASET (attrs, coding_attr_ascii_compat, Qnil);
df7492f9
KH
9855 }
9856 else if (EQ (coding_type, Qemacs_mule))
c28a9453 9857 {
df7492f9
KH
9858 if (EQ (args[coding_arg_charset_list], Qemacs_mule))
9859 ASET (attrs, coding_attr_emacs_mule_full, Qt);
4939150c 9860 ASET (attrs, coding_attr_ascii_compat, Qt);
df7492f9 9861 category = coding_category_emacs_mule;
c28a9453 9862 }
df7492f9 9863 else if (EQ (coding_type, Qshift_jis))
c28a9453 9864 {
df7492f9
KH
9865
9866 struct charset *charset;
9867
7d64c6ad 9868 if (XINT (Flength (charset_list)) != 3
6e07c25f 9869 && XINT (Flength (charset_list)) != 4)
7d64c6ad 9870 error ("There should be three or four charsets");
df7492f9
KH
9871
9872 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
9873 if (CHARSET_DIMENSION (charset) != 1)
9874 error ("Dimension of charset %s is not one",
8f924df7 9875 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
584948ac 9876 if (CHARSET_ASCII_COMPATIBLE_P (charset))
4939150c 9877 ASET (attrs, coding_attr_ascii_compat, Qt);
df7492f9
KH
9878
9879 charset_list = XCDR (charset_list);
9880 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
9881 if (CHARSET_DIMENSION (charset) != 1)
9882 error ("Dimension of charset %s is not one",
8f924df7 9883 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
df7492f9
KH
9884
9885 charset_list = XCDR (charset_list);
9886 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
9887 if (CHARSET_DIMENSION (charset) != 2)
7d64c6ad
KH
9888 error ("Dimension of charset %s is not two",
9889 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
9890
9891 charset_list = XCDR (charset_list);
2b917a06
KH
9892 if (! NILP (charset_list))
9893 {
9894 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
9895 if (CHARSET_DIMENSION (charset) != 2)
9896 error ("Dimension of charset %s is not two",
9897 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
9898 }
df7492f9
KH
9899
9900 category = coding_category_sjis;
9901 Vsjis_coding_system = name;
c28a9453 9902 }
df7492f9
KH
9903 else if (EQ (coding_type, Qbig5))
9904 {
9905 struct charset *charset;
4ed46869 9906
df7492f9
KH
9907 if (XINT (Flength (charset_list)) != 2)
9908 error ("There should be just two charsets");
9909
9910 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
9911 if (CHARSET_DIMENSION (charset) != 1)
9912 error ("Dimension of charset %s is not one",
8f924df7 9913 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
584948ac 9914 if (CHARSET_ASCII_COMPATIBLE_P (charset))
4939150c 9915 ASET (attrs, coding_attr_ascii_compat, Qt);
df7492f9
KH
9916
9917 charset_list = XCDR (charset_list);
9918 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
9919 if (CHARSET_DIMENSION (charset) != 2)
9920 error ("Dimension of charset %s is not two",
8f924df7 9921 SDATA (SYMBOL_NAME (CHARSET_NAME (charset))));
4ed46869 9922
df7492f9
KH
9923 category = coding_category_big5;
9924 Vbig5_coding_system = name;
9925 }
9926 else if (EQ (coding_type, Qraw_text))
c28a9453 9927 {
584948ac 9928 category = coding_category_raw_text;
4939150c 9929 ASET (attrs, coding_attr_ascii_compat, Qt);
c28a9453 9930 }
df7492f9 9931 else if (EQ (coding_type, Qutf_8))
4ed46869 9932 {
a470d443
KH
9933 Lisp_Object bom;
9934
a470d443
KH
9935 if (nargs < coding_arg_utf8_max)
9936 goto short_args;
9937
9938 bom = args[coding_arg_utf8_bom];
9939 if (! NILP (bom) && ! EQ (bom, Qt))
9940 {
9941 CHECK_CONS (bom);
9942 val = XCAR (bom);
9943 CHECK_CODING_SYSTEM (val);
9944 val = XCDR (bom);
9945 CHECK_CODING_SYSTEM (val);
9946 }
9947 ASET (attrs, coding_attr_utf_bom, bom);
0e5317f7 9948 if (NILP (bom))
4939150c 9949 ASET (attrs, coding_attr_ascii_compat, Qt);
a470d443
KH
9950
9951 category = (CONSP (bom) ? coding_category_utf_8_auto
9952 : NILP (bom) ? coding_category_utf_8_nosig
9953 : coding_category_utf_8_sig);
4ed46869 9954 }
df7492f9
KH
9955 else if (EQ (coding_type, Qundecided))
9956 category = coding_category_undecided;
4ed46869 9957 else
df7492f9 9958 error ("Invalid coding system type: %s",
8f924df7 9959 SDATA (SYMBOL_NAME (coding_type)));
4ed46869 9960
4939150c
PE
9961 ASET (attrs, coding_attr_category, make_number (category));
9962 ASET (attrs, coding_attr_plist,
9963 Fcons (QCcategory,
9964 Fcons (AREF (Vcoding_category_table, category),
9965 CODING_ATTR_PLIST (attrs))));
9966 ASET (attrs, coding_attr_plist,
9967 Fcons (QCascii_compatible_p,
9968 Fcons (CODING_ATTR_ASCII_COMPAT (attrs),
9969 CODING_ATTR_PLIST (attrs))));
c4825358 9970
df7492f9
KH
9971 eol_type = args[coding_arg_eol_type];
9972 if (! NILP (eol_type)
9973 && ! EQ (eol_type, Qunix)
9974 && ! EQ (eol_type, Qdos)
9975 && ! EQ (eol_type, Qmac))
9976 error ("Invalid eol-type");
4ed46869 9977
df7492f9 9978 aliases = Fcons (name, Qnil);
4ed46869 9979
df7492f9
KH
9980 if (NILP (eol_type))
9981 {
9982 eol_type = make_subsidiaries (name);
9983 for (i = 0; i < 3; i++)
1397dc18 9984 {
df7492f9
KH
9985 Lisp_Object this_spec, this_name, this_aliases, this_eol_type;
9986
9987 this_name = AREF (eol_type, i);
9988 this_aliases = Fcons (this_name, Qnil);
9989 this_eol_type = (i == 0 ? Qunix : i == 1 ? Qdos : Qmac);
9990 this_spec = Fmake_vector (make_number (3), attrs);
9991 ASET (this_spec, 1, this_aliases);
9992 ASET (this_spec, 2, this_eol_type);
9993 Fputhash (this_name, this_spec, Vcoding_system_hash_table);
9994 Vcoding_system_list = Fcons (this_name, Vcoding_system_list);
583f71ca
KH
9995 val = Fassoc (Fsymbol_name (this_name), Vcoding_system_alist);
9996 if (NILP (val))
9997 Vcoding_system_alist
9998 = Fcons (Fcons (Fsymbol_name (this_name), Qnil),
9999 Vcoding_system_alist);
1397dc18 10000 }
d46c5b12 10001 }
4ed46869 10002
df7492f9
KH
10003 spec_vec = Fmake_vector (make_number (3), attrs);
10004 ASET (spec_vec, 1, aliases);
10005 ASET (spec_vec, 2, eol_type);
48b0f3ae 10006
df7492f9
KH
10007 Fputhash (name, spec_vec, Vcoding_system_hash_table);
10008 Vcoding_system_list = Fcons (name, Vcoding_system_list);
583f71ca
KH
10009 val = Fassoc (Fsymbol_name (name), Vcoding_system_alist);
10010 if (NILP (val))
10011 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil),
10012 Vcoding_system_alist);
48b0f3ae 10013
df7492f9
KH
10014 {
10015 int id = coding_categories[category].id;
48b0f3ae 10016
df7492f9
KH
10017 if (id < 0 || EQ (name, CODING_ID_NAME (id)))
10018 setup_coding_system (name, &coding_categories[category]);
10019 }
48b0f3ae 10020
d46c5b12 10021 return Qnil;
48b0f3ae 10022
df7492f9
KH
10023 short_args:
10024 return Fsignal (Qwrong_number_of_arguments,
10025 Fcons (intern ("define-coding-system-internal"),
10026 make_number (nargs)));
d46c5b12 10027}
4ed46869 10028
d6925f38 10029
a6f87d34
KH
10030DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put,
10031 3, 3, 0,
10032 doc: /* Change value in CODING-SYSTEM's property list PROP to VAL. */)
5842a27b 10033 (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val)
a6f87d34 10034{
3dbe7859 10035 Lisp_Object spec, attrs;
a6f87d34
KH
10036
10037 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec);
10038 attrs = AREF (spec, 0);
10039 if (EQ (prop, QCmnemonic))
10040 {
10041 if (! STRINGP (val))
10042 CHECK_CHARACTER (val);
4939150c 10043 ASET (attrs, coding_attr_mnemonic, val);
a6f87d34 10044 }
2133e2d1 10045 else if (EQ (prop, QCdefault_char))
a6f87d34
KH
10046 {
10047 if (NILP (val))
10048 val = make_number (' ');
10049 else
10050 CHECK_CHARACTER (val);
4939150c 10051 ASET (attrs, coding_attr_default_char, val);
a6f87d34
KH
10052 }
10053 else if (EQ (prop, QCdecode_translation_table))
10054 {
10055 if (! CHAR_TABLE_P (val) && ! CONSP (val))
10056 CHECK_SYMBOL (val);
4939150c 10057 ASET (attrs, coding_attr_decode_tbl, val);
a6f87d34
KH
10058 }
10059 else if (EQ (prop, QCencode_translation_table))
10060 {
10061 if (! CHAR_TABLE_P (val) && ! CONSP (val))
10062 CHECK_SYMBOL (val);
4939150c 10063 ASET (attrs, coding_attr_encode_tbl, val);
a6f87d34
KH
10064 }
10065 else if (EQ (prop, QCpost_read_conversion))
10066 {
10067 CHECK_SYMBOL (val);
4939150c 10068 ASET (attrs, coding_attr_post_read, val);
a6f87d34
KH
10069 }
10070 else if (EQ (prop, QCpre_write_conversion))
10071 {
10072 CHECK_SYMBOL (val);
4939150c 10073 ASET (attrs, coding_attr_pre_write, val);
a6f87d34 10074 }
35befdaa
KH
10075 else if (EQ (prop, QCascii_compatible_p))
10076 {
4939150c 10077 ASET (attrs, coding_attr_ascii_compat, val);
35befdaa 10078 }
a6f87d34 10079
4939150c
PE
10080 ASET (attrs, coding_attr_plist,
10081 Fplist_put (CODING_ATTR_PLIST (attrs), prop, val));
a6f87d34
KH
10082 return val;
10083}
10084
10085
df7492f9
KH
10086DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias,
10087 Sdefine_coding_system_alias, 2, 2, 0,
10088 doc: /* Define ALIAS as an alias for CODING-SYSTEM. */)
5842a27b 10089 (Lisp_Object alias, Lisp_Object coding_system)
66cfb530 10090{
583f71ca 10091 Lisp_Object spec, aliases, eol_type, val;
4ed46869 10092
df7492f9
KH
10093 CHECK_SYMBOL (alias);
10094 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec);
10095 aliases = AREF (spec, 1);
d4a1d553 10096 /* ALIASES should be a list of length more than zero, and the first
d6925f38
KH
10097 element is a base coding system. Append ALIAS at the tail of the
10098 list. */
df7492f9
KH
10099 while (!NILP (XCDR (aliases)))
10100 aliases = XCDR (aliases);
8f924df7 10101 XSETCDR (aliases, Fcons (alias, Qnil));
4ed46869 10102
df7492f9
KH
10103 eol_type = AREF (spec, 2);
10104 if (VECTORP (eol_type))
4ed46869 10105 {
df7492f9
KH
10106 Lisp_Object subsidiaries;
10107 int i;
4ed46869 10108
df7492f9
KH
10109 subsidiaries = make_subsidiaries (alias);
10110 for (i = 0; i < 3; i++)
10111 Fdefine_coding_system_alias (AREF (subsidiaries, i),
10112 AREF (eol_type, i));
4ed46869 10113 }
df7492f9
KH
10114
10115 Fputhash (alias, spec, Vcoding_system_hash_table);
d6925f38 10116 Vcoding_system_list = Fcons (alias, Vcoding_system_list);
583f71ca
KH
10117 val = Fassoc (Fsymbol_name (alias), Vcoding_system_alist);
10118 if (NILP (val))
10119 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (alias), Qnil),
10120 Vcoding_system_alist);
66cfb530 10121
4ed46869
KH
10122 return Qnil;
10123}
10124
a7ca3326 10125DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base,
df7492f9
KH
10126 1, 1, 0,
10127 doc: /* Return the base of CODING-SYSTEM.
da7db224 10128Any alias or subsidiary coding system is not a base coding system. */)
5842a27b 10129 (Lisp_Object coding_system)
d46c5b12 10130{
df7492f9 10131 Lisp_Object spec, attrs;
d46c5b12 10132
df7492f9
KH
10133 if (NILP (coding_system))
10134 return (Qno_conversion);
10135 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec);
10136 attrs = AREF (spec, 0);
10137 return CODING_ATTR_BASE_NAME (attrs);
10138}
1397dc18 10139
df7492f9
KH
10140DEFUN ("coding-system-plist", Fcoding_system_plist, Scoding_system_plist,
10141 1, 1, 0,
10142 doc: "Return the property list of CODING-SYSTEM.")
5842a27b 10143 (Lisp_Object coding_system)
df7492f9
KH
10144{
10145 Lisp_Object spec, attrs;
1397dc18 10146
df7492f9
KH
10147 if (NILP (coding_system))
10148 coding_system = Qno_conversion;
10149 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec);
10150 attrs = AREF (spec, 0);
10151 return CODING_ATTR_PLIST (attrs);
d46c5b12
KH
10152}
10153
df7492f9
KH
10154
10155DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases,
10156 1, 1, 0,
da7db224 10157 doc: /* Return the list of aliases of CODING-SYSTEM. */)
5842a27b 10158 (Lisp_Object coding_system)
66cfb530 10159{
df7492f9 10160 Lisp_Object spec;
84d60297 10161
df7492f9
KH
10162 if (NILP (coding_system))
10163 coding_system = Qno_conversion;
10164 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec);
da7db224 10165 return AREF (spec, 1);
df7492f9 10166}
66cfb530 10167
a7ca3326 10168DEFUN ("coding-system-eol-type", Fcoding_system_eol_type,
df7492f9
KH
10169 Scoding_system_eol_type, 1, 1, 0,
10170 doc: /* Return eol-type of CODING-SYSTEM.
d4a1d553 10171An eol-type is an integer 0, 1, 2, or a vector of coding systems.
66cfb530 10172
df7492f9
KH
10173Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF,
10174and CR respectively.
66cfb530 10175
df7492f9
KH
10176A vector value indicates that a format of end-of-line should be
10177detected automatically. Nth element of the vector is the subsidiary
10178coding system whose eol-type is N. */)
5842a27b 10179 (Lisp_Object coding_system)
6b89e3aa 10180{
df7492f9
KH
10181 Lisp_Object spec, eol_type;
10182 int n;
6b89e3aa 10183
df7492f9
KH
10184 if (NILP (coding_system))
10185 coding_system = Qno_conversion;
10186 if (! CODING_SYSTEM_P (coding_system))
10187 return Qnil;
10188 spec = CODING_SYSTEM_SPEC (coding_system);
10189 eol_type = AREF (spec, 2);
10190 if (VECTORP (eol_type))
10191 return Fcopy_sequence (eol_type);
10192 n = EQ (eol_type, Qunix) ? 0 : EQ (eol_type, Qdos) ? 1 : 2;
10193 return make_number (n);
6b89e3aa
KH
10194}
10195
4ed46869
KH
10196#endif /* emacs */
10197
10198\f
1397dc18 10199/*** 9. Post-amble ***/
4ed46869 10200
dfcf069d 10201void
971de7fb 10202init_coding_once (void)
4ed46869
KH
10203{
10204 int i;
10205
df7492f9
KH
10206 for (i = 0; i < coding_category_max; i++)
10207 {
10208 coding_categories[i].id = -1;
10209 coding_priorities[i] = i;
10210 }
4ed46869
KH
10211
10212 /* ISO2022 specific initialize routine. */
10213 for (i = 0; i < 0x20; i++)
b73bfc1c 10214 iso_code_class[i] = ISO_control_0;
4ed46869
KH
10215 for (i = 0x21; i < 0x7F; i++)
10216 iso_code_class[i] = ISO_graphic_plane_0;
10217 for (i = 0x80; i < 0xA0; i++)
b73bfc1c 10218 iso_code_class[i] = ISO_control_1;
4ed46869
KH
10219 for (i = 0xA1; i < 0xFF; i++)
10220 iso_code_class[i] = ISO_graphic_plane_1;
10221 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F;
10222 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF;
4ed46869
KH
10223 iso_code_class[ISO_CODE_SO] = ISO_shift_out;
10224 iso_code_class[ISO_CODE_SI] = ISO_shift_in;
10225 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7;
10226 iso_code_class[ISO_CODE_ESC] = ISO_escape;
10227 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2;
10228 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3;
10229 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer;
10230
df7492f9
KH
10231 for (i = 0; i < 256; i++)
10232 {
10233 emacs_mule_bytes[i] = 1;
10234 }
7c78e542
KH
10235 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_11] = 3;
10236 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_12] = 3;
10237 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_21] = 4;
10238 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_22] = 4;
e0e989f6
KH
10239}
10240
10241#ifdef emacs
10242
dfcf069d 10243void
971de7fb 10244syms_of_coding (void)
e0e989f6 10245{
df7492f9 10246 staticpro (&Vcoding_system_hash_table);
8f924df7
KH
10247 {
10248 Lisp_Object args[2];
10249 args[0] = QCtest;
10250 args[1] = Qeq;
10251 Vcoding_system_hash_table = Fmake_hash_table (2, args);
10252 }
df7492f9
KH
10253
10254 staticpro (&Vsjis_coding_system);
10255 Vsjis_coding_system = Qnil;
e0e989f6 10256
df7492f9
KH
10257 staticpro (&Vbig5_coding_system);
10258 Vbig5_coding_system = Qnil;
10259
24a73b0a
KH
10260 staticpro (&Vcode_conversion_reused_workbuf);
10261 Vcode_conversion_reused_workbuf = Qnil;
10262
10263 staticpro (&Vcode_conversion_workbuf_name);
2a0213a6 10264 Vcode_conversion_workbuf_name = build_pure_c_string (" *code-conversion-work*");
e0e989f6 10265
24a73b0a 10266 reused_workbuf_in_use = 0;
df7492f9
KH
10267
10268 DEFSYM (Qcharset, "charset");
10269 DEFSYM (Qtarget_idx, "target-idx");
10270 DEFSYM (Qcoding_system_history, "coding-system-history");
bb0115a2
RS
10271 Fset (Qcoding_system_history, Qnil);
10272
9ce27fde 10273 /* Target FILENAME is the first argument. */
e0e989f6 10274 Fput (Qinsert_file_contents, Qtarget_idx, make_number (0));
9ce27fde 10275 /* Target FILENAME is the third argument. */
e0e989f6
KH
10276 Fput (Qwrite_region, Qtarget_idx, make_number (2));
10277
df7492f9 10278 DEFSYM (Qcall_process, "call-process");
9ce27fde 10279 /* Target PROGRAM is the first argument. */
e0e989f6
KH
10280 Fput (Qcall_process, Qtarget_idx, make_number (0));
10281
df7492f9 10282 DEFSYM (Qcall_process_region, "call-process-region");
9ce27fde 10283 /* Target PROGRAM is the third argument. */
e0e989f6
KH
10284 Fput (Qcall_process_region, Qtarget_idx, make_number (2));
10285
df7492f9 10286 DEFSYM (Qstart_process, "start-process");
9ce27fde 10287 /* Target PROGRAM is the third argument. */
e0e989f6
KH
10288 Fput (Qstart_process, Qtarget_idx, make_number (2));
10289
df7492f9 10290 DEFSYM (Qopen_network_stream, "open-network-stream");
9ce27fde 10291 /* Target SERVICE is the fourth argument. */
e0e989f6
KH
10292 Fput (Qopen_network_stream, Qtarget_idx, make_number (3));
10293
df7492f9
KH
10294 DEFSYM (Qcoding_system, "coding-system");
10295 DEFSYM (Qcoding_aliases, "coding-aliases");
4ed46869 10296
df7492f9
KH
10297 DEFSYM (Qeol_type, "eol-type");
10298 DEFSYM (Qunix, "unix");
10299 DEFSYM (Qdos, "dos");
4ed46869 10300
df7492f9
KH
10301 DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system");
10302 DEFSYM (Qpost_read_conversion, "post-read-conversion");
10303 DEFSYM (Qpre_write_conversion, "pre-write-conversion");
10304 DEFSYM (Qdefault_char, "default-char");
10305 DEFSYM (Qundecided, "undecided");
10306 DEFSYM (Qno_conversion, "no-conversion");
10307 DEFSYM (Qraw_text, "raw-text");
4ed46869 10308
df7492f9 10309 DEFSYM (Qiso_2022, "iso-2022");
4ed46869 10310
df7492f9 10311 DEFSYM (Qutf_8, "utf-8");
8f924df7 10312 DEFSYM (Qutf_8_emacs, "utf-8-emacs");
27901516 10313
df7492f9 10314 DEFSYM (Qutf_16, "utf-16");
df7492f9
KH
10315 DEFSYM (Qbig, "big");
10316 DEFSYM (Qlittle, "little");
27901516 10317
df7492f9
KH
10318 DEFSYM (Qshift_jis, "shift-jis");
10319 DEFSYM (Qbig5, "big5");
4ed46869 10320
df7492f9 10321 DEFSYM (Qcoding_system_p, "coding-system-p");
4ed46869 10322
df7492f9 10323 DEFSYM (Qcoding_system_error, "coding-system-error");
4ed46869 10324 Fput (Qcoding_system_error, Qerror_conditions,
3438fe21 10325 listn (CONSTYPE_PURE, 2, Qcoding_system_error, Qerror));
4ed46869 10326 Fput (Qcoding_system_error, Qerror_message,
2a0213a6 10327 build_pure_c_string ("Invalid coding system"));
4ed46869 10328
05e6f5dc
KH
10329 /* Intern this now in case it isn't already done.
10330 Setting this variable twice is harmless.
10331 But don't staticpro it here--that is done in alloc.c. */
d67b4f80 10332 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
70c22245 10333
df7492f9 10334 DEFSYM (Qtranslation_table, "translation-table");
433f7f87 10335 Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (2));
df7492f9
KH
10336 DEFSYM (Qtranslation_table_id, "translation-table-id");
10337 DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode");
10338 DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode");
1397dc18 10339
df7492f9 10340 DEFSYM (Qvalid_codes, "valid-codes");
9ce27fde 10341
df7492f9 10342 DEFSYM (Qemacs_mule, "emacs-mule");
d46c5b12 10343
01378f49 10344 DEFSYM (QCcategory, ":category");
a6f87d34 10345 DEFSYM (QCmnemonic, ":mnemonic");
2133e2d1 10346 DEFSYM (QCdefault_char, ":default-char");
a6f87d34
KH
10347 DEFSYM (QCdecode_translation_table, ":decode-translation-table");
10348 DEFSYM (QCencode_translation_table, ":encode-translation-table");
10349 DEFSYM (QCpost_read_conversion, ":post-read-conversion");
10350 DEFSYM (QCpre_write_conversion, ":pre-write-conversion");
35befdaa 10351 DEFSYM (QCascii_compatible_p, ":ascii-compatible-p");
01378f49 10352
df7492f9
KH
10353 Vcoding_category_table
10354 = Fmake_vector (make_number (coding_category_max), Qnil);
10355 staticpro (&Vcoding_category_table);
10356 /* Followings are target of code detection. */
10357 ASET (Vcoding_category_table, coding_category_iso_7,
d67b4f80 10358 intern_c_string ("coding-category-iso-7"));
df7492f9 10359 ASET (Vcoding_category_table, coding_category_iso_7_tight,
d67b4f80 10360 intern_c_string ("coding-category-iso-7-tight"));
df7492f9 10361 ASET (Vcoding_category_table, coding_category_iso_8_1,
d67b4f80 10362 intern_c_string ("coding-category-iso-8-1"));
df7492f9 10363 ASET (Vcoding_category_table, coding_category_iso_8_2,
d67b4f80 10364 intern_c_string ("coding-category-iso-8-2"));
df7492f9 10365 ASET (Vcoding_category_table, coding_category_iso_7_else,
d67b4f80 10366 intern_c_string ("coding-category-iso-7-else"));
df7492f9 10367 ASET (Vcoding_category_table, coding_category_iso_8_else,
d67b4f80 10368 intern_c_string ("coding-category-iso-8-else"));
a470d443 10369 ASET (Vcoding_category_table, coding_category_utf_8_auto,
d67b4f80 10370 intern_c_string ("coding-category-utf-8-auto"));
a470d443 10371 ASET (Vcoding_category_table, coding_category_utf_8_nosig,
d67b4f80 10372 intern_c_string ("coding-category-utf-8"));
a470d443 10373 ASET (Vcoding_category_table, coding_category_utf_8_sig,
d67b4f80 10374 intern_c_string ("coding-category-utf-8-sig"));
df7492f9 10375 ASET (Vcoding_category_table, coding_category_utf_16_be,
d67b4f80 10376 intern_c_string ("coding-category-utf-16-be"));
ff563fce 10377 ASET (Vcoding_category_table, coding_category_utf_16_auto,
d67b4f80 10378 intern_c_string ("coding-category-utf-16-auto"));
df7492f9 10379 ASET (Vcoding_category_table, coding_category_utf_16_le,
d67b4f80 10380 intern_c_string ("coding-category-utf-16-le"));
df7492f9 10381 ASET (Vcoding_category_table, coding_category_utf_16_be_nosig,
d67b4f80 10382 intern_c_string ("coding-category-utf-16-be-nosig"));
df7492f9 10383 ASET (Vcoding_category_table, coding_category_utf_16_le_nosig,
d67b4f80 10384 intern_c_string ("coding-category-utf-16-le-nosig"));
df7492f9 10385 ASET (Vcoding_category_table, coding_category_charset,
d67b4f80 10386 intern_c_string ("coding-category-charset"));
df7492f9 10387 ASET (Vcoding_category_table, coding_category_sjis,
d67b4f80 10388 intern_c_string ("coding-category-sjis"));
df7492f9 10389 ASET (Vcoding_category_table, coding_category_big5,
d67b4f80 10390 intern_c_string ("coding-category-big5"));
df7492f9 10391 ASET (Vcoding_category_table, coding_category_ccl,
d67b4f80 10392 intern_c_string ("coding-category-ccl"));
df7492f9 10393 ASET (Vcoding_category_table, coding_category_emacs_mule,
d67b4f80 10394 intern_c_string ("coding-category-emacs-mule"));
df7492f9
KH
10395 /* Followings are NOT target of code detection. */
10396 ASET (Vcoding_category_table, coding_category_raw_text,
d67b4f80 10397 intern_c_string ("coding-category-raw-text"));
df7492f9 10398 ASET (Vcoding_category_table, coding_category_undecided,
d67b4f80 10399 intern_c_string ("coding-category-undecided"));
ecf488bc 10400
065e3595
KH
10401 DEFSYM (Qinsufficient_source, "insufficient-source");
10402 DEFSYM (Qinconsistent_eol, "inconsistent-eol");
10403 DEFSYM (Qinvalid_source, "invalid-source");
10404 DEFSYM (Qinterrupted, "interrupted");
10405 DEFSYM (Qinsufficient_memory, "insufficient-memory");
44e8490d 10406 DEFSYM (Qcoding_system_define_form, "coding-system-define-form");
065e3595 10407
4ed46869
KH
10408 defsubr (&Scoding_system_p);
10409 defsubr (&Sread_coding_system);
10410 defsubr (&Sread_non_nil_coding_system);
10411 defsubr (&Scheck_coding_system);
10412 defsubr (&Sdetect_coding_region);
d46c5b12 10413 defsubr (&Sdetect_coding_string);
05e6f5dc 10414 defsubr (&Sfind_coding_systems_region_internal);
068a9dbd 10415 defsubr (&Sunencodable_char_position);
df7492f9 10416 defsubr (&Scheck_coding_systems_region);
4ed46869
KH
10417 defsubr (&Sdecode_coding_region);
10418 defsubr (&Sencode_coding_region);
10419 defsubr (&Sdecode_coding_string);
10420 defsubr (&Sencode_coding_string);
10421 defsubr (&Sdecode_sjis_char);
10422 defsubr (&Sencode_sjis_char);
10423 defsubr (&Sdecode_big5_char);
10424 defsubr (&Sencode_big5_char);
1ba9e4ab 10425 defsubr (&Sset_terminal_coding_system_internal);
c4825358 10426 defsubr (&Sset_safe_terminal_coding_system_internal);
4ed46869 10427 defsubr (&Sterminal_coding_system);
1ba9e4ab 10428 defsubr (&Sset_keyboard_coding_system_internal);
4ed46869 10429 defsubr (&Skeyboard_coding_system);
a5d301df 10430 defsubr (&Sfind_operation_coding_system);
df7492f9 10431 defsubr (&Sset_coding_system_priority);
6b89e3aa 10432 defsubr (&Sdefine_coding_system_internal);
df7492f9 10433 defsubr (&Sdefine_coding_system_alias);
a6f87d34 10434 defsubr (&Scoding_system_put);
df7492f9
KH
10435 defsubr (&Scoding_system_base);
10436 defsubr (&Scoding_system_plist);
10437 defsubr (&Scoding_system_aliases);
10438 defsubr (&Scoding_system_eol_type);
10439 defsubr (&Scoding_system_priority_list);
4ed46869 10440
29208e82 10441 DEFVAR_LISP ("coding-system-list", Vcoding_system_list,
48b0f3ae
PJ
10442 doc: /* List of coding systems.
10443
10444Do not alter the value of this variable manually. This variable should be
df7492f9 10445updated by the functions `define-coding-system' and
48b0f3ae 10446`define-coding-system-alias'. */);
4608c386
KH
10447 Vcoding_system_list = Qnil;
10448
29208e82 10449 DEFVAR_LISP ("coding-system-alist", Vcoding_system_alist,
48b0f3ae
PJ
10450 doc: /* Alist of coding system names.
10451Each element is one element list of coding system name.
446dcd75 10452This variable is given to `completing-read' as COLLECTION argument.
48b0f3ae
PJ
10453
10454Do not alter the value of this variable manually. This variable should be
10455updated by the functions `make-coding-system' and
10456`define-coding-system-alias'. */);
4608c386
KH
10457 Vcoding_system_alist = Qnil;
10458
29208e82 10459 DEFVAR_LISP ("coding-category-list", Vcoding_category_list,
48b0f3ae
PJ
10460 doc: /* List of coding-categories (symbols) ordered by priority.
10461
10462On detecting a coding system, Emacs tries code detection algorithms
10463associated with each coding-category one by one in this order. When
10464one algorithm agrees with a byte sequence of source text, the coding
0ec31faf
KH
10465system bound to the corresponding coding-category is selected.
10466
448e17d6 10467Don't modify this variable directly, but use `set-coding-system-priority'. */);
4ed46869
KH
10468 {
10469 int i;
10470
10471 Vcoding_category_list = Qnil;
df7492f9 10472 for (i = coding_category_max - 1; i >= 0; i--)
4ed46869 10473 Vcoding_category_list
28be1ada 10474 = Fcons (AREF (Vcoding_category_table, i),
d46c5b12 10475 Vcoding_category_list);
4ed46869
KH
10476 }
10477
29208e82 10478 DEFVAR_LISP ("coding-system-for-read", Vcoding_system_for_read,
48b0f3ae
PJ
10479 doc: /* Specify the coding system for read operations.
10480It is useful to bind this variable with `let', but do not set it globally.
10481If the value is a coding system, it is used for decoding on read operation.
446dcd75
JB
10482If not, an appropriate element is used from one of the coding system alists.
10483There are three such tables: `file-coding-system-alist',
48b0f3ae 10484`process-coding-system-alist', and `network-coding-system-alist'. */);
4ed46869
KH
10485 Vcoding_system_for_read = Qnil;
10486
29208e82 10487 DEFVAR_LISP ("coding-system-for-write", Vcoding_system_for_write,
48b0f3ae
PJ
10488 doc: /* Specify the coding system for write operations.
10489Programs bind this variable with `let', but you should not set it globally.
10490If the value is a coding system, it is used for encoding of output,
10491when writing it to a file and when sending it to a file or subprocess.
10492
10493If this does not specify a coding system, an appropriate element
446dcd75
JB
10494is used from one of the coding system alists.
10495There are three such tables: `file-coding-system-alist',
48b0f3ae
PJ
10496`process-coding-system-alist', and `network-coding-system-alist'.
10497For output to files, if the above procedure does not specify a coding system,
10498the value of `buffer-file-coding-system' is used. */);
4ed46869
KH
10499 Vcoding_system_for_write = Qnil;
10500
29208e82 10501 DEFVAR_LISP ("last-coding-system-used", Vlast_coding_system_used,
df7492f9
KH
10502 doc: /*
10503Coding system used in the latest file or process I/O. */);
4ed46869
KH
10504 Vlast_coding_system_used = Qnil;
10505
29208e82 10506 DEFVAR_LISP ("last-code-conversion-error", Vlast_code_conversion_error,
065e3595
KH
10507 doc: /*
10508Error status of the last code conversion.
10509
10510When an error was detected in the last code conversion, this variable
10511is set to one of the following symbols.
10512 `insufficient-source'
10513 `inconsistent-eol'
10514 `invalid-source'
10515 `interrupted'
10516 `insufficient-memory'
10517When no error was detected, the value doesn't change. So, to check
10518the error status of a code conversion by this variable, you must
10519explicitly set this variable to nil before performing code
10520conversion. */);
10521 Vlast_code_conversion_error = Qnil;
10522
29208e82 10523 DEFVAR_BOOL ("inhibit-eol-conversion", inhibit_eol_conversion,
df7492f9
KH
10524 doc: /*
10525*Non-nil means always inhibit code conversion of end-of-line format.
48b0f3ae
PJ
10526See info node `Coding Systems' and info node `Text and Binary' concerning
10527such conversion. */);
9ce27fde
KH
10528 inhibit_eol_conversion = 0;
10529
29208e82 10530 DEFVAR_BOOL ("inherit-process-coding-system", inherit_process_coding_system,
df7492f9
KH
10531 doc: /*
10532Non-nil means process buffer inherits coding system of process output.
48b0f3ae
PJ
10533Bind it to t if the process output is to be treated as if it were a file
10534read from some filesystem. */);
ed29121d
EZ
10535 inherit_process_coding_system = 0;
10536
29208e82 10537 DEFVAR_LISP ("file-coding-system-alist", Vfile_coding_system_alist,
df7492f9
KH
10538 doc: /*
10539Alist to decide a coding system to use for a file I/O operation.
48b0f3ae
PJ
10540The format is ((PATTERN . VAL) ...),
10541where PATTERN is a regular expression matching a file name,
10542VAL is a coding system, a cons of coding systems, or a function symbol.
10543If VAL is a coding system, it is used for both decoding and encoding
10544the file contents.
10545If VAL is a cons of coding systems, the car part is used for decoding,
10546and the cdr part is used for encoding.
10547If VAL is a function symbol, the function must return a coding system
2c53e699
KH
10548or a cons of coding systems which are used as above. The function is
10549called with an argument that is a list of the arguments with which
5a0bbd9a
KH
10550`find-operation-coding-system' was called. If the function can't decide
10551a coding system, it can return `undecided' so that the normal
10552code-detection is performed.
48b0f3ae
PJ
10553
10554See also the function `find-operation-coding-system'
10555and the variable `auto-coding-alist'. */);
02ba4723
KH
10556 Vfile_coding_system_alist = Qnil;
10557
29208e82 10558 DEFVAR_LISP ("process-coding-system-alist", Vprocess_coding_system_alist,
df7492f9
KH
10559 doc: /*
10560Alist to decide a coding system to use for a process I/O operation.
48b0f3ae
PJ
10561The format is ((PATTERN . VAL) ...),
10562where PATTERN is a regular expression matching a program name,
10563VAL is a coding system, a cons of coding systems, or a function symbol.
10564If VAL is a coding system, it is used for both decoding what received
10565from the program and encoding what sent to the program.
10566If VAL is a cons of coding systems, the car part is used for decoding,
10567and the cdr part is used for encoding.
10568If VAL is a function symbol, the function must return a coding system
10569or a cons of coding systems which are used as above.
10570
10571See also the function `find-operation-coding-system'. */);
02ba4723
KH
10572 Vprocess_coding_system_alist = Qnil;
10573
29208e82 10574 DEFVAR_LISP ("network-coding-system-alist", Vnetwork_coding_system_alist,
df7492f9
KH
10575 doc: /*
10576Alist to decide a coding system to use for a network I/O operation.
48b0f3ae
PJ
10577The format is ((PATTERN . VAL) ...),
10578where PATTERN is a regular expression matching a network service name
10579or is a port number to connect to,
10580VAL is a coding system, a cons of coding systems, or a function symbol.
10581If VAL is a coding system, it is used for both decoding what received
10582from the network stream and encoding what sent to the network stream.
10583If VAL is a cons of coding systems, the car part is used for decoding,
10584and the cdr part is used for encoding.
10585If VAL is a function symbol, the function must return a coding system
10586or a cons of coding systems which are used as above.
10587
10588See also the function `find-operation-coding-system'. */);
02ba4723 10589 Vnetwork_coding_system_alist = Qnil;
4ed46869 10590
29208e82 10591 DEFVAR_LISP ("locale-coding-system", Vlocale_coding_system,
75205970
RS
10592 doc: /* Coding system to use with system messages.
10593Also used for decoding keyboard input on X Window system. */);
68c45bf0
PE
10594 Vlocale_coding_system = Qnil;
10595
005f0d35 10596 /* The eol mnemonics are reset in startup.el system-dependently. */
29208e82 10597 DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix,
df7492f9
KH
10598 doc: /*
10599*String displayed in mode line for UNIX-like (LF) end-of-line format. */);
2a0213a6 10600 eol_mnemonic_unix = build_pure_c_string (":");
4ed46869 10601
29208e82 10602 DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos,
df7492f9
KH
10603 doc: /*
10604*String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
2a0213a6 10605 eol_mnemonic_dos = build_pure_c_string ("\\");
4ed46869 10606
29208e82 10607 DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac,
df7492f9
KH
10608 doc: /*
10609*String displayed in mode line for MAC-like (CR) end-of-line format. */);
2a0213a6 10610 eol_mnemonic_mac = build_pure_c_string ("/");
4ed46869 10611
29208e82 10612 DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided,
df7492f9
KH
10613 doc: /*
10614*String displayed in mode line when end-of-line format is not yet determined. */);
2a0213a6 10615 eol_mnemonic_undecided = build_pure_c_string (":");
4ed46869 10616
29208e82 10617 DEFVAR_LISP ("enable-character-translation", Venable_character_translation,
df7492f9
KH
10618 doc: /*
10619*Non-nil enables character translation while encoding and decoding. */);
84fbb8a0 10620 Venable_character_translation = Qt;
bdd9fb48 10621
f967223b 10622 DEFVAR_LISP ("standard-translation-table-for-decode",
29208e82 10623 Vstandard_translation_table_for_decode,
48b0f3ae 10624 doc: /* Table for translating characters while decoding. */);
f967223b 10625 Vstandard_translation_table_for_decode = Qnil;
bdd9fb48 10626
f967223b 10627 DEFVAR_LISP ("standard-translation-table-for-encode",
29208e82 10628 Vstandard_translation_table_for_encode,
48b0f3ae 10629 doc: /* Table for translating characters while encoding. */);
f967223b 10630 Vstandard_translation_table_for_encode = Qnil;
4ed46869 10631
29208e82 10632 DEFVAR_LISP ("charset-revision-table", Vcharset_revision_table,
48b0f3ae
PJ
10633 doc: /* Alist of charsets vs revision numbers.
10634While encoding, if a charset (car part of an element) is found,
df7492f9
KH
10635designate it with the escape sequence identifying revision (cdr part
10636of the element). */);
10637 Vcharset_revision_table = Qnil;
02ba4723
KH
10638
10639 DEFVAR_LISP ("default-process-coding-system",
29208e82 10640 Vdefault_process_coding_system,
48b0f3ae
PJ
10641 doc: /* Cons of coding systems used for process I/O by default.
10642The car part is used for decoding a process output,
10643the cdr part is used for encoding a text to be sent to a process. */);
02ba4723 10644 Vdefault_process_coding_system = Qnil;
c4825358 10645
29208e82 10646 DEFVAR_LISP ("latin-extra-code-table", Vlatin_extra_code_table,
df7492f9
KH
10647 doc: /*
10648Table of extra Latin codes in the range 128..159 (inclusive).
48b0f3ae
PJ
10649This is a vector of length 256.
10650If Nth element is non-nil, the existence of code N in a file
10651\(or output of subprocess) doesn't prevent it to be detected as
10652a coding system of ISO 2022 variant which has a flag
10653`accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
10654or reading output of a subprocess.
446dcd75 10655Only 128th through 159th elements have a meaning. */);
3f003981 10656 Vlatin_extra_code_table = Fmake_vector (make_number (256), Qnil);
d46c5b12
KH
10657
10658 DEFVAR_LISP ("select-safe-coding-system-function",
29208e82 10659 Vselect_safe_coding_system_function,
df7492f9
KH
10660 doc: /*
10661Function to call to select safe coding system for encoding a text.
48b0f3ae
PJ
10662
10663If set, this function is called to force a user to select a proper
10664coding system which can encode the text in the case that a default
fdecf907
GM
10665coding system used in each operation can't encode the text. The
10666function should take care that the buffer is not modified while
10667the coding system is being selected.
48b0f3ae
PJ
10668
10669The default value is `select-safe-coding-system' (which see). */);
d46c5b12
KH
10670 Vselect_safe_coding_system_function = Qnil;
10671
5d5bf4d8 10672 DEFVAR_BOOL ("coding-system-require-warning",
29208e82 10673 coding_system_require_warning,
5d5bf4d8 10674 doc: /* Internal use only.
6b89e3aa
KH
10675If non-nil, on writing a file, `select-safe-coding-system-function' is
10676called even if `coding-system-for-write' is non-nil. The command
10677`universal-coding-system-argument' binds this variable to t temporarily. */);
5d5bf4d8
KH
10678 coding_system_require_warning = 0;
10679
10680
22ab2303 10681 DEFVAR_BOOL ("inhibit-iso-escape-detection",
29208e82 10682 inhibit_iso_escape_detection,
df7492f9 10683 doc: /*
97b1b294 10684If non-nil, Emacs ignores ISO-2022 escape sequences during code detection.
48b0f3ae 10685
97b1b294
EZ
10686When Emacs reads text, it tries to detect how the text is encoded.
10687This code detection is sensitive to escape sequences. If Emacs sees
10688a valid ISO-2022 escape sequence, it assumes the text is encoded in one
10689of the ISO2022 encodings, and decodes text by the corresponding coding
10690system (e.g. `iso-2022-7bit').
48b0f3ae
PJ
10691
10692However, there may be a case that you want to read escape sequences in
10693a file as is. In such a case, you can set this variable to non-nil.
97b1b294
EZ
10694Then the code detection will ignore any escape sequences, and no text is
10695detected as encoded in some ISO-2022 encoding. The result is that all
48b0f3ae
PJ
10696escape sequences become visible in a buffer.
10697
10698The default value is nil, and it is strongly recommended not to change
10699it. That is because many Emacs Lisp source files that contain
10700non-ASCII characters are encoded by the coding system `iso-2022-7bit'
10701in Emacs's distribution, and they won't be decoded correctly on
10702reading if you suppress escape sequence detection.
10703
10704The other way to read escape sequences in a file without decoding is
97b1b294 10705to explicitly specify some coding system that doesn't use ISO-2022
48b0f3ae 10706escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argument]. */);
74383408 10707 inhibit_iso_escape_detection = 0;
002fdb44 10708
97b1b294 10709 DEFVAR_BOOL ("inhibit-null-byte-detection",
29208e82 10710 inhibit_null_byte_detection,
97b1b294
EZ
10711 doc: /* If non-nil, Emacs ignores null bytes on code detection.
10712By default, Emacs treats it as binary data, and does not attempt to
10713decode it. The effect is as if you specified `no-conversion' for
10714reading that text.
10715
10716Set this to non-nil when a regular text happens to include null bytes.
10717Examples are Index nodes of Info files and null-byte delimited output
10718from GNU Find and GNU Grep. Emacs will then ignore the null bytes and
10719decode text as usual. */);
10720 inhibit_null_byte_detection = 0;
10721
29208e82 10722 DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input,
15c8f9d1 10723 doc: /* Char table for translating self-inserting characters.
446dcd75 10724This is applied to the result of input methods, not their input.
8434d0b8
EZ
10725See also `keyboard-translate-table'.
10726
10727Use of this variable for character code unification was rendered
10728obsolete in Emacs 23.1 and later, since Unicode is now the basis of
10729internal character representation. */);
002fdb44 10730 Vtranslation_table_for_input = Qnil;
8f924df7 10731
2c78b7e1
KH
10732 {
10733 Lisp_Object args[coding_arg_max];
8f924df7 10734 Lisp_Object plist[16];
2c78b7e1
KH
10735 int i;
10736
10737 for (i = 0; i < coding_arg_max; i++)
10738 args[i] = Qnil;
10739
d67b4f80 10740 plist[0] = intern_c_string (":name");
2c78b7e1 10741 plist[1] = args[coding_arg_name] = Qno_conversion;
d67b4f80 10742 plist[2] = intern_c_string (":mnemonic");
2c78b7e1 10743 plist[3] = args[coding_arg_mnemonic] = make_number ('=');
d67b4f80 10744 plist[4] = intern_c_string (":coding-type");
2c78b7e1 10745 plist[5] = args[coding_arg_coding_type] = Qraw_text;
d67b4f80 10746 plist[6] = intern_c_string (":ascii-compatible-p");
2c78b7e1 10747 plist[7] = args[coding_arg_ascii_compatible_p] = Qt;
d67b4f80 10748 plist[8] = intern_c_string (":default-char");
2c78b7e1 10749 plist[9] = args[coding_arg_default_char] = make_number (0);
d67b4f80 10750 plist[10] = intern_c_string (":for-unibyte");
8f924df7 10751 plist[11] = args[coding_arg_for_unibyte] = Qt;
d67b4f80 10752 plist[12] = intern_c_string (":docstring");
2a0213a6 10753 plist[13] = build_pure_c_string ("Do no conversion.\n\
2c78b7e1
KH
10754\n\
10755When you visit a file with this coding, the file is read into a\n\
10756unibyte buffer as is, thus each byte of a file is treated as a\n\
10757character.");
d67b4f80 10758 plist[14] = intern_c_string (":eol-type");
8f924df7
KH
10759 plist[15] = args[coding_arg_eol_type] = Qunix;
10760 args[coding_arg_plist] = Flist (16, plist);
2c78b7e1 10761 Fdefine_coding_system_internal (coding_arg_max, args);
ae6f73fa
KH
10762
10763 plist[1] = args[coding_arg_name] = Qundecided;
10764 plist[3] = args[coding_arg_mnemonic] = make_number ('-');
10765 plist[5] = args[coding_arg_coding_type] = Qundecided;
10766 /* This is already set.
35befdaa 10767 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */
d67b4f80 10768 plist[8] = intern_c_string (":charset-list");
ae6f73fa
KH
10769 plist[9] = args[coding_arg_charset_list] = Fcons (Qascii, Qnil);
10770 plist[11] = args[coding_arg_for_unibyte] = Qnil;
2a0213a6 10771 plist[13] = build_pure_c_string ("No conversion on encoding, automatic conversion on decoding.");
ae6f73fa
KH
10772 plist[15] = args[coding_arg_eol_type] = Qnil;
10773 args[coding_arg_plist] = Flist (16, plist);
10774 Fdefine_coding_system_internal (coding_arg_max, args);
2c78b7e1
KH
10775 }
10776
2c78b7e1 10777 setup_coding_system (Qno_conversion, &safe_terminal_coding);
ff563fce
KH
10778
10779 {
10780 int i;
10781
10782 for (i = 0; i < coding_category_max; i++)
10783 Fset (AREF (Vcoding_category_table, i), Qno_conversion);
10784 }
1a4990fb 10785#if defined (DOS_NT)
fcbcfb64
KH
10786 system_eol_type = Qdos;
10787#else
10788 system_eol_type = Qunix;
10789#endif
10790 staticpro (&system_eol_type);
4ed46869
KH
10791}
10792
68c45bf0 10793char *
971de7fb 10794emacs_strerror (int error_number)
68c45bf0
PE
10795{
10796 char *str;
10797
ca9c0567 10798 synchronize_system_messages_locale ();
68c45bf0
PE
10799 str = strerror (error_number);
10800
10801 if (! NILP (Vlocale_coding_system))
10802 {
10803 Lisp_Object dec = code_convert_string_norecord (build_string (str),
10804 Vlocale_coding_system,
10805 0);
51b59d79 10806 str = SSDATA (dec);
68c45bf0
PE
10807 }
10808
10809 return str;
10810}
10811
4ed46869 10812#endif /* emacs */