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