1 /* Coding system handler (conversion, detection, etc).
2 Copyright (C) 2001-2015 Free Software Foundation, Inc.
3 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H14PRO021
8 National Institute of Advanced Industrial Science and Technology (AIST)
9 Registration Number H13PRO009
11 This file is part of GNU Emacs.
13 GNU Emacs is free software: you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
18 GNU Emacs is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 /*** TABLE OF CONTENTS ***
30 2. Emacs' internal format (emacs-utf-8) handlers
33 5. Charset-base coding systems handlers
34 6. emacs-mule (old Emacs' internal format) handlers
36 8. Shift-JIS and BIG5 handlers
38 10. C library functions
39 11. Emacs Lisp library functions
44 /*** 0. General comments ***
49 A coding system is an object for an encoding mechanism that contains
50 information about how to convert byte sequences to character
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
58 In Emacs Lisp, a coding system is represented by a Lisp symbol. On
59 the C level, a coding system is represented by a vector of attributes
60 stored in the hash table Vcharset_hash_table. The conversion from
61 coding system symbol to attributes vector is done by looking up
62 Vcharset_hash_table by the symbol.
64 Coding systems are classified into the following types depending on
65 the encoding mechanism. Here's a brief description of the types.
71 o Charset-base coding system
73 A coding system defined by one or more (coded) character sets.
74 Decoding and encoding are done by a code converter defined for each
77 o Old Emacs internal format (emacs-mule)
79 The coding system adopted by old versions of Emacs (20 and 21).
81 o ISO2022-base coding system
83 The most famous coding system for multiple character sets. X's
84 Compound Text, various EUCs (Extended Unix Code), and coding systems
85 used in the Internet communication such as ISO-2022-JP are all
88 o SJIS (or Shift-JIS or MS-Kanji-Code)
90 A coding system to encode character sets: ASCII, JISX0201, and
91 JISX0208. Widely used for PC's in Japan. Details are described in
96 A coding system to encode character sets: ASCII and Big5. Widely
97 used for Chinese (mainly in Taiwan and Hong Kong). Details are
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.
104 If a user wants to decode/encode text encoded in a coding system
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.
111 A coding system for text containing raw eight-bit data. Emacs
112 treats each byte of source text as a character (except for
113 end-of-line conversion).
117 Like raw text, but don't do end-of-line conversion.
122 How text end-of-line is encoded depends on operating system. For
123 instance, Unix's format is just one byte of LF (line-feed) code,
124 whereas DOS's format is two-byte sequence of `carriage-return' and
125 `line-feed' codes. MacOS's format is usually one byte of
128 Since text character encoding and end-of-line encoding are
129 independent, any coding system described above can take any format
130 of end-of-line (except for no-conversion).
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
137 conversion (e.g. the location of source and destination data).
144 /*** GENERAL NOTES on `detect_coding_XXX ()' functions ***
146 These functions check if a byte sequence specified as a source in
147 CODING conforms to the format of XXX, and update the members of
150 Return true if the byte sequence conforms to XXX.
152 Below is the template of these functions. */
156 detect_coding_XXX (struct coding_system
*coding
,
157 struct coding_detection_info
*detect_info
)
159 const unsigned char *src
= coding
->source
;
160 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
161 bool multibytep
= coding
->src_multibyte
;
162 ptrdiff_t consumed_chars
= 0;
168 /* Get one byte from the source. If the source is exhausted, jump
169 to no_more_source:. */
172 if (! __C_conforms_to_XXX___ (c
))
174 if (! __C_strongly_suggests_XXX__ (c
))
175 found
= CATEGORY_MASK_XXX
;
177 /* The byte sequence is invalid for XXX. */
178 detect_info
->rejected
|= CATEGORY_MASK_XXX
;
182 /* The source exhausted successfully. */
183 detect_info
->found
|= found
;
188 /*** GENERAL NOTES on `decode_coding_XXX ()' functions ***
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;
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.
200 Below is the template of these functions. */
204 decode_coding_XXXX (struct coding_system
*coding
)
206 const unsigned char *src
= coding
->source
+ coding
->consumed
;
207 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
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. */
211 const unsigned char *src_base
;
212 /* A buffer to produce decoded characters. */
213 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
214 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
215 bool multibytep
= coding
->src_multibyte
;
220 if (charbuf
< charbuf_end
)
221 /* No more room to produce a decoded character. */
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
;
242 /*** GENERAL NOTES on `encode_coding_XXX ()' functions ***
244 These functions encode SRC_BYTES length text at SOURCE of Emacs'
245 internal multibyte format by CODING. The resulting byte sequence
246 goes to a place pointed to by DESTINATION, the length of which
247 should not exceed DST_BYTES.
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.
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.
258 Below is a template of these functions. */
261 encode_coding_XXX (struct coding_system
*coding
)
263 bool 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 ptrdiff_t produced_chars
= 0;
271 for (; charbuf
< charbuf_end
&& dst
< adjusted_dst_end
; charbuf
++)
274 /* Encode C into DST, and increment DST. */
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
;
284 /*** 1. Preamble ***/
291 #endif /* HAVE_WCHAR_H */
294 #include "character.h"
298 #include "composite.h"
302 #include "termhooks.h"
304 Lisp_Object Vcoding_system_hash_table
;
306 /* Format of end-of-line decided by system. This is Qunix on
307 Unix and Mac, Qdos on DOS/Windows.
308 This has an effect only for external encoding (i.e. for output to
309 file and process), not for in-buffer or Lisp string encoding. */
310 static Lisp_Object system_eol_type
;
314 /* Coding-systems are handed between Emacs Lisp programs and C internal
315 routines by the following three variables. */
316 /* Coding system to be used to encode text for terminal display when
317 terminal coding system is nil. */
318 struct coding_system safe_terminal_coding
;
322 /* Two special coding systems. */
323 static Lisp_Object Vsjis_coding_system
;
324 static Lisp_Object Vbig5_coding_system
;
326 /* ISO2022 section */
328 #define CODING_ISO_INITIAL(coding, reg) \
329 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \
330 coding_attr_iso_initial), \
334 #define CODING_ISO_REQUEST(coding, charset_id) \
335 (((charset_id) <= (coding)->max_charset_id \
336 ? ((coding)->safe_charsets[charset_id] != 255 \
337 ? (coding)->safe_charsets[charset_id] \
342 #define CODING_ISO_FLAGS(coding) \
343 ((coding)->spec.iso_2022.flags)
344 #define CODING_ISO_DESIGNATION(coding, reg) \
345 ((coding)->spec.iso_2022.current_designation[reg])
346 #define CODING_ISO_INVOCATION(coding, plane) \
347 ((coding)->spec.iso_2022.current_invocation[plane])
348 #define CODING_ISO_SINGLE_SHIFTING(coding) \
349 ((coding)->spec.iso_2022.single_shifting)
350 #define CODING_ISO_BOL(coding) \
351 ((coding)->spec.iso_2022.bol)
352 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \
353 (CODING_ISO_INVOCATION (coding, plane) < 0 ? -1 \
354 : CODING_ISO_DESIGNATION (coding, CODING_ISO_INVOCATION (coding, plane)))
355 #define CODING_ISO_CMP_STATUS(coding) \
356 (&(coding)->spec.iso_2022.cmp_status)
357 #define CODING_ISO_EXTSEGMENT_LEN(coding) \
358 ((coding)->spec.iso_2022.ctext_extended_segment_len)
359 #define CODING_ISO_EMBEDDED_UTF_8(coding) \
360 ((coding)->spec.iso_2022.embedded_utf_8)
362 /* Control characters of ISO2022. */
363 /* code */ /* function */
364 #define ISO_CODE_SO 0x0E /* shift-out */
365 #define ISO_CODE_SI 0x0F /* shift-in */
366 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
367 #define ISO_CODE_ESC 0x1B /* escape */
368 #define ISO_CODE_SS2 0x8E /* single-shift-2 */
369 #define ISO_CODE_SS3 0x8F /* single-shift-3 */
370 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */
372 /* All code (1-byte) of ISO2022 is classified into one of the
374 enum iso_code_class_type
376 ISO_control_0
, /* Control codes in the range
377 0x00..0x1F and 0x7F, except for the
378 following 5 codes. */
379 ISO_shift_out
, /* ISO_CODE_SO (0x0E) */
380 ISO_shift_in
, /* ISO_CODE_SI (0x0F) */
381 ISO_single_shift_2_7
, /* ISO_CODE_SS2_7 (0x19) */
382 ISO_escape
, /* ISO_CODE_ESC (0x1B) */
383 ISO_control_1
, /* Control codes in the range
384 0x80..0x9F, except for the
385 following 3 codes. */
386 ISO_single_shift_2
, /* ISO_CODE_SS2 (0x8E) */
387 ISO_single_shift_3
, /* ISO_CODE_SS3 (0x8F) */
388 ISO_control_sequence_introducer
, /* ISO_CODE_CSI (0x9B) */
389 ISO_0x20_or_0x7F
, /* Codes of the values 0x20 or 0x7F. */
390 ISO_graphic_plane_0
, /* Graphic codes in the range 0x21..0x7E. */
391 ISO_0xA0_or_0xFF
, /* Codes of the values 0xA0 or 0xFF. */
392 ISO_graphic_plane_1
/* Graphic codes in the range 0xA1..0xFE. */
395 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the
396 `iso-flags' attribute of an iso2022 coding system. */
398 /* If set, produce long-form designation sequence (e.g. ESC $ ( A)
399 instead of the correct short-form sequence (e.g. ESC $ A). */
400 #define CODING_ISO_FLAG_LONG_FORM 0x0001
402 /* If set, reset graphic planes and registers at end-of-line to the
404 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002
406 /* If set, reset graphic planes and registers before any control
407 characters to the initial state. */
408 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004
410 /* If set, encode by 7-bit environment. */
411 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008
413 /* If set, use locking-shift function. */
414 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010
416 /* If set, use single-shift function. Overwrite
417 CODING_ISO_FLAG_LOCKING_SHIFT. */
418 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020
420 /* If set, use designation escape sequence. */
421 #define CODING_ISO_FLAG_DESIGNATION 0x0040
423 /* If set, produce revision number sequence. */
424 #define CODING_ISO_FLAG_REVISION 0x0080
426 /* If set, produce ISO6429's direction specifying sequence. */
427 #define CODING_ISO_FLAG_DIRECTION 0x0100
429 /* If set, assume designation states are reset at beginning of line on
431 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200
433 /* If set, designation sequence should be placed at beginning of line
435 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400
437 /* If set, do not encode unsafe characters on output. */
438 #define CODING_ISO_FLAG_SAFE 0x0800
440 /* If set, extra latin codes (128..159) are accepted as a valid code
442 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000
444 #define CODING_ISO_FLAG_COMPOSITION 0x2000
446 /* #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 */
448 #define CODING_ISO_FLAG_USE_ROMAN 0x8000
450 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000
452 #define CODING_ISO_FLAG_LEVEL_4 0x20000
454 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000
456 /* A character to be produced on output if encoding of the original
457 character is prohibited by CODING_ISO_FLAG_SAFE. */
458 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?'
461 #define CODING_UTF_8_BOM(coding) \
462 ((coding)->spec.utf_8_bom)
465 #define CODING_UTF_16_BOM(coding) \
466 ((coding)->spec.utf_16.bom)
468 #define CODING_UTF_16_ENDIAN(coding) \
469 ((coding)->spec.utf_16.endian)
471 #define CODING_UTF_16_SURROGATE(coding) \
472 ((coding)->spec.utf_16.surrogate)
476 #define CODING_CCL_DECODER(coding) \
477 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder)
478 #define CODING_CCL_ENCODER(coding) \
479 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder)
480 #define CODING_CCL_VALIDS(coding) \
481 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)))
483 /* Index for each coding category in `coding_categories' */
487 coding_category_iso_7
,
488 coding_category_iso_7_tight
,
489 coding_category_iso_8_1
,
490 coding_category_iso_8_2
,
491 coding_category_iso_7_else
,
492 coding_category_iso_8_else
,
493 coding_category_utf_8_auto
,
494 coding_category_utf_8_nosig
,
495 coding_category_utf_8_sig
,
496 coding_category_utf_16_auto
,
497 coding_category_utf_16_be
,
498 coding_category_utf_16_le
,
499 coding_category_utf_16_be_nosig
,
500 coding_category_utf_16_le_nosig
,
501 coding_category_charset
,
502 coding_category_sjis
,
503 coding_category_big5
,
505 coding_category_emacs_mule
,
506 /* All above are targets of code detection. */
507 coding_category_raw_text
,
508 coding_category_undecided
,
512 /* Definitions of flag bits used in detect_coding_XXXX. */
513 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7)
514 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight)
515 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1)
516 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2)
517 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else)
518 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else)
519 #define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto)
520 #define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig)
521 #define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig)
522 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto)
523 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be)
524 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le)
525 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig)
526 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig)
527 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset)
528 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis)
529 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5)
530 #define CATEGORY_MASK_CCL (1 << coding_category_ccl)
531 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule)
532 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text)
534 /* This value is returned if detect_coding_mask () find nothing other
535 than ASCII characters. */
536 #define CATEGORY_MASK_ANY \
537 (CATEGORY_MASK_ISO_7 \
538 | CATEGORY_MASK_ISO_7_TIGHT \
539 | CATEGORY_MASK_ISO_8_1 \
540 | CATEGORY_MASK_ISO_8_2 \
541 | CATEGORY_MASK_ISO_7_ELSE \
542 | CATEGORY_MASK_ISO_8_ELSE \
543 | CATEGORY_MASK_UTF_8_AUTO \
544 | CATEGORY_MASK_UTF_8_NOSIG \
545 | CATEGORY_MASK_UTF_8_SIG \
546 | CATEGORY_MASK_UTF_16_AUTO \
547 | CATEGORY_MASK_UTF_16_BE \
548 | CATEGORY_MASK_UTF_16_LE \
549 | CATEGORY_MASK_UTF_16_BE_NOSIG \
550 | CATEGORY_MASK_UTF_16_LE_NOSIG \
551 | CATEGORY_MASK_CHARSET \
552 | CATEGORY_MASK_SJIS \
553 | CATEGORY_MASK_BIG5 \
554 | CATEGORY_MASK_CCL \
555 | CATEGORY_MASK_EMACS_MULE)
558 #define CATEGORY_MASK_ISO_7BIT \
559 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT)
561 #define CATEGORY_MASK_ISO_8BIT \
562 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2)
564 #define CATEGORY_MASK_ISO_ELSE \
565 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE)
567 #define CATEGORY_MASK_ISO_ESCAPE \
568 (CATEGORY_MASK_ISO_7 \
569 | CATEGORY_MASK_ISO_7_TIGHT \
570 | CATEGORY_MASK_ISO_7_ELSE \
571 | CATEGORY_MASK_ISO_8_ELSE)
573 #define CATEGORY_MASK_ISO \
574 ( CATEGORY_MASK_ISO_7BIT \
575 | CATEGORY_MASK_ISO_8BIT \
576 | CATEGORY_MASK_ISO_ELSE)
578 #define CATEGORY_MASK_UTF_16 \
579 (CATEGORY_MASK_UTF_16_AUTO \
580 | CATEGORY_MASK_UTF_16_BE \
581 | CATEGORY_MASK_UTF_16_LE \
582 | CATEGORY_MASK_UTF_16_BE_NOSIG \
583 | CATEGORY_MASK_UTF_16_LE_NOSIG)
585 #define CATEGORY_MASK_UTF_8 \
586 (CATEGORY_MASK_UTF_8_AUTO \
587 | CATEGORY_MASK_UTF_8_NOSIG \
588 | CATEGORY_MASK_UTF_8_SIG)
590 /* Table of coding categories (Lisp symbols). This variable is for
591 internal use only. */
592 static Lisp_Object Vcoding_category_table
;
594 /* Table of coding-categories ordered by priority. */
595 static enum coding_category coding_priorities
[coding_category_max
];
597 /* Nth element is a coding context for the coding system bound to the
598 Nth coding category. */
599 static struct coding_system coding_categories
[coding_category_max
];
601 /* Encode a flag that can be nil, something else, or t as -1, 0, 1. */
604 encode_inhibit_flag (Lisp_Object flag
)
606 return NILP (flag
) ? -1 : EQ (flag
, Qt
);
609 /* True if the value of ENCODED_FLAG says a flag should be treated as set.
610 1 means yes, -1 means no, 0 means ask the user variable VAR. */
613 inhibit_flag (int encoded_flag
, bool var
)
615 return 0 < encoded_flag
+ var
;
618 #define CODING_GET_INFO(coding, attrs, charset_list) \
620 (attrs) = CODING_ID_ATTRS ((coding)->id); \
621 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \
625 CHECK_NATNUM_CAR (Lisp_Object x
)
627 Lisp_Object tmp
= XCAR (x
);
633 CHECK_NATNUM_CDR (Lisp_Object x
)
635 Lisp_Object tmp
= XCDR (x
);
640 /* True if CODING's destination can be grown. */
643 growable_destination (struct coding_system
*coding
)
645 return STRINGP (coding
->dst_object
) || BUFFERP (coding
->dst_object
);
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
651 in the source, it jumps to 'no_more_source'. If MULTIBYTEP,
652 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 */
657 #define ONE_MORE_BYTE(c) \
659 if (src == src_end) \
661 if (src_base < src) \
662 record_conversion_result \
663 (coding, CODING_RESULT_INSUFFICIENT_SRC); \
664 goto no_more_source; \
667 if (multibytep && (c & 0x80)) \
669 if ((c & 0xFE) == 0xC0) \
670 c = ((c & 1) << 6) | *src++; \
674 c = - string_char (src, &src, NULL); \
675 record_conversion_result \
676 (coding, CODING_RESULT_INVALID_SRC); \
682 /* Safely get two bytes from the source text pointed by SRC which ends
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 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:
689 src, src_end, multibytep
690 It is intended that this macro is used in detect_coding_utf_16. */
692 #define TWO_MORE_BYTES(c1, c2) \
695 if (src == src_end) \
696 goto no_more_source; \
698 if (multibytep && (c1 & 0x80)) \
700 if ((c1 & 0xFE) == 0xC0) \
701 c1 = ((c1 & 1) << 6) | *src++; \
704 src += BYTES_BY_CHAR_HEAD (c1) - 1; \
709 if (src == src_end) \
710 goto no_more_source; \
712 if (multibytep && (c2 & 0x80)) \
714 if ((c2 & 0xFE) == 0xC0) \
715 c2 = ((c2 & 1) << 6) | *src++; \
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.
729 #define EMIT_ONE_ASCII_BYTE(c) \
736 /* Like EMIT_ONE_ASCII_BYTE but store two bytes; C1 and C2. */
738 #define EMIT_TWO_ASCII_BYTES(c1, c2) \
740 produced_chars += 2; \
741 *dst++ = (c1), *dst++ = (c2); \
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,
747 store in an appropriate multibyte form. The caller should
748 declare and set the variables `dst' and `multibytep' appropriately
751 #define EMIT_ONE_BYTE(c) \
758 ch = BYTE8_TO_CHAR (ch); \
759 CHAR_STRING_ADVANCE (ch, dst); \
766 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */
768 #define EMIT_TWO_BYTES(c1, c2) \
770 produced_chars += 2; \
777 ch = BYTE8_TO_CHAR (ch); \
778 CHAR_STRING_ADVANCE (ch, dst); \
781 ch = BYTE8_TO_CHAR (ch); \
782 CHAR_STRING_ADVANCE (ch, dst); \
792 #define EMIT_THREE_BYTES(c1, c2, c3) \
794 EMIT_ONE_BYTE (c1); \
795 EMIT_TWO_BYTES (c2, c3); \
799 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \
801 EMIT_TWO_BYTES (c1, c2); \
802 EMIT_TWO_BYTES (c3, c4); \
807 record_conversion_result (struct coding_system
*coding
,
808 enum coding_result_code result
)
810 coding
->result
= result
;
813 case CODING_RESULT_INSUFFICIENT_SRC
:
814 Vlast_code_conversion_error
= Qinsufficient_source
;
816 case CODING_RESULT_INVALID_SRC
:
817 Vlast_code_conversion_error
= Qinvalid_source
;
819 case CODING_RESULT_INTERRUPT
:
820 Vlast_code_conversion_error
= Qinterrupted
;
822 case CODING_RESULT_INSUFFICIENT_DST
:
823 /* Don't record this error in Vlast_code_conversion_error
824 because it happens just temporarily and is resolved when the
825 whole conversion is finished. */
827 case CODING_RESULT_SUCCESS
:
830 Vlast_code_conversion_error
= intern ("Unknown error");
834 /* These wrapper macros are used to preserve validity of pointers into
835 buffer text across calls to decode_char, encode_char, etc, which
836 could cause relocation of buffers if it loads a charset map,
837 because loading a charset map allocates large structures. */
839 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \
843 charset_map_loaded = 0; \
844 c = DECODE_CHAR (charset, code); \
845 if (charset_map_loaded \
846 && (offset = coding_change_source (coding))) \
849 src_base += offset; \
854 #define CODING_ENCODE_CHAR(coding, dst, dst_end, charset, c, code) \
858 charset_map_loaded = 0; \
859 code = ENCODE_CHAR (charset, c); \
860 if (charset_map_loaded \
861 && (offset = coding_change_destination (coding))) \
868 #define CODING_CHAR_CHARSET(coding, dst, dst_end, c, charset_list, code_return, charset) \
872 charset_map_loaded = 0; \
873 charset = char_charset (c, charset_list, code_return); \
874 if (charset_map_loaded \
875 && (offset = coding_change_destination (coding))) \
882 #define CODING_CHAR_CHARSET_P(coding, dst, dst_end, c, charset, result) \
886 charset_map_loaded = 0; \
887 result = CHAR_CHARSET_P (c, charset); \
888 if (charset_map_loaded \
889 && (offset = coding_change_destination (coding))) \
897 /* If there are at least BYTES length of room at dst, allocate memory
898 for coding->destination and update dst and dst_end. We don't have
899 to take care of coding->source which will be relocated. It is
900 handled by calling coding_set_source in encode_coding. */
902 #define ASSURE_DESTINATION(bytes) \
904 if (dst + (bytes) >= dst_end) \
906 ptrdiff_t more_bytes = charbuf_end - charbuf + (bytes); \
908 dst = alloc_destination (coding, more_bytes, dst); \
909 dst_end = coding->destination + coding->dst_bytes; \
914 /* Store multibyte form of the character C in P, and advance P to the
915 end of the multibyte form. This used to be like CHAR_STRING_ADVANCE
916 without ever calling MAYBE_UNIFY_CHAR, but nowadays we don't call
917 MAYBE_UNIFY_CHAR in CHAR_STRING_ADVANCE. */
919 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) CHAR_STRING_ADVANCE(c, p)
921 /* Return the character code of character whose multibyte form is at
922 P, and advance P to the end of the multibyte form. This used to be
923 like STRING_CHAR_ADVANCE without ever calling MAYBE_UNIFY_CHAR, but
924 nowadays STRING_CHAR_ADVANCE doesn't call MAYBE_UNIFY_CHAR. */
926 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) STRING_CHAR_ADVANCE(p)
928 /* Set coding->source from coding->src_object. */
931 coding_set_source (struct coding_system
*coding
)
933 if (BUFFERP (coding
->src_object
))
935 struct buffer
*buf
= XBUFFER (coding
->src_object
);
937 if (coding
->src_pos
< 0)
938 coding
->source
= BUF_GAP_END_ADDR (buf
) + coding
->src_pos_byte
;
940 coding
->source
= BUF_BYTE_ADDRESS (buf
, coding
->src_pos_byte
);
942 else if (STRINGP (coding
->src_object
))
944 coding
->source
= SDATA (coding
->src_object
) + coding
->src_pos_byte
;
948 /* Otherwise, the source is C string and is never relocated
949 automatically. Thus we don't have to update anything. */
954 /* Set coding->source from coding->src_object, and return how many
955 bytes coding->source was changed. */
958 coding_change_source (struct coding_system
*coding
)
960 const unsigned char *orig
= coding
->source
;
961 coding_set_source (coding
);
962 return coding
->source
- orig
;
966 /* Set coding->destination from coding->dst_object. */
969 coding_set_destination (struct coding_system
*coding
)
971 if (BUFFERP (coding
->dst_object
))
973 if (BUFFERP (coding
->src_object
) && coding
->src_pos
< 0)
975 coding
->destination
= BEG_ADDR
+ coding
->dst_pos_byte
- BEG_BYTE
;
976 coding
->dst_bytes
= (GAP_END_ADDR
977 - (coding
->src_bytes
- coding
->consumed
)
978 - coding
->destination
);
982 /* We are sure that coding->dst_pos_byte is before the gap
984 coding
->destination
= (BUF_BEG_ADDR (XBUFFER (coding
->dst_object
))
985 + coding
->dst_pos_byte
- BEG_BYTE
);
986 coding
->dst_bytes
= (BUF_GAP_END_ADDR (XBUFFER (coding
->dst_object
))
987 - coding
->destination
);
992 /* Otherwise, the destination is C string and is never relocated
993 automatically. Thus we don't have to update anything. */
998 /* Set coding->destination from coding->dst_object, and return how
999 many bytes coding->destination was changed. */
1002 coding_change_destination (struct coding_system
*coding
)
1004 const unsigned char *orig
= coding
->destination
;
1005 coding_set_destination (coding
);
1006 return coding
->destination
- orig
;
1011 coding_alloc_by_realloc (struct coding_system
*coding
, ptrdiff_t bytes
)
1013 if (STRING_BYTES_BOUND
- coding
->dst_bytes
< bytes
)
1015 coding
->destination
= xrealloc (coding
->destination
,
1016 coding
->dst_bytes
+ bytes
);
1017 coding
->dst_bytes
+= bytes
;
1021 coding_alloc_by_making_gap (struct coding_system
*coding
,
1022 ptrdiff_t gap_head_used
, ptrdiff_t bytes
)
1024 if (EQ (coding
->src_object
, coding
->dst_object
))
1026 /* The gap may contain the produced data at the head and not-yet
1027 consumed data at the tail. To preserve those data, we at
1028 first make the gap size to zero, then increase the gap
1030 ptrdiff_t add
= GAP_SIZE
;
1032 GPT
+= gap_head_used
, GPT_BYTE
+= gap_head_used
;
1033 GAP_SIZE
= 0; ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
1035 GAP_SIZE
+= add
; ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
1036 GPT
-= gap_head_used
, GPT_BYTE
-= gap_head_used
;
1039 make_gap_1 (XBUFFER (coding
->dst_object
), bytes
);
1043 static unsigned char *
1044 alloc_destination (struct coding_system
*coding
, ptrdiff_t nbytes
,
1047 ptrdiff_t offset
= dst
- coding
->destination
;
1049 if (BUFFERP (coding
->dst_object
))
1051 struct buffer
*buf
= XBUFFER (coding
->dst_object
);
1053 coding_alloc_by_making_gap (coding
, dst
- BUF_GPT_ADDR (buf
), nbytes
);
1056 coding_alloc_by_realloc (coding
, nbytes
);
1057 coding_set_destination (coding
);
1058 dst
= coding
->destination
+ offset
;
1062 /** Macros for annotations. */
1064 /* An annotation data is stored in the array coding->charbuf in this
1066 [ -LENGTH ANNOTATION_MASK NCHARS ... ]
1067 LENGTH is the number of elements in the annotation.
1068 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK.
1069 NCHARS is the number of characters in the text annotated.
1071 The format of the following elements depend on ANNOTATION_MASK.
1073 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements
1075 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ]
1077 NBYTES is the number of bytes specified in the header part of
1078 old-style emacs-mule encoding, or 0 for the other kind of
1081 METHOD is one of enum composition_method.
1083 Optional COMPOSITION-COMPONENTS are characters and composition
1086 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID
1089 If ANNOTATION_MASK is 0, this annotation is just a space holder to
1090 recover from an invalid annotation, and should be skipped by
1091 produce_annotation. */
1093 /* Maximum length of the header of annotation data. */
1094 #define MAX_ANNOTATION_LENGTH 5
1096 #define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \
1098 *(buf)++ = -(len); \
1099 *(buf)++ = (mask); \
1100 *(buf)++ = (nchars); \
1101 coding->annotated = 1; \
1104 #define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \
1106 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \
1112 #define ADD_CHARSET_DATA(buf, nchars, id) \
1114 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \
1119 /* Bitmasks for coding->eol_seen. */
1121 #define EOL_SEEN_NONE 0
1122 #define EOL_SEEN_LF 1
1123 #define EOL_SEEN_CR 2
1124 #define EOL_SEEN_CRLF 4
1127 /*** 2. Emacs' internal format (emacs-utf-8) ***/
1134 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1135 Return true if a text is encoded in UTF-8. */
1137 #define UTF_8_1_OCTET_P(c) ((c) < 0x80)
1138 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
1139 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
1140 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
1141 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
1142 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
1144 #define UTF_8_BOM_1 0xEF
1145 #define UTF_8_BOM_2 0xBB
1146 #define UTF_8_BOM_3 0xBF
1148 /* Unlike the other detect_coding_XXX, this function counts the number
1149 of characters and checks the EOL format. */
1152 detect_coding_utf_8 (struct coding_system
*coding
,
1153 struct coding_detection_info
*detect_info
)
1155 const unsigned char *src
= coding
->source
, *src_base
;
1156 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1157 bool multibytep
= coding
->src_multibyte
;
1158 ptrdiff_t consumed_chars
= 0;
1160 ptrdiff_t nchars
= coding
->head_ascii
;
1161 int eol_seen
= coding
->eol_seen
;
1163 detect_info
->checked
|= CATEGORY_MASK_UTF_8
;
1164 /* A coding system of this category is always ASCII compatible. */
1167 if (src
== coding
->source
/* BOM should be at the head. */
1168 && src
+ 3 < src_end
/* BOM is 3-byte long. */
1169 && src
[0] == UTF_8_BOM_1
1170 && src
[1] == UTF_8_BOM_2
1171 && src
[2] == UTF_8_BOM_3
)
1180 int c
, c1
, c2
, c3
, c4
;
1184 if (c
< 0 || UTF_8_1_OCTET_P (c
))
1189 if (src
< src_end
&& *src
== '\n')
1191 eol_seen
|= EOL_SEEN_CRLF
;
1196 eol_seen
|= EOL_SEEN_CR
;
1199 eol_seen
|= EOL_SEEN_LF
;
1203 if (c1
< 0 || ! UTF_8_EXTRA_OCTET_P (c1
))
1205 if (UTF_8_2_OCTET_LEADING_P (c
))
1211 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1213 if (UTF_8_3_OCTET_LEADING_P (c
))
1219 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1221 if (UTF_8_4_OCTET_LEADING_P (c
))
1227 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1229 if (UTF_8_5_OCTET_LEADING_P (c
))
1236 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1240 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1242 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1247 /* The first character 0xFFFE doesn't necessarily mean a BOM. */
1248 detect_info
->found
|= CATEGORY_MASK_UTF_8_AUTO
| CATEGORY_MASK_UTF_8_SIG
| CATEGORY_MASK_UTF_8_NOSIG
;
1252 detect_info
->rejected
|= CATEGORY_MASK_UTF_8_SIG
;
1253 if (nchars
< src_end
- coding
->source
)
1254 /* The found characters are less than source bytes, which
1255 means that we found a valid non-ASCII characters. */
1256 detect_info
->found
|= CATEGORY_MASK_UTF_8_AUTO
| CATEGORY_MASK_UTF_8_NOSIG
;
1258 coding
->detected_utf8_bytes
= src_base
- coding
->source
;
1259 coding
->detected_utf8_chars
= nchars
;
1265 decode_coding_utf_8 (struct coding_system
*coding
)
1267 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1268 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1269 const unsigned char *src_base
;
1270 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1271 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
1272 ptrdiff_t consumed_chars
= 0, consumed_chars_base
= 0;
1273 bool multibytep
= coding
->src_multibyte
;
1274 enum utf_bom_type bom
= CODING_UTF_8_BOM (coding
);
1276 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1277 int byte_after_cr
= -1;
1279 if (bom
!= utf_without_bom
)
1285 if (! UTF_8_3_OCTET_LEADING_P (c1
))
1290 if (! UTF_8_EXTRA_OCTET_P (c2
))
1295 if (! UTF_8_EXTRA_OCTET_P (c3
))
1299 if ((c1
!= UTF_8_BOM_1
)
1300 || (c2
!= UTF_8_BOM_2
) || (c3
!= UTF_8_BOM_3
))
1303 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1308 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1312 int c
, c1
, c2
, c3
, c4
, c5
;
1315 consumed_chars_base
= consumed_chars
;
1317 if (charbuf
>= charbuf_end
)
1319 if (byte_after_cr
>= 0)
1324 /* In the simple case, rapidly handle ordinary characters */
1325 if (multibytep
&& ! eol_dos
1326 && charbuf
< charbuf_end
- 6 && src
< src_end
- 6)
1328 while (charbuf
< charbuf_end
- 6 && src
< src_end
- 6)
1358 /* If we handled at least one character, restart the main loop. */
1359 if (src
!= src_base
)
1363 if (byte_after_cr
>= 0)
1364 c1
= byte_after_cr
, byte_after_cr
= -1;
1371 else if (UTF_8_1_OCTET_P (c1
))
1373 if (eol_dos
&& c1
== '\r')
1374 ONE_MORE_BYTE (byte_after_cr
);
1380 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1382 if (UTF_8_2_OCTET_LEADING_P (c1
))
1384 c
= ((c1
& 0x1F) << 6) | (c2
& 0x3F);
1385 /* Reject overlong sequences here and below. Encoders
1386 producing them are incorrect, they can be misleading,
1387 and they mess up read/write invariance. */
1394 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1396 if (UTF_8_3_OCTET_LEADING_P (c1
))
1398 c
= (((c1
& 0xF) << 12)
1399 | ((c2
& 0x3F) << 6) | (c3
& 0x3F));
1401 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
1407 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1409 if (UTF_8_4_OCTET_LEADING_P (c1
))
1411 c
= (((c1
& 0x7) << 18) | ((c2
& 0x3F) << 12)
1412 | ((c3
& 0x3F) << 6) | (c4
& 0x3F));
1419 if (c5
< 0 || ! UTF_8_EXTRA_OCTET_P (c5
))
1421 if (UTF_8_5_OCTET_LEADING_P (c1
))
1423 c
= (((c1
& 0x3) << 24) | ((c2
& 0x3F) << 18)
1424 | ((c3
& 0x3F) << 12) | ((c4
& 0x3F) << 6)
1426 if ((c
> MAX_CHAR
) || (c
< 0x200000))
1441 consumed_chars
= consumed_chars_base
;
1443 *charbuf
++ = ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
1447 coding
->consumed_char
+= consumed_chars_base
;
1448 coding
->consumed
= src_base
- coding
->source
;
1449 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1454 encode_coding_utf_8 (struct coding_system
*coding
)
1456 bool multibytep
= coding
->dst_multibyte
;
1457 int *charbuf
= coding
->charbuf
;
1458 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1459 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1460 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1461 ptrdiff_t produced_chars
= 0;
1464 if (CODING_UTF_8_BOM (coding
) == utf_with_bom
)
1466 ASSURE_DESTINATION (3);
1467 EMIT_THREE_BYTES (UTF_8_BOM_1
, UTF_8_BOM_2
, UTF_8_BOM_3
);
1468 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1473 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
1475 while (charbuf
< charbuf_end
)
1477 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p
, *pend
= str
;
1479 ASSURE_DESTINATION (safe_room
);
1481 if (CHAR_BYTE8_P (c
))
1483 c
= CHAR_TO_BYTE8 (c
);
1488 CHAR_STRING_ADVANCE_NO_UNIFY (c
, pend
);
1489 for (p
= str
; p
< pend
; p
++)
1496 int safe_room
= MAX_MULTIBYTE_LENGTH
;
1498 while (charbuf
< charbuf_end
)
1500 ASSURE_DESTINATION (safe_room
);
1502 if (CHAR_BYTE8_P (c
))
1503 *dst
++ = CHAR_TO_BYTE8 (c
);
1505 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
1507 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
1509 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1510 coding
->produced_char
+= produced_chars
;
1511 coding
->produced
= dst
- coding
->destination
;
1516 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1517 Return true if a text is encoded in one of UTF-16 based coding systems. */
1519 #define UTF_16_HIGH_SURROGATE_P(val) \
1520 (((val) & 0xFC00) == 0xD800)
1522 #define UTF_16_LOW_SURROGATE_P(val) \
1523 (((val) & 0xFC00) == 0xDC00)
1527 detect_coding_utf_16 (struct coding_system
*coding
,
1528 struct coding_detection_info
*detect_info
)
1530 const unsigned char *src
= coding
->source
;
1531 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1532 bool multibytep
= coding
->src_multibyte
;
1535 detect_info
->checked
|= CATEGORY_MASK_UTF_16
;
1536 if (coding
->mode
& CODING_MODE_LAST_BLOCK
1537 && (coding
->src_chars
& 1))
1539 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1543 TWO_MORE_BYTES (c1
, c2
);
1544 if ((c1
== 0xFF) && (c2
== 0xFE))
1546 detect_info
->found
|= (CATEGORY_MASK_UTF_16_LE
1547 | CATEGORY_MASK_UTF_16_AUTO
);
1548 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_BE
1549 | CATEGORY_MASK_UTF_16_BE_NOSIG
1550 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1552 else if ((c1
== 0xFE) && (c2
== 0xFF))
1554 detect_info
->found
|= (CATEGORY_MASK_UTF_16_BE
1555 | CATEGORY_MASK_UTF_16_AUTO
);
1556 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_LE
1557 | CATEGORY_MASK_UTF_16_BE_NOSIG
1558 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1562 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1567 /* We check the dispersion of Eth and Oth bytes where E is even and
1568 O is odd. If both are high, we assume binary data.*/
1569 unsigned char e
[256], o
[256];
1570 unsigned e_num
= 1, o_num
= 1;
1577 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_AUTO
1578 |CATEGORY_MASK_UTF_16_BE
1579 | CATEGORY_MASK_UTF_16_LE
);
1581 while ((detect_info
->rejected
& CATEGORY_MASK_UTF_16
)
1582 != CATEGORY_MASK_UTF_16
)
1584 TWO_MORE_BYTES (c1
, c2
);
1592 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_BE_NOSIG
;
1599 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_LE_NOSIG
;
1610 decode_coding_utf_16 (struct coding_system
*coding
)
1612 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1613 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1614 const unsigned char *src_base
;
1615 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1616 /* We may produces at most 3 chars in one loop. */
1617 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
- 2;
1618 ptrdiff_t consumed_chars
= 0, consumed_chars_base
= 0;
1619 bool multibytep
= coding
->src_multibyte
;
1620 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1621 enum utf_16_endian_type endian
= CODING_UTF_16_ENDIAN (coding
);
1622 int surrogate
= CODING_UTF_16_SURROGATE (coding
);
1624 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1625 int byte_after_cr1
= -1, byte_after_cr2
= -1;
1627 if (bom
== utf_with_bom
)
1636 if (endian
== utf_16_big_endian
1637 ? c
!= 0xFEFF : c
!= 0xFFFE)
1639 /* The first two bytes are not BOM. Treat them as bytes
1640 for a normal character. */
1643 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1645 else if (bom
== utf_detect_bom
)
1647 /* We have already tried to detect BOM and failed in
1649 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1657 consumed_chars_base
= consumed_chars
;
1659 if (charbuf
>= charbuf_end
)
1661 if (byte_after_cr1
>= 0)
1666 if (byte_after_cr1
>= 0)
1667 c1
= byte_after_cr1
, byte_after_cr1
= -1;
1675 if (byte_after_cr2
>= 0)
1676 c2
= byte_after_cr2
, byte_after_cr2
= -1;
1681 *charbuf
++ = ASCII_CHAR_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
1685 c
= (endian
== utf_16_big_endian
1686 ? ((c1
<< 8) | c2
) : ((c2
<< 8) | c1
));
1690 if (! UTF_16_LOW_SURROGATE_P (c
))
1692 if (endian
== utf_16_big_endian
)
1693 c1
= surrogate
>> 8, c2
= surrogate
& 0xFF;
1695 c1
= surrogate
& 0xFF, c2
= surrogate
>> 8;
1698 if (UTF_16_HIGH_SURROGATE_P (c
))
1699 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1705 c
= ((surrogate
- 0xD800) << 10) | (c
- 0xDC00);
1706 CODING_UTF_16_SURROGATE (coding
) = surrogate
= 0;
1707 *charbuf
++ = 0x10000 + c
;
1712 if (UTF_16_HIGH_SURROGATE_P (c
))
1713 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1716 if (eol_dos
&& c
== '\r')
1718 ONE_MORE_BYTE (byte_after_cr1
);
1719 ONE_MORE_BYTE (byte_after_cr2
);
1727 coding
->consumed_char
+= consumed_chars_base
;
1728 coding
->consumed
= src_base
- coding
->source
;
1729 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1733 encode_coding_utf_16 (struct coding_system
*coding
)
1735 bool multibytep
= coding
->dst_multibyte
;
1736 int *charbuf
= coding
->charbuf
;
1737 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1738 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1739 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1741 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1742 bool big_endian
= CODING_UTF_16_ENDIAN (coding
) == utf_16_big_endian
;
1743 ptrdiff_t produced_chars
= 0;
1746 if (bom
!= utf_without_bom
)
1748 ASSURE_DESTINATION (safe_room
);
1750 EMIT_TWO_BYTES (0xFE, 0xFF);
1752 EMIT_TWO_BYTES (0xFF, 0xFE);
1753 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1756 while (charbuf
< charbuf_end
)
1758 ASSURE_DESTINATION (safe_room
);
1760 if (c
> MAX_UNICODE_CHAR
)
1761 c
= coding
->default_char
;
1766 EMIT_TWO_BYTES (c
>> 8, c
& 0xFF);
1768 EMIT_TWO_BYTES (c
& 0xFF, c
>> 8);
1775 c1
= (c
>> 10) + 0xD800;
1776 c2
= (c
& 0x3FF) + 0xDC00;
1778 EMIT_FOUR_BYTES (c1
>> 8, c1
& 0xFF, c2
>> 8, c2
& 0xFF);
1780 EMIT_FOUR_BYTES (c1
& 0xFF, c1
>> 8, c2
& 0xFF, c2
>> 8);
1783 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1784 coding
->produced
= dst
- coding
->destination
;
1785 coding
->produced_char
+= produced_chars
;
1790 /*** 6. Old Emacs' internal format (emacs-mule) ***/
1792 /* Emacs' internal format for representation of multiple character
1793 sets is a kind of multi-byte encoding, i.e. characters are
1794 represented by variable-length sequences of one-byte codes.
1796 ASCII characters and control characters (e.g. `tab', `newline') are
1797 represented by one-byte sequences which are their ASCII codes, in
1798 the range 0x00 through 0x7F.
1800 8-bit characters of the range 0x80..0x9F are represented by
1801 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
1804 8-bit characters of the range 0xA0..0xFF are represented by
1805 one-byte sequences which are their 8-bit code.
1807 The other characters are represented by a sequence of `base
1808 leading-code', optional `extended leading-code', and one or two
1809 `position-code's. The length of the sequence is determined by the
1810 base leading-code. Leading-code takes the range 0x81 through 0x9D,
1811 whereas extended leading-code and position-code take the range 0xA0
1812 through 0xFF. See `charset.h' for more details about leading-code
1815 --- CODE RANGE of Emacs' internal format ---
1819 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
1820 eight-bit-graphic 0xA0..0xBF
1821 ELSE 0x81..0x9D + [0xA0..0xFF]+
1822 ---------------------------------------------
1824 As this is the internal character representation, the format is
1825 usually not used externally (i.e. in a file or in a data sent to a
1826 process). But, it is possible to have a text externally in this
1827 format (i.e. by encoding by the coding system `emacs-mule').
1829 In that case, a sequence of one-byte codes has a slightly different
1832 At first, all characters in eight-bit-control are represented by
1833 one-byte sequences which are their 8-bit code.
1835 Next, character composition data are represented by the byte
1836 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
1838 METHOD is 0xF2 plus one of composition method (enum
1839 composition_method),
1841 BYTES is 0xA0 plus a byte length of this composition data,
1843 CHARS is 0xA0 plus a number of characters composed by this
1846 COMPONENTs are characters of multibyte form or composition
1847 rules encoded by two-byte of ASCII codes.
1849 In addition, for backward compatibility, the following formats are
1850 also recognized as composition data on decoding.
1853 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
1856 MSEQ is a multibyte form but in these special format:
1857 ASCII: 0xA0 ASCII_CODE+0x80,
1858 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
1859 RULE is a one byte code of the range 0xA0..0xF0 that
1860 represents a composition rule.
1863 char emacs_mule_bytes
[256];
1866 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1867 Return true if a text is encoded in 'emacs-mule'. */
1870 detect_coding_emacs_mule (struct coding_system
*coding
,
1871 struct coding_detection_info
*detect_info
)
1873 const unsigned char *src
= coding
->source
, *src_base
;
1874 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1875 bool multibytep
= coding
->src_multibyte
;
1876 ptrdiff_t consumed_chars
= 0;
1880 detect_info
->checked
|= CATEGORY_MASK_EMACS_MULE
;
1881 /* A coding system of this category is always ASCII compatible. */
1882 src
+= coding
->head_ascii
;
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. */
1896 const unsigned char *src_start
;
1906 if (src
- src_start
<= 4)
1908 found
= CATEGORY_MASK_EMACS_MULE
;
1916 && (c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
))
1921 int more_bytes
= emacs_mule_bytes
[c
] - 1;
1923 while (more_bytes
> 0)
1928 src
--; /* Unread the last byte. */
1933 if (more_bytes
!= 0)
1935 found
= CATEGORY_MASK_EMACS_MULE
;
1938 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
1942 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1944 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
1947 detect_info
->found
|= found
;
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
1955 the decoded character or rule. If an invalid byte is found, return
1956 -1. If SRC is too short, return -2. */
1959 emacs_mule_char (struct coding_system
*coding
, const unsigned char *src
,
1960 int *nbytes
, int *nchars
, int *id
,
1961 struct composition_status
*cmp_status
)
1963 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1964 const unsigned char *src_base
= src
;
1965 bool multibytep
= coding
->src_multibyte
;
1969 ptrdiff_t consumed_chars
= 0;
1970 bool mseq_found
= 0;
1976 charset_ID
= emacs_mule_charset
[0];
1982 if (cmp_status
->state
!= COMPOSING_NO
1983 && cmp_status
->old_form
)
1985 if (cmp_status
->state
== COMPOSING_CHAR
)
2000 *nbytes
= src
- src_base
;
2001 *nchars
= consumed_chars
;
2009 switch (emacs_mule_bytes
[c
])
2012 if ((charset_ID
= emacs_mule_charset
[c
]) < 0)
2021 if (c
== EMACS_MULE_LEADING_CODE_PRIVATE_11
2022 || c
== EMACS_MULE_LEADING_CODE_PRIVATE_12
)
2025 if (c
< 0xA0 || (charset_ID
= emacs_mule_charset
[c
]) < 0)
2034 if ((charset_ID
= emacs_mule_charset
[c
]) < 0)
2039 code
= (c
& 0x7F) << 8;
2049 if (c
< 0 || (charset_ID
= emacs_mule_charset
[c
]) < 0)
2054 code
= (c
& 0x7F) << 8;
2063 charset_ID
= ASCII_CHAR_P (code
) ? charset_ascii
: charset_eight_bit
;
2069 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
2070 CHARSET_FROM_ID (charset_ID
), code
, c
);
2074 *nbytes
= src
- src_base
;
2075 *nchars
= consumed_chars
;
2078 return (mseq_found
? -c
: c
);
2088 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
2090 /* Handle these composition sequence ('|': the end of header elements,
2091 BYTES and CHARS >= 0xA0):
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 ...
2099 (4) relative composition: 0x80 | MSEQ ... MSEQ
2100 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ
2102 When the starter 0x80 and the following header elements are found,
2103 this annotation header is produced.
2105 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ]
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).
2110 Then, upon reading the following elements, these codes are produced
2111 until the composition end is found:
2114 (2) ALT ... ALT CHAR ... CHAR
2115 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR
2117 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
2119 When the composition end is found, LENGTH and NCHARS in the
2120 annotation header is updated as below:
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
2128 If an error is found while composing, the annotation header is
2129 changed to the original composition header (plus filler -1s) as
2132 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ]
2133 (5) [ 0x80 0xFF -1 -1- -1 ]
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 ]
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). */
2145 /* Decode a composition rule represented by C as a component of
2146 composition sequence of Emacs 20 style. Set RULE to the decoded
2149 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \
2154 if (c < 0 || c >= 81) \
2155 goto invalid_code; \
2156 gref = c / 9, nref = c % 9; \
2157 if (gref == 4) gref = 10; \
2158 if (nref == 4) nref = 10; \
2159 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
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. */
2167 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \
2172 if (gref < 0 || gref >= 81) \
2173 goto invalid_code; \
2174 ONE_MORE_BYTE (c); \
2176 if (nref < 0 || nref >= 81) \
2177 goto invalid_code; \
2178 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
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. */
2187 #define DECODE_EMACS_MULE_21_COMPOSITION() \
2189 enum composition_method method = c - 0xF2; \
2190 int nbytes, nchars; \
2192 ONE_MORE_BYTE (c); \
2194 goto invalid_code; \
2195 nbytes = c - 0xA0; \
2196 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \
2197 goto invalid_code; \
2198 ONE_MORE_BYTE (c); \
2199 nchars = c - 0xA0; \
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; \
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); \
2215 /* Start of Emacs 20 style format for relative composition. */
2217 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \
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); \
2228 /* Start of Emacs 20 style format for rule-base composition. */
2230 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \
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); \
2241 #define DECODE_EMACS_MULE_COMPOSITION_START() \
2243 const unsigned char *current_src = src; \
2245 ONE_MORE_BYTE (c); \
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) \
2255 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \
2256 /* Re-read C as a composition component. */ \
2257 src = current_src; \
2259 else if (c == 0xFF) \
2260 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \
2262 goto invalid_code; \
2265 #define EMACS_MULE_COMPOSITION_END() \
2267 int idx = - cmp_status->length; \
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; \
2278 emacs_mule_finish_composition (int *charbuf
,
2279 struct composition_status
*cmp_status
)
2281 int idx
= - cmp_status
->length
;
2284 if (cmp_status
->old_form
&& cmp_status
->nchars
> 0)
2286 charbuf
[idx
+ 2] = cmp_status
->nchars
;
2288 if (cmp_status
->method
== COMPOSITION_WITH_RULE
2289 && cmp_status
->state
== COMPOSING_CHAR
)
2291 /* The last rule was invalid. */
2292 int rule
= charbuf
[-1] + 0xA0;
2294 charbuf
[-2] = BYTE8_TO_CHAR (rule
);
2301 charbuf
[idx
++] = BYTE8_TO_CHAR (0x80);
2303 if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2305 charbuf
[idx
++] = BYTE8_TO_CHAR (0xFF);
2306 charbuf
[idx
++] = -3;
2312 int nchars
= charbuf
[idx
+ 1] + 0xA0;
2313 int nbytes
= charbuf
[idx
+ 2] + 0xA0;
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;
2322 cmp_status
->state
= COMPOSING_NO
;
2326 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \
2328 if (cmp_status->state != COMPOSING_NO) \
2329 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \
2334 decode_coding_emacs_mule (struct coding_system
*coding
)
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
;
2339 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
2340 /* We may produce two annotations (charset and composition) in one
2341 loop and one more charset annotation at the end. */
2343 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3)
2344 /* We can produce up to 2 characters in a loop. */
2346 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
2347 bool multibytep
= coding
->src_multibyte
;
2348 ptrdiff_t char_offset
= coding
->produced_char
;
2349 ptrdiff_t last_offset
= char_offset
;
2350 int last_id
= charset_ascii
;
2352 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
2353 int byte_after_cr
= -1;
2354 struct composition_status
*cmp_status
= &coding
->spec
.emacs_mule
.cmp_status
;
2356 if (cmp_status
->state
!= COMPOSING_NO
)
2360 if (charbuf_end
- charbuf
< cmp_status
->length
)
2362 for (i
= 0; i
< cmp_status
->length
; i
++)
2363 *charbuf
++ = cmp_status
->carryover
[i
];
2364 coding
->annotated
= 1;
2369 int c
, id
IF_LINT (= 0);
2372 consumed_chars_base
= consumed_chars
;
2374 if (charbuf
>= charbuf_end
)
2376 if (byte_after_cr
>= 0)
2381 if (byte_after_cr
>= 0)
2382 c
= byte_after_cr
, byte_after_cr
= -1;
2386 if (c
< 0 || c
== 0x80)
2388 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2395 DECODE_EMACS_MULE_COMPOSITION_START ();
2401 if (eol_dos
&& c
== '\r')
2402 ONE_MORE_BYTE (byte_after_cr
);
2404 if (cmp_status
->state
!= COMPOSING_NO
)
2406 if (cmp_status
->old_form
)
2407 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2408 else if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2409 cmp_status
->ncomps
--;
2414 int nchars
IF_LINT (= 0), nbytes
IF_LINT (= 0);
2415 /* emacs_mule_char can load a charset map from a file, which
2416 allocates a large structure and might cause buffer text
2417 to be relocated as result. Thus, we need to remember the
2418 original pointer to buffer text, and fix up all related
2419 pointers after the call. */
2420 const unsigned char *orig
= coding
->source
;
2423 c
= emacs_mule_char (coding
, src_base
, &nbytes
, &nchars
, &id
,
2425 offset
= coding
->source
- orig
;
2439 src
= src_base
+ nbytes
;
2440 consumed_chars
= consumed_chars_base
+ nchars
;
2441 if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2442 cmp_status
->ncomps
-= nchars
;
2445 /* Now if C >= 0, we found a normally encoded character, if C <
2446 0, we found an old-style composition component character or
2449 if (cmp_status
->state
== COMPOSING_NO
)
2453 if (last_id
!= charset_ascii
)
2454 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
,
2457 last_offset
= char_offset
;
2462 else if (cmp_status
->state
== COMPOSING_CHAR
)
2464 if (cmp_status
->old_form
)
2468 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2475 cmp_status
->nchars
++;
2476 cmp_status
->length
++;
2477 if (cmp_status
->nchars
== MAX_COMPOSITION_COMPONENTS
)
2478 EMACS_MULE_COMPOSITION_END ();
2479 else if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2480 cmp_status
->state
= COMPOSING_RULE
;
2486 cmp_status
->length
++;
2487 cmp_status
->nchars
--;
2488 if (cmp_status
->nchars
== 0)
2489 EMACS_MULE_COMPOSITION_END ();
2492 else if (cmp_status
->state
== COMPOSING_RULE
)
2498 EMACS_MULE_COMPOSITION_END ();
2505 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c
, rule
);
2510 cmp_status
->length
+= 2;
2511 cmp_status
->state
= COMPOSING_CHAR
;
2514 else if (cmp_status
->state
== COMPOSING_COMPONENT_CHAR
)
2517 cmp_status
->length
++;
2518 if (cmp_status
->ncomps
== 0)
2519 cmp_status
->state
= COMPOSING_CHAR
;
2520 else if (cmp_status
->ncomps
> 0)
2522 if (cmp_status
->method
== COMPOSITION_WITH_RULE_ALTCHARS
)
2523 cmp_status
->state
= COMPOSING_COMPONENT_RULE
;
2526 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2528 else /* COMPOSING_COMPONENT_RULE */
2532 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c
, rule
);
2537 cmp_status
->length
+= 2;
2538 cmp_status
->ncomps
--;
2539 if (cmp_status
->ncomps
> 0)
2540 cmp_status
->state
= COMPOSING_COMPONENT_CHAR
;
2542 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2547 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2549 consumed_chars
= consumed_chars_base
;
2551 *charbuf
++ = ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
2556 if (cmp_status
->state
!= COMPOSING_NO
)
2558 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
2559 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2564 charbuf
-= cmp_status
->length
;
2565 for (i
= 0; i
< cmp_status
->length
; i
++)
2566 cmp_status
->carryover
[i
] = charbuf
[i
];
2569 if (last_id
!= charset_ascii
)
2570 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
2571 coding
->consumed_char
+= consumed_chars_base
;
2572 coding
->consumed
= src_base
- coding
->source
;
2573 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
2577 #define EMACS_MULE_LEADING_CODES(id, codes) \
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; \
2588 codes[0] = 0x9D, codes[1] = id; \
2593 encode_coding_emacs_mule (struct coding_system
*coding
)
2595 bool 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
;
2601 ptrdiff_t produced_chars
= 0;
2602 Lisp_Object attrs
, charset_list
;
2604 int preferred_charset_id
= -1;
2606 CODING_GET_INFO (coding
, attrs
, charset_list
);
2607 if (! EQ (charset_list
, Vemacs_mule_charset_list
))
2609 charset_list
= Vemacs_mule_charset_list
;
2610 ASET (attrs
, coding_attr_charset_list
, charset_list
);
2613 while (charbuf
< charbuf_end
)
2615 ASSURE_DESTINATION (safe_room
);
2620 /* Handle an annotation. */
2623 case CODING_ANNOTATE_COMPOSITION_MASK
:
2624 /* Not yet implemented. */
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
),
2631 preferred_charset_id
= -1;
2640 if (ASCII_CHAR_P (c
))
2641 EMIT_ONE_ASCII_BYTE (c
);
2642 else if (CHAR_BYTE8_P (c
))
2644 c
= CHAR_TO_BYTE8 (c
);
2649 struct charset
*charset
;
2653 unsigned char leading_codes
[2];
2655 if (preferred_charset_id
>= 0)
2659 charset
= CHARSET_FROM_ID (preferred_charset_id
);
2660 CODING_CHAR_CHARSET_P (coding
, dst
, dst_end
, c
, charset
, result
);
2662 code
= ENCODE_CHAR (charset
, c
);
2664 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2668 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2672 c
= coding
->default_char
;
2673 if (ASCII_CHAR_P (c
))
2675 EMIT_ONE_ASCII_BYTE (c
);
2678 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2681 dimension
= CHARSET_DIMENSION (charset
);
2682 emacs_mule_id
= CHARSET_EMACS_MULE_ID (charset
);
2683 EMACS_MULE_LEADING_CODES (emacs_mule_id
, leading_codes
);
2684 EMIT_ONE_BYTE (leading_codes
[0]);
2685 if (leading_codes
[1])
2686 EMIT_ONE_BYTE (leading_codes
[1]);
2688 EMIT_ONE_BYTE (code
| 0x80);
2692 EMIT_ONE_BYTE (code
>> 8);
2693 EMIT_ONE_BYTE (code
& 0xFF);
2697 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
2698 coding
->produced_char
+= produced_chars
;
2699 coding
->produced
= dst
- coding
->destination
;
2704 /*** 7. ISO2022 handlers ***/
2706 /* The following note describes the coding system ISO2022 briefly.
2707 Since the intention of this note is to help understand the
2708 functions in this file, some parts are NOT ACCURATE or are OVERLY
2709 SIMPLIFIED. For thorough understanding, please refer to the
2710 original document of ISO2022. This is equivalent to the standard
2711 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
2713 ISO2022 provides many mechanisms to encode several character sets
2714 in 7-bit and 8-bit environments. For 7-bit environments, all text
2715 is encoded using bytes less than 128. This may make the encoded
2716 text a little bit longer, but the text passes more easily through
2717 several types of gateway, some of which strip off the MSB (Most
2720 There are two kinds of character sets: control character sets and
2721 graphic character sets. The former contain control characters such
2722 as `newline' and `escape' to provide control functions (control
2723 functions are also provided by escape sequences). The latter
2724 contain graphic characters such as 'A' and '-'. Emacs recognizes
2725 two control character sets and many graphic character sets.
2727 Graphic character sets are classified into one of the following
2728 four classes, according to the number of bytes (DIMENSION) and
2729 number of characters in one dimension (CHARS) of the set:
2730 - DIMENSION1_CHARS94
2731 - DIMENSION1_CHARS96
2732 - DIMENSION2_CHARS94
2733 - DIMENSION2_CHARS96
2735 In addition, each character set is assigned an identification tag,
2736 unique for each set, called the "final character" (denoted as <F>
2737 hereafter). The <F> of each character set is decided by ECMA(*)
2738 when it is registered in ISO. The code range of <F> is 0x30..0x7F
2739 (0x30..0x3F are for private use only).
2741 Note (*): ECMA = European Computer Manufacturers Association
2743 Here are examples of graphic character sets [NAME(<F>)]:
2744 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
2745 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
2746 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
2747 o DIMENSION2_CHARS96 -- none for the moment
2749 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
2750 C0 [0x00..0x1F] -- control character plane 0
2751 GL [0x20..0x7F] -- graphic character plane 0
2752 C1 [0x80..0x9F] -- control character plane 1
2753 GR [0xA0..0xFF] -- graphic character plane 1
2755 A control character set is directly designated and invoked to C0 or
2756 C1 by an escape sequence. The most common case is that:
2757 - ISO646's control character set is designated/invoked to C0, and
2758 - ISO6429's control character set is designated/invoked to C1,
2759 and usually these designations/invocations are omitted in encoded
2760 text. In a 7-bit environment, only C0 can be used, and a control
2761 character for C1 is encoded by an appropriate escape sequence to
2762 fit into the environment. All control characters for C1 are
2763 defined to have corresponding escape sequences.
2765 A graphic character set is at first designated to one of four
2766 graphic registers (G0 through G3), then these graphic registers are
2767 invoked to GL or GR. These designations and invocations can be
2768 done independently. The most common case is that G0 is invoked to
2769 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
2770 these invocations and designations are omitted in encoded text.
2771 In a 7-bit environment, only GL can be used.
2773 When a graphic character set of CHARS94 is invoked to GL, codes
2774 0x20 and 0x7F of the GL area work as control characters SPACE and
2775 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
2778 There are two ways of invocation: locking-shift and single-shift.
2779 With locking-shift, the invocation lasts until the next different
2780 invocation, whereas with single-shift, the invocation affects the
2781 following character only and doesn't affect the locking-shift
2782 state. Invocations are done by the following control characters or
2785 ----------------------------------------------------------------------
2786 abbrev function cntrl escape seq description
2787 ----------------------------------------------------------------------
2788 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
2789 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
2790 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
2791 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
2792 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
2793 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
2794 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
2795 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
2796 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
2797 ----------------------------------------------------------------------
2798 (*) These are not used by any known coding system.
2800 Control characters for these functions are defined by macros
2801 ISO_CODE_XXX in `coding.h'.
2803 Designations are done by the following escape sequences:
2804 ----------------------------------------------------------------------
2805 escape sequence description
2806 ----------------------------------------------------------------------
2807 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
2808 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
2809 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
2810 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
2811 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
2812 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
2813 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
2814 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
2815 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
2816 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
2817 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
2818 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
2819 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
2820 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
2821 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
2822 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
2823 ----------------------------------------------------------------------
2825 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
2826 of dimension 1, chars 94, and final character <F>, etc...
2828 Note (*): Although these designations are not allowed in ISO2022,
2829 Emacs accepts them on decoding, and produces them on encoding
2830 CHARS96 character sets in a coding system which is characterized as
2831 7-bit environment, non-locking-shift, and non-single-shift.
2833 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
2834 '(' must be omitted. We refer to this as "short-form" hereafter.
2836 Now you may notice that there are a lot of ways of encoding the
2837 same multilingual text in ISO2022. Actually, there exist many
2838 coding systems such as Compound Text (used in X11's inter client
2839 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
2840 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
2841 localized platforms), and all of these are variants of ISO2022.
2843 In addition to the above, Emacs handles two more kinds of escape
2844 sequences: ISO6429's direction specification and Emacs' private
2845 sequence for specifying character composition.
2847 ISO6429's direction specification takes the following form:
2848 o CSI ']' -- end of the current direction
2849 o CSI '0' ']' -- end of the current direction
2850 o CSI '1' ']' -- start of left-to-right text
2851 o CSI '2' ']' -- start of right-to-left text
2852 The control character CSI (0x9B: control sequence introducer) is
2853 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
2855 Character composition specification takes the following form:
2856 o ESC '0' -- start relative composition
2857 o ESC '1' -- end composition
2858 o ESC '2' -- start rule-base composition (*)
2859 o ESC '3' -- start relative composition with alternate chars (**)
2860 o ESC '4' -- start rule-base composition with alternate chars (**)
2861 Since these are not standard escape sequences of any ISO standard,
2862 the use of them with these meanings is restricted to Emacs only.
2864 (*) This form is used only in Emacs 20.7 and older versions,
2865 but newer versions can safely decode it.
2866 (**) This form is used only in Emacs 21.1 and newer versions,
2867 and older versions can't decode it.
2869 Here's a list of example usages of these composition escape
2870 sequences (categorized by `enum composition_method').
2872 COMPOSITION_RELATIVE:
2873 ESC 0 CHAR [ CHAR ] ESC 1
2874 COMPOSITION_WITH_RULE:
2875 ESC 2 CHAR [ RULE CHAR ] ESC 1
2876 COMPOSITION_WITH_ALTCHARS:
2877 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
2878 COMPOSITION_WITH_RULE_ALTCHARS:
2879 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
2881 static enum iso_code_class_type iso_code_class
[256];
2883 #define SAFE_CHARSET_P(coding, id) \
2884 ((id) <= (coding)->max_charset_id \
2885 && (coding)->safe_charsets[id] != 255)
2888 setup_iso_safe_charsets (Lisp_Object attrs
)
2890 Lisp_Object charset_list
, safe_charsets
;
2891 Lisp_Object request
;
2892 Lisp_Object reg_usage
;
2894 EMACS_INT reg94
, reg96
;
2895 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
2898 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
2899 if ((flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
2900 && ! EQ (charset_list
, Viso_2022_charset_list
))
2902 charset_list
= Viso_2022_charset_list
;
2903 ASET (attrs
, coding_attr_charset_list
, charset_list
);
2904 ASET (attrs
, coding_attr_safe_charsets
, Qnil
);
2907 if (STRINGP (AREF (attrs
, coding_attr_safe_charsets
)))
2911 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
2913 int id
= XINT (XCAR (tail
));
2914 if (max_charset_id
< id
)
2915 max_charset_id
= id
;
2918 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
2919 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
2920 request
= AREF (attrs
, coding_attr_iso_request
);
2921 reg_usage
= AREF (attrs
, coding_attr_iso_usage
);
2922 reg94
= XINT (XCAR (reg_usage
));
2923 reg96
= XINT (XCDR (reg_usage
));
2925 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
2929 struct charset
*charset
;
2932 charset
= CHARSET_FROM_ID (XINT (id
));
2933 reg
= Fcdr (Fassq (id
, request
));
2935 SSET (safe_charsets
, XINT (id
), XINT (reg
));
2936 else if (charset
->iso_chars_96
)
2939 SSET (safe_charsets
, XINT (id
), reg96
);
2944 SSET (safe_charsets
, XINT (id
), reg94
);
2947 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
2951 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2952 Return true if a text is encoded in one of ISO-2022 based coding
2956 detect_coding_iso_2022 (struct coding_system
*coding
,
2957 struct coding_detection_info
*detect_info
)
2959 const unsigned char *src
= coding
->source
, *src_base
= src
;
2960 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2961 bool multibytep
= coding
->src_multibyte
;
2962 bool single_shifting
= 0;
2965 ptrdiff_t consumed_chars
= 0;
2969 int composition_count
= -1;
2971 detect_info
->checked
|= CATEGORY_MASK_ISO
;
2973 for (i
= coding_category_iso_7
; i
<= coding_category_iso_8_else
; i
++)
2975 struct coding_system
*this = &(coding_categories
[i
]);
2976 Lisp_Object attrs
, val
;
2980 attrs
= CODING_ID_ATTRS (this->id
);
2981 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT
2982 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Viso_2022_charset_list
))
2983 setup_iso_safe_charsets (attrs
);
2984 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
2985 this->max_charset_id
= SCHARS (val
) - 1;
2986 this->safe_charsets
= SDATA (val
);
2989 /* A coding system of this category is always ASCII compatible. */
2990 src
+= coding
->head_ascii
;
2992 while (rejected
!= CATEGORY_MASK_ISO
)
2999 if (inhibit_iso_escape_detection
)
3001 single_shifting
= 0;
3003 if (c
== 'N' || c
== 'O')
3005 /* ESC <Fe> for SS2 or SS3. */
3006 single_shifting
= 1;
3007 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3011 /* End of composition. */
3012 if (composition_count
< 0
3013 || composition_count
> MAX_COMPOSITION_COMPONENTS
)
3016 composition_count
= -1;
3017 found
|= CATEGORY_MASK_ISO
;
3019 else if (c
>= '0' && c
<= '4')
3021 /* ESC <Fp> for start/end composition. */
3022 composition_count
= 0;
3026 if (c
>= '(' && c
<= '/')
3028 /* Designation sequence for a charset of dimension 1. */
3030 if (c1
< ' ' || c1
>= 0x80
3031 || (id
= iso_charset_table
[0][c
>= ','][c1
]) < 0)
3033 /* Invalid designation sequence. Just ignore. */
3035 rejected
|= (CATEGORY_MASK_ISO_7BIT
3036 | CATEGORY_MASK_ISO_7_ELSE
);
3042 /* Designation sequence for a charset of dimension 2. */
3044 if (c
>= '@' && c
<= 'B')
3045 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
3046 id
= iso_charset_table
[1][0][c
];
3047 else if (c
>= '(' && c
<= '/')
3050 if (c1
< ' ' || c1
>= 0x80
3051 || (id
= iso_charset_table
[1][c
>= ','][c1
]) < 0)
3053 /* Invalid designation sequence. Just ignore. */
3055 rejected
|= (CATEGORY_MASK_ISO_7BIT
3056 | CATEGORY_MASK_ISO_7_ELSE
);
3062 /* Invalid designation sequence. Just ignore it. */
3064 rejected
|= (CATEGORY_MASK_ISO_7BIT
3065 | CATEGORY_MASK_ISO_7_ELSE
);
3071 /* Invalid escape sequence. Just ignore it. */
3073 rejected
|= (CATEGORY_MASK_ISO_7BIT
3074 | CATEGORY_MASK_ISO_7_ELSE
);
3078 /* We found a valid designation sequence for CHARSET. */
3079 rejected
|= CATEGORY_MASK_ISO_8BIT
;
3080 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7
],
3082 found
|= CATEGORY_MASK_ISO_7
;
3084 rejected
|= CATEGORY_MASK_ISO_7
;
3085 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_tight
],
3087 found
|= CATEGORY_MASK_ISO_7_TIGHT
;
3089 rejected
|= CATEGORY_MASK_ISO_7_TIGHT
;
3090 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_else
],
3092 found
|= CATEGORY_MASK_ISO_7_ELSE
;
3094 rejected
|= CATEGORY_MASK_ISO_7_ELSE
;
3095 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_8_else
],
3097 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3099 rejected
|= CATEGORY_MASK_ISO_8_ELSE
;
3105 /* Locking shift out/in. */
3106 if (inhibit_iso_escape_detection
)
3108 single_shifting
= 0;
3109 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3113 /* Control sequence introducer. */
3114 single_shifting
= 0;
3115 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3116 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3117 goto check_extra_latin
;
3122 if (inhibit_iso_escape_detection
)
3124 single_shifting
= 0;
3125 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3126 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3127 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3129 found
|= CATEGORY_MASK_ISO_8_1
;
3130 single_shifting
= 1;
3132 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_2
])
3133 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3135 found
|= CATEGORY_MASK_ISO_8_2
;
3136 single_shifting
= 1;
3138 if (single_shifting
)
3140 goto check_extra_latin
;
3147 if (composition_count
>= 0)
3148 composition_count
++;
3149 single_shifting
= 0;
3152 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3155 found
|= CATEGORY_MASK_ISO_8_1
;
3156 /* Check the length of succeeding codes of the range
3157 0xA0..0FF. If the byte length is even, we include
3158 CATEGORY_MASK_ISO_8_2 in `found'. We can check this
3159 only when we are not single shifting. */
3160 if (! single_shifting
3161 && ! (rejected
& CATEGORY_MASK_ISO_8_2
))
3164 while (src
< src_end
)
3176 if (len
& 1 && src
< src_end
)
3178 rejected
|= CATEGORY_MASK_ISO_8_2
;
3179 if (composition_count
>= 0)
3180 composition_count
+= len
;
3184 found
|= CATEGORY_MASK_ISO_8_2
;
3185 if (composition_count
>= 0)
3186 composition_count
+= len
/ 2;
3192 if (! VECTORP (Vlatin_extra_code_table
)
3193 || NILP (AREF (Vlatin_extra_code_table
, c
)))
3195 rejected
= CATEGORY_MASK_ISO
;
3198 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3199 & CODING_ISO_FLAG_LATIN_EXTRA
)
3200 found
|= CATEGORY_MASK_ISO_8_1
;
3202 rejected
|= CATEGORY_MASK_ISO_8_1
;
3203 rejected
|= CATEGORY_MASK_ISO_8_2
;
3207 detect_info
->rejected
|= CATEGORY_MASK_ISO
;
3211 detect_info
->rejected
|= rejected
;
3212 detect_info
->found
|= (found
& ~rejected
);
3217 /* Set designation state into CODING. Set CHARS_96 to -1 if the
3218 escape sequence should be kept. */
3219 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \
3223 if (final < '0' || final >= 128 \
3224 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \
3225 || !SAFE_CHARSET_P (coding, id)) \
3227 CODING_ISO_DESIGNATION (coding, reg) = -2; \
3231 prev = CODING_ISO_DESIGNATION (coding, reg); \
3232 if (id == charset_jisx0201_roman) \
3234 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
3235 id = charset_ascii; \
3237 else if (id == charset_jisx0208_1978) \
3239 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
3240 id = charset_jisx0208; \
3242 CODING_ISO_DESIGNATION (coding, reg) = id; \
3243 /* If there was an invalid designation to REG previously, and this \
3244 designation is ASCII to REG, we should keep this designation \
3246 if (prev == -2 && id == charset_ascii) \
3251 /* Handle these composition sequence (ALT: alternate char):
3253 (1) relative composition: ESC 0 CHAR ... ESC 1
3254 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3255 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1
3256 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1
3258 When the start sequence (ESC 0/2/3/4) is found, this annotation
3261 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ]
3263 Then, upon reading CHAR or RULE (one or two bytes), these codes are
3264 produced until the end sequence (ESC 1) is found:
3267 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
3268 (3) ALT ... ALT -1 -1 CHAR ... CHAR
3269 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR
3271 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the
3272 annotation header is updated as below:
3274 (1) LENGTH: unchanged, NCHARS: number of CHARs
3275 (2) LENGTH: unchanged, NCHARS: number of CHARs
3276 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs
3277 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs
3279 If an error is found while composing, the annotation header is
3282 [ ESC '0'/'2'/'3'/'4' -2 0 ]
3284 and the sequence [ -2 DECODED-RULE ] is changed to the original
3285 byte sequence as below:
3286 o the original byte sequence is B: [ B -1 ]
3287 o the original byte sequence is B1 B2: [ B1 B2 ]
3288 and the sequence [ -1 -1 ] is changed to the original byte
3293 /* Decode a composition rule C1 and maybe one more byte from the
3294 source, and set RULE to the encoded composition rule. If the rule
3295 is invalid, goto invalid_code. */
3297 #define DECODE_COMPOSITION_RULE(rule) \
3301 goto invalid_code; \
3302 if (rule < 81) /* old format (before ver.21) */ \
3304 int gref = (rule) / 9; \
3305 int nref = (rule) % 9; \
3306 if (gref == 4) gref = 10; \
3307 if (nref == 4) nref = 10; \
3308 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
3310 else /* new format (after ver.21) */ \
3314 ONE_MORE_BYTE (b); \
3315 if (! COMPOSITION_ENCODE_RULE_VALID (rule - 81, b - 32)) \
3316 goto invalid_code; \
3317 rule = COMPOSITION_ENCODE_RULE (rule - 81, b - 32); \
3318 rule += 0x100; /* Distinguish it from the old format. */ \
3322 #define ENCODE_COMPOSITION_RULE(rule) \
3324 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \
3326 if (rule < 0x100) /* old format */ \
3328 if (gref == 10) gref = 4; \
3329 if (nref == 10) nref = 4; \
3330 charbuf[idx] = 32 + gref * 9 + nref; \
3331 charbuf[idx + 1] = -1; \
3334 else /* new format */ \
3336 charbuf[idx] = 32 + 81 + gref; \
3337 charbuf[idx + 1] = 32 + nref; \
3342 /* Finish the current composition as invalid. */
3345 finish_composition (int *charbuf
, struct composition_status
*cmp_status
)
3347 int idx
= - cmp_status
->length
;
3350 /* Recover the original ESC sequence */
3351 charbuf
[idx
++] = ISO_CODE_ESC
;
3352 charbuf
[idx
++] = (cmp_status
->method
== COMPOSITION_RELATIVE
? '0'
3353 : cmp_status
->method
== COMPOSITION_WITH_RULE
? '2'
3354 : cmp_status
->method
== COMPOSITION_WITH_ALTCHARS
? '3'
3355 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */
3357 charbuf
[idx
++] = -2;
3359 charbuf
[idx
++] = -1;
3360 new_chars
= cmp_status
->nchars
;
3361 if (cmp_status
->method
>= COMPOSITION_WITH_RULE
)
3362 for (; idx
< 0; idx
++)
3364 int elt
= charbuf
[idx
];
3368 ENCODE_COMPOSITION_RULE (charbuf
[idx
+ 1]);
3373 charbuf
[idx
++] = ISO_CODE_ESC
;
3378 cmp_status
->state
= COMPOSING_NO
;
3382 /* If characters are under composition, finish the composition. */
3383 #define MAYBE_FINISH_COMPOSITION() \
3385 if (cmp_status->state != COMPOSING_NO) \
3386 char_offset += finish_composition (charbuf, cmp_status); \
3389 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
3391 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
3392 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3393 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1
3394 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1
3396 Produce this annotation sequence now:
3398 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ]
3401 #define DECODE_COMPOSITION_START(c1) \
3404 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \
3405 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3406 || (cmp_status->state == COMPOSING_COMPONENT_RULE \
3407 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \
3411 cmp_status->state = COMPOSING_CHAR; \
3412 cmp_status->length += 2; \
3416 MAYBE_FINISH_COMPOSITION (); \
3417 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \
3418 : c1 == '2' ? COMPOSITION_WITH_RULE \
3419 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
3420 : COMPOSITION_WITH_RULE_ALTCHARS); \
3422 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \
3423 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
3424 cmp_status->length = MAX_ANNOTATION_LENGTH; \
3425 cmp_status->nchars = cmp_status->ncomps = 0; \
3426 coding->annotated = 1; \
3431 /* Handle composition end sequence ESC 1. */
3433 #define DECODE_COMPOSITION_END() \
3435 if (cmp_status->nchars == 0 \
3436 || ((cmp_status->state == COMPOSING_CHAR) \
3437 == (cmp_status->method == COMPOSITION_WITH_RULE))) \
3439 MAYBE_FINISH_COMPOSITION (); \
3440 goto invalid_code; \
3442 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3443 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \
3444 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \
3445 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \
3446 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \
3447 char_offset += cmp_status->nchars; \
3448 cmp_status->state = COMPOSING_NO; \
3451 /* Store a composition rule RULE in charbuf, and update cmp_status. */
3453 #define STORE_COMPOSITION_RULE(rule) \
3456 *charbuf++ = rule; \
3457 cmp_status->length += 2; \
3458 cmp_status->state--; \
3461 /* Store a composed char or a component char C in charbuf, and update
3464 #define STORE_COMPOSITION_CHAR(c) \
3467 cmp_status->length++; \
3468 if (cmp_status->state == COMPOSING_CHAR) \
3469 cmp_status->nchars++; \
3471 cmp_status->ncomps++; \
3472 if (cmp_status->method == COMPOSITION_WITH_RULE \
3473 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \
3474 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \
3475 cmp_status->state++; \
3479 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3482 decode_coding_iso_2022 (struct coding_system
*coding
)
3484 const unsigned char *src
= coding
->source
+ coding
->consumed
;
3485 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3486 const unsigned char *src_base
;
3487 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
3488 /* We may produce two annotations (charset and composition) in one
3489 loop and one more charset annotation at the end. */
3491 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
3492 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
3493 bool multibytep
= coding
->src_multibyte
;
3494 /* Charsets invoked to graphic plane 0 and 1 respectively. */
3495 int charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3496 int charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3497 int charset_id_2
, charset_id_3
;
3498 struct charset
*charset
;
3500 struct composition_status
*cmp_status
= CODING_ISO_CMP_STATUS (coding
);
3501 Lisp_Object attrs
= CODING_ID_ATTRS (coding
->id
);
3502 ptrdiff_t char_offset
= coding
->produced_char
;
3503 ptrdiff_t last_offset
= char_offset
;
3504 int last_id
= charset_ascii
;
3506 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
3507 int byte_after_cr
= -1;
3510 setup_iso_safe_charsets (attrs
);
3511 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
3513 if (cmp_status
->state
!= COMPOSING_NO
)
3515 if (charbuf_end
- charbuf
< cmp_status
->length
)
3517 for (i
= 0; i
< cmp_status
->length
; i
++)
3518 *charbuf
++ = cmp_status
->carryover
[i
];
3519 coding
->annotated
= 1;
3527 consumed_chars_base
= consumed_chars
;
3529 if (charbuf
>= charbuf_end
)
3531 if (byte_after_cr
>= 0)
3536 if (byte_after_cr
>= 0)
3537 c1
= byte_after_cr
, byte_after_cr
= -1;
3543 if (CODING_ISO_EXTSEGMENT_LEN (coding
) > 0)
3545 *charbuf
++ = ASCII_CHAR_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3547 CODING_ISO_EXTSEGMENT_LEN (coding
)--;
3551 if (CODING_ISO_EMBEDDED_UTF_8 (coding
))
3553 if (c1
== ISO_CODE_ESC
)
3555 if (src
+ 1 >= src_end
)
3556 goto no_more_source
;
3557 *charbuf
++ = ISO_CODE_ESC
;
3559 if (src
[0] == '%' && src
[1] == '@')
3562 consumed_chars
+= 2;
3564 /* We are sure charbuf can contain two more chars. */
3567 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
3572 *charbuf
++ = ASCII_CHAR_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3578 if ((cmp_status
->state
== COMPOSING_RULE
3579 || cmp_status
->state
== COMPOSING_COMPONENT_RULE
)
3580 && c1
!= ISO_CODE_ESC
)
3584 DECODE_COMPOSITION_RULE (rule
);
3585 STORE_COMPOSITION_RULE (rule
);
3589 /* We produce at most one character. */
3590 switch (iso_code_class
[c1
])
3592 case ISO_0x20_or_0x7F
:
3593 if (charset_id_0
< 0
3594 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0
)))
3595 /* This is SPACE or DEL. */
3596 charset
= CHARSET_FROM_ID (charset_ascii
);
3598 charset
= CHARSET_FROM_ID (charset_id_0
);
3601 case ISO_graphic_plane_0
:
3602 if (charset_id_0
< 0)
3603 charset
= CHARSET_FROM_ID (charset_ascii
);
3605 charset
= CHARSET_FROM_ID (charset_id_0
);
3608 case ISO_0xA0_or_0xFF
:
3609 if (charset_id_1
< 0
3610 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1
))
3611 || CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3613 /* This is a graphic character, we fall down ... */
3615 case ISO_graphic_plane_1
:
3616 if (charset_id_1
< 0)
3618 charset
= CHARSET_FROM_ID (charset_id_1
);
3622 if (eol_dos
&& c1
== '\r')
3623 ONE_MORE_BYTE (byte_after_cr
);
3624 MAYBE_FINISH_COMPOSITION ();
3625 charset
= CHARSET_FROM_ID (charset_ascii
);
3632 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3633 || CODING_ISO_DESIGNATION (coding
, 1) < 0)
3635 CODING_ISO_INVOCATION (coding
, 0) = 1;
3636 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3640 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
))
3642 CODING_ISO_INVOCATION (coding
, 0) = 0;
3643 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3646 case ISO_single_shift_2_7
:
3647 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
))
3649 case ISO_single_shift_2
:
3650 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3652 /* SS2 is handled as an escape sequence of ESC 'N' */
3654 goto label_escape_sequence
;
3656 case ISO_single_shift_3
:
3657 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3659 /* SS2 is handled as an escape sequence of ESC 'O' */
3661 goto label_escape_sequence
;
3663 case ISO_control_sequence_introducer
:
3664 /* CSI is handled as an escape sequence of ESC '[' ... */
3666 goto label_escape_sequence
;
3670 label_escape_sequence
:
3671 /* Escape sequences handled here are invocation,
3672 designation, direction specification, and character
3673 composition specification. */
3676 case '&': /* revision of following character set */
3678 if (!(c1
>= '@' && c1
<= '~'))
3681 if (c1
!= ISO_CODE_ESC
)
3684 goto label_escape_sequence
;
3686 case '$': /* designation of 2-byte character set */
3687 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3693 if (c1
>= '@' && c1
<= 'B')
3694 { /* designation of JISX0208.1978, GB2312.1980,
3696 reg
= 0, chars96
= 0;
3698 else if (c1
>= 0x28 && c1
<= 0x2B)
3699 { /* designation of DIMENSION2_CHARS94 character set */
3700 reg
= c1
- 0x28, chars96
= 0;
3703 else if (c1
>= 0x2C && c1
<= 0x2F)
3704 { /* designation of DIMENSION2_CHARS96 character set */
3705 reg
= c1
- 0x2C, chars96
= 1;
3710 DECODE_DESIGNATION (reg
, 2, chars96
, c1
);
3711 /* We must update these variables now. */
3713 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3715 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3721 case 'n': /* invocation of locking-shift-2 */
3722 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3723 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3725 CODING_ISO_INVOCATION (coding
, 0) = 2;
3726 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3729 case 'o': /* invocation of locking-shift-3 */
3730 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3731 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3733 CODING_ISO_INVOCATION (coding
, 0) = 3;
3734 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3737 case 'N': /* invocation of single-shift-2 */
3738 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3739 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3741 charset_id_2
= CODING_ISO_DESIGNATION (coding
, 2);
3742 if (charset_id_2
< 0)
3743 charset
= CHARSET_FROM_ID (charset_ascii
);
3745 charset
= CHARSET_FROM_ID (charset_id_2
);
3747 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0)
3748 || (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3749 && ((CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LEVEL_4
)
3750 ? c1
>= 0x80 : c1
< 0x80)))
3754 case 'O': /* invocation of single-shift-3 */
3755 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3756 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3758 charset_id_3
= CODING_ISO_DESIGNATION (coding
, 3);
3759 if (charset_id_3
< 0)
3760 charset
= CHARSET_FROM_ID (charset_ascii
);
3762 charset
= CHARSET_FROM_ID (charset_id_3
);
3764 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0)
3765 || (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3766 && ((CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LEVEL_4
)
3767 ? c1
>= 0x80 : c1
< 0x80)))
3771 case '0': case '2': case '3': case '4': /* start composition */
3772 if (! (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
))
3774 if (last_id
!= charset_ascii
)
3776 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3777 last_id
= charset_ascii
;
3778 last_offset
= char_offset
;
3780 DECODE_COMPOSITION_START (c1
);
3783 case '1': /* end composition */
3784 if (cmp_status
->state
== COMPOSING_NO
)
3786 DECODE_COMPOSITION_END ();
3789 case '[': /* specification of direction */
3790 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DIRECTION
))
3792 /* For the moment, nested direction is not supported.
3793 So, `coding->mode & CODING_MODE_DIRECTION' zero means
3794 left-to-right, and nonzero means right-to-left. */
3798 case ']': /* end of the current direction */
3799 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3801 case '0': /* end of the current direction */
3802 case '1': /* start of left-to-right direction */
3805 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3810 case '2': /* start of right-to-left direction */
3813 coding
->mode
|= CODING_MODE_DIRECTION
;
3827 /* CTEXT extended segment:
3828 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
3829 We keep these bytes as is for the moment.
3830 They may be decoded by post-read-conversion. */
3834 ONE_MORE_BYTE (dim
);
3835 if (dim
< '0' || dim
> '4')
3843 size
= ((M
- 128) * 128) + (L
- 128);
3844 if (charbuf
+ 6 > charbuf_end
)
3846 *charbuf
++ = ISO_CODE_ESC
;
3850 *charbuf
++ = BYTE8_TO_CHAR (M
);
3851 *charbuf
++ = BYTE8_TO_CHAR (L
);
3852 CODING_ISO_EXTSEGMENT_LEN (coding
) = size
;
3856 /* XFree86 extension for embedding UTF-8 in CTEXT:
3857 ESC % G --UTF-8-BYTES-- ESC % @
3858 We keep these bytes as is for the moment.
3859 They may be decoded by post-read-conversion. */
3860 if (charbuf
+ 3 > charbuf_end
)
3862 *charbuf
++ = ISO_CODE_ESC
;
3865 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 1;
3873 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3878 if (c1
>= 0x28 && c1
<= 0x2B)
3879 { /* designation of DIMENSION1_CHARS94 character set */
3880 reg
= c1
- 0x28, chars96
= 0;
3883 else if (c1
>= 0x2C && c1
<= 0x2F)
3884 { /* designation of DIMENSION1_CHARS96 character set */
3885 reg
= c1
- 0x2C, chars96
= 1;
3890 DECODE_DESIGNATION (reg
, 1, chars96
, c1
);
3891 /* We must update these variables now. */
3893 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3895 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3907 if (cmp_status
->state
== COMPOSING_NO
3908 && charset
->id
!= charset_ascii
3909 && last_id
!= charset
->id
)
3911 if (last_id
!= charset_ascii
)
3912 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3913 last_id
= charset
->id
;
3914 last_offset
= char_offset
;
3917 /* Now we know CHARSET and 1st position code C1 of a character.
3918 Produce a decoded character while getting 2nd and 3rd
3919 position codes C2, C3 if necessary. */
3920 if (CHARSET_DIMENSION (charset
) > 1)
3923 if (c2
< 0x20 || (c2
>= 0x80 && c2
< 0xA0)
3924 || ((c1
& 0x80) != (c2
& 0x80)))
3925 /* C2 is not in a valid range. */
3927 if (CHARSET_DIMENSION (charset
) == 2)
3928 c1
= (c1
<< 8) | c2
;
3932 if (c3
< 0x20 || (c3
>= 0x80 && c3
< 0xA0)
3933 || ((c1
& 0x80) != (c3
& 0x80)))
3934 /* C3 is not in a valid range. */
3936 c1
= (c1
<< 16) | (c2
<< 8) | c2
;
3940 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c1
, c
);
3943 MAYBE_FINISH_COMPOSITION ();
3944 for (; src_base
< src
; src_base
++, char_offset
++)
3946 if (ASCII_CHAR_P (*src_base
))
3947 *charbuf
++ = *src_base
;
3949 *charbuf
++ = BYTE8_TO_CHAR (*src_base
);
3952 else if (cmp_status
->state
== COMPOSING_NO
)
3957 else if ((cmp_status
->state
== COMPOSING_CHAR
3958 ? cmp_status
->nchars
3959 : cmp_status
->ncomps
)
3960 >= MAX_COMPOSITION_COMPONENTS
)
3962 /* Too long composition. */
3963 MAYBE_FINISH_COMPOSITION ();
3968 STORE_COMPOSITION_CHAR (c
);
3972 MAYBE_FINISH_COMPOSITION ();
3974 consumed_chars
= consumed_chars_base
;
3976 *charbuf
++ = c
< 0 ? -c
: ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
3978 /* Reset the invocation and designation status to the safest
3979 one; i.e. designate ASCII to the graphic register 0, and
3980 invoke that register to the graphic plane 0. This typically
3981 helps the case that an designation sequence for ASCII "ESC (
3982 B" is somehow broken (e.g. broken by a newline). */
3983 CODING_ISO_INVOCATION (coding
, 0) = 0;
3984 CODING_ISO_DESIGNATION (coding
, 0) = charset_ascii
;
3985 charset_id_0
= charset_ascii
;
3993 if (cmp_status
->state
!= COMPOSING_NO
)
3995 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
3996 MAYBE_FINISH_COMPOSITION ();
3999 charbuf
-= cmp_status
->length
;
4000 for (i
= 0; i
< cmp_status
->length
; i
++)
4001 cmp_status
->carryover
[i
] = charbuf
[i
];
4004 else if (last_id
!= charset_ascii
)
4005 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4006 coding
->consumed_char
+= consumed_chars_base
;
4007 coding
->consumed
= src_base
- coding
->source
;
4008 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4012 /* ISO2022 encoding stuff. */
4015 It is not enough to say just "ISO2022" on encoding, we have to
4016 specify more details. In Emacs, each coding system of ISO2022
4017 variant has the following specifications:
4018 1. Initial designation to G0 thru G3.
4019 2. Allows short-form designation?
4020 3. ASCII should be designated to G0 before control characters?
4021 4. ASCII should be designated to G0 at end of line?
4022 5. 7-bit environment or 8-bit environment?
4023 6. Use locking-shift?
4024 7. Use Single-shift?
4025 And the following two are only for Japanese:
4026 8. Use ASCII in place of JIS0201-1976-Roman?
4027 9. Use JISX0208-1983 in place of JISX0208-1978?
4028 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits
4029 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more
4033 /* Produce codes (escape sequence) for designating CHARSET to graphic
4034 register REG at DST, and increment DST. If <final-char> of CHARSET is
4035 '@', 'A', or 'B' and the coding system CODING allows, produce
4036 designation sequence of short-form. */
4038 #define ENCODE_DESIGNATION(charset, reg, coding) \
4040 unsigned char final_char = CHARSET_ISO_FINAL (charset); \
4041 const char *intermediate_char_94 = "()*+"; \
4042 const char *intermediate_char_96 = ",-./"; \
4043 int revision = -1; \
4045 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \
4046 revision = CHARSET_ISO_REVISION (charset); \
4048 if (revision >= 0) \
4050 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \
4051 EMIT_ONE_BYTE ('@' + revision); \
4053 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \
4054 if (CHARSET_DIMENSION (charset) == 1) \
4057 if (! CHARSET_ISO_CHARS_96 (charset)) \
4058 b = intermediate_char_94[reg]; \
4060 b = intermediate_char_96[reg]; \
4061 EMIT_ONE_ASCII_BYTE (b); \
4065 EMIT_ONE_ASCII_BYTE ('$'); \
4066 if (! CHARSET_ISO_CHARS_96 (charset)) \
4068 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \
4070 || final_char < '@' || final_char > 'B') \
4071 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \
4074 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \
4076 EMIT_ONE_ASCII_BYTE (final_char); \
4078 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \
4082 /* The following two macros produce codes (control character or escape
4083 sequence) for ISO2022 single-shift functions (single-shift-2 and
4086 #define ENCODE_SINGLE_SHIFT_2 \
4088 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4089 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \
4091 EMIT_ONE_BYTE (ISO_CODE_SS2); \
4092 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4096 #define ENCODE_SINGLE_SHIFT_3 \
4098 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4099 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \
4101 EMIT_ONE_BYTE (ISO_CODE_SS3); \
4102 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4106 /* The following four macros produce codes (control character or
4107 escape sequence) for ISO2022 locking-shift functions (shift-in,
4108 shift-out, locking-shift-2, and locking-shift-3). */
4110 #define ENCODE_SHIFT_IN \
4112 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \
4113 CODING_ISO_INVOCATION (coding, 0) = 0; \
4117 #define ENCODE_SHIFT_OUT \
4119 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \
4120 CODING_ISO_INVOCATION (coding, 0) = 1; \
4124 #define ENCODE_LOCKING_SHIFT_2 \
4126 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4127 CODING_ISO_INVOCATION (coding, 0) = 2; \
4131 #define ENCODE_LOCKING_SHIFT_3 \
4133 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4134 CODING_ISO_INVOCATION (coding, 0) = 3; \
4138 /* Produce codes for a DIMENSION1 character whose character set is
4139 CHARSET and whose position-code is C1. Designation and invocation
4140 sequences are also produced in advance if necessary. */
4142 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
4144 int id = CHARSET_ID (charset); \
4146 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
4147 && id == charset_ascii) \
4149 id = charset_jisx0201_roman; \
4150 charset = CHARSET_FROM_ID (id); \
4153 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4155 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4156 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4158 EMIT_ONE_BYTE (c1 | 0x80); \
4159 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4162 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4164 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4167 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4169 EMIT_ONE_BYTE (c1 | 0x80); \
4173 /* Since CHARSET is not yet invoked to any graphic planes, we \
4174 must invoke it, or, at first, designate it to some graphic \
4175 register. Then repeat the loop to actually produce the \
4177 dst = encode_invocation_designation (charset, coding, dst, \
4182 /* Produce codes for a DIMENSION2 character whose character set is
4183 CHARSET and whose position-codes are C1 and C2. Designation and
4184 invocation codes are also produced in advance if necessary. */
4186 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
4188 int id = CHARSET_ID (charset); \
4190 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
4191 && id == charset_jisx0208) \
4193 id = charset_jisx0208_1978; \
4194 charset = CHARSET_FROM_ID (id); \
4197 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4199 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4200 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4202 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4203 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4206 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4208 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4211 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4213 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4217 /* Since CHARSET is not yet invoked to any graphic planes, we \
4218 must invoke it, or, at first, designate it to some graphic \
4219 register. Then repeat the loop to actually produce the \
4221 dst = encode_invocation_designation (charset, coding, dst, \
4226 #define ENCODE_ISO_CHARACTER(charset, c) \
4229 CODING_ENCODE_CHAR (coding, dst, dst_end, (charset), (c), code); \
4231 if (CHARSET_DIMENSION (charset) == 1) \
4232 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \
4234 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \
4238 /* Produce designation and invocation codes at a place pointed by DST
4239 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4242 static unsigned char *
4243 encode_invocation_designation (struct charset
*charset
,
4244 struct coding_system
*coding
,
4245 unsigned char *dst
, ptrdiff_t *p_nchars
)
4247 bool multibytep
= coding
->dst_multibyte
;
4248 ptrdiff_t produced_chars
= *p_nchars
;
4249 int reg
; /* graphic register number */
4250 int id
= CHARSET_ID (charset
);
4252 /* At first, check designations. */
4253 for (reg
= 0; reg
< 4; reg
++)
4254 if (id
== CODING_ISO_DESIGNATION (coding
, reg
))
4259 /* CHARSET is not yet designated to any graphic registers. */
4260 /* At first check the requested designation. */
4261 reg
= CODING_ISO_REQUEST (coding
, id
);
4263 /* Since CHARSET requests no special designation, designate it
4264 to graphic register 0. */
4267 ENCODE_DESIGNATION (charset
, reg
, coding
);
4270 if (CODING_ISO_INVOCATION (coding
, 0) != reg
4271 && CODING_ISO_INVOCATION (coding
, 1) != reg
)
4273 /* Since the graphic register REG is not invoked to any graphic
4274 planes, invoke it to graphic plane 0. */
4277 case 0: /* graphic register 0 */
4281 case 1: /* graphic register 1 */
4285 case 2: /* graphic register 2 */
4286 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4287 ENCODE_SINGLE_SHIFT_2
;
4289 ENCODE_LOCKING_SHIFT_2
;
4292 case 3: /* graphic register 3 */
4293 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4294 ENCODE_SINGLE_SHIFT_3
;
4296 ENCODE_LOCKING_SHIFT_3
;
4301 *p_nchars
= produced_chars
;
4306 /* Produce codes for designation and invocation to reset the graphic
4307 planes and registers to initial state. */
4308 #define ENCODE_RESET_PLANE_AND_REGISTER() \
4311 struct charset *charset; \
4313 if (CODING_ISO_INVOCATION (coding, 0) != 0) \
4315 for (reg = 0; reg < 4; reg++) \
4316 if (CODING_ISO_INITIAL (coding, reg) >= 0 \
4317 && (CODING_ISO_DESIGNATION (coding, reg) \
4318 != CODING_ISO_INITIAL (coding, reg))) \
4320 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \
4321 ENCODE_DESIGNATION (charset, reg, coding); \
4326 /* Produce designation sequences of charsets in the line started from
4327 CHARBUF to a place pointed by DST, and return the number of
4328 produced bytes. DST should not directly point a buffer text area
4329 which may be relocated by char_charset call.
4331 If the current block ends before any end-of-line, we may fail to
4332 find all the necessary designations. */
4335 encode_designation_at_bol (struct coding_system
*coding
,
4336 int *charbuf
, int *charbuf_end
,
4339 unsigned char *orig
= dst
;
4340 struct charset
*charset
;
4341 /* Table of charsets to be designated to each graphic register. */
4343 int c
, found
= 0, reg
;
4344 ptrdiff_t produced_chars
= 0;
4345 bool multibytep
= coding
->dst_multibyte
;
4347 Lisp_Object charset_list
;
4349 attrs
= CODING_ID_ATTRS (coding
->id
);
4350 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4351 if (EQ (charset_list
, Qiso_2022
))
4352 charset_list
= Viso_2022_charset_list
;
4354 for (reg
= 0; reg
< 4; reg
++)
4357 while (charbuf
< charbuf_end
&& found
< 4)
4364 charset
= char_charset (c
, charset_list
, NULL
);
4365 id
= CHARSET_ID (charset
);
4366 reg
= CODING_ISO_REQUEST (coding
, id
);
4367 if (reg
>= 0 && r
[reg
] < 0)
4376 for (reg
= 0; reg
< 4; reg
++)
4378 && CODING_ISO_DESIGNATION (coding
, reg
) != r
[reg
])
4379 ENCODE_DESIGNATION (CHARSET_FROM_ID (r
[reg
]), reg
, coding
);
4385 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
4388 encode_coding_iso_2022 (struct coding_system
*coding
)
4390 bool multibytep
= coding
->dst_multibyte
;
4391 int *charbuf
= coding
->charbuf
;
4392 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4393 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4394 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4396 bool bol_designation
4397 = (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
4398 && CODING_ISO_BOL (coding
));
4399 ptrdiff_t produced_chars
= 0;
4400 Lisp_Object attrs
, eol_type
, charset_list
;
4401 bool ascii_compatible
;
4403 int preferred_charset_id
= -1;
4405 CODING_GET_INFO (coding
, attrs
, charset_list
);
4406 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
4407 if (VECTORP (eol_type
))
4410 setup_iso_safe_charsets (attrs
);
4411 /* Charset list may have been changed. */
4412 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4413 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
4416 = (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
))
4417 && ! (CODING_ISO_FLAGS (coding
) & (CODING_ISO_FLAG_DESIGNATION
4418 | CODING_ISO_FLAG_LOCKING_SHIFT
)));
4420 while (charbuf
< charbuf_end
)
4422 ASSURE_DESTINATION (safe_room
);
4424 if (bol_designation
)
4426 /* We have to produce designation sequences if any now. */
4427 unsigned char desig_buf
[16];
4431 charset_map_loaded
= 0;
4432 nbytes
= encode_designation_at_bol (coding
, charbuf
, charbuf_end
,
4434 if (charset_map_loaded
4435 && (offset
= coding_change_destination (coding
)))
4440 memcpy (dst
, desig_buf
, nbytes
);
4442 /* We are sure that designation sequences are all ASCII bytes. */
4443 produced_chars
+= nbytes
;
4444 bol_designation
= 0;
4445 ASSURE_DESTINATION (safe_room
);
4452 /* Handle an annotation. */
4455 case CODING_ANNOTATE_COMPOSITION_MASK
:
4456 /* Not yet implemented. */
4458 case CODING_ANNOTATE_CHARSET_MASK
:
4459 preferred_charset_id
= charbuf
[2];
4460 if (preferred_charset_id
>= 0
4461 && NILP (Fmemq (make_number (preferred_charset_id
),
4463 preferred_charset_id
= -1;
4472 /* Now encode the character C. */
4473 if (c
< 0x20 || c
== 0x7F)
4476 || (c
== '\r' && EQ (eol_type
, Qmac
)))
4478 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4479 ENCODE_RESET_PLANE_AND_REGISTER ();
4480 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_INIT_AT_BOL
)
4484 for (i
= 0; i
< 4; i
++)
4485 CODING_ISO_DESIGNATION (coding
, i
)
4486 = CODING_ISO_INITIAL (coding
, i
);
4488 bol_designation
= ((CODING_ISO_FLAGS (coding
)
4489 & CODING_ISO_FLAG_DESIGNATE_AT_BOL
)
4492 else if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_CNTL
)
4493 ENCODE_RESET_PLANE_AND_REGISTER ();
4494 EMIT_ONE_ASCII_BYTE (c
);
4496 else if (ASCII_CHAR_P (c
))
4498 if (ascii_compatible
)
4499 EMIT_ONE_ASCII_BYTE (c
);
4502 struct charset
*charset
= CHARSET_FROM_ID (charset_ascii
);
4503 ENCODE_ISO_CHARACTER (charset
, c
);
4506 else if (CHAR_BYTE8_P (c
))
4508 c
= CHAR_TO_BYTE8 (c
);
4513 struct charset
*charset
;
4515 if (preferred_charset_id
>= 0)
4519 charset
= CHARSET_FROM_ID (preferred_charset_id
);
4520 CODING_CHAR_CHARSET_P (coding
, dst
, dst_end
, c
, charset
, result
);
4522 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4526 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4530 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4532 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4533 charset
= CHARSET_FROM_ID (charset_ascii
);
4537 c
= coding
->default_char
;
4538 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4539 charset_list
, NULL
, charset
);
4542 ENCODE_ISO_CHARACTER (charset
, c
);
4546 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4547 && CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4549 ASSURE_DESTINATION (safe_room
);
4550 ENCODE_RESET_PLANE_AND_REGISTER ();
4552 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4553 CODING_ISO_BOL (coding
) = bol_designation
;
4554 coding
->produced_char
+= produced_chars
;
4555 coding
->produced
= dst
- coding
->destination
;
4560 /*** 8,9. SJIS and BIG5 handlers ***/
4562 /* Although SJIS and BIG5 are not ISO's coding system, they are used
4563 quite widely. So, for the moment, Emacs supports them in the bare
4564 C code. But, in the future, they may be supported only by CCL. */
4566 /* SJIS is a coding system encoding three character sets: ASCII, right
4567 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
4568 as is. A character of charset katakana-jisx0201 is encoded by
4569 "position-code + 0x80". A character of charset japanese-jisx0208
4570 is encoded in 2-byte but two position-codes are divided and shifted
4571 so that it fit in the range below.
4573 --- CODE RANGE of SJIS ---
4574 (character set) (range)
4576 KATAKANA-JISX0201 0xA0 .. 0xDF
4577 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
4578 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
4579 -------------------------------
4583 /* BIG5 is a coding system encoding two character sets: ASCII and
4584 Big5. An ASCII character is encoded as is. Big5 is a two-byte
4585 character set and is encoded in two-byte.
4587 --- CODE RANGE of BIG5 ---
4588 (character set) (range)
4590 Big5 (1st byte) 0xA1 .. 0xFE
4591 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
4592 --------------------------
4596 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4597 Return true if a text is encoded in SJIS. */
4600 detect_coding_sjis (struct coding_system
*coding
,
4601 struct coding_detection_info
*detect_info
)
4603 const unsigned char *src
= coding
->source
, *src_base
;
4604 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4605 bool multibytep
= coding
->src_multibyte
;
4606 ptrdiff_t consumed_chars
= 0;
4609 Lisp_Object attrs
, charset_list
;
4610 int max_first_byte_of_2_byte_code
;
4612 CODING_GET_INFO (coding
, attrs
, charset_list
);
4613 max_first_byte_of_2_byte_code
4614 = (XINT (Flength (charset_list
)) > 3 ? 0xFC : 0xEF);
4616 detect_info
->checked
|= CATEGORY_MASK_SJIS
;
4617 /* A coding system of this category is always ASCII compatible. */
4618 src
+= coding
->head_ascii
;
4626 if ((c
>= 0x81 && c
<= 0x9F)
4627 || (c
>= 0xE0 && c
<= max_first_byte_of_2_byte_code
))
4630 if (c
< 0x40 || c
== 0x7F || c
> 0xFC)
4632 found
= CATEGORY_MASK_SJIS
;
4634 else if (c
>= 0xA0 && c
< 0xE0)
4635 found
= CATEGORY_MASK_SJIS
;
4639 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4643 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4645 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4648 detect_info
->found
|= found
;
4652 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4653 Return true if a text is encoded in BIG5. */
4656 detect_coding_big5 (struct coding_system
*coding
,
4657 struct coding_detection_info
*detect_info
)
4659 const unsigned char *src
= coding
->source
, *src_base
;
4660 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4661 bool multibytep
= coding
->src_multibyte
;
4662 ptrdiff_t consumed_chars
= 0;
4666 detect_info
->checked
|= CATEGORY_MASK_BIG5
;
4667 /* A coding system of this category is always ASCII compatible. */
4668 src
+= coding
->head_ascii
;
4679 if (c
< 0x40 || (c
>= 0x7F && c
<= 0xA0))
4681 found
= CATEGORY_MASK_BIG5
;
4686 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4690 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4692 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4695 detect_info
->found
|= found
;
4699 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
4702 decode_coding_sjis (struct coding_system
*coding
)
4704 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4705 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4706 const unsigned char *src_base
;
4707 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4708 /* We may produce one charset annotation in one loop and one more at
4711 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4712 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
4713 bool multibytep
= coding
->src_multibyte
;
4714 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
4715 struct charset
*charset_kanji2
;
4716 Lisp_Object attrs
, charset_list
, val
;
4717 ptrdiff_t char_offset
= coding
->produced_char
;
4718 ptrdiff_t last_offset
= char_offset
;
4719 int last_id
= charset_ascii
;
4721 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4722 int byte_after_cr
= -1;
4724 CODING_GET_INFO (coding
, attrs
, charset_list
);
4727 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4728 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4729 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4730 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4735 struct charset
*charset
;
4738 consumed_chars_base
= consumed_chars
;
4740 if (charbuf
>= charbuf_end
)
4742 if (byte_after_cr
>= 0)
4747 if (byte_after_cr
>= 0)
4748 c
= byte_after_cr
, byte_after_cr
= -1;
4755 if (eol_dos
&& c
== '\r')
4756 ONE_MORE_BYTE (byte_after_cr
);
4757 charset
= charset_roman
;
4759 else if (c
== 0x80 || c
== 0xA0)
4761 else if (c
>= 0xA1 && c
<= 0xDF)
4763 /* SJIS -> JISX0201-Kana */
4765 charset
= charset_kana
;
4769 /* SJIS -> JISX0208 */
4771 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4775 charset
= charset_kanji
;
4777 else if (c
<= 0xFC && charset_kanji2
)
4779 /* SJIS -> JISX0213-2 */
4781 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4785 charset
= charset_kanji2
;
4789 if (charset
->id
!= charset_ascii
4790 && last_id
!= charset
->id
)
4792 if (last_id
!= charset_ascii
)
4793 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4794 last_id
= charset
->id
;
4795 last_offset
= char_offset
;
4797 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4804 consumed_chars
= consumed_chars_base
;
4806 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4811 if (last_id
!= charset_ascii
)
4812 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4813 coding
->consumed_char
+= consumed_chars_base
;
4814 coding
->consumed
= src_base
- coding
->source
;
4815 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4819 decode_coding_big5 (struct coding_system
*coding
)
4821 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4822 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4823 const unsigned char *src_base
;
4824 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4825 /* We may produce one charset annotation in one loop and one more at
4828 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4829 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
4830 bool multibytep
= coding
->src_multibyte
;
4831 struct charset
*charset_roman
, *charset_big5
;
4832 Lisp_Object attrs
, charset_list
, val
;
4833 ptrdiff_t char_offset
= coding
->produced_char
;
4834 ptrdiff_t last_offset
= char_offset
;
4835 int last_id
= charset_ascii
;
4837 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4838 int byte_after_cr
= -1;
4840 CODING_GET_INFO (coding
, attrs
, charset_list
);
4842 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4843 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
4848 struct charset
*charset
;
4851 consumed_chars_base
= consumed_chars
;
4853 if (charbuf
>= charbuf_end
)
4855 if (byte_after_cr
>= 0)
4860 if (byte_after_cr
>= 0)
4861 c
= byte_after_cr
, byte_after_cr
= -1;
4869 if (eol_dos
&& c
== '\r')
4870 ONE_MORE_BYTE (byte_after_cr
);
4871 charset
= charset_roman
;
4876 if (c
< 0xA1 || c
> 0xFE)
4879 if (c1
< 0x40 || (c1
> 0x7E && c1
< 0xA1) || c1
> 0xFE)
4882 charset
= charset_big5
;
4884 if (charset
->id
!= charset_ascii
4885 && last_id
!= charset
->id
)
4887 if (last_id
!= charset_ascii
)
4888 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4889 last_id
= charset
->id
;
4890 last_offset
= char_offset
;
4892 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4899 consumed_chars
= consumed_chars_base
;
4901 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4906 if (last_id
!= charset_ascii
)
4907 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4908 coding
->consumed_char
+= consumed_chars_base
;
4909 coding
->consumed
= src_base
- coding
->source
;
4910 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4913 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
4914 This function can encode charsets `ascii', `katakana-jisx0201',
4915 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
4916 are sure that all these charsets are registered as official charset
4917 (i.e. do not have extended leading-codes). Characters of other
4918 charsets are produced without any encoding. */
4921 encode_coding_sjis (struct coding_system
*coding
)
4923 bool multibytep
= coding
->dst_multibyte
;
4924 int *charbuf
= coding
->charbuf
;
4925 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4926 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4927 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4929 ptrdiff_t produced_chars
= 0;
4930 Lisp_Object attrs
, charset_list
, val
;
4931 bool ascii_compatible
;
4932 struct charset
*charset_kanji
, *charset_kana
;
4933 struct charset
*charset_kanji2
;
4936 CODING_GET_INFO (coding
, attrs
, charset_list
);
4937 val
= XCDR (charset_list
);
4938 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4939 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4940 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4942 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
4944 while (charbuf
< charbuf_end
)
4946 ASSURE_DESTINATION (safe_room
);
4948 /* Now encode the character C. */
4949 if (ASCII_CHAR_P (c
) && ascii_compatible
)
4950 EMIT_ONE_ASCII_BYTE (c
);
4951 else if (CHAR_BYTE8_P (c
))
4953 c
= CHAR_TO_BYTE8 (c
);
4959 struct charset
*charset
;
4960 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4965 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4967 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4968 charset
= CHARSET_FROM_ID (charset_ascii
);
4972 c
= coding
->default_char
;
4973 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4974 charset_list
, &code
, charset
);
4977 if (code
== CHARSET_INVALID_CODE (charset
))
4979 if (charset
== charset_kanji
)
4983 c1
= code
>> 8, c2
= code
& 0xFF;
4984 EMIT_TWO_BYTES (c1
, c2
);
4986 else if (charset
== charset_kana
)
4987 EMIT_ONE_BYTE (code
| 0x80);
4988 else if (charset_kanji2
&& charset
== charset_kanji2
)
4993 if (c1
== 0x21 || (c1
>= 0x23 && c1
<= 0x25)
4995 || (c1
>= 0x2C && c1
<= 0x2F) || c1
>= 0x6E)
4997 JIS_TO_SJIS2 (code
);
4998 c1
= code
>> 8, c2
= code
& 0xFF;
4999 EMIT_TWO_BYTES (c1
, c2
);
5002 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5005 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5008 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5009 coding
->produced_char
+= produced_chars
;
5010 coding
->produced
= dst
- coding
->destination
;
5015 encode_coding_big5 (struct coding_system
*coding
)
5017 bool multibytep
= coding
->dst_multibyte
;
5018 int *charbuf
= coding
->charbuf
;
5019 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5020 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5021 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5023 ptrdiff_t produced_chars
= 0;
5024 Lisp_Object attrs
, charset_list
, val
;
5025 bool ascii_compatible
;
5026 struct charset
*charset_big5
;
5029 CODING_GET_INFO (coding
, attrs
, charset_list
);
5030 val
= XCDR (charset_list
);
5031 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
5032 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5034 while (charbuf
< charbuf_end
)
5036 ASSURE_DESTINATION (safe_room
);
5038 /* Now encode the character C. */
5039 if (ASCII_CHAR_P (c
) && ascii_compatible
)
5040 EMIT_ONE_ASCII_BYTE (c
);
5041 else if (CHAR_BYTE8_P (c
))
5043 c
= CHAR_TO_BYTE8 (c
);
5049 struct charset
*charset
;
5050 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
5055 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5057 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5058 charset
= CHARSET_FROM_ID (charset_ascii
);
5062 c
= coding
->default_char
;
5063 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
5064 charset_list
, &code
, charset
);
5067 if (code
== CHARSET_INVALID_CODE (charset
))
5069 if (charset
== charset_big5
)
5073 c1
= code
>> 8, c2
= code
& 0xFF;
5074 EMIT_TWO_BYTES (c1
, c2
);
5077 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5080 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5081 coding
->produced_char
+= produced_chars
;
5082 coding
->produced
= dst
- coding
->destination
;
5087 /*** 10. CCL handlers ***/
5089 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5090 Return true if a text is encoded in a coding system of which
5091 encoder/decoder are written in CCL program. */
5094 detect_coding_ccl (struct coding_system
*coding
,
5095 struct coding_detection_info
*detect_info
)
5097 const unsigned char *src
= coding
->source
, *src_base
;
5098 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5099 bool multibytep
= coding
->src_multibyte
;
5100 ptrdiff_t consumed_chars
= 0;
5102 unsigned char *valids
;
5103 ptrdiff_t head_ascii
= coding
->head_ascii
;
5106 detect_info
->checked
|= CATEGORY_MASK_CCL
;
5108 coding
= &coding_categories
[coding_category_ccl
];
5109 valids
= CODING_CCL_VALIDS (coding
);
5110 attrs
= CODING_ID_ATTRS (coding
->id
);
5111 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5120 if (c
< 0 || ! valids
[c
])
5122 if ((valids
[c
] > 1))
5123 found
= CATEGORY_MASK_CCL
;
5125 detect_info
->rejected
|= CATEGORY_MASK_CCL
;
5129 detect_info
->found
|= found
;
5134 decode_coding_ccl (struct coding_system
*coding
)
5136 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5137 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5138 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5139 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
5140 ptrdiff_t consumed_chars
= 0;
5141 bool multibytep
= coding
->src_multibyte
;
5142 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5143 int source_charbuf
[1024];
5144 int source_byteidx
[1025];
5145 Lisp_Object attrs
, charset_list
;
5147 CODING_GET_INFO (coding
, attrs
, charset_list
);
5151 const unsigned char *p
= src
;
5157 while (i
< 1024 && p
< src_end
)
5159 source_byteidx
[i
] = p
- src
;
5160 source_charbuf
[i
++] = STRING_CHAR_ADVANCE (p
);
5162 source_byteidx
[i
] = p
- src
;
5165 while (i
< 1024 && p
< src_end
)
5166 source_charbuf
[i
++] = *p
++;
5168 if (p
== src_end
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
5169 ccl
->last_block
= true;
5170 /* As ccl_driver calls DECODE_CHAR, buffer may be relocated. */
5171 charset_map_loaded
= 0;
5172 ccl_driver (ccl
, source_charbuf
, charbuf
, i
, charbuf_end
- charbuf
,
5174 if (charset_map_loaded
5175 && (offset
= coding_change_source (coding
)))
5181 charbuf
+= ccl
->produced
;
5183 src
+= source_byteidx
[ccl
->consumed
];
5185 src
+= ccl
->consumed
;
5186 consumed_chars
+= ccl
->consumed
;
5187 if (p
== src_end
|| ccl
->status
!= CCL_STAT_SUSPEND_BY_SRC
)
5191 switch (ccl
->status
)
5193 case CCL_STAT_SUSPEND_BY_SRC
:
5194 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5196 case CCL_STAT_SUSPEND_BY_DST
:
5197 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5200 case CCL_STAT_INVALID_CMD
:
5201 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5204 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5207 coding
->consumed_char
+= consumed_chars
;
5208 coding
->consumed
= src
- coding
->source
;
5209 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5213 encode_coding_ccl (struct coding_system
*coding
)
5215 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5216 bool multibytep
= coding
->dst_multibyte
;
5217 int *charbuf
= coding
->charbuf
;
5218 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5219 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5220 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5221 int destination_charbuf
[1024];
5222 ptrdiff_t produced_chars
= 0;
5224 Lisp_Object attrs
, charset_list
;
5226 CODING_GET_INFO (coding
, attrs
, charset_list
);
5227 if (coding
->consumed_char
== coding
->src_chars
5228 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
5229 ccl
->last_block
= true;
5235 /* As ccl_driver calls DECODE_CHAR, buffer may be relocated. */
5236 charset_map_loaded
= 0;
5237 ccl_driver (ccl
, charbuf
, destination_charbuf
,
5238 charbuf_end
- charbuf
, 1024, charset_list
);
5239 if (charset_map_loaded
5240 && (offset
= coding_change_destination (coding
)))
5244 ASSURE_DESTINATION (ccl
->produced
* 2);
5245 for (i
= 0; i
< ccl
->produced
; i
++)
5246 EMIT_ONE_BYTE (destination_charbuf
[i
] & 0xFF);
5250 ASSURE_DESTINATION (ccl
->produced
);
5251 for (i
= 0; i
< ccl
->produced
; i
++)
5252 *dst
++ = destination_charbuf
[i
] & 0xFF;
5253 produced_chars
+= ccl
->produced
;
5255 charbuf
+= ccl
->consumed
;
5256 if (ccl
->status
== CCL_STAT_QUIT
5257 || ccl
->status
== CCL_STAT_INVALID_CMD
)
5260 while (charbuf
< charbuf_end
);
5262 switch (ccl
->status
)
5264 case CCL_STAT_SUSPEND_BY_SRC
:
5265 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5267 case CCL_STAT_SUSPEND_BY_DST
:
5268 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5271 case CCL_STAT_INVALID_CMD
:
5272 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5275 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5279 coding
->produced_char
+= produced_chars
;
5280 coding
->produced
= dst
- coding
->destination
;
5285 /*** 10, 11. no-conversion handlers ***/
5287 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
5290 decode_coding_raw_text (struct coding_system
*coding
)
5293 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5295 coding
->chars_at_source
= 1;
5296 coding
->consumed_char
= coding
->src_chars
;
5297 coding
->consumed
= coding
->src_bytes
;
5298 if (eol_dos
&& coding
->source
[coding
->src_bytes
- 1] == '\r')
5300 coding
->consumed_char
--;
5302 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5305 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5309 encode_coding_raw_text (struct coding_system
*coding
)
5311 bool multibytep
= coding
->dst_multibyte
;
5312 int *charbuf
= coding
->charbuf
;
5313 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_used
;
5314 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5315 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5316 ptrdiff_t produced_chars
= 0;
5321 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
5323 if (coding
->src_multibyte
)
5324 while (charbuf
< charbuf_end
)
5326 ASSURE_DESTINATION (safe_room
);
5328 if (ASCII_CHAR_P (c
))
5329 EMIT_ONE_ASCII_BYTE (c
);
5330 else if (CHAR_BYTE8_P (c
))
5332 c
= CHAR_TO_BYTE8 (c
);
5337 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p0
= str
, *p1
= str
;
5339 CHAR_STRING_ADVANCE (c
, p1
);
5342 EMIT_ONE_BYTE (*p0
);
5349 while (charbuf
< charbuf_end
)
5351 ASSURE_DESTINATION (safe_room
);
5358 if (coding
->src_multibyte
)
5360 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5362 while (charbuf
< charbuf_end
)
5364 ASSURE_DESTINATION (safe_room
);
5366 if (ASCII_CHAR_P (c
))
5368 else if (CHAR_BYTE8_P (c
))
5369 *dst
++ = CHAR_TO_BYTE8 (c
);
5371 CHAR_STRING_ADVANCE (c
, dst
);
5376 ASSURE_DESTINATION (charbuf_end
- charbuf
);
5377 while (charbuf
< charbuf_end
&& dst
< dst_end
)
5378 *dst
++ = *charbuf
++;
5380 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
5382 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5383 coding
->produced_char
+= produced_chars
;
5384 coding
->produced
= dst
- coding
->destination
;
5388 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5389 Return true if a text is encoded in a charset-based coding system. */
5392 detect_coding_charset (struct coding_system
*coding
,
5393 struct coding_detection_info
*detect_info
)
5395 const unsigned char *src
= coding
->source
, *src_base
;
5396 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5397 bool multibytep
= coding
->src_multibyte
;
5398 ptrdiff_t consumed_chars
= 0;
5399 Lisp_Object attrs
, valids
, name
;
5401 ptrdiff_t head_ascii
= coding
->head_ascii
;
5402 bool check_latin_extra
= 0;
5404 detect_info
->checked
|= CATEGORY_MASK_CHARSET
;
5406 coding
= &coding_categories
[coding_category_charset
];
5407 attrs
= CODING_ID_ATTRS (coding
->id
);
5408 valids
= AREF (attrs
, coding_attr_charset_valids
);
5409 name
= CODING_ID_NAME (coding
->id
);
5410 if (strncmp (SSDATA (SYMBOL_NAME (name
)),
5411 "iso-8859-", sizeof ("iso-8859-") - 1) == 0
5412 || strncmp (SSDATA (SYMBOL_NAME (name
)),
5413 "iso-latin-", sizeof ("iso-latin-") - 1) == 0)
5414 check_latin_extra
= 1;
5416 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5423 struct charset
*charset
;
5430 val
= AREF (valids
, c
);
5436 && check_latin_extra
5437 && (!VECTORP (Vlatin_extra_code_table
)
5438 || NILP (AREF (Vlatin_extra_code_table
, c
))))
5440 found
= CATEGORY_MASK_CHARSET
;
5444 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5445 dim
= CHARSET_DIMENSION (charset
);
5446 for (idx
= 1; idx
< dim
; idx
++)
5451 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5452 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5461 for (; CONSP (val
); val
= XCDR (val
))
5463 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5464 dim
= CHARSET_DIMENSION (charset
);
5470 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5471 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5486 detect_info
->rejected
|= CATEGORY_MASK_CHARSET
;
5490 detect_info
->found
|= found
;
5495 decode_coding_charset (struct coding_system
*coding
)
5497 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5498 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5499 const unsigned char *src_base
;
5500 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5501 /* We may produce one charset annotation in one loop and one more at
5504 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
5505 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
5506 bool multibytep
= coding
->src_multibyte
;
5507 Lisp_Object attrs
= CODING_ID_ATTRS (coding
->id
);
5509 ptrdiff_t char_offset
= coding
->produced_char
;
5510 ptrdiff_t last_offset
= char_offset
;
5511 int last_id
= charset_ascii
;
5513 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5514 int byte_after_cr
= -1;
5516 valids
= AREF (attrs
, coding_attr_charset_valids
);
5522 struct charset
*charset
;
5528 consumed_chars_base
= consumed_chars
;
5530 if (charbuf
>= charbuf_end
)
5532 if (byte_after_cr
>= 0)
5537 if (byte_after_cr
>= 0)
5545 if (eol_dos
&& c
== '\r')
5546 ONE_MORE_BYTE (byte_after_cr
);
5552 val
= AREF (valids
, c
);
5553 if (! INTEGERP (val
) && ! CONSP (val
))
5557 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5558 dim
= CHARSET_DIMENSION (charset
);
5562 code
= (code
<< 8) | c
;
5565 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
5570 /* VAL is a list of charset IDs. It is assured that the
5571 list is sorted by charset dimensions (smaller one
5575 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5576 dim
= CHARSET_DIMENSION (charset
);
5580 code
= (code
<< 8) | c
;
5583 CODING_DECODE_CHAR (coding
, src
, src_base
,
5584 src_end
, charset
, code
, c
);
5592 if (charset
->id
!= charset_ascii
5593 && last_id
!= charset
->id
)
5595 if (last_id
!= charset_ascii
)
5596 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5597 last_id
= charset
->id
;
5598 last_offset
= char_offset
;
5607 consumed_chars
= consumed_chars_base
;
5609 *charbuf
++ = c
< 0 ? -c
: ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
5614 if (last_id
!= charset_ascii
)
5615 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5616 coding
->consumed_char
+= consumed_chars_base
;
5617 coding
->consumed
= src_base
- coding
->source
;
5618 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5622 encode_coding_charset (struct coding_system
*coding
)
5624 bool multibytep
= coding
->dst_multibyte
;
5625 int *charbuf
= coding
->charbuf
;
5626 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5627 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5628 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5629 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5630 ptrdiff_t produced_chars
= 0;
5631 Lisp_Object attrs
, charset_list
;
5632 bool ascii_compatible
;
5635 CODING_GET_INFO (coding
, attrs
, charset_list
);
5636 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5638 while (charbuf
< charbuf_end
)
5640 struct charset
*charset
;
5643 ASSURE_DESTINATION (safe_room
);
5645 if (ascii_compatible
&& ASCII_CHAR_P (c
))
5646 EMIT_ONE_ASCII_BYTE (c
);
5647 else if (CHAR_BYTE8_P (c
))
5649 c
= CHAR_TO_BYTE8 (c
);
5654 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
5659 if (CHARSET_DIMENSION (charset
) == 1)
5660 EMIT_ONE_BYTE (code
);
5661 else if (CHARSET_DIMENSION (charset
) == 2)
5662 EMIT_TWO_BYTES (code
>> 8, code
& 0xFF);
5663 else if (CHARSET_DIMENSION (charset
) == 3)
5664 EMIT_THREE_BYTES (code
>> 16, (code
>> 8) & 0xFF, code
& 0xFF);
5666 EMIT_FOUR_BYTES (code
>> 24, (code
>> 16) & 0xFF,
5667 (code
>> 8) & 0xFF, code
& 0xFF);
5671 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5672 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5674 c
= coding
->default_char
;
5680 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5681 coding
->produced_char
+= produced_chars
;
5682 coding
->produced
= dst
- coding
->destination
;
5687 /*** 7. C library functions ***/
5689 /* Setup coding context CODING from information about CODING_SYSTEM.
5690 If CODING_SYSTEM is nil, `no-conversion' is assumed. If
5691 CODING_SYSTEM is invalid, signal an error. */
5694 setup_coding_system (Lisp_Object coding_system
, struct coding_system
*coding
)
5697 Lisp_Object eol_type
;
5698 Lisp_Object coding_type
;
5701 if (NILP (coding_system
))
5702 coding_system
= Qundecided
;
5704 CHECK_CODING_SYSTEM_GET_ID (coding_system
, coding
->id
);
5706 attrs
= CODING_ID_ATTRS (coding
->id
);
5707 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
5710 if (VECTORP (eol_type
))
5711 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5712 | CODING_REQUIRE_DETECTION_MASK
);
5713 else if (! EQ (eol_type
, Qunix
))
5714 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5715 | CODING_REQUIRE_ENCODING_MASK
);
5717 coding
->common_flags
= 0;
5718 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
5719 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5720 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
5721 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5722 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs
)))
5723 coding
->common_flags
|= CODING_FOR_UNIBYTE_MASK
;
5725 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5726 coding
->max_charset_id
= SCHARS (val
) - 1;
5727 coding
->safe_charsets
= SDATA (val
);
5728 coding
->default_char
= XINT (CODING_ATTR_DEFAULT_CHAR (attrs
));
5729 coding
->carryover_bytes
= 0;
5730 coding
->raw_destination
= 0;
5732 coding_type
= CODING_ATTR_TYPE (attrs
);
5733 if (EQ (coding_type
, Qundecided
))
5735 coding
->detector
= NULL
;
5736 coding
->decoder
= decode_coding_raw_text
;
5737 coding
->encoder
= encode_coding_raw_text
;
5738 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5739 coding
->spec
.undecided
.inhibit_nbd
5740 = (encode_inhibit_flag
5741 (AREF (attrs
, coding_attr_undecided_inhibit_null_byte_detection
)));
5742 coding
->spec
.undecided
.inhibit_ied
5743 = (encode_inhibit_flag
5744 (AREF (attrs
, coding_attr_undecided_inhibit_iso_escape_detection
)));
5745 coding
->spec
.undecided
.prefer_utf_8
5746 = ! NILP (AREF (attrs
, coding_attr_undecided_prefer_utf_8
));
5748 else if (EQ (coding_type
, Qiso_2022
))
5751 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5753 /* Invoke graphic register 0 to plane 0. */
5754 CODING_ISO_INVOCATION (coding
, 0) = 0;
5755 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */
5756 CODING_ISO_INVOCATION (coding
, 1)
5757 = (flags
& CODING_ISO_FLAG_SEVEN_BITS
? -1 : 1);
5758 /* Setup the initial status of designation. */
5759 for (i
= 0; i
< 4; i
++)
5760 CODING_ISO_DESIGNATION (coding
, i
) = CODING_ISO_INITIAL (coding
, i
);
5761 /* Not single shifting initially. */
5762 CODING_ISO_SINGLE_SHIFTING (coding
) = 0;
5763 /* Beginning of buffer should also be regarded as bol. */
5764 CODING_ISO_BOL (coding
) = 1;
5765 coding
->detector
= detect_coding_iso_2022
;
5766 coding
->decoder
= decode_coding_iso_2022
;
5767 coding
->encoder
= encode_coding_iso_2022
;
5768 if (flags
& CODING_ISO_FLAG_SAFE
)
5769 coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
5770 coding
->common_flags
5771 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5772 | CODING_REQUIRE_FLUSHING_MASK
);
5773 if (flags
& CODING_ISO_FLAG_COMPOSITION
)
5774 coding
->common_flags
|= CODING_ANNOTATE_COMPOSITION_MASK
;
5775 if (flags
& CODING_ISO_FLAG_DESIGNATION
)
5776 coding
->common_flags
|= CODING_ANNOTATE_CHARSET_MASK
;
5777 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5779 setup_iso_safe_charsets (attrs
);
5780 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5781 coding
->max_charset_id
= SCHARS (val
) - 1;
5782 coding
->safe_charsets
= SDATA (val
);
5784 CODING_ISO_FLAGS (coding
) = flags
;
5785 CODING_ISO_CMP_STATUS (coding
)->state
= COMPOSING_NO
;
5786 CODING_ISO_CMP_STATUS (coding
)->method
= COMPOSITION_NO
;
5787 CODING_ISO_EXTSEGMENT_LEN (coding
) = 0;
5788 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
5790 else if (EQ (coding_type
, Qcharset
))
5792 coding
->detector
= detect_coding_charset
;
5793 coding
->decoder
= decode_coding_charset
;
5794 coding
->encoder
= encode_coding_charset
;
5795 coding
->common_flags
5796 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5798 else if (EQ (coding_type
, Qutf_8
))
5800 val
= AREF (attrs
, coding_attr_utf_bom
);
5801 CODING_UTF_8_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5802 : EQ (val
, Qt
) ? utf_with_bom
5804 coding
->detector
= detect_coding_utf_8
;
5805 coding
->decoder
= decode_coding_utf_8
;
5806 coding
->encoder
= encode_coding_utf_8
;
5807 coding
->common_flags
5808 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5809 if (CODING_UTF_8_BOM (coding
) == utf_detect_bom
)
5810 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5812 else if (EQ (coding_type
, Qutf_16
))
5814 val
= AREF (attrs
, coding_attr_utf_bom
);
5815 CODING_UTF_16_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5816 : EQ (val
, Qt
) ? utf_with_bom
5818 val
= AREF (attrs
, coding_attr_utf_16_endian
);
5819 CODING_UTF_16_ENDIAN (coding
) = (EQ (val
, Qbig
) ? utf_16_big_endian
5820 : utf_16_little_endian
);
5821 CODING_UTF_16_SURROGATE (coding
) = 0;
5822 coding
->detector
= detect_coding_utf_16
;
5823 coding
->decoder
= decode_coding_utf_16
;
5824 coding
->encoder
= encode_coding_utf_16
;
5825 coding
->common_flags
5826 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5827 if (CODING_UTF_16_BOM (coding
) == utf_detect_bom
)
5828 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5830 else if (EQ (coding_type
, Qccl
))
5832 coding
->detector
= detect_coding_ccl
;
5833 coding
->decoder
= decode_coding_ccl
;
5834 coding
->encoder
= encode_coding_ccl
;
5835 coding
->common_flags
5836 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5837 | CODING_REQUIRE_FLUSHING_MASK
);
5839 else if (EQ (coding_type
, Qemacs_mule
))
5841 coding
->detector
= detect_coding_emacs_mule
;
5842 coding
->decoder
= decode_coding_emacs_mule
;
5843 coding
->encoder
= encode_coding_emacs_mule
;
5844 coding
->common_flags
5845 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5846 if (! NILP (AREF (attrs
, coding_attr_emacs_mule_full
))
5847 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Vemacs_mule_charset_list
))
5849 Lisp_Object tail
, safe_charsets
;
5850 int max_charset_id
= 0;
5852 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5854 if (max_charset_id
< XFASTINT (XCAR (tail
)))
5855 max_charset_id
= XFASTINT (XCAR (tail
));
5856 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
5857 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
5858 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5860 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
5861 coding
->max_charset_id
= max_charset_id
;
5862 coding
->safe_charsets
= SDATA (safe_charsets
);
5864 coding
->spec
.emacs_mule
.cmp_status
.state
= COMPOSING_NO
;
5865 coding
->spec
.emacs_mule
.cmp_status
.method
= COMPOSITION_NO
;
5867 else if (EQ (coding_type
, Qshift_jis
))
5869 coding
->detector
= detect_coding_sjis
;
5870 coding
->decoder
= decode_coding_sjis
;
5871 coding
->encoder
= encode_coding_sjis
;
5872 coding
->common_flags
5873 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5875 else if (EQ (coding_type
, Qbig5
))
5877 coding
->detector
= detect_coding_big5
;
5878 coding
->decoder
= decode_coding_big5
;
5879 coding
->encoder
= encode_coding_big5
;
5880 coding
->common_flags
5881 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5883 else /* EQ (coding_type, Qraw_text) */
5885 coding
->detector
= NULL
;
5886 coding
->decoder
= decode_coding_raw_text
;
5887 coding
->encoder
= encode_coding_raw_text
;
5888 if (! EQ (eol_type
, Qunix
))
5890 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5891 if (! VECTORP (eol_type
))
5892 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5900 /* Return a list of charsets supported by CODING. */
5903 coding_charset_list (struct coding_system
*coding
)
5905 Lisp_Object attrs
, charset_list
;
5907 CODING_GET_INFO (coding
, attrs
, charset_list
);
5908 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5910 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5912 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5913 charset_list
= Viso_2022_charset_list
;
5915 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5917 charset_list
= Vemacs_mule_charset_list
;
5919 return charset_list
;
5923 /* Return a list of charsets supported by CODING-SYSTEM. */
5926 coding_system_charset_list (Lisp_Object coding_system
)
5929 Lisp_Object attrs
, charset_list
;
5931 CHECK_CODING_SYSTEM_GET_ID (coding_system
, id
);
5932 attrs
= CODING_ID_ATTRS (id
);
5934 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5936 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5938 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5939 charset_list
= Viso_2022_charset_list
;
5941 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5943 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5945 charset_list
= Vemacs_mule_charset_list
;
5949 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5951 return charset_list
;
5955 /* Return raw-text or one of its subsidiaries that has the same
5956 eol_type as CODING-SYSTEM. */
5959 raw_text_coding_system (Lisp_Object coding_system
)
5961 Lisp_Object spec
, attrs
;
5962 Lisp_Object eol_type
, raw_text_eol_type
;
5964 if (NILP (coding_system
))
5966 spec
= CODING_SYSTEM_SPEC (coding_system
);
5967 attrs
= AREF (spec
, 0);
5969 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
5970 return coding_system
;
5972 eol_type
= AREF (spec
, 2);
5973 if (VECTORP (eol_type
))
5975 spec
= CODING_SYSTEM_SPEC (Qraw_text
);
5976 raw_text_eol_type
= AREF (spec
, 2);
5977 return (EQ (eol_type
, Qunix
) ? AREF (raw_text_eol_type
, 0)
5978 : EQ (eol_type
, Qdos
) ? AREF (raw_text_eol_type
, 1)
5979 : AREF (raw_text_eol_type
, 2));
5982 /* Return true if CODING corresponds to raw-text coding-system. */
5985 raw_text_coding_system_p (struct coding_system
*coding
)
5987 return (coding
->decoder
== decode_coding_raw_text
5988 && coding
->encoder
== encode_coding_raw_text
) ? true : false;
5992 /* If CODING_SYSTEM doesn't specify end-of-line format, return one of
5993 the subsidiary that has the same eol-spec as PARENT (if it is not
5994 nil and specifies end-of-line format) or the system's setting
5995 (system_eol_type). */
5998 coding_inherit_eol_type (Lisp_Object coding_system
, Lisp_Object parent
)
6000 Lisp_Object spec
, eol_type
;
6002 if (NILP (coding_system
))
6003 coding_system
= Qraw_text
;
6004 spec
= CODING_SYSTEM_SPEC (coding_system
);
6005 eol_type
= AREF (spec
, 2);
6006 if (VECTORP (eol_type
))
6008 Lisp_Object parent_eol_type
;
6010 if (! NILP (parent
))
6012 Lisp_Object parent_spec
;
6014 parent_spec
= CODING_SYSTEM_SPEC (parent
);
6015 parent_eol_type
= AREF (parent_spec
, 2);
6016 if (VECTORP (parent_eol_type
))
6017 parent_eol_type
= system_eol_type
;
6020 parent_eol_type
= system_eol_type
;
6021 if (EQ (parent_eol_type
, Qunix
))
6022 coding_system
= AREF (eol_type
, 0);
6023 else if (EQ (parent_eol_type
, Qdos
))
6024 coding_system
= AREF (eol_type
, 1);
6025 else if (EQ (parent_eol_type
, Qmac
))
6026 coding_system
= AREF (eol_type
, 2);
6028 return coding_system
;
6032 /* Check if text-conversion and eol-conversion of CODING_SYSTEM are
6033 decided for writing to a process. If not, complement them, and
6034 return a new coding system. */
6037 complement_process_encoding_system (Lisp_Object coding_system
)
6039 Lisp_Object coding_base
= Qnil
, eol_base
= Qnil
;
6040 Lisp_Object spec
, attrs
;
6043 for (i
= 0; i
< 3; i
++)
6046 coding_system
= CDR_SAFE (Vdefault_process_coding_system
);
6048 coding_system
= preferred_coding_system ();
6049 spec
= CODING_SYSTEM_SPEC (coding_system
);
6052 attrs
= AREF (spec
, 0);
6053 if (NILP (coding_base
) && ! EQ (CODING_ATTR_TYPE (attrs
), Qundecided
))
6054 coding_base
= CODING_ATTR_BASE_NAME (attrs
);
6055 if (NILP (eol_base
) && ! VECTORP (AREF (spec
, 2)))
6056 eol_base
= coding_system
;
6057 if (! NILP (coding_base
) && ! NILP (eol_base
))
6062 /* The original CODING_SYSTEM didn't specify text-conversion or
6063 eol-conversion. Be sure that we return a fully complemented
6065 coding_system
= coding_inherit_eol_type (coding_base
, eol_base
);
6066 return coding_system
;
6070 /* Emacs has a mechanism to automatically detect a coding system if it
6071 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
6072 it's impossible to distinguish some coding systems accurately
6073 because they use the same range of codes. So, at first, coding
6074 systems are categorized into 7, those are:
6076 o coding-category-emacs-mule
6078 The category for a coding system which has the same code range
6079 as Emacs' internal format. Assigned the coding-system (Lisp
6080 symbol) `emacs-mule' by default.
6082 o coding-category-sjis
6084 The category for a coding system which has the same code range
6085 as SJIS. Assigned the coding-system (Lisp
6086 symbol) `japanese-shift-jis' by default.
6088 o coding-category-iso-7
6090 The category for a coding system which has the same code range
6091 as ISO2022 of 7-bit environment. This doesn't use any locking
6092 shift and single shift functions. This can encode/decode all
6093 charsets. Assigned the coding-system (Lisp symbol)
6094 `iso-2022-7bit' by default.
6096 o coding-category-iso-7-tight
6098 Same as coding-category-iso-7 except that this can
6099 encode/decode only the specified charsets.
6101 o coding-category-iso-8-1
6103 The category for a coding system which has the same code range
6104 as ISO2022 of 8-bit environment and graphic plane 1 used only
6105 for DIMENSION1 charset. This doesn't use any locking shift
6106 and single shift functions. Assigned the coding-system (Lisp
6107 symbol) `iso-latin-1' by default.
6109 o coding-category-iso-8-2
6111 The category for a coding system which has the same code range
6112 as ISO2022 of 8-bit environment and graphic plane 1 used only
6113 for DIMENSION2 charset. This doesn't use any locking shift
6114 and single shift functions. Assigned the coding-system (Lisp
6115 symbol) `japanese-iso-8bit' by default.
6117 o coding-category-iso-7-else
6119 The category for a coding system which has the same code range
6120 as ISO2022 of 7-bit environment but uses locking shift or
6121 single shift functions. Assigned the coding-system (Lisp
6122 symbol) `iso-2022-7bit-lock' by default.
6124 o coding-category-iso-8-else
6126 The category for a coding system which has the same code range
6127 as ISO2022 of 8-bit environment but uses locking shift or
6128 single shift functions. Assigned the coding-system (Lisp
6129 symbol) `iso-2022-8bit-ss2' by default.
6131 o coding-category-big5
6133 The category for a coding system which has the same code range
6134 as BIG5. Assigned the coding-system (Lisp symbol)
6135 `cn-big5' by default.
6137 o coding-category-utf-8
6139 The category for a coding system which has the same code range
6140 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp
6141 symbol) `utf-8' by default.
6143 o coding-category-utf-16-be
6145 The category for a coding system in which a text has an
6146 Unicode signature (cf. Unicode Standard) in the order of BIG
6147 endian at the head. Assigned the coding-system (Lisp symbol)
6148 `utf-16-be' by default.
6150 o coding-category-utf-16-le
6152 The category for a coding system in which a text has an
6153 Unicode signature (cf. Unicode Standard) in the order of
6154 LITTLE endian at the head. Assigned the coding-system (Lisp
6155 symbol) `utf-16-le' by default.
6157 o coding-category-ccl
6159 The category for a coding system of which encoder/decoder is
6160 written in CCL programs. The default value is nil, i.e., no
6161 coding system is assigned.
6163 o coding-category-binary
6165 The category for a coding system not categorized in any of the
6166 above. Assigned the coding-system (Lisp symbol)
6167 `no-conversion' by default.
6169 Each of them is a Lisp symbol and the value is an actual
6170 `coding-system's (this is also a Lisp symbol) assigned by a user.
6171 What Emacs does actually is to detect a category of coding system.
6172 Then, it uses a `coding-system' assigned to it. If Emacs can't
6173 decide only one possible category, it selects a category of the
6174 highest priority. Priorities of categories are also specified by a
6175 user in a Lisp variable `coding-category-list'.
6179 static Lisp_Object
adjust_coding_eol_type (struct coding_system
*coding
,
6183 /* Return the number of ASCII characters at the head of the source.
6184 By side effects, set coding->head_ascii and update
6185 coding->eol_seen. The value of coding->eol_seen is "logical or" of
6186 EOL_SEEN_LF, EOL_SEEN_CR, and EOL_SEEN_CRLF, but the value is
6187 reliable only when all the source bytes are ASCII. */
6190 check_ascii (struct coding_system
*coding
)
6192 const unsigned char *src
, *end
;
6193 Lisp_Object eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6194 int eol_seen
= coding
->eol_seen
;
6196 coding_set_source (coding
);
6197 src
= coding
->source
;
6198 end
= src
+ coding
->src_bytes
;
6200 if (inhibit_eol_conversion
6201 || SYMBOLP (eol_type
))
6203 /* We don't have to check EOL format. */
6204 while (src
< end
&& !( *src
& 0x80))
6207 eol_seen
|= EOL_SEEN_LF
;
6212 end
--; /* We look ahead one byte for "CR LF". */
6224 eol_seen
|= EOL_SEEN_CRLF
;
6228 eol_seen
|= EOL_SEEN_CR
;
6231 eol_seen
|= EOL_SEEN_LF
;
6237 /* All bytes but the last one C are ASCII. */
6241 eol_seen
|= EOL_SEEN_CR
;
6243 eol_seen
|= EOL_SEEN_LF
;
6248 coding
->head_ascii
= src
- coding
->source
;
6249 coding
->eol_seen
= eol_seen
;
6250 return (coding
->head_ascii
);
6254 /* Return the number of characters at the source if all the bytes are
6255 valid UTF-8 (of Unicode range). Otherwise, return -1. By side
6256 effects, update coding->eol_seen. The value of coding->eol_seen is
6257 "logical or" of EOL_SEEN_LF, EOL_SEEN_CR, and EOL_SEEN_CRLF, but
6258 the value is reliable only when all the source bytes are valid
6262 check_utf_8 (struct coding_system
*coding
)
6264 const unsigned char *src
, *end
;
6266 ptrdiff_t nchars
= coding
->head_ascii
;
6268 if (coding
->head_ascii
< 0)
6269 check_ascii (coding
);
6271 coding_set_source (coding
);
6272 src
= coding
->source
+ coding
->head_ascii
;
6273 /* We look ahead one byte for CR LF. */
6274 end
= coding
->source
+ coding
->src_bytes
- 1;
6275 eol_seen
= coding
->eol_seen
;
6280 if (UTF_8_1_OCTET_P (*src
))
6289 eol_seen
|= EOL_SEEN_CRLF
;
6294 eol_seen
|= EOL_SEEN_CR
;
6297 eol_seen
|= EOL_SEEN_LF
;
6300 else if (UTF_8_2_OCTET_LEADING_P (c
))
6302 if (c
< 0xC2 /* overlong sequence */
6304 || ! UTF_8_EXTRA_OCTET_P (src
[1]))
6308 else if (UTF_8_3_OCTET_LEADING_P (c
))
6311 || ! (UTF_8_EXTRA_OCTET_P (src
[1])
6312 && UTF_8_EXTRA_OCTET_P (src
[2])))
6314 c
= (((c
& 0xF) << 12)
6315 | ((src
[1] & 0x3F) << 6) | (src
[2] & 0x3F));
6316 if (c
< 0x800 /* overlong sequence */
6317 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
6321 else if (UTF_8_4_OCTET_LEADING_P (c
))
6324 || ! (UTF_8_EXTRA_OCTET_P (src
[1])
6325 && UTF_8_EXTRA_OCTET_P (src
[2])
6326 && UTF_8_EXTRA_OCTET_P (src
[3])))
6328 c
= (((c
& 0x7) << 18) | ((src
[1] & 0x3F) << 12)
6329 | ((src
[2] & 0x3F) << 6) | (src
[3] & 0x3F));
6330 if (c
< 0x10000 /* overlong sequence */
6331 || c
>= 0x110000) /* non-Unicode character */
6342 if (! UTF_8_1_OCTET_P (*src
))
6346 eol_seen
|= EOL_SEEN_CR
;
6347 else if (*src
== '\n')
6348 eol_seen
|= EOL_SEEN_LF
;
6350 coding
->eol_seen
= eol_seen
;
6355 /* Detect how end-of-line of a text of length SRC_BYTES pointed by
6356 SOURCE is encoded. If CATEGORY is one of
6357 coding_category_utf_16_XXXX, assume that CR and LF are encoded by
6358 two-byte, else they are encoded by one-byte.
6360 Return one of EOL_SEEN_XXX. */
6362 #define MAX_EOL_CHECK_COUNT 3
6365 detect_eol (const unsigned char *source
, ptrdiff_t src_bytes
,
6366 enum coding_category category
)
6368 const unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
6371 int eol_seen
= EOL_SEEN_NONE
;
6373 if ((1 << category
) & CATEGORY_MASK_UTF_16
)
6375 bool msb
= category
== (coding_category_utf_16_le
6376 | coding_category_utf_16_le_nosig
);
6379 while (src
+ 1 < src_end
)
6382 if (src
[msb
] == 0 && (c
== '\n' || c
== '\r'))
6387 this_eol
= EOL_SEEN_LF
;
6388 else if (src
+ 3 >= src_end
6389 || src
[msb
+ 2] != 0
6390 || src
[lsb
+ 2] != '\n')
6391 this_eol
= EOL_SEEN_CR
;
6394 this_eol
= EOL_SEEN_CRLF
;
6398 if (eol_seen
== EOL_SEEN_NONE
)
6399 /* This is the first end-of-line. */
6400 eol_seen
= this_eol
;
6401 else if (eol_seen
!= this_eol
)
6403 /* The found type is different from what found before.
6404 Allow for stray ^M characters in DOS EOL files. */
6405 if ((eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
)
6406 || (eol_seen
== EOL_SEEN_CRLF
6407 && this_eol
== EOL_SEEN_CR
))
6408 eol_seen
= EOL_SEEN_CRLF
;
6411 eol_seen
= EOL_SEEN_LF
;
6415 if (++total
== MAX_EOL_CHECK_COUNT
)
6422 while (src
< src_end
)
6425 if (c
== '\n' || c
== '\r')
6430 this_eol
= EOL_SEEN_LF
;
6431 else if (src
>= src_end
|| *src
!= '\n')
6432 this_eol
= EOL_SEEN_CR
;
6434 this_eol
= EOL_SEEN_CRLF
, src
++;
6436 if (eol_seen
== EOL_SEEN_NONE
)
6437 /* This is the first end-of-line. */
6438 eol_seen
= this_eol
;
6439 else if (eol_seen
!= this_eol
)
6441 /* The found type is different from what found before.
6442 Allow for stray ^M characters in DOS EOL files. */
6443 if ((eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
)
6444 || (eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
))
6445 eol_seen
= EOL_SEEN_CRLF
;
6448 eol_seen
= EOL_SEEN_LF
;
6452 if (++total
== MAX_EOL_CHECK_COUNT
)
6461 adjust_coding_eol_type (struct coding_system
*coding
, int eol_seen
)
6463 Lisp_Object eol_type
;
6465 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6466 if (! VECTORP (eol_type
))
6467 /* Already adjusted. */
6469 if (eol_seen
& EOL_SEEN_LF
)
6471 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 0));
6474 else if (eol_seen
& EOL_SEEN_CRLF
)
6476 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 1));
6479 else if (eol_seen
& EOL_SEEN_CR
)
6481 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 2));
6487 /* Detect how a text specified in CODING is encoded. If a coding
6488 system is detected, update fields of CODING by the detected coding
6492 detect_coding (struct coding_system
*coding
)
6494 const unsigned char *src
, *src_end
;
6495 unsigned int saved_mode
= coding
->mode
;
6496 Lisp_Object found
= Qnil
;
6497 Lisp_Object eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6499 coding
->consumed
= coding
->consumed_char
= 0;
6500 coding
->produced
= coding
->produced_char
= 0;
6501 coding_set_source (coding
);
6503 src_end
= coding
->source
+ coding
->src_bytes
;
6505 coding
->eol_seen
= EOL_SEEN_NONE
;
6506 /* If we have not yet decided the text encoding type, detect it
6508 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding
->id
)), Qundecided
))
6511 struct coding_detection_info detect_info
;
6512 bool null_byte_found
= 0, eight_bit_found
= 0;
6513 bool inhibit_nbd
= inhibit_flag (coding
->spec
.undecided
.inhibit_nbd
,
6514 inhibit_null_byte_detection
);
6515 bool inhibit_ied
= inhibit_flag (coding
->spec
.undecided
.inhibit_ied
,
6516 inhibit_iso_escape_detection
);
6517 bool prefer_utf_8
= coding
->spec
.undecided
.prefer_utf_8
;
6519 coding
->head_ascii
= 0;
6520 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
6521 for (src
= coding
->source
; src
< src_end
; src
++)
6526 eight_bit_found
= 1;
6527 if (null_byte_found
)
6532 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
6534 && ! detect_info
.checked
)
6536 if (detect_coding_iso_2022 (coding
, &detect_info
))
6538 /* We have scanned the whole data. */
6539 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
6541 /* We didn't find an 8-bit code. We may
6542 have found a null-byte, but it's very
6543 rare that a binary file conforms to
6546 coding
->head_ascii
= src
- coding
->source
;
6548 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
6552 else if (! c
&& !inhibit_nbd
)
6554 null_byte_found
= 1;
6555 if (eight_bit_found
)
6558 else if (! disable_ascii_optimization
6559 && ! inhibit_eol_conversion
)
6563 if (src
< src_end
&& src
[1] == '\n')
6565 coding
->eol_seen
|= EOL_SEEN_CRLF
;
6567 if (! eight_bit_found
)
6568 coding
->head_ascii
++;
6571 coding
->eol_seen
|= EOL_SEEN_CR
;
6575 coding
->eol_seen
|= EOL_SEEN_LF
;
6579 if (! eight_bit_found
)
6580 coding
->head_ascii
++;
6582 else if (! eight_bit_found
)
6583 coding
->head_ascii
++;
6586 if (null_byte_found
|| eight_bit_found
6587 || coding
->head_ascii
< coding
->src_bytes
6588 || detect_info
.found
)
6590 enum coding_category category
;
6591 struct coding_system
*this;
6593 if (coding
->head_ascii
== coding
->src_bytes
)
6594 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
6595 for (i
= 0; i
< coding_category_raw_text
; i
++)
6597 category
= coding_priorities
[i
];
6598 this = coding_categories
+ category
;
6599 if (detect_info
.found
& (1 << category
))
6604 if (null_byte_found
)
6606 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
6607 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
6609 else if (prefer_utf_8
6610 && detect_coding_utf_8 (coding
, &detect_info
))
6612 detect_info
.checked
|= ~CATEGORY_MASK_UTF_8
;
6613 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_8
;
6615 for (i
= 0; i
< coding_category_raw_text
; i
++)
6617 category
= coding_priorities
[i
];
6618 this = coding_categories
+ category
;
6619 /* Some of this->detector (e.g. detect_coding_sjis)
6620 require this information. */
6621 coding
->id
= this->id
;
6624 /* No coding system of this category is defined. */
6625 detect_info
.rejected
|= (1 << category
);
6627 else if (category
>= coding_category_raw_text
)
6629 else if (detect_info
.checked
& (1 << category
))
6631 if (detect_info
.found
& (1 << category
))
6634 else if ((*(this->detector
)) (coding
, &detect_info
)
6635 && detect_info
.found
& (1 << category
))
6640 if (i
< coding_category_raw_text
)
6642 if (category
== coding_category_utf_8_auto
)
6644 Lisp_Object coding_systems
;
6646 coding_systems
= AREF (CODING_ID_ATTRS (this->id
),
6647 coding_attr_utf_bom
);
6648 if (CONSP (coding_systems
))
6650 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6651 found
= XCAR (coding_systems
);
6653 found
= XCDR (coding_systems
);
6656 found
= CODING_ID_NAME (this->id
);
6658 else if (category
== coding_category_utf_16_auto
)
6660 Lisp_Object coding_systems
;
6662 coding_systems
= AREF (CODING_ID_ATTRS (this->id
),
6663 coding_attr_utf_bom
);
6664 if (CONSP (coding_systems
))
6666 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6667 found
= XCAR (coding_systems
);
6668 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6669 found
= XCDR (coding_systems
);
6672 found
= CODING_ID_NAME (this->id
);
6675 found
= CODING_ID_NAME (this->id
);
6677 else if (null_byte_found
)
6678 found
= Qno_conversion
;
6679 else if ((detect_info
.rejected
& CATEGORY_MASK_ANY
)
6680 == CATEGORY_MASK_ANY
)
6682 else if (detect_info
.rejected
)
6683 for (i
= 0; i
< coding_category_raw_text
; i
++)
6684 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
6686 this = coding_categories
+ coding_priorities
[i
];
6687 found
= CODING_ID_NAME (this->id
);
6692 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6693 == coding_category_utf_8_auto
)
6695 Lisp_Object coding_systems
;
6696 struct coding_detection_info detect_info
;
6699 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6700 detect_info
.found
= detect_info
.rejected
= 0;
6701 if (check_ascii (coding
) == coding
->src_bytes
)
6703 if (CONSP (coding_systems
))
6704 found
= XCDR (coding_systems
);
6708 if (CONSP (coding_systems
)
6709 && detect_coding_utf_8 (coding
, &detect_info
))
6711 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6712 found
= XCAR (coding_systems
);
6714 found
= XCDR (coding_systems
);
6718 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6719 == coding_category_utf_16_auto
)
6721 Lisp_Object coding_systems
;
6722 struct coding_detection_info detect_info
;
6725 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6726 detect_info
.found
= detect_info
.rejected
= 0;
6727 coding
->head_ascii
= 0;
6728 if (CONSP (coding_systems
)
6729 && detect_coding_utf_16 (coding
, &detect_info
))
6731 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6732 found
= XCAR (coding_systems
);
6733 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6734 found
= XCDR (coding_systems
);
6740 int specified_eol
= (VECTORP (eol_type
) ? EOL_SEEN_NONE
6741 : EQ (eol_type
, Qdos
) ? EOL_SEEN_CRLF
6742 : EQ (eol_type
, Qmac
) ? EOL_SEEN_CR
6745 setup_coding_system (found
, coding
);
6746 if (specified_eol
!= EOL_SEEN_NONE
)
6747 adjust_coding_eol_type (coding
, specified_eol
);
6750 coding
->mode
= saved_mode
;
6755 decode_eol (struct coding_system
*coding
)
6757 Lisp_Object eol_type
;
6758 unsigned char *p
, *pbeg
, *pend
;
6760 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6761 if (EQ (eol_type
, Qunix
) || inhibit_eol_conversion
)
6764 if (NILP (coding
->dst_object
))
6765 pbeg
= coding
->destination
;
6767 pbeg
= BYTE_POS_ADDR (coding
->dst_pos_byte
);
6768 pend
= pbeg
+ coding
->produced
;
6770 if (VECTORP (eol_type
))
6772 int eol_seen
= EOL_SEEN_NONE
;
6774 for (p
= pbeg
; p
< pend
; p
++)
6777 eol_seen
|= EOL_SEEN_LF
;
6778 else if (*p
== '\r')
6780 if (p
+ 1 < pend
&& *(p
+ 1) == '\n')
6782 eol_seen
|= EOL_SEEN_CRLF
;
6786 eol_seen
|= EOL_SEEN_CR
;
6789 /* Handle DOS-style EOLs in a file with stray ^M characters. */
6790 if ((eol_seen
& EOL_SEEN_CRLF
) != 0
6791 && (eol_seen
& EOL_SEEN_CR
) != 0
6792 && (eol_seen
& EOL_SEEN_LF
) == 0)
6793 eol_seen
= EOL_SEEN_CRLF
;
6794 else if (eol_seen
!= EOL_SEEN_NONE
6795 && eol_seen
!= EOL_SEEN_LF
6796 && eol_seen
!= EOL_SEEN_CRLF
6797 && eol_seen
!= EOL_SEEN_CR
)
6798 eol_seen
= EOL_SEEN_LF
;
6799 if (eol_seen
!= EOL_SEEN_NONE
)
6800 eol_type
= adjust_coding_eol_type (coding
, eol_seen
);
6803 if (EQ (eol_type
, Qmac
))
6805 for (p
= pbeg
; p
< pend
; p
++)
6809 else if (EQ (eol_type
, Qdos
))
6813 if (NILP (coding
->dst_object
))
6815 /* Start deleting '\r' from the tail to minimize the memory
6817 for (p
= pend
- 2; p
>= pbeg
; p
--)
6820 memmove (p
, p
+ 1, pend
-- - p
- 1);
6826 ptrdiff_t pos_byte
= coding
->dst_pos_byte
;
6827 ptrdiff_t pos
= coding
->dst_pos
;
6828 ptrdiff_t pos_end
= pos
+ coding
->produced_char
- 1;
6830 while (pos
< pos_end
)
6832 p
= BYTE_POS_ADDR (pos_byte
);
6833 if (*p
== '\r' && p
[1] == '\n')
6835 del_range_2 (pos
, pos_byte
, pos
+ 1, pos_byte
+ 1, 0);
6840 if (coding
->dst_multibyte
)
6841 pos_byte
+= BYTES_BY_CHAR_HEAD (*p
);
6846 coding
->produced
-= n
;
6847 coding
->produced_char
-= n
;
6852 /* MAX_LOOKUP's maximum value. MAX_LOOKUP is an int and so cannot
6853 exceed INT_MAX. Also, MAX_LOOKUP is multiplied by sizeof (int) for
6854 alloca, so it cannot exceed MAX_ALLOCA / sizeof (int). */
6855 enum { MAX_LOOKUP_MAX
= min (INT_MAX
, MAX_ALLOCA
/ sizeof (int)) };
6857 /* Return a translation table (or list of them) from coding system
6858 attribute vector ATTRS for encoding (if ENCODEP) or decoding (if
6862 get_translation_table (Lisp_Object attrs
, bool encodep
, int *max_lookup
)
6864 Lisp_Object standard
, translation_table
;
6867 if (NILP (Venable_character_translation
))
6874 translation_table
= CODING_ATTR_ENCODE_TBL (attrs
),
6875 standard
= Vstandard_translation_table_for_encode
;
6877 translation_table
= CODING_ATTR_DECODE_TBL (attrs
),
6878 standard
= Vstandard_translation_table_for_decode
;
6879 if (NILP (translation_table
))
6880 translation_table
= standard
;
6883 if (SYMBOLP (translation_table
))
6884 translation_table
= Fget (translation_table
, Qtranslation_table
);
6885 else if (CONSP (translation_table
))
6887 translation_table
= Fcopy_sequence (translation_table
);
6888 for (val
= translation_table
; CONSP (val
); val
= XCDR (val
))
6889 if (SYMBOLP (XCAR (val
)))
6890 XSETCAR (val
, Fget (XCAR (val
), Qtranslation_table
));
6892 if (CHAR_TABLE_P (standard
))
6894 if (CONSP (translation_table
))
6895 translation_table
= nconc2 (translation_table
, list1 (standard
));
6897 translation_table
= list2 (translation_table
, standard
);
6904 if (CHAR_TABLE_P (translation_table
)
6905 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table
)) > 1)
6907 val
= XCHAR_TABLE (translation_table
)->extras
[1];
6908 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6909 *max_lookup
= min (XFASTINT (val
), MAX_LOOKUP_MAX
);
6911 else if (CONSP (translation_table
))
6915 for (tail
= translation_table
; CONSP (tail
); tail
= XCDR (tail
))
6916 if (CHAR_TABLE_P (XCAR (tail
))
6917 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail
))) > 1)
6919 Lisp_Object tailval
= XCHAR_TABLE (XCAR (tail
))->extras
[1];
6920 if (NATNUMP (tailval
) && *max_lookup
< XFASTINT (tailval
))
6921 *max_lookup
= min (XFASTINT (tailval
), MAX_LOOKUP_MAX
);
6925 return translation_table
;
6928 #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \
6931 if (CHAR_TABLE_P (table)) \
6933 trans = CHAR_TABLE_REF (table, c); \
6934 if (CHARACTERP (trans)) \
6935 c = XFASTINT (trans), trans = Qnil; \
6937 else if (CONSP (table)) \
6941 for (tail = table; CONSP (tail); tail = XCDR (tail)) \
6942 if (CHAR_TABLE_P (XCAR (tail))) \
6944 trans = CHAR_TABLE_REF (XCAR (tail), c); \
6945 if (CHARACTERP (trans)) \
6946 c = XFASTINT (trans), trans = Qnil; \
6947 else if (! NILP (trans)) \
6954 /* Return a translation of character(s) at BUF according to TRANS.
6955 TRANS is TO-CHAR or ((FROM . TO) ...) where
6956 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...].
6957 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a
6958 translation is found, and Qnil if not found..
6959 If BUF is too short to lookup characters in FROM, return Qt. */
6962 get_translation (Lisp_Object trans
, int *buf
, int *buf_end
)
6965 if (INTEGERP (trans
))
6967 for (; CONSP (trans
); trans
= XCDR (trans
))
6969 Lisp_Object val
= XCAR (trans
);
6970 Lisp_Object from
= XCAR (val
);
6971 ptrdiff_t len
= ASIZE (from
);
6974 for (i
= 0; i
< len
; i
++)
6976 if (buf
+ i
== buf_end
)
6978 if (XINT (AREF (from
, i
)) != buf
[i
])
6989 produce_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
6992 unsigned char *dst
= coding
->destination
+ coding
->produced
;
6993 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
6995 ptrdiff_t produced_chars
= 0;
6998 if (! coding
->chars_at_source
)
7000 /* Source characters are in coding->charbuf. */
7001 int *buf
= coding
->charbuf
;
7002 int *buf_end
= buf
+ coding
->charbuf_used
;
7004 if (EQ (coding
->src_object
, coding
->dst_object
)
7005 && ! NILP (coding
->dst_object
))
7007 eassert (growable_destination (coding
));
7008 coding_set_source (coding
);
7009 dst_end
= ((unsigned char *) coding
->source
) + coding
->consumed
;
7012 while (buf
< buf_end
)
7019 ptrdiff_t from_nchars
= 1, to_nchars
= 1;
7020 Lisp_Object trans
= Qnil
;
7022 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7025 trans
= get_translation (trans
, buf
, buf_end
);
7026 if (INTEGERP (trans
))
7028 else if (CONSP (trans
))
7030 from_nchars
= ASIZE (XCAR (trans
));
7031 trans
= XCDR (trans
);
7032 if (INTEGERP (trans
))
7036 to_nchars
= ASIZE (trans
);
7037 c
= XINT (AREF (trans
, 0));
7040 else if (EQ (trans
, Qt
) && ! last_block
)
7044 if ((dst_end
- dst
) / MAX_MULTIBYTE_LENGTH
< to_nchars
)
7046 eassert (growable_destination (coding
));
7047 if (((min (PTRDIFF_MAX
, SIZE_MAX
) - (buf_end
- buf
))
7048 / MAX_MULTIBYTE_LENGTH
)
7050 memory_full (SIZE_MAX
);
7051 dst
= alloc_destination (coding
,
7053 + MAX_MULTIBYTE_LENGTH
* to_nchars
,
7055 if (EQ (coding
->src_object
, coding
->dst_object
))
7057 coding_set_source (coding
);
7058 dst_end
= (((unsigned char *) coding
->source
)
7059 + coding
->consumed
);
7062 dst_end
= coding
->destination
+ coding
->dst_bytes
;
7065 for (i
= 0; i
< to_nchars
; i
++)
7068 c
= XINT (AREF (trans
, i
));
7069 if (coding
->dst_multibyte
7070 || ! CHAR_BYTE8_P (c
))
7071 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
7073 *dst
++ = CHAR_TO_BYTE8 (c
);
7075 produced_chars
+= to_nchars
;
7079 /* This is an annotation datum. (-C) is the length. */
7082 carryover
= buf_end
- buf
;
7086 /* Source characters are at coding->source. */
7087 const unsigned char *src
= coding
->source
;
7088 const unsigned char *src_end
= src
+ coding
->consumed
;
7090 if (EQ (coding
->dst_object
, coding
->src_object
))
7092 eassert (growable_destination (coding
));
7093 dst_end
= (unsigned char *) src
;
7095 if (coding
->src_multibyte
!= coding
->dst_multibyte
)
7097 if (coding
->src_multibyte
)
7099 bool multibytep
= 1;
7100 ptrdiff_t consumed_chars
= 0;
7104 const unsigned char *src_base
= src
;
7110 eassert (growable_destination (coding
));
7111 if (EQ (coding
->src_object
, coding
->dst_object
))
7112 dst_end
= (unsigned char *) src
;
7115 ptrdiff_t offset
= src
- coding
->source
;
7117 dst
= alloc_destination (coding
, src_end
- src
+ 1,
7119 dst_end
= coding
->destination
+ coding
->dst_bytes
;
7120 coding_set_source (coding
);
7121 src
= coding
->source
+ offset
;
7122 src_end
= coding
->source
+ coding
->consumed
;
7123 if (EQ (coding
->src_object
, coding
->dst_object
))
7124 dst_end
= (unsigned char *) src
;
7134 while (src
< src_end
)
7136 bool multibytep
= 1;
7139 if (dst
>= dst_end
- 1)
7141 eassert (growable_destination (coding
));
7142 if (EQ (coding
->src_object
, coding
->dst_object
))
7143 dst_end
= (unsigned char *) src
;
7144 if (dst
>= dst_end
- 1)
7146 ptrdiff_t offset
= src
- coding
->source
;
7147 ptrdiff_t more_bytes
;
7149 if (EQ (coding
->src_object
, coding
->dst_object
))
7150 more_bytes
= ((src_end
- src
) / 2) + 2;
7152 more_bytes
= src_end
- src
+ 2;
7153 dst
= alloc_destination (coding
, more_bytes
, dst
);
7154 dst_end
= coding
->destination
+ coding
->dst_bytes
;
7155 coding_set_source (coding
);
7156 src
= coding
->source
+ offset
;
7157 src_end
= coding
->source
+ coding
->consumed
;
7158 if (EQ (coding
->src_object
, coding
->dst_object
))
7159 dst_end
= (unsigned char *) src
;
7167 if (!EQ (coding
->src_object
, coding
->dst_object
))
7169 ptrdiff_t require
= coding
->src_bytes
- coding
->dst_bytes
;
7173 ptrdiff_t offset
= src
- coding
->source
;
7175 dst
= alloc_destination (coding
, require
, dst
);
7176 coding_set_source (coding
);
7177 src
= coding
->source
+ offset
;
7178 src_end
= coding
->source
+ coding
->consumed
;
7181 produced_chars
= coding
->consumed_char
;
7182 while (src
< src_end
)
7187 produced
= dst
- (coding
->destination
+ coding
->produced
);
7188 if (BUFFERP (coding
->dst_object
) && produced_chars
> 0)
7189 insert_from_gap (produced_chars
, produced
, 0);
7190 coding
->produced
+= produced
;
7191 coding
->produced_char
+= produced_chars
;
7195 /* Compose text in CODING->object according to the annotation data at
7196 CHARBUF. CHARBUF is an array:
7197 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ]
7201 produce_composition (struct coding_system
*coding
, int *charbuf
, ptrdiff_t pos
)
7205 enum composition_method method
;
7206 Lisp_Object components
;
7208 len
= -charbuf
[0] - MAX_ANNOTATION_LENGTH
;
7209 to
= pos
+ charbuf
[2];
7210 method
= (enum composition_method
) (charbuf
[4]);
7212 if (method
== COMPOSITION_RELATIVE
)
7216 Lisp_Object args
[MAX_COMPOSITION_COMPONENTS
* 2 - 1];
7219 if (method
== COMPOSITION_WITH_RULE
)
7220 len
= charbuf
[2] * 3 - 2;
7221 charbuf
+= MAX_ANNOTATION_LENGTH
;
7222 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */
7223 for (i
= j
= 0; i
< len
&& charbuf
[i
] != -1; i
++, j
++)
7225 if (charbuf
[i
] >= 0)
7226 args
[j
] = make_number (charbuf
[i
]);
7230 args
[j
] = make_number (charbuf
[i
] % 0x100);
7233 components
= (i
== j
? Fstring (j
, args
) : Fvector (j
, args
));
7235 compose_text (pos
, to
, components
, Qnil
, coding
->dst_object
);
7239 /* Put `charset' property on text in CODING->object according to
7240 the annotation data at CHARBUF. CHARBUF is an array:
7241 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ]
7245 produce_charset (struct coding_system
*coding
, int *charbuf
, ptrdiff_t pos
)
7247 ptrdiff_t from
= pos
- charbuf
[2];
7248 struct charset
*charset
= CHARSET_FROM_ID (charbuf
[3]);
7250 Fput_text_property (make_number (from
), make_number (pos
),
7251 Qcharset
, CHARSET_NAME (charset
),
7252 coding
->dst_object
);
7255 #define MAX_CHARBUF_SIZE 0x4000
7256 /* How many units decoding functions expect in coding->charbuf at
7257 most. Currently, decode_coding_emacs_mule expects the following
7258 size, and that is the largest value. */
7259 #define MAX_CHARBUF_EXTRA_SIZE ((MAX_ANNOTATION_LENGTH * 3) + 1)
7261 #define ALLOC_CONVERSION_WORK_AREA(coding, size) \
7263 ptrdiff_t units = min ((size) + MAX_CHARBUF_EXTRA_SIZE, \
7264 MAX_CHARBUF_SIZE); \
7265 coding->charbuf = SAFE_ALLOCA (units * sizeof (int)); \
7266 coding->charbuf_size = units; \
7270 produce_annotation (struct coding_system
*coding
, ptrdiff_t pos
)
7272 int *charbuf
= coding
->charbuf
;
7273 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
7275 if (NILP (coding
->dst_object
))
7278 while (charbuf
< charbuf_end
)
7284 int len
= -*charbuf
;
7289 case CODING_ANNOTATE_COMPOSITION_MASK
:
7290 produce_composition (coding
, charbuf
, pos
);
7292 case CODING_ANNOTATE_CHARSET_MASK
:
7293 produce_charset (coding
, charbuf
, pos
);
7301 /* Decode the data at CODING->src_object into CODING->dst_object.
7302 CODING->src_object is a buffer, a string, or nil.
7303 CODING->dst_object is a buffer.
7305 If CODING->src_object is a buffer, it must be the current buffer.
7306 In this case, if CODING->src_pos is positive, it is a position of
7307 the source text in the buffer, otherwise, the source text is in the
7308 gap area of the buffer, and CODING->src_pos specifies the offset of
7309 the text from GPT (which must be the same as PT). If this is the
7310 same buffer as CODING->dst_object, CODING->src_pos must be
7313 If CODING->src_object is a string, CODING->src_pos is an index to
7316 If CODING->src_object is nil, CODING->source must already point to
7317 the non-relocatable memory area. In this case, CODING->src_pos is
7318 an offset from CODING->source.
7320 The decoded data is inserted at the current point of the buffer
7325 decode_coding (struct coding_system
*coding
)
7328 Lisp_Object undo_list
;
7329 Lisp_Object translation_table
;
7330 struct ccl_spec cclspec
;
7336 if (BUFFERP (coding
->src_object
)
7337 && coding
->src_pos
> 0
7338 && coding
->src_pos
< GPT
7339 && coding
->src_pos
+ coding
->src_chars
> GPT
)
7340 move_gap_both (coding
->src_pos
, coding
->src_pos_byte
);
7343 if (BUFFERP (coding
->dst_object
))
7345 set_buffer_internal (XBUFFER (coding
->dst_object
));
7347 move_gap_both (PT
, PT_BYTE
);
7349 /* We must disable undo_list in order to record the whole insert
7350 transaction via record_insert at the end. But doing so also
7351 disables the recording of the first change to the undo_list.
7352 Therefore we check for first change here and record it via
7353 record_first_change if needed. */
7354 if (MODIFF
<= SAVE_MODIFF
)
7355 record_first_change ();
7357 undo_list
= BVAR (current_buffer
, undo_list
);
7358 bset_undo_list (current_buffer
, Qt
);
7361 coding
->consumed
= coding
->consumed_char
= 0;
7362 coding
->produced
= coding
->produced_char
= 0;
7363 coding
->chars_at_source
= 0;
7364 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7366 ALLOC_CONVERSION_WORK_AREA (coding
, coding
->src_bytes
);
7368 attrs
= CODING_ID_ATTRS (coding
->id
);
7369 translation_table
= get_translation_table (attrs
, 0, NULL
);
7372 if (coding
->decoder
== decode_coding_ccl
)
7374 coding
->spec
.ccl
= &cclspec
;
7375 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_DECODER (coding
));
7379 ptrdiff_t pos
= coding
->dst_pos
+ coding
->produced_char
;
7381 coding_set_source (coding
);
7382 coding
->annotated
= 0;
7383 coding
->charbuf_used
= carryover
;
7384 (*(coding
->decoder
)) (coding
);
7385 coding_set_destination (coding
);
7386 carryover
= produce_chars (coding
, translation_table
, 0);
7387 if (coding
->annotated
)
7388 produce_annotation (coding
, pos
);
7389 for (i
= 0; i
< carryover
; i
++)
7391 = coding
->charbuf
[coding
->charbuf_used
- carryover
+ i
];
7393 while (coding
->result
== CODING_RESULT_INSUFFICIENT_DST
7394 || (coding
->consumed
< coding
->src_bytes
7395 && (coding
->result
== CODING_RESULT_SUCCESS
7396 || coding
->result
== CODING_RESULT_INVALID_SRC
)));
7400 coding_set_destination (coding
);
7401 coding
->charbuf_used
= carryover
;
7402 produce_chars (coding
, translation_table
, 1);
7405 coding
->carryover_bytes
= 0;
7406 if (coding
->consumed
< coding
->src_bytes
)
7408 ptrdiff_t nbytes
= coding
->src_bytes
- coding
->consumed
;
7409 const unsigned char *src
;
7411 coding_set_source (coding
);
7412 coding_set_destination (coding
);
7413 src
= coding
->source
+ coding
->consumed
;
7415 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
7417 /* Flush out unprocessed data as binary chars. We are sure
7418 that the number of data is less than the size of
7420 coding
->charbuf_used
= 0;
7421 coding
->chars_at_source
= 0;
7423 while (nbytes
-- > 0)
7428 c
= BYTE8_TO_CHAR (c
);
7429 coding
->charbuf
[coding
->charbuf_used
++] = c
;
7431 produce_chars (coding
, Qnil
, 1);
7435 /* Record unprocessed bytes in coding->carryover. We are
7436 sure that the number of data is less than the size of
7437 coding->carryover. */
7438 unsigned char *p
= coding
->carryover
;
7440 if (nbytes
> sizeof coding
->carryover
)
7441 nbytes
= sizeof coding
->carryover
;
7442 coding
->carryover_bytes
= nbytes
;
7443 while (nbytes
-- > 0)
7446 coding
->consumed
= coding
->src_bytes
;
7449 if (! EQ (CODING_ID_EOL_TYPE (coding
->id
), Qunix
)
7450 && !inhibit_eol_conversion
)
7451 decode_eol (coding
);
7452 if (BUFFERP (coding
->dst_object
))
7454 bset_undo_list (current_buffer
, undo_list
);
7455 record_insert (coding
->dst_pos
, coding
->produced_char
);
7462 /* Extract an annotation datum from a composition starting at POS and
7463 ending before LIMIT of CODING->src_object (buffer or string), store
7464 the data in BUF, set *STOP to a starting position of the next
7465 composition (if any) or to LIMIT, and return the address of the
7466 next element of BUF.
7468 If such an annotation is not found, set *STOP to a starting
7469 position of a composition after POS (if any) or to LIMIT, and
7473 handle_composition_annotation (ptrdiff_t pos
, ptrdiff_t limit
,
7474 struct coding_system
*coding
, int *buf
,
7477 ptrdiff_t start
, end
;
7480 if (! find_composition (pos
, limit
, &start
, &end
, &prop
, coding
->src_object
)
7483 else if (start
> pos
)
7489 /* We found a composition. Store the corresponding
7490 annotation data in BUF. */
7492 enum composition_method method
= composition_method (prop
);
7493 int nchars
= COMPOSITION_LENGTH (prop
);
7495 ADD_COMPOSITION_DATA (buf
, nchars
, 0, method
);
7496 if (method
!= COMPOSITION_RELATIVE
)
7498 Lisp_Object components
;
7499 ptrdiff_t i
, len
, i_byte
;
7501 components
= COMPOSITION_COMPONENTS (prop
);
7502 if (VECTORP (components
))
7504 len
= ASIZE (components
);
7505 for (i
= 0; i
< len
; i
++)
7506 *buf
++ = XINT (AREF (components
, i
));
7508 else if (STRINGP (components
))
7510 len
= SCHARS (components
);
7514 FETCH_STRING_CHAR_ADVANCE (*buf
, components
, i
, i_byte
);
7518 else if (INTEGERP (components
))
7521 *buf
++ = XINT (components
);
7523 else if (CONSP (components
))
7525 for (len
= 0; CONSP (components
);
7526 len
++, components
= XCDR (components
))
7527 *buf
++ = XINT (XCAR (components
));
7535 if (find_composition (end
, limit
, &start
, &end
, &prop
,
7546 /* Extract an annotation datum from a text property `charset' at POS of
7547 CODING->src_object (buffer of string), store the data in BUF, set
7548 *STOP to the position where the value of `charset' property changes
7549 (limiting by LIMIT), and return the address of the next element of
7552 If the property value is nil, set *STOP to the position where the
7553 property value is non-nil (limiting by LIMIT), and return BUF. */
7556 handle_charset_annotation (ptrdiff_t pos
, ptrdiff_t limit
,
7557 struct coding_system
*coding
, int *buf
,
7560 Lisp_Object val
, next
;
7563 val
= Fget_text_property (make_number (pos
), Qcharset
, coding
->src_object
);
7564 if (! NILP (val
) && CHARSETP (val
))
7565 id
= XINT (CHARSET_SYMBOL_ID (val
));
7568 ADD_CHARSET_DATA (buf
, 0, id
);
7569 next
= Fnext_single_property_change (make_number (pos
), Qcharset
,
7571 make_number (limit
));
7572 *stop
= XINT (next
);
7578 consume_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
7581 int *buf
= coding
->charbuf
;
7582 int *buf_end
= coding
->charbuf
+ coding
->charbuf_size
;
7583 const unsigned char *src
= coding
->source
+ coding
->consumed
;
7584 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
7585 ptrdiff_t pos
= coding
->src_pos
+ coding
->consumed_char
;
7586 ptrdiff_t end_pos
= coding
->src_pos
+ coding
->src_chars
;
7587 bool multibytep
= coding
->src_multibyte
;
7588 Lisp_Object eol_type
;
7590 ptrdiff_t stop
, stop_composition
, stop_charset
;
7591 int *lookup_buf
= NULL
;
7593 if (! NILP (translation_table
))
7594 lookup_buf
= alloca (sizeof (int) * max_lookup
);
7596 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
7597 if (VECTORP (eol_type
))
7600 /* Note: composition handling is not yet implemented. */
7601 coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
7603 if (NILP (coding
->src_object
))
7604 stop
= stop_composition
= stop_charset
= end_pos
;
7607 if (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
)
7608 stop
= stop_composition
= pos
;
7610 stop
= stop_composition
= end_pos
;
7611 if (coding
->common_flags
& CODING_ANNOTATE_CHARSET_MASK
)
7612 stop
= stop_charset
= pos
;
7614 stop_charset
= end_pos
;
7617 /* Compensate for CRLF and conversion. */
7618 buf_end
-= 1 + MAX_ANNOTATION_LENGTH
;
7619 while (buf
< buf_end
)
7627 if (pos
== stop_composition
)
7628 buf
= handle_composition_annotation (pos
, end_pos
, coding
,
7629 buf
, &stop_composition
);
7630 if (pos
== stop_charset
)
7631 buf
= handle_charset_annotation (pos
, end_pos
, coding
,
7632 buf
, &stop_charset
);
7633 stop
= (stop_composition
< stop_charset
7634 ? stop_composition
: stop_charset
);
7641 if (coding
->encoder
== encode_coding_raw_text
7642 || coding
->encoder
== encode_coding_ccl
)
7644 else if ((bytes
= MULTIBYTE_LENGTH (src
, src_end
)) > 0)
7645 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
+= bytes
;
7647 c
= BYTE8_TO_CHAR (*src
), src
++, pos
++;
7650 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
++;
7651 if ((c
== '\r') && (coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
))
7653 if (! EQ (eol_type
, Qunix
))
7657 if (EQ (eol_type
, Qdos
))
7665 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7670 ptrdiff_t from_nchars
= 1, to_nchars
= 1;
7671 int *lookup_buf_end
;
7672 const unsigned char *p
= src
;
7676 for (i
= 1; i
< max_lookup
&& p
< src_end
; i
++)
7677 lookup_buf
[i
] = STRING_CHAR_ADVANCE (p
);
7678 lookup_buf_end
= lookup_buf
+ i
;
7679 trans
= get_translation (trans
, lookup_buf
, lookup_buf_end
);
7680 if (INTEGERP (trans
))
7682 else if (CONSP (trans
))
7684 from_nchars
= ASIZE (XCAR (trans
));
7685 trans
= XCDR (trans
);
7686 if (INTEGERP (trans
))
7690 to_nchars
= ASIZE (trans
);
7691 if (buf_end
- buf
< to_nchars
)
7693 c
= XINT (AREF (trans
, 0));
7699 for (i
= 1; i
< to_nchars
; i
++)
7700 *buf
++ = XINT (AREF (trans
, i
));
7701 for (i
= 1; i
< from_nchars
; i
++, pos
++)
7702 src
+= MULTIBYTE_LENGTH_NO_CHECK (src
);
7706 coding
->consumed
= src
- coding
->source
;
7707 coding
->consumed_char
= pos
- coding
->src_pos
;
7708 coding
->charbuf_used
= buf
- coding
->charbuf
;
7709 coding
->chars_at_source
= 0;
7713 /* Encode the text at CODING->src_object into CODING->dst_object.
7714 CODING->src_object is a buffer or a string.
7715 CODING->dst_object is a buffer or nil.
7717 If CODING->src_object is a buffer, it must be the current buffer.
7718 In this case, if CODING->src_pos is positive, it is a position of
7719 the source text in the buffer, otherwise. the source text is in the
7720 gap area of the buffer, and coding->src_pos specifies the offset of
7721 the text from GPT (which must be the same as PT). If this is the
7722 same buffer as CODING->dst_object, CODING->src_pos must be
7723 negative and CODING should not have `pre-write-conversion'.
7725 If CODING->src_object is a string, CODING should not have
7726 `pre-write-conversion'.
7728 If CODING->dst_object is a buffer, the encoded data is inserted at
7729 the current point of that buffer.
7731 If CODING->dst_object is nil, the encoded data is placed at the
7732 memory area specified by CODING->destination. */
7735 encode_coding (struct coding_system
*coding
)
7738 Lisp_Object translation_table
;
7740 struct ccl_spec cclspec
;
7744 attrs
= CODING_ID_ATTRS (coding
->id
);
7745 if (coding
->encoder
== encode_coding_raw_text
)
7746 translation_table
= Qnil
, max_lookup
= 0;
7748 translation_table
= get_translation_table (attrs
, 1, &max_lookup
);
7750 if (BUFFERP (coding
->dst_object
))
7752 set_buffer_internal (XBUFFER (coding
->dst_object
));
7753 coding
->dst_multibyte
7754 = ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
7757 coding
->consumed
= coding
->consumed_char
= 0;
7758 coding
->produced
= coding
->produced_char
= 0;
7759 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7761 ALLOC_CONVERSION_WORK_AREA (coding
, coding
->src_chars
);
7763 if (coding
->encoder
== encode_coding_ccl
)
7765 coding
->spec
.ccl
= &cclspec
;
7766 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_ENCODER (coding
));
7769 coding_set_source (coding
);
7770 consume_chars (coding
, translation_table
, max_lookup
);
7771 coding_set_destination (coding
);
7772 (*(coding
->encoder
)) (coding
);
7773 } while (coding
->consumed_char
< coding
->src_chars
);
7775 if (BUFFERP (coding
->dst_object
) && coding
->produced_char
> 0)
7776 insert_from_gap (coding
->produced_char
, coding
->produced
, 0);
7782 /* Name (or base name) of work buffer for code conversion. */
7783 static Lisp_Object Vcode_conversion_workbuf_name
;
7785 /* A working buffer used by the top level conversion. Once it is
7786 created, it is never destroyed. It has the name
7787 Vcode_conversion_workbuf_name. The other working buffers are
7788 destroyed after the use is finished, and their names are modified
7789 versions of Vcode_conversion_workbuf_name. */
7790 static Lisp_Object Vcode_conversion_reused_workbuf
;
7792 /* True iff Vcode_conversion_reused_workbuf is already in use. */
7793 static bool reused_workbuf_in_use
;
7796 /* Return a working buffer of code conversion. MULTIBYTE specifies the
7797 multibyteness of returning buffer. */
7800 make_conversion_work_buffer (bool multibyte
)
7802 Lisp_Object name
, workbuf
;
7803 struct buffer
*current
;
7805 if (reused_workbuf_in_use
)
7807 name
= Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name
, Qnil
);
7808 workbuf
= Fget_buffer_create (name
);
7812 reused_workbuf_in_use
= 1;
7813 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf
)))
7814 Vcode_conversion_reused_workbuf
7815 = Fget_buffer_create (Vcode_conversion_workbuf_name
);
7816 workbuf
= Vcode_conversion_reused_workbuf
;
7818 current
= current_buffer
;
7819 set_buffer_internal (XBUFFER (workbuf
));
7820 /* We can't allow modification hooks to run in the work buffer. For
7821 instance, directory_files_internal assumes that file decoding
7822 doesn't compile new regexps. */
7823 Fset (Fmake_local_variable (Qinhibit_modification_hooks
), Qt
);
7825 bset_undo_list (current_buffer
, Qt
);
7826 bset_enable_multibyte_characters (current_buffer
, multibyte
? Qt
: Qnil
);
7827 set_buffer_internal (current
);
7833 code_conversion_restore (Lisp_Object arg
)
7835 Lisp_Object current
, workbuf
;
7836 struct gcpro gcpro1
;
7839 current
= XCAR (arg
);
7840 workbuf
= XCDR (arg
);
7841 if (! NILP (workbuf
))
7843 if (EQ (workbuf
, Vcode_conversion_reused_workbuf
))
7844 reused_workbuf_in_use
= 0;
7846 Fkill_buffer (workbuf
);
7848 set_buffer_internal (XBUFFER (current
));
7853 code_conversion_save (bool with_work_buf
, bool multibyte
)
7855 Lisp_Object workbuf
= Qnil
;
7858 workbuf
= make_conversion_work_buffer (multibyte
);
7859 record_unwind_protect (code_conversion_restore
,
7860 Fcons (Fcurrent_buffer (), workbuf
));
7865 decode_coding_gap (struct coding_system
*coding
,
7866 ptrdiff_t chars
, ptrdiff_t bytes
)
7868 ptrdiff_t count
= SPECPDL_INDEX ();
7871 coding
->src_object
= Fcurrent_buffer ();
7872 coding
->src_chars
= chars
;
7873 coding
->src_bytes
= bytes
;
7874 coding
->src_pos
= -chars
;
7875 coding
->src_pos_byte
= -bytes
;
7876 coding
->src_multibyte
= chars
< bytes
;
7877 coding
->dst_object
= coding
->src_object
;
7878 coding
->dst_pos
= PT
;
7879 coding
->dst_pos_byte
= PT_BYTE
;
7880 coding
->dst_multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
7882 coding
->head_ascii
= -1;
7883 coding
->detected_utf8_bytes
= coding
->detected_utf8_chars
= -1;
7884 coding
->eol_seen
= EOL_SEEN_NONE
;
7885 if (CODING_REQUIRE_DETECTION (coding
))
7886 detect_coding (coding
);
7887 attrs
= CODING_ID_ATTRS (coding
->id
);
7888 if (! disable_ascii_optimization
7889 && ! coding
->src_multibyte
7890 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
))
7891 && NILP (CODING_ATTR_POST_READ (attrs
))
7892 && NILP (get_translation_table (attrs
, 0, NULL
)))
7894 chars
= coding
->head_ascii
;
7896 chars
= check_ascii (coding
);
7899 /* There exists a non-ASCII byte. */
7900 if (EQ (CODING_ATTR_TYPE (attrs
), Qutf_8
)
7901 && coding
->detected_utf8_bytes
== coding
->src_bytes
)
7903 if (coding
->detected_utf8_chars
>= 0)
7904 chars
= coding
->detected_utf8_chars
;
7906 chars
= check_utf_8 (coding
);
7907 if (CODING_UTF_8_BOM (coding
) != utf_without_bom
7908 && coding
->head_ascii
== 0
7909 && coding
->source
[0] == UTF_8_BOM_1
7910 && coding
->source
[1] == UTF_8_BOM_2
7911 && coding
->source
[2] == UTF_8_BOM_3
)
7915 coding
->src_bytes
-= 3;
7923 Lisp_Object eol_type
;
7925 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
7926 if (VECTORP (eol_type
))
7928 if (coding
->eol_seen
!= EOL_SEEN_NONE
)
7929 eol_type
= adjust_coding_eol_type (coding
, coding
->eol_seen
);
7931 if (EQ (eol_type
, Qmac
))
7933 unsigned char *src_end
= GAP_END_ADDR
;
7934 unsigned char *src
= src_end
- coding
->src_bytes
;
7936 while (src
< src_end
)
7942 else if (EQ (eol_type
, Qdos
))
7944 unsigned char *src
= GAP_END_ADDR
;
7945 unsigned char *src_beg
= src
- coding
->src_bytes
;
7946 unsigned char *dst
= src
;
7949 while (src_beg
< src
)
7952 if (*src
== '\n' && src
> src_beg
&& src
[-1] == '\r')
7959 coding
->produced
= bytes
;
7960 coding
->produced_char
= chars
;
7961 insert_from_gap (chars
, bytes
, 1);
7965 code_conversion_save (0, 0);
7967 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
7968 current_buffer
->text
->inhibit_shrinking
= 1;
7969 decode_coding (coding
);
7970 current_buffer
->text
->inhibit_shrinking
= 0;
7972 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7974 ptrdiff_t prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7977 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7978 val
= call1 (CODING_ATTR_POST_READ (attrs
),
7979 make_number (coding
->produced_char
));
7981 coding
->produced_char
+= Z
- prev_Z
;
7982 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7985 unbind_to (count
, Qnil
);
7989 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in
7990 SRC_OBJECT into DST_OBJECT by coding context CODING.
7992 SRC_OBJECT is a buffer, a string, or Qnil.
7994 If it is a buffer, the text is at point of the buffer. FROM and TO
7995 are positions in the buffer.
7997 If it is a string, the text is at the beginning of the string.
7998 FROM and TO are indices to the string.
8000 If it is nil, the text is at coding->source. FROM and TO are
8001 indices to coding->source.
8003 DST_OBJECT is a buffer, Qt, or Qnil.
8005 If it is a buffer, the decoded text is inserted at point of the
8006 buffer. If the buffer is the same as SRC_OBJECT, the source text
8009 If it is Qt, a string is made from the decoded text, and
8010 set in CODING->dst_object.
8012 If it is Qnil, the decoded text is stored at CODING->destination.
8013 The caller must allocate CODING->dst_bytes bytes at
8014 CODING->destination by xmalloc. If the decoded text is longer than
8015 CODING->dst_bytes, CODING->destination is relocated by xrealloc.
8019 decode_coding_object (struct coding_system
*coding
,
8020 Lisp_Object src_object
,
8021 ptrdiff_t from
, ptrdiff_t from_byte
,
8022 ptrdiff_t to
, ptrdiff_t to_byte
,
8023 Lisp_Object dst_object
)
8025 ptrdiff_t count
= SPECPDL_INDEX ();
8026 unsigned char *destination
IF_LINT (= NULL
);
8027 ptrdiff_t dst_bytes
IF_LINT (= 0);
8028 ptrdiff_t chars
= to
- from
;
8029 ptrdiff_t bytes
= to_byte
- from_byte
;
8031 ptrdiff_t saved_pt
= -1, saved_pt_byte
IF_LINT (= 0);
8032 bool need_marker_adjustment
= 0;
8033 Lisp_Object old_deactivate_mark
;
8035 old_deactivate_mark
= Vdeactivate_mark
;
8037 if (NILP (dst_object
))
8039 destination
= coding
->destination
;
8040 dst_bytes
= coding
->dst_bytes
;
8043 coding
->src_object
= src_object
;
8044 coding
->src_chars
= chars
;
8045 coding
->src_bytes
= bytes
;
8046 coding
->src_multibyte
= chars
< bytes
;
8048 if (STRINGP (src_object
))
8050 coding
->src_pos
= from
;
8051 coding
->src_pos_byte
= from_byte
;
8053 else if (BUFFERP (src_object
))
8055 set_buffer_internal (XBUFFER (src_object
));
8057 move_gap_both (from
, from_byte
);
8058 if (EQ (src_object
, dst_object
))
8060 struct Lisp_Marker
*tail
;
8062 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8064 tail
->need_adjustment
8065 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
8066 need_marker_adjustment
|= tail
->need_adjustment
;
8068 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8069 TEMP_SET_PT_BOTH (from
, from_byte
);
8070 current_buffer
->text
->inhibit_shrinking
= 1;
8071 del_range_both (from
, from_byte
, to
, to_byte
, 1);
8072 coding
->src_pos
= -chars
;
8073 coding
->src_pos_byte
= -bytes
;
8077 coding
->src_pos
= from
;
8078 coding
->src_pos_byte
= from_byte
;
8082 if (CODING_REQUIRE_DETECTION (coding
))
8083 detect_coding (coding
);
8084 attrs
= CODING_ID_ATTRS (coding
->id
);
8086 if (EQ (dst_object
, Qt
)
8087 || (! NILP (CODING_ATTR_POST_READ (attrs
))
8088 && NILP (dst_object
)))
8090 coding
->dst_multibyte
= !CODING_FOR_UNIBYTE (coding
);
8091 coding
->dst_object
= code_conversion_save (1, coding
->dst_multibyte
);
8092 coding
->dst_pos
= BEG
;
8093 coding
->dst_pos_byte
= BEG_BYTE
;
8095 else if (BUFFERP (dst_object
))
8097 code_conversion_save (0, 0);
8098 coding
->dst_object
= dst_object
;
8099 coding
->dst_pos
= BUF_PT (XBUFFER (dst_object
));
8100 coding
->dst_pos_byte
= BUF_PT_BYTE (XBUFFER (dst_object
));
8101 coding
->dst_multibyte
8102 = ! NILP (BVAR (XBUFFER (dst_object
), enable_multibyte_characters
));
8106 code_conversion_save (0, 0);
8107 coding
->dst_object
= Qnil
;
8108 /* Most callers presume this will return a multibyte result, and they
8109 won't use `binary' or `raw-text' anyway, so let's not worry about
8110 CODING_FOR_UNIBYTE. */
8111 coding
->dst_multibyte
= 1;
8114 decode_coding (coding
);
8116 if (BUFFERP (coding
->dst_object
))
8117 set_buffer_internal (XBUFFER (coding
->dst_object
));
8119 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
8121 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
8122 ptrdiff_t prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
8125 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
8126 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
8127 old_deactivate_mark
);
8128 val
= safe_call1 (CODING_ATTR_POST_READ (attrs
),
8129 make_number (coding
->produced_char
));
8132 coding
->produced_char
+= Z
- prev_Z
;
8133 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
8136 if (EQ (dst_object
, Qt
))
8138 coding
->dst_object
= Fbuffer_string ();
8140 else if (NILP (dst_object
) && BUFFERP (coding
->dst_object
))
8142 set_buffer_internal (XBUFFER (coding
->dst_object
));
8143 if (dst_bytes
< coding
->produced
)
8145 eassert (coding
->produced
> 0);
8146 destination
= xrealloc (destination
, coding
->produced
);
8147 if (BEGV
< GPT
&& GPT
< BEGV
+ coding
->produced_char
)
8148 move_gap_both (BEGV
, BEGV_BYTE
);
8149 memcpy (destination
, BEGV_ADDR
, coding
->produced
);
8150 coding
->destination
= destination
;
8156 /* This is the case of:
8157 (BUFFERP (src_object) && EQ (src_object, dst_object))
8158 As we have moved PT while replacing the original buffer
8159 contents, we must recover it now. */
8160 set_buffer_internal (XBUFFER (src_object
));
8161 current_buffer
->text
->inhibit_shrinking
= 0;
8162 if (saved_pt
< from
)
8163 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
8164 else if (saved_pt
< from
+ chars
)
8165 TEMP_SET_PT_BOTH (from
, from_byte
);
8166 else if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8167 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
8168 saved_pt_byte
+ (coding
->produced
- bytes
));
8170 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
8171 saved_pt_byte
+ (coding
->produced
- bytes
));
8173 if (need_marker_adjustment
)
8175 struct Lisp_Marker
*tail
;
8177 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8178 if (tail
->need_adjustment
)
8180 tail
->need_adjustment
= 0;
8181 if (tail
->insertion_type
)
8183 tail
->bytepos
= from_byte
;
8184 tail
->charpos
= from
;
8188 tail
->bytepos
= from_byte
+ coding
->produced
;
8190 = (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
8191 ? tail
->bytepos
: from
+ coding
->produced_char
);
8197 Vdeactivate_mark
= old_deactivate_mark
;
8198 unbind_to (count
, coding
->dst_object
);
8203 encode_coding_object (struct coding_system
*coding
,
8204 Lisp_Object src_object
,
8205 ptrdiff_t from
, ptrdiff_t from_byte
,
8206 ptrdiff_t to
, ptrdiff_t to_byte
,
8207 Lisp_Object dst_object
)
8209 ptrdiff_t count
= SPECPDL_INDEX ();
8210 ptrdiff_t chars
= to
- from
;
8211 ptrdiff_t bytes
= to_byte
- from_byte
;
8213 ptrdiff_t saved_pt
= -1, saved_pt_byte
IF_LINT (= 0);
8214 bool need_marker_adjustment
= 0;
8215 bool kill_src_buffer
= 0;
8216 Lisp_Object old_deactivate_mark
;
8218 old_deactivate_mark
= Vdeactivate_mark
;
8220 coding
->src_object
= src_object
;
8221 coding
->src_chars
= chars
;
8222 coding
->src_bytes
= bytes
;
8223 coding
->src_multibyte
= chars
< bytes
;
8225 attrs
= CODING_ID_ATTRS (coding
->id
);
8227 if (EQ (src_object
, dst_object
))
8229 struct Lisp_Marker
*tail
;
8231 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8233 tail
->need_adjustment
8234 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
8235 need_marker_adjustment
|= tail
->need_adjustment
;
8239 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
8241 coding
->src_object
= code_conversion_save (1, coding
->src_multibyte
);
8242 set_buffer_internal (XBUFFER (coding
->src_object
));
8243 if (STRINGP (src_object
))
8244 insert_from_string (src_object
, from
, from_byte
, chars
, bytes
, 0);
8245 else if (BUFFERP (src_object
))
8246 insert_from_buffer (XBUFFER (src_object
), from
, chars
, 0);
8248 insert_1_both ((char *) coding
->source
+ from
, chars
, bytes
, 0, 0, 0);
8250 if (EQ (src_object
, dst_object
))
8252 set_buffer_internal (XBUFFER (src_object
));
8253 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8254 del_range_both (from
, from_byte
, to
, to_byte
, 1);
8255 set_buffer_internal (XBUFFER (coding
->src_object
));
8259 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
8261 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
8262 old_deactivate_mark
);
8263 safe_call2 (CODING_ATTR_PRE_WRITE (attrs
),
8264 make_number (BEG
), make_number (Z
));
8267 if (XBUFFER (coding
->src_object
) != current_buffer
)
8268 kill_src_buffer
= 1;
8269 coding
->src_object
= Fcurrent_buffer ();
8271 move_gap_both (BEG
, BEG_BYTE
);
8272 coding
->src_chars
= Z
- BEG
;
8273 coding
->src_bytes
= Z_BYTE
- BEG_BYTE
;
8274 coding
->src_pos
= BEG
;
8275 coding
->src_pos_byte
= BEG_BYTE
;
8276 coding
->src_multibyte
= Z
< Z_BYTE
;
8278 else if (STRINGP (src_object
))
8280 code_conversion_save (0, 0);
8281 coding
->src_pos
= from
;
8282 coding
->src_pos_byte
= from_byte
;
8284 else if (BUFFERP (src_object
))
8286 code_conversion_save (0, 0);
8287 set_buffer_internal (XBUFFER (src_object
));
8288 if (EQ (src_object
, dst_object
))
8290 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8291 coding
->src_object
= del_range_1 (from
, to
, 1, 1);
8292 coding
->src_pos
= 0;
8293 coding
->src_pos_byte
= 0;
8297 if (from
< GPT
&& to
>= GPT
)
8298 move_gap_both (from
, from_byte
);
8299 coding
->src_pos
= from
;
8300 coding
->src_pos_byte
= from_byte
;
8304 code_conversion_save (0, 0);
8306 if (BUFFERP (dst_object
))
8308 coding
->dst_object
= dst_object
;
8309 if (EQ (src_object
, dst_object
))
8311 coding
->dst_pos
= from
;
8312 coding
->dst_pos_byte
= from_byte
;
8316 struct buffer
*current
= current_buffer
;
8318 set_buffer_temp (XBUFFER (dst_object
));
8319 coding
->dst_pos
= PT
;
8320 coding
->dst_pos_byte
= PT_BYTE
;
8321 move_gap_both (coding
->dst_pos
, coding
->dst_pos_byte
);
8322 set_buffer_temp (current
);
8324 coding
->dst_multibyte
8325 = ! NILP (BVAR (XBUFFER (dst_object
), enable_multibyte_characters
));
8327 else if (EQ (dst_object
, Qt
))
8329 ptrdiff_t dst_bytes
= max (1, coding
->src_chars
);
8330 coding
->dst_object
= Qnil
;
8331 coding
->destination
= xmalloc (dst_bytes
);
8332 coding
->dst_bytes
= dst_bytes
;
8333 coding
->dst_multibyte
= 0;
8337 coding
->dst_object
= Qnil
;
8338 coding
->dst_multibyte
= 0;
8341 encode_coding (coding
);
8343 if (EQ (dst_object
, Qt
))
8345 if (BUFFERP (coding
->dst_object
))
8346 coding
->dst_object
= Fbuffer_string ();
8347 else if (coding
->raw_destination
)
8348 /* This is used to avoid creating huge Lisp string.
8349 NOTE: caller who sets `raw_destination' is also
8350 responsible for freeing `destination' buffer. */
8351 coding
->dst_object
= Qnil
;
8355 = make_unibyte_string ((char *) coding
->destination
,
8357 xfree (coding
->destination
);
8363 /* This is the case of:
8364 (BUFFERP (src_object) && EQ (src_object, dst_object))
8365 As we have moved PT while replacing the original buffer
8366 contents, we must recover it now. */
8367 set_buffer_internal (XBUFFER (src_object
));
8368 if (saved_pt
< from
)
8369 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
8370 else if (saved_pt
< from
+ chars
)
8371 TEMP_SET_PT_BOTH (from
, from_byte
);
8372 else if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8373 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
8374 saved_pt_byte
+ (coding
->produced
- bytes
));
8376 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
8377 saved_pt_byte
+ (coding
->produced
- bytes
));
8379 if (need_marker_adjustment
)
8381 struct Lisp_Marker
*tail
;
8383 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8384 if (tail
->need_adjustment
)
8386 tail
->need_adjustment
= 0;
8387 if (tail
->insertion_type
)
8389 tail
->bytepos
= from_byte
;
8390 tail
->charpos
= from
;
8394 tail
->bytepos
= from_byte
+ coding
->produced
;
8396 = (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
8397 ? tail
->bytepos
: from
+ coding
->produced_char
);
8403 if (kill_src_buffer
)
8404 Fkill_buffer (coding
->src_object
);
8406 Vdeactivate_mark
= old_deactivate_mark
;
8407 unbind_to (count
, Qnil
);
8412 preferred_coding_system (void)
8414 int id
= coding_categories
[coding_priorities
[0]].id
;
8416 return CODING_ID_NAME (id
);
8419 #if defined (WINDOWSNT) || defined (CYGWIN)
8422 from_unicode (Lisp_Object str
)
8425 if (!STRING_MULTIBYTE (str
) &&
8428 str
= Fsubstring (str
, make_number (0), make_number (-1));
8431 return code_convert_string_norecord (str
, Qutf_16le
, 0);
8435 from_unicode_buffer (const wchar_t *wstr
)
8437 return from_unicode (
8438 make_unibyte_string (
8440 /* we get one of the two final 0 bytes for free. */
8441 1 + sizeof (wchar_t) * wcslen (wstr
)));
8445 to_unicode (Lisp_Object str
, Lisp_Object
*buf
)
8447 *buf
= code_convert_string_norecord (str
, Qutf_16le
, 1);
8448 /* We need to make another copy (in addition to the one made by
8449 code_convert_string_norecord) to ensure that the final string is
8450 _doubly_ zero terminated --- that is, that the string is
8451 terminated by two zero bytes and one utf-16le null character.
8452 Because strings are already terminated with a single zero byte,
8453 we just add one additional zero. */
8454 str
= make_uninit_string (SBYTES (*buf
) + 1);
8455 memcpy (SDATA (str
), SDATA (*buf
), SBYTES (*buf
));
8456 SDATA (str
) [SBYTES (*buf
)] = '\0';
8458 return WCSDATA (*buf
);
8461 #endif /* WINDOWSNT || CYGWIN */
8465 /*** 8. Emacs Lisp library functions ***/
8467 DEFUN ("coding-system-p", Fcoding_system_p
, Scoding_system_p
, 1, 1, 0,
8468 doc
: /* Return t if OBJECT is nil or a coding-system.
8469 See the documentation of `define-coding-system' for information
8470 about coding-system objects. */)
8471 (Lisp_Object object
)
8474 || CODING_SYSTEM_ID (object
) >= 0)
8476 if (! SYMBOLP (object
)
8477 || NILP (Fget (object
, Qcoding_system_define_form
)))
8482 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system
,
8483 Sread_non_nil_coding_system
, 1, 1, 0,
8484 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
8485 (Lisp_Object prompt
)
8490 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8491 Qt
, Qnil
, Qcoding_system_history
, Qnil
, Qnil
);
8493 while (SCHARS (val
) == 0);
8494 return (Fintern (val
, Qnil
));
8497 DEFUN ("read-coding-system", Fread_coding_system
, Sread_coding_system
, 1, 2, 0,
8498 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8499 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8500 Ignores case when completing coding systems (all Emacs coding systems
8501 are lower-case). */)
8502 (Lisp_Object prompt
, Lisp_Object default_coding_system
)
8505 ptrdiff_t count
= SPECPDL_INDEX ();
8507 if (SYMBOLP (default_coding_system
))
8508 default_coding_system
= SYMBOL_NAME (default_coding_system
);
8509 specbind (Qcompletion_ignore_case
, Qt
);
8510 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8511 Qt
, Qnil
, Qcoding_system_history
,
8512 default_coding_system
, Qnil
);
8513 unbind_to (count
, Qnil
);
8514 return (SCHARS (val
) == 0 ? Qnil
: Fintern (val
, Qnil
));
8517 DEFUN ("check-coding-system", Fcheck_coding_system
, Scheck_coding_system
,
8519 doc
: /* Check validity of CODING-SYSTEM.
8520 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
8521 It is valid if it is nil or a symbol defined as a coding system by the
8522 function `define-coding-system'. */)
8523 (Lisp_Object coding_system
)
8525 Lisp_Object define_form
;
8527 define_form
= Fget (coding_system
, Qcoding_system_define_form
);
8528 if (! NILP (define_form
))
8530 Fput (coding_system
, Qcoding_system_define_form
, Qnil
);
8531 safe_eval (define_form
);
8533 if (!NILP (Fcoding_system_p (coding_system
)))
8534 return coding_system
;
8535 xsignal1 (Qcoding_system_error
, coding_system
);
8539 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If
8540 HIGHEST, return the coding system of the highest
8541 priority among the detected coding systems. Otherwise return a
8542 list of detected coding systems sorted by their priorities. If
8543 MULTIBYTEP, it is assumed that the bytes are in correct
8544 multibyte form but contains only ASCII and eight-bit chars.
8545 Otherwise, the bytes are raw bytes.
8547 CODING-SYSTEM controls the detection as below:
8549 If it is nil, detect both text-format and eol-format. If the
8550 text-format part of CODING-SYSTEM is already specified
8551 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format
8552 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'),
8553 detect only text-format. */
8556 detect_coding_system (const unsigned char *src
,
8557 ptrdiff_t src_chars
, ptrdiff_t src_bytes
,
8558 bool highest
, bool multibytep
,
8559 Lisp_Object coding_system
)
8561 const unsigned char *src_end
= src
+ src_bytes
;
8562 Lisp_Object attrs
, eol_type
;
8563 Lisp_Object val
= Qnil
;
8564 struct coding_system coding
;
8566 struct coding_detection_info detect_info
;
8567 enum coding_category base_category
;
8568 bool null_byte_found
= 0, eight_bit_found
= 0;
8570 if (NILP (coding_system
))
8571 coding_system
= Qundecided
;
8572 setup_coding_system (coding_system
, &coding
);
8573 attrs
= CODING_ID_ATTRS (coding
.id
);
8574 eol_type
= CODING_ID_EOL_TYPE (coding
.id
);
8575 coding_system
= CODING_ATTR_BASE_NAME (attrs
);
8577 coding
.source
= src
;
8578 coding
.src_chars
= src_chars
;
8579 coding
.src_bytes
= src_bytes
;
8580 coding
.src_multibyte
= multibytep
;
8581 coding
.consumed
= 0;
8582 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8583 coding
.head_ascii
= 0;
8585 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
8587 /* At first, detect text-format if necessary. */
8588 base_category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8589 if (base_category
== coding_category_undecided
)
8591 enum coding_category category
IF_LINT (= 0);
8592 struct coding_system
*this IF_LINT (= NULL
);
8594 bool inhibit_nbd
= inhibit_flag (coding
.spec
.undecided
.inhibit_nbd
,
8595 inhibit_null_byte_detection
);
8596 bool inhibit_ied
= inhibit_flag (coding
.spec
.undecided
.inhibit_ied
,
8597 inhibit_iso_escape_detection
);
8598 bool prefer_utf_8
= coding
.spec
.undecided
.prefer_utf_8
;
8600 /* Skip all ASCII bytes except for a few ISO2022 controls. */
8601 for (; src
< src_end
; src
++)
8606 eight_bit_found
= 1;
8607 if (null_byte_found
)
8612 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
8614 && ! detect_info
.checked
)
8616 if (detect_coding_iso_2022 (&coding
, &detect_info
))
8618 /* We have scanned the whole data. */
8619 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
8621 /* We didn't find an 8-bit code. We may
8622 have found a null-byte, but it's very
8623 rare that a binary file confirm to
8626 coding
.head_ascii
= src
- coding
.source
;
8628 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
8632 else if (! c
&& !inhibit_nbd
)
8634 null_byte_found
= 1;
8635 if (eight_bit_found
)
8638 if (! eight_bit_found
)
8639 coding
.head_ascii
++;
8641 else if (! eight_bit_found
)
8642 coding
.head_ascii
++;
8645 if (null_byte_found
|| eight_bit_found
8646 || coding
.head_ascii
< coding
.src_bytes
8647 || detect_info
.found
)
8649 if (coding
.head_ascii
== coding
.src_bytes
)
8650 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
8651 for (i
= 0; i
< coding_category_raw_text
; i
++)
8653 category
= coding_priorities
[i
];
8654 this = coding_categories
+ category
;
8655 if (detect_info
.found
& (1 << category
))
8660 if (null_byte_found
)
8662 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
8663 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
8665 else if (prefer_utf_8
8666 && detect_coding_utf_8 (&coding
, &detect_info
))
8668 detect_info
.checked
|= ~CATEGORY_MASK_UTF_8
;
8669 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_8
;
8671 for (i
= 0; i
< coding_category_raw_text
; i
++)
8673 category
= coding_priorities
[i
];
8674 this = coding_categories
+ category
;
8678 /* No coding system of this category is defined. */
8679 detect_info
.rejected
|= (1 << category
);
8681 else if (category
>= coding_category_raw_text
)
8683 else if (detect_info
.checked
& (1 << category
))
8686 && (detect_info
.found
& (1 << category
)))
8689 else if ((*(this->detector
)) (&coding
, &detect_info
)
8691 && (detect_info
.found
& (1 << category
)))
8693 if (category
== coding_category_utf_16_auto
)
8695 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8696 category
= coding_category_utf_16_le
;
8698 category
= coding_category_utf_16_be
;
8706 if ((detect_info
.rejected
& CATEGORY_MASK_ANY
) == CATEGORY_MASK_ANY
8709 detect_info
.found
= CATEGORY_MASK_RAW_TEXT
;
8710 id
= CODING_SYSTEM_ID (Qno_conversion
);
8711 val
= list1 (make_number (id
));
8713 else if (! detect_info
.rejected
&& ! detect_info
.found
)
8715 detect_info
.found
= CATEGORY_MASK_ANY
;
8716 id
= coding_categories
[coding_category_undecided
].id
;
8717 val
= list1 (make_number (id
));
8721 if (detect_info
.found
)
8723 detect_info
.found
= 1 << category
;
8724 val
= list1 (make_number (this->id
));
8727 for (i
= 0; i
< coding_category_raw_text
; i
++)
8728 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
8730 detect_info
.found
= 1 << coding_priorities
[i
];
8731 id
= coding_categories
[coding_priorities
[i
]].id
;
8732 val
= list1 (make_number (id
));
8738 int mask
= detect_info
.rejected
| detect_info
.found
;
8741 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8743 category
= coding_priorities
[i
];
8744 if (! (mask
& (1 << category
)))
8746 found
|= 1 << category
;
8747 id
= coding_categories
[category
].id
;
8749 val
= list1 (make_number (id
));
8752 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8754 category
= coding_priorities
[i
];
8755 if (detect_info
.found
& (1 << category
))
8757 id
= coding_categories
[category
].id
;
8758 val
= Fcons (make_number (id
), val
);
8761 detect_info
.found
|= found
;
8764 else if (base_category
== coding_category_utf_8_auto
)
8766 if (detect_coding_utf_8 (&coding
, &detect_info
))
8768 struct coding_system
*this;
8770 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
8771 this = coding_categories
+ coding_category_utf_8_sig
;
8773 this = coding_categories
+ coding_category_utf_8_nosig
;
8774 val
= list1 (make_number (this->id
));
8777 else if (base_category
== coding_category_utf_16_auto
)
8779 if (detect_coding_utf_16 (&coding
, &detect_info
))
8781 struct coding_system
*this;
8783 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8784 this = coding_categories
+ coding_category_utf_16_le
;
8785 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
8786 this = coding_categories
+ coding_category_utf_16_be
;
8787 else if (detect_info
.rejected
& CATEGORY_MASK_UTF_16_LE_NOSIG
)
8788 this = coding_categories
+ coding_category_utf_16_be_nosig
;
8790 this = coding_categories
+ coding_category_utf_16_le_nosig
;
8791 val
= list1 (make_number (this->id
));
8796 detect_info
.found
= 1 << XINT (CODING_ATTR_CATEGORY (attrs
));
8797 val
= list1 (make_number (coding
.id
));
8800 /* Then, detect eol-format if necessary. */
8802 int normal_eol
= -1, utf_16_be_eol
= -1, utf_16_le_eol
= -1;
8805 if (VECTORP (eol_type
))
8807 if (detect_info
.found
& ~CATEGORY_MASK_UTF_16
)
8809 if (null_byte_found
)
8810 normal_eol
= EOL_SEEN_LF
;
8812 normal_eol
= detect_eol (coding
.source
, src_bytes
,
8813 coding_category_raw_text
);
8815 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_BE
8816 | CATEGORY_MASK_UTF_16_BE_NOSIG
))
8817 utf_16_be_eol
= detect_eol (coding
.source
, src_bytes
,
8818 coding_category_utf_16_be
);
8819 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_LE
8820 | CATEGORY_MASK_UTF_16_LE_NOSIG
))
8821 utf_16_le_eol
= detect_eol (coding
.source
, src_bytes
,
8822 coding_category_utf_16_le
);
8826 if (EQ (eol_type
, Qunix
))
8827 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_LF
;
8828 else if (EQ (eol_type
, Qdos
))
8829 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CRLF
;
8831 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CR
;
8834 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
8836 enum coding_category category
;
8839 id
= XINT (XCAR (tail
));
8840 attrs
= CODING_ID_ATTRS (id
);
8841 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8842 eol_type
= CODING_ID_EOL_TYPE (id
);
8843 if (VECTORP (eol_type
))
8845 if (category
== coding_category_utf_16_be
8846 || category
== coding_category_utf_16_be_nosig
)
8847 this_eol
= utf_16_be_eol
;
8848 else if (category
== coding_category_utf_16_le
8849 || category
== coding_category_utf_16_le_nosig
)
8850 this_eol
= utf_16_le_eol
;
8852 this_eol
= normal_eol
;
8854 if (this_eol
== EOL_SEEN_LF
)
8855 XSETCAR (tail
, AREF (eol_type
, 0));
8856 else if (this_eol
== EOL_SEEN_CRLF
)
8857 XSETCAR (tail
, AREF (eol_type
, 1));
8858 else if (this_eol
== EOL_SEEN_CR
)
8859 XSETCAR (tail
, AREF (eol_type
, 2));
8861 XSETCAR (tail
, CODING_ID_NAME (id
));
8864 XSETCAR (tail
, CODING_ID_NAME (id
));
8868 return (highest
? (CONSP (val
) ? XCAR (val
) : Qnil
) : val
);
8872 DEFUN ("detect-coding-region", Fdetect_coding_region
, Sdetect_coding_region
,
8874 doc
: /* Detect coding system of the text in the region between START and END.
8875 Return a list of possible coding systems ordered by priority.
8876 The coding systems to try and their priorities follows what
8877 the function `coding-system-priority-list' (which see) returns.
8879 If only ASCII characters are found (except for such ISO-2022 control
8880 characters as ESC), it returns a list of single element `undecided'
8881 or its subsidiary coding system according to a detected end-of-line
8884 If optional argument HIGHEST is non-nil, return the coding system of
8885 highest priority. */)
8886 (Lisp_Object start
, Lisp_Object end
, Lisp_Object highest
)
8889 ptrdiff_t from_byte
, to_byte
;
8891 validate_region (&start
, &end
);
8892 from
= XINT (start
), to
= XINT (end
);
8893 from_byte
= CHAR_TO_BYTE (from
);
8894 to_byte
= CHAR_TO_BYTE (to
);
8896 if (from
< GPT
&& to
>= GPT
)
8897 move_gap_both (to
, to_byte
);
8899 return detect_coding_system (BYTE_POS_ADDR (from_byte
),
8900 to
- from
, to_byte
- from_byte
,
8902 !NILP (BVAR (current_buffer
8903 , enable_multibyte_characters
)),
8907 DEFUN ("detect-coding-string", Fdetect_coding_string
, Sdetect_coding_string
,
8909 doc
: /* Detect coding system of the text in STRING.
8910 Return a list of possible coding systems ordered by priority.
8911 The coding systems to try and their priorities follows what
8912 the function `coding-system-priority-list' (which see) returns.
8914 If only ASCII characters are found (except for such ISO-2022 control
8915 characters as ESC), it returns a list of single element `undecided'
8916 or its subsidiary coding system according to a detected end-of-line
8919 If optional argument HIGHEST is non-nil, return the coding system of
8920 highest priority. */)
8921 (Lisp_Object string
, Lisp_Object highest
)
8923 CHECK_STRING (string
);
8925 return detect_coding_system (SDATA (string
),
8926 SCHARS (string
), SBYTES (string
),
8927 !NILP (highest
), STRING_MULTIBYTE (string
),
8933 char_encodable_p (int c
, Lisp_Object attrs
)
8936 struct charset
*charset
;
8937 Lisp_Object translation_table
;
8939 translation_table
= CODING_ATTR_TRANS_TBL (attrs
);
8940 if (! NILP (translation_table
))
8941 c
= translate_char (translation_table
, c
);
8942 for (tail
= CODING_ATTR_CHARSET_LIST (attrs
);
8943 CONSP (tail
); tail
= XCDR (tail
))
8945 charset
= CHARSET_FROM_ID (XINT (XCAR (tail
)));
8946 if (CHAR_CHARSET_P (c
, charset
))
8949 return (! NILP (tail
));
8953 /* Return a list of coding systems that safely encode the text between
8954 START and END. If EXCLUDE is non-nil, it is a list of coding
8955 systems not to check. The returned list doesn't contain any such
8956 coding systems. In any case, if the text contains only ASCII or is
8957 unibyte, return t. */
8959 DEFUN ("find-coding-systems-region-internal",
8960 Ffind_coding_systems_region_internal
,
8961 Sfind_coding_systems_region_internal
, 2, 3, 0,
8962 doc
: /* Internal use only. */)
8963 (Lisp_Object start
, Lisp_Object end
, Lisp_Object exclude
)
8965 Lisp_Object coding_attrs_list
, safe_codings
;
8966 ptrdiff_t start_byte
, end_byte
;
8967 const unsigned char *p
, *pbeg
, *pend
;
8969 Lisp_Object tail
, elt
, work_table
;
8971 if (STRINGP (start
))
8973 if (!STRING_MULTIBYTE (start
)
8974 || SCHARS (start
) == SBYTES (start
))
8977 end_byte
= SBYTES (start
);
8981 CHECK_NUMBER_COERCE_MARKER (start
);
8982 CHECK_NUMBER_COERCE_MARKER (end
);
8983 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8984 args_out_of_range (start
, end
);
8985 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8987 start_byte
= CHAR_TO_BYTE (XINT (start
));
8988 end_byte
= CHAR_TO_BYTE (XINT (end
));
8989 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8992 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8994 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8995 move_gap_both (XINT (start
), start_byte
);
8997 move_gap_both (XINT (end
), end_byte
);
9001 coding_attrs_list
= Qnil
;
9002 for (tail
= Vcoding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
9004 || NILP (Fmemq (XCAR (tail
), exclude
)))
9008 attrs
= AREF (CODING_SYSTEM_SPEC (XCAR (tail
)), 0);
9009 if (EQ (XCAR (tail
), CODING_ATTR_BASE_NAME (attrs
)))
9011 ASET (attrs
, coding_attr_trans_tbl
,
9012 get_translation_table (attrs
, 1, NULL
));
9013 coding_attrs_list
= Fcons (attrs
, coding_attrs_list
);
9017 if (STRINGP (start
))
9018 p
= pbeg
= SDATA (start
);
9020 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
9021 pend
= p
+ (end_byte
- start_byte
);
9023 while (p
< pend
&& ASCII_CHAR_P (*p
)) p
++;
9024 while (p
< pend
&& ASCII_CHAR_P (*(pend
- 1))) pend
--;
9026 work_table
= Fmake_char_table (Qnil
, Qnil
);
9029 if (ASCII_CHAR_P (*p
))
9033 c
= STRING_CHAR_ADVANCE (p
);
9034 if (!NILP (char_table_ref (work_table
, c
)))
9035 /* This character was already checked. Ignore it. */
9038 charset_map_loaded
= 0;
9039 for (tail
= coding_attrs_list
; CONSP (tail
);)
9044 else if (char_encodable_p (c
, elt
))
9046 else if (CONSP (XCDR (tail
)))
9048 XSETCAR (tail
, XCAR (XCDR (tail
)));
9049 XSETCDR (tail
, XCDR (XCDR (tail
)));
9053 XSETCAR (tail
, Qnil
);
9057 if (charset_map_loaded
)
9059 ptrdiff_t p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
9061 if (STRINGP (start
))
9062 pbeg
= SDATA (start
);
9064 pbeg
= BYTE_POS_ADDR (start_byte
);
9065 p
= pbeg
+ p_offset
;
9066 pend
= pbeg
+ pend_offset
;
9068 char_table_set (work_table
, c
, Qt
);
9072 safe_codings
= list2 (Qraw_text
, Qno_conversion
);
9073 for (tail
= coding_attrs_list
; CONSP (tail
); tail
= XCDR (tail
))
9074 if (! NILP (XCAR (tail
)))
9075 safe_codings
= Fcons (CODING_ATTR_BASE_NAME (XCAR (tail
)), safe_codings
);
9077 return safe_codings
;
9081 DEFUN ("unencodable-char-position", Funencodable_char_position
,
9082 Sunencodable_char_position
, 3, 5, 0,
9083 doc
: /* Return position of first un-encodable character in a region.
9084 START and END specify the region and CODING-SYSTEM specifies the
9085 encoding to check. Return nil if CODING-SYSTEM does encode the region.
9087 If optional 4th argument COUNT is non-nil, it specifies at most how
9088 many un-encodable characters to search. In this case, the value is a
9091 If optional 5th argument STRING is non-nil, it is a string to search
9092 for un-encodable characters. In that case, START and END are indexes
9093 to the string and treated as in `substring'. */)
9094 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
,
9095 Lisp_Object count
, Lisp_Object string
)
9098 struct coding_system coding
;
9099 Lisp_Object attrs
, charset_list
, translation_table
;
9100 Lisp_Object positions
;
9102 const unsigned char *p
, *stop
, *pend
;
9103 bool ascii_compatible
;
9105 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
9106 attrs
= CODING_ID_ATTRS (coding
.id
);
9107 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
9109 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
9110 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9111 translation_table
= get_translation_table (attrs
, 1, NULL
);
9115 validate_region (&start
, &end
);
9116 from
= XINT (start
);
9118 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
9119 || (ascii_compatible
9120 && (to
- from
) == (CHAR_TO_BYTE (to
) - (CHAR_TO_BYTE (from
)))))
9122 p
= CHAR_POS_ADDR (from
);
9123 pend
= CHAR_POS_ADDR (to
);
9124 if (from
< GPT
&& to
>= GPT
)
9131 CHECK_STRING (string
);
9132 validate_subarray (string
, start
, end
, SCHARS (string
), &from
, &to
);
9133 if (! STRING_MULTIBYTE (string
))
9135 p
= SDATA (string
) + string_char_to_byte (string
, from
);
9136 stop
= pend
= SDATA (string
) + string_char_to_byte (string
, to
);
9137 if (ascii_compatible
&& (to
- from
) == (pend
- p
))
9145 CHECK_NATNUM (count
);
9150 charset_map_loaded
= 0;
9155 if (ascii_compatible
)
9156 while (p
< stop
&& ASCII_CHAR_P (*p
))
9166 c
= STRING_CHAR_ADVANCE (p
);
9167 if (! (ASCII_CHAR_P (c
) && ascii_compatible
)
9168 && ! char_charset (translate_char (translation_table
, c
),
9169 charset_list
, NULL
))
9171 positions
= Fcons (make_number (from
), positions
);
9178 if (charset_map_loaded
&& NILP (string
))
9180 p
= CHAR_POS_ADDR (from
);
9181 pend
= CHAR_POS_ADDR (to
);
9182 if (from
< GPT
&& to
>= GPT
)
9186 charset_map_loaded
= 0;
9190 return (NILP (count
) ? Fcar (positions
) : Fnreverse (positions
));
9194 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region
,
9195 Scheck_coding_systems_region
, 3, 3, 0,
9196 doc
: /* Check if the region is encodable by coding systems.
9198 START and END are buffer positions specifying the region.
9199 CODING-SYSTEM-LIST is a list of coding systems to check.
9201 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where
9202 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the
9203 whole region, POS0, POS1, ... are buffer positions where non-encodable
9204 characters are found.
9206 If all coding systems in CODING-SYSTEM-LIST can encode the region, the
9209 START may be a string. In that case, check if the string is
9210 encodable, and the value contains indices to the string instead of
9211 buffer positions. END is ignored.
9213 If the current buffer (or START if it is a string) is unibyte, the value
9215 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system_list
)
9218 ptrdiff_t start_byte
, end_byte
;
9220 const unsigned char *p
, *pbeg
, *pend
;
9222 Lisp_Object tail
, elt
, attrs
;
9224 if (STRINGP (start
))
9226 if (!STRING_MULTIBYTE (start
)
9227 || SCHARS (start
) == SBYTES (start
))
9230 end_byte
= SBYTES (start
);
9235 CHECK_NUMBER_COERCE_MARKER (start
);
9236 CHECK_NUMBER_COERCE_MARKER (end
);
9237 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
9238 args_out_of_range (start
, end
);
9239 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9241 start_byte
= CHAR_TO_BYTE (XINT (start
));
9242 end_byte
= CHAR_TO_BYTE (XINT (end
));
9243 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
9246 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
9248 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
9249 move_gap_both (XINT (start
), start_byte
);
9251 move_gap_both (XINT (end
), end_byte
);
9257 for (tail
= coding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
9260 attrs
= AREF (CODING_SYSTEM_SPEC (elt
), 0);
9261 ASET (attrs
, coding_attr_trans_tbl
,
9262 get_translation_table (attrs
, 1, NULL
));
9263 list
= Fcons (list2 (elt
, attrs
), list
);
9266 if (STRINGP (start
))
9267 p
= pbeg
= SDATA (start
);
9269 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
9270 pend
= p
+ (end_byte
- start_byte
);
9272 while (p
< pend
&& ASCII_CHAR_P (*p
)) p
++, pos
++;
9273 while (p
< pend
&& ASCII_CHAR_P (*(pend
- 1))) pend
--;
9277 if (ASCII_CHAR_P (*p
))
9281 c
= STRING_CHAR_ADVANCE (p
);
9283 charset_map_loaded
= 0;
9284 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
9286 elt
= XCDR (XCAR (tail
));
9287 if (! char_encodable_p (c
, XCAR (elt
)))
9288 XSETCDR (elt
, Fcons (make_number (pos
), XCDR (elt
)));
9290 if (charset_map_loaded
)
9292 ptrdiff_t p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
9294 if (STRINGP (start
))
9295 pbeg
= SDATA (start
);
9297 pbeg
= BYTE_POS_ADDR (start_byte
);
9298 p
= pbeg
+ p_offset
;
9299 pend
= pbeg
+ pend_offset
;
9307 for (; CONSP (tail
); tail
= XCDR (tail
))
9310 if (CONSP (XCDR (XCDR (elt
))))
9311 list
= Fcons (Fcons (XCAR (elt
), Fnreverse (XCDR (XCDR (elt
)))),
9320 code_convert_region (Lisp_Object start
, Lisp_Object end
,
9321 Lisp_Object coding_system
, Lisp_Object dst_object
,
9322 bool encodep
, bool norecord
)
9324 struct coding_system coding
;
9325 ptrdiff_t from
, from_byte
, to
, to_byte
;
9326 Lisp_Object src_object
;
9328 if (NILP (coding_system
))
9329 coding_system
= Qno_conversion
;
9331 CHECK_CODING_SYSTEM (coding_system
);
9332 src_object
= Fcurrent_buffer ();
9333 if (NILP (dst_object
))
9334 dst_object
= src_object
;
9335 else if (! EQ (dst_object
, Qt
))
9336 CHECK_BUFFER (dst_object
);
9338 validate_region (&start
, &end
);
9339 from
= XFASTINT (start
);
9340 from_byte
= CHAR_TO_BYTE (from
);
9341 to
= XFASTINT (end
);
9342 to_byte
= CHAR_TO_BYTE (to
);
9344 setup_coding_system (coding_system
, &coding
);
9345 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9347 if (BUFFERP (dst_object
) && !EQ (dst_object
, src_object
))
9349 struct buffer
*buf
= XBUFFER (dst_object
);
9350 ptrdiff_t buf_pt
= BUF_PT (buf
);
9352 invalidate_buffer_caches (buf
, buf_pt
, buf_pt
);
9356 encode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
9359 decode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
9362 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9364 return (BUFFERP (dst_object
)
9365 ? make_number (coding
.produced_char
)
9366 : coding
.dst_object
);
9370 DEFUN ("decode-coding-region", Fdecode_coding_region
, Sdecode_coding_region
,
9371 3, 4, "r\nzCoding system: ",
9372 doc
: /* Decode the current region from the specified coding system.
9373 When called from a program, takes four arguments:
9374 START, END, CODING-SYSTEM, and DESTINATION.
9375 START and END are buffer positions.
9377 Optional 4th arguments DESTINATION specifies where the decoded text goes.
9378 If nil, the region between START and END is replaced by the decoded text.
9379 If buffer, the decoded text is inserted in that buffer after point (point
9381 In those cases, the length of the decoded text is returned.
9382 If DESTINATION is t, the decoded text is returned.
9384 This function sets `last-coding-system-used' to the precise coding system
9385 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9386 not fully specified.) */)
9387 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
9389 return code_convert_region (start
, end
, coding_system
, destination
, 0, 0);
9392 DEFUN ("encode-coding-region", Fencode_coding_region
, Sencode_coding_region
,
9393 3, 4, "r\nzCoding system: ",
9394 doc
: /* Encode the current region by specified coding system.
9395 When called from a program, takes four arguments:
9396 START, END, CODING-SYSTEM and DESTINATION.
9397 START and END are buffer positions.
9399 Optional 4th arguments DESTINATION specifies where the encoded text goes.
9400 If nil, the region between START and END is replace by the encoded text.
9401 If buffer, the encoded text is inserted in that buffer after point (point
9403 In those cases, the length of the encoded text is returned.
9404 If DESTINATION is t, the encoded text is returned.
9406 This function sets `last-coding-system-used' to the precise coding system
9407 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9408 not fully specified.) */)
9409 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
9411 return code_convert_region (start
, end
, coding_system
, destination
, 1, 0);
9415 code_convert_string (Lisp_Object string
, Lisp_Object coding_system
,
9416 Lisp_Object dst_object
, bool encodep
, bool nocopy
,
9419 struct coding_system coding
;
9420 ptrdiff_t chars
, bytes
;
9422 CHECK_STRING (string
);
9423 if (NILP (coding_system
))
9426 Vlast_coding_system_used
= Qno_conversion
;
9427 if (NILP (dst_object
))
9428 return (nocopy
? Fcopy_sequence (string
) : string
);
9431 if (NILP (coding_system
))
9432 coding_system
= Qno_conversion
;
9434 CHECK_CODING_SYSTEM (coding_system
);
9435 if (NILP (dst_object
))
9437 else if (! EQ (dst_object
, Qt
))
9438 CHECK_BUFFER (dst_object
);
9440 setup_coding_system (coding_system
, &coding
);
9441 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9442 chars
= SCHARS (string
);
9443 bytes
= SBYTES (string
);
9445 if (BUFFERP (dst_object
))
9447 struct buffer
*buf
= XBUFFER (dst_object
);
9448 ptrdiff_t buf_pt
= BUF_PT (buf
);
9450 invalidate_buffer_caches (buf
, buf_pt
, buf_pt
);
9454 encode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9456 decode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9458 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9460 return (BUFFERP (dst_object
)
9461 ? make_number (coding
.produced_char
)
9462 : coding
.dst_object
);
9466 /* Encode or decode STRING according to CODING_SYSTEM.
9467 Do not set Vlast_coding_system_used.
9469 This function is called only from macros DECODE_FILE and
9470 ENCODE_FILE, thus we ignore character composition. */
9473 code_convert_string_norecord (Lisp_Object string
, Lisp_Object coding_system
,
9476 return code_convert_string (string
, coding_system
, Qt
, encodep
, 0, 1);
9479 /* Encode or decode a file name, to or from a unibyte string suitable
9480 for passing to C library functions. */
9482 decode_file_name (Lisp_Object fname
)
9485 /* The w32 build pretends to use UTF-8 for file-name encoding, and
9486 converts the file names either to UTF-16LE or to the system ANSI
9487 codepage internally, depending on the underlying OS; see w32.c. */
9488 if (! NILP (Fcoding_system_p (Qutf_8
)))
9489 return code_convert_string_norecord (fname
, Qutf_8
, 0);
9491 #else /* !WINDOWSNT */
9492 if (! NILP (Vfile_name_coding_system
))
9493 return code_convert_string_norecord (fname
, Vfile_name_coding_system
, 0);
9494 else if (! NILP (Vdefault_file_name_coding_system
))
9495 return code_convert_string_norecord (fname
,
9496 Vdefault_file_name_coding_system
, 0);
9503 encode_file_name (Lisp_Object fname
)
9505 /* This is especially important during bootstrap and dumping, when
9506 file-name encoding is not yet known, and therefore any non-ASCII
9507 file names are unibyte strings, and could only be thrashed if we
9508 try to encode them. */
9509 if (!STRING_MULTIBYTE (fname
))
9512 /* The w32 build pretends to use UTF-8 for file-name encoding, and
9513 converts the file names either to UTF-16LE or to the system ANSI
9514 codepage internally, depending on the underlying OS; see w32.c. */
9515 if (! NILP (Fcoding_system_p (Qutf_8
)))
9516 return code_convert_string_norecord (fname
, Qutf_8
, 1);
9518 #else /* !WINDOWSNT */
9519 if (! NILP (Vfile_name_coding_system
))
9520 return code_convert_string_norecord (fname
, Vfile_name_coding_system
, 1);
9521 else if (! NILP (Vdefault_file_name_coding_system
))
9522 return code_convert_string_norecord (fname
,
9523 Vdefault_file_name_coding_system
, 1);
9529 DEFUN ("decode-coding-string", Fdecode_coding_string
, Sdecode_coding_string
,
9531 doc
: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
9533 Optional third arg NOCOPY non-nil means it is OK to return STRING itself
9534 if the decoding operation is trivial.
9536 Optional fourth arg BUFFER non-nil means that the decoded text is
9537 inserted in that buffer after point (point does not move). In this
9538 case, the return value is the length of the decoded text.
9540 This function sets `last-coding-system-used' to the precise coding system
9541 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9542 not fully specified.) */)
9543 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9545 return code_convert_string (string
, coding_system
, buffer
,
9546 0, ! NILP (nocopy
), 0);
9549 DEFUN ("encode-coding-string", Fencode_coding_string
, Sencode_coding_string
,
9551 doc
: /* Encode STRING to CODING-SYSTEM, and return the result.
9553 Optional third arg NOCOPY non-nil means it is OK to return STRING
9554 itself if the encoding operation is trivial.
9556 Optional fourth arg BUFFER non-nil means that the encoded text is
9557 inserted in that buffer after point (point does not move). In this
9558 case, the return value is the length of the encoded text.
9560 This function sets `last-coding-system-used' to the precise coding system
9561 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9562 not fully specified.) */)
9563 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9565 return code_convert_string (string
, coding_system
, buffer
,
9566 1, ! NILP (nocopy
), 0);
9570 DEFUN ("decode-sjis-char", Fdecode_sjis_char
, Sdecode_sjis_char
, 1, 1, 0,
9571 doc
: /* Decode a Japanese character which has CODE in shift_jis encoding.
9572 Return the corresponding character. */)
9575 Lisp_Object spec
, attrs
, val
;
9576 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
, *charset
;
9580 CHECK_NATNUM (code
);
9581 ch
= XFASTINT (code
);
9582 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9583 attrs
= AREF (spec
, 0);
9585 if (ASCII_CHAR_P (ch
)
9586 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9589 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9590 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9591 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9592 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9597 charset
= charset_roman
;
9599 else if (ch
>= 0xA0 && ch
< 0xDF)
9602 charset
= charset_kana
;
9606 EMACS_INT c1
= ch
>> 8;
9609 if (c1
< 0x81 || (c1
> 0x9F && c1
< 0xE0) || c1
> 0xEF
9610 || c2
< 0x40 || c2
== 0x7F || c2
> 0xFC)
9611 error ("Invalid code: %"pI
"d", ch
);
9614 charset
= charset_kanji
;
9616 c
= DECODE_CHAR (charset
, c
);
9618 error ("Invalid code: %"pI
"d", ch
);
9619 return make_number (c
);
9623 DEFUN ("encode-sjis-char", Fencode_sjis_char
, Sencode_sjis_char
, 1, 1, 0,
9624 doc
: /* Encode a Japanese character CH to shift_jis encoding.
9625 Return the corresponding code in SJIS. */)
9628 Lisp_Object spec
, attrs
, charset_list
;
9630 struct charset
*charset
;
9633 CHECK_CHARACTER (ch
);
9635 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9636 attrs
= AREF (spec
, 0);
9638 if (ASCII_CHAR_P (c
)
9639 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9642 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9643 charset
= char_charset (c
, charset_list
, &code
);
9644 if (code
== CHARSET_INVALID_CODE (charset
))
9645 error ("Can't encode by shift_jis encoding: %c", c
);
9648 return make_number (code
);
9651 DEFUN ("decode-big5-char", Fdecode_big5_char
, Sdecode_big5_char
, 1, 1, 0,
9652 doc
: /* Decode a Big5 character which has CODE in BIG5 coding system.
9653 Return the corresponding character. */)
9656 Lisp_Object spec
, attrs
, val
;
9657 struct charset
*charset_roman
, *charset_big5
, *charset
;
9661 CHECK_NATNUM (code
);
9662 ch
= XFASTINT (code
);
9663 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9664 attrs
= AREF (spec
, 0);
9666 if (ASCII_CHAR_P (ch
)
9667 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9670 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9671 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9672 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9677 charset
= charset_roman
;
9681 EMACS_INT b1
= ch
>> 8;
9683 if (b1
< 0xA1 || b1
> 0xFE
9684 || b2
< 0x40 || (b2
> 0x7E && b2
< 0xA1) || b2
> 0xFE)
9685 error ("Invalid code: %"pI
"d", ch
);
9687 charset
= charset_big5
;
9689 c
= DECODE_CHAR (charset
, c
);
9691 error ("Invalid code: %"pI
"d", ch
);
9692 return make_number (c
);
9695 DEFUN ("encode-big5-char", Fencode_big5_char
, Sencode_big5_char
, 1, 1, 0,
9696 doc
: /* Encode the Big5 character CH to BIG5 coding system.
9697 Return the corresponding character code in Big5. */)
9700 Lisp_Object spec
, attrs
, charset_list
;
9701 struct charset
*charset
;
9705 CHECK_CHARACTER (ch
);
9707 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9708 attrs
= AREF (spec
, 0);
9709 if (ASCII_CHAR_P (c
)
9710 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9713 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9714 charset
= char_charset (c
, charset_list
, &code
);
9715 if (code
== CHARSET_INVALID_CODE (charset
))
9716 error ("Can't encode by Big5 encoding: %c", c
);
9718 return make_number (code
);
9722 DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal
,
9723 Sset_terminal_coding_system_internal
, 1, 2, 0,
9724 doc
: /* Internal use only. */)
9725 (Lisp_Object coding_system
, Lisp_Object terminal
)
9727 struct terminal
*term
= decode_live_terminal (terminal
);
9728 struct coding_system
*terminal_coding
= TERMINAL_TERMINAL_CODING (term
);
9729 CHECK_SYMBOL (coding_system
);
9730 setup_coding_system (Fcheck_coding_system (coding_system
), terminal_coding
);
9731 /* We had better not send unsafe characters to terminal. */
9732 terminal_coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
9733 /* Character composition should be disabled. */
9734 terminal_coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9735 terminal_coding
->src_multibyte
= 1;
9736 terminal_coding
->dst_multibyte
= 0;
9738 (term
, (terminal_coding
->common_flags
& CODING_REQUIRE_ENCODING_MASK
9739 ? coding_charset_list (terminal_coding
)
9740 : list1 (make_number (charset_ascii
))));
9744 DEFUN ("set-safe-terminal-coding-system-internal",
9745 Fset_safe_terminal_coding_system_internal
,
9746 Sset_safe_terminal_coding_system_internal
, 1, 1, 0,
9747 doc
: /* Internal use only. */)
9748 (Lisp_Object coding_system
)
9750 CHECK_SYMBOL (coding_system
);
9751 setup_coding_system (Fcheck_coding_system (coding_system
),
9752 &safe_terminal_coding
);
9753 /* Character composition should be disabled. */
9754 safe_terminal_coding
.common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9755 safe_terminal_coding
.src_multibyte
= 1;
9756 safe_terminal_coding
.dst_multibyte
= 0;
9760 DEFUN ("terminal-coding-system", Fterminal_coding_system
,
9761 Sterminal_coding_system
, 0, 1, 0,
9762 doc
: /* Return coding system specified for terminal output on the given terminal.
9763 TERMINAL may be a terminal object, a frame, or nil for the selected
9764 frame's terminal device. */)
9765 (Lisp_Object terminal
)
9767 struct coding_system
*terminal_coding
9768 = TERMINAL_TERMINAL_CODING (decode_live_terminal (terminal
));
9769 Lisp_Object coding_system
= CODING_ID_NAME (terminal_coding
->id
);
9771 /* For backward compatibility, return nil if it is `undecided'. */
9772 return (! EQ (coding_system
, Qundecided
) ? coding_system
: Qnil
);
9775 DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal
,
9776 Sset_keyboard_coding_system_internal
, 1, 2, 0,
9777 doc
: /* Internal use only. */)
9778 (Lisp_Object coding_system
, Lisp_Object terminal
)
9780 struct terminal
*t
= decode_live_terminal (terminal
);
9781 CHECK_SYMBOL (coding_system
);
9782 if (NILP (coding_system
))
9783 coding_system
= Qno_conversion
;
9785 Fcheck_coding_system (coding_system
);
9786 setup_coding_system (coding_system
, TERMINAL_KEYBOARD_CODING (t
));
9787 /* Character composition should be disabled. */
9788 TERMINAL_KEYBOARD_CODING (t
)->common_flags
9789 &= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9793 DEFUN ("keyboard-coding-system",
9794 Fkeyboard_coding_system
, Skeyboard_coding_system
, 0, 1, 0,
9795 doc
: /* Return coding system specified for decoding keyboard input. */)
9796 (Lisp_Object terminal
)
9798 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING
9799 (decode_live_terminal (terminal
))->id
);
9803 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system
,
9804 Sfind_operation_coding_system
, 1, MANY
, 0,
9805 doc
: /* Choose a coding system for an operation based on the target name.
9806 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9807 DECODING-SYSTEM is the coding system to use for decoding
9808 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9809 for encoding (in case OPERATION does encoding).
9811 The first argument OPERATION specifies an I/O primitive:
9812 For file I/O, `insert-file-contents' or `write-region'.
9813 For process I/O, `call-process', `call-process-region', or `start-process'.
9814 For network I/O, `open-network-stream'.
9816 The remaining arguments should be the same arguments that were passed
9817 to the primitive. Depending on which primitive, one of those arguments
9818 is selected as the TARGET. For example, if OPERATION does file I/O,
9819 whichever argument specifies the file name is TARGET.
9821 TARGET has a meaning which depends on OPERATION:
9822 For file I/O, TARGET is a file name (except for the special case below).
9823 For process I/O, TARGET is a process name.
9824 For network I/O, TARGET is a service name or a port number.
9826 This function looks up what is specified for TARGET in
9827 `file-coding-system-alist', `process-coding-system-alist',
9828 or `network-coding-system-alist' depending on OPERATION.
9829 They may specify a coding system, a cons of coding systems,
9830 or a function symbol to call.
9831 In the last case, we call the function with one argument,
9832 which is a list of all the arguments given to this function.
9833 If the function can't decide a coding system, it can return
9834 `undecided' so that the normal code-detection is performed.
9836 If OPERATION is `insert-file-contents', the argument corresponding to
9837 TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
9838 file name to look up, and BUFFER is a buffer that contains the file's
9839 contents (not yet decoded). If `file-coding-system-alist' specifies a
9840 function to call for FILENAME, that function should examine the
9841 contents of BUFFER instead of reading the file.
9843 usage: (find-operation-coding-system OPERATION ARGUMENTS...) */)
9844 (ptrdiff_t nargs
, Lisp_Object
*args
)
9846 Lisp_Object operation
, target_idx
, target
, val
;
9847 register Lisp_Object chain
;
9850 error ("Too few arguments");
9851 operation
= args
[0];
9852 if (!SYMBOLP (operation
)
9853 || (target_idx
= Fget (operation
, Qtarget_idx
), !NATNUMP (target_idx
)))
9854 error ("Invalid first argument");
9855 if (nargs
<= 1 + XFASTINT (target_idx
))
9856 error ("Too few arguments for operation `%s'",
9857 SDATA (SYMBOL_NAME (operation
)));
9858 target
= args
[XFASTINT (target_idx
) + 1];
9859 if (!(STRINGP (target
)
9860 || (EQ (operation
, Qinsert_file_contents
) && CONSP (target
)
9861 && STRINGP (XCAR (target
)) && BUFFERP (XCDR (target
)))
9862 || (EQ (operation
, Qopen_network_stream
) && INTEGERP (target
))))
9863 error ("Invalid argument %"pI
"d of operation `%s'",
9864 XFASTINT (target_idx
) + 1, SDATA (SYMBOL_NAME (operation
)));
9866 target
= XCAR (target
);
9868 chain
= ((EQ (operation
, Qinsert_file_contents
)
9869 || EQ (operation
, Qwrite_region
))
9870 ? Vfile_coding_system_alist
9871 : (EQ (operation
, Qopen_network_stream
)
9872 ? Vnetwork_coding_system_alist
9873 : Vprocess_coding_system_alist
));
9877 for (; CONSP (chain
); chain
= XCDR (chain
))
9883 && ((STRINGP (target
)
9884 && STRINGP (XCAR (elt
))
9885 && fast_string_match (XCAR (elt
), target
) >= 0)
9886 || (INTEGERP (target
) && EQ (target
, XCAR (elt
)))))
9889 /* Here, if VAL is both a valid coding system and a valid
9890 function symbol, we return VAL as a coding system. */
9893 if (! SYMBOLP (val
))
9895 if (! NILP (Fcoding_system_p (val
)))
9896 return Fcons (val
, val
);
9897 if (! NILP (Ffboundp (val
)))
9899 /* We use call1 rather than safe_call1
9900 so as to get bug reports about functions called here
9901 which don't handle the current interface. */
9902 val
= call1 (val
, Flist (nargs
, args
));
9905 if (SYMBOLP (val
) && ! NILP (Fcoding_system_p (val
)))
9906 return Fcons (val
, val
);
9914 DEFUN ("set-coding-system-priority", Fset_coding_system_priority
,
9915 Sset_coding_system_priority
, 0, MANY
, 0,
9916 doc
: /* Assign higher priority to the coding systems given as arguments.
9917 If multiple coding systems belong to the same category,
9918 all but the first one are ignored.
9920 usage: (set-coding-system-priority &rest coding-systems) */)
9921 (ptrdiff_t nargs
, Lisp_Object
*args
)
9924 bool changed
[coding_category_max
];
9925 enum coding_category priorities
[coding_category_max
];
9927 memset (changed
, 0, sizeof changed
);
9929 for (i
= j
= 0; i
< nargs
; i
++)
9931 enum coding_category category
;
9932 Lisp_Object spec
, attrs
;
9934 CHECK_CODING_SYSTEM_GET_SPEC (args
[i
], spec
);
9935 attrs
= AREF (spec
, 0);
9936 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
9937 if (changed
[category
])
9938 /* Ignore this coding system because a coding system of the
9939 same category already had a higher priority. */
9941 changed
[category
] = 1;
9942 priorities
[j
++] = category
;
9943 if (coding_categories
[category
].id
>= 0
9944 && ! EQ (args
[i
], CODING_ID_NAME (coding_categories
[category
].id
)))
9945 setup_coding_system (args
[i
], &coding_categories
[category
]);
9946 Fset (AREF (Vcoding_category_table
, category
), args
[i
]);
9949 /* Now we have decided top J priorities. Reflect the order of the
9950 original priorities to the remaining priorities. */
9952 for (i
= j
, j
= 0; i
< coding_category_max
; i
++, j
++)
9954 while (j
< coding_category_max
9955 && changed
[coding_priorities
[j
]])
9957 if (j
== coding_category_max
)
9959 priorities
[i
] = coding_priorities
[j
];
9962 memcpy (coding_priorities
, priorities
, sizeof priorities
);
9964 /* Update `coding-category-list'. */
9965 Vcoding_category_list
= Qnil
;
9966 for (i
= coding_category_max
; i
-- > 0; )
9967 Vcoding_category_list
9968 = Fcons (AREF (Vcoding_category_table
, priorities
[i
]),
9969 Vcoding_category_list
);
9974 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list
,
9975 Scoding_system_priority_list
, 0, 1, 0,
9976 doc
: /* Return a list of coding systems ordered by their priorities.
9977 The list contains a subset of coding systems; i.e. coding systems
9978 assigned to each coding category (see `coding-category-list').
9980 HIGHESTP non-nil means just return the highest priority one. */)
9981 (Lisp_Object highestp
)
9986 for (i
= 0, val
= Qnil
; i
< coding_category_max
; i
++)
9988 enum coding_category category
= coding_priorities
[i
];
9989 int id
= coding_categories
[category
].id
;
9994 attrs
= CODING_ID_ATTRS (id
);
9995 if (! NILP (highestp
))
9996 return CODING_ATTR_BASE_NAME (attrs
);
9997 val
= Fcons (CODING_ATTR_BASE_NAME (attrs
), val
);
9999 return Fnreverse (val
);
10002 static const char *const suffixes
[] = { "-unix", "-dos", "-mac" };
10005 make_subsidiaries (Lisp_Object base
)
10007 Lisp_Object subsidiaries
;
10008 ptrdiff_t base_name_len
= SBYTES (SYMBOL_NAME (base
));
10010 char *buf
= SAFE_ALLOCA (base_name_len
+ 6);
10013 memcpy (buf
, SDATA (SYMBOL_NAME (base
)), base_name_len
);
10014 subsidiaries
= make_uninit_vector (3);
10015 for (i
= 0; i
< 3; i
++)
10017 strcpy (buf
+ base_name_len
, suffixes
[i
]);
10018 ASET (subsidiaries
, i
, intern (buf
));
10021 return subsidiaries
;
10025 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal
,
10026 Sdefine_coding_system_internal
, coding_arg_max
, MANY
, 0,
10027 doc
: /* For internal use only.
10028 usage: (define-coding-system-internal ...) */)
10029 (ptrdiff_t nargs
, Lisp_Object
*args
)
10032 Lisp_Object spec_vec
; /* [ ATTRS ALIASE EOL_TYPE ] */
10033 Lisp_Object attrs
; /* Vector of attributes. */
10034 Lisp_Object eol_type
;
10035 Lisp_Object aliases
;
10036 Lisp_Object coding_type
, charset_list
, safe_charsets
;
10037 enum coding_category category
;
10038 Lisp_Object tail
, val
;
10039 int max_charset_id
= 0;
10042 if (nargs
< coding_arg_max
)
10045 attrs
= Fmake_vector (make_number (coding_attr_last_index
), Qnil
);
10047 name
= args
[coding_arg_name
];
10048 CHECK_SYMBOL (name
);
10049 ASET (attrs
, coding_attr_base_name
, name
);
10051 val
= args
[coding_arg_mnemonic
];
10052 if (! STRINGP (val
))
10053 CHECK_CHARACTER (val
);
10054 ASET (attrs
, coding_attr_mnemonic
, val
);
10056 coding_type
= args
[coding_arg_coding_type
];
10057 CHECK_SYMBOL (coding_type
);
10058 ASET (attrs
, coding_attr_type
, coding_type
);
10060 charset_list
= args
[coding_arg_charset_list
];
10061 if (SYMBOLP (charset_list
))
10063 if (EQ (charset_list
, Qiso_2022
))
10065 if (! EQ (coding_type
, Qiso_2022
))
10066 error ("Invalid charset-list");
10067 charset_list
= Viso_2022_charset_list
;
10069 else if (EQ (charset_list
, Qemacs_mule
))
10071 if (! EQ (coding_type
, Qemacs_mule
))
10072 error ("Invalid charset-list");
10073 charset_list
= Vemacs_mule_charset_list
;
10075 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10077 if (! RANGED_INTEGERP (0, XCAR (tail
), INT_MAX
- 1))
10078 error ("Invalid charset-list");
10079 if (max_charset_id
< XFASTINT (XCAR (tail
)))
10080 max_charset_id
= XFASTINT (XCAR (tail
));
10085 charset_list
= Fcopy_sequence (charset_list
);
10086 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10088 struct charset
*charset
;
10091 CHECK_CHARSET_GET_CHARSET (val
, charset
);
10092 if (EQ (coding_type
, Qiso_2022
)
10093 ? CHARSET_ISO_FINAL (charset
) < 0
10094 : EQ (coding_type
, Qemacs_mule
)
10095 ? CHARSET_EMACS_MULE_ID (charset
) < 0
10097 error ("Can't handle charset `%s'",
10098 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10100 XSETCAR (tail
, make_number (charset
->id
));
10101 if (max_charset_id
< charset
->id
)
10102 max_charset_id
= charset
->id
;
10105 ASET (attrs
, coding_attr_charset_list
, charset_list
);
10107 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
10108 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
10109 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10110 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
10111 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
10113 ASET (attrs
, coding_attr_ascii_compat
, args
[coding_arg_ascii_compatible_p
]);
10115 val
= args
[coding_arg_decode_translation_table
];
10116 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10117 CHECK_SYMBOL (val
);
10118 ASET (attrs
, coding_attr_decode_tbl
, val
);
10120 val
= args
[coding_arg_encode_translation_table
];
10121 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10122 CHECK_SYMBOL (val
);
10123 ASET (attrs
, coding_attr_encode_tbl
, val
);
10125 val
= args
[coding_arg_post_read_conversion
];
10126 CHECK_SYMBOL (val
);
10127 ASET (attrs
, coding_attr_post_read
, val
);
10129 val
= args
[coding_arg_pre_write_conversion
];
10130 CHECK_SYMBOL (val
);
10131 ASET (attrs
, coding_attr_pre_write
, val
);
10133 val
= args
[coding_arg_default_char
];
10135 ASET (attrs
, coding_attr_default_char
, make_number (' '));
10138 CHECK_CHARACTER (val
);
10139 ASET (attrs
, coding_attr_default_char
, val
);
10142 val
= args
[coding_arg_for_unibyte
];
10143 ASET (attrs
, coding_attr_for_unibyte
, NILP (val
) ? Qnil
: Qt
);
10145 val
= args
[coding_arg_plist
];
10147 ASET (attrs
, coding_attr_plist
, val
);
10149 if (EQ (coding_type
, Qcharset
))
10151 /* Generate a lisp vector of 256 elements. Each element is nil,
10152 integer, or a list of charset IDs.
10154 If Nth element is nil, the byte code N is invalid in this
10157 If Nth element is a number NUM, N is the first byte of a
10158 charset whose ID is NUM.
10160 If Nth element is a list of charset IDs, N is the first byte
10161 of one of them. The list is sorted by dimensions of the
10162 charsets. A charset of smaller dimension comes first. */
10163 val
= Fmake_vector (make_number (256), Qnil
);
10165 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10167 struct charset
*charset
= CHARSET_FROM_ID (XFASTINT (XCAR (tail
)));
10168 int dim
= CHARSET_DIMENSION (charset
);
10169 int idx
= (dim
- 1) * 4;
10171 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10172 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10174 for (i
= charset
->code_space
[idx
];
10175 i
<= charset
->code_space
[idx
+ 1]; i
++)
10177 Lisp_Object tmp
, tmp2
;
10180 tmp
= AREF (val
, i
);
10183 else if (NUMBERP (tmp
))
10185 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp
)));
10187 tmp
= list2 (XCAR (tail
), tmp
);
10189 tmp
= list2 (tmp
, XCAR (tail
));
10193 for (tmp2
= tmp
; CONSP (tmp2
); tmp2
= XCDR (tmp2
))
10195 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2
))));
10200 tmp
= nconc2 (tmp
, list1 (XCAR (tail
)));
10203 XSETCDR (tmp2
, Fcons (XCAR (tmp2
), XCDR (tmp2
)));
10204 XSETCAR (tmp2
, XCAR (tail
));
10207 ASET (val
, i
, tmp
);
10210 ASET (attrs
, coding_attr_charset_valids
, val
);
10211 category
= coding_category_charset
;
10213 else if (EQ (coding_type
, Qccl
))
10215 Lisp_Object valids
;
10217 if (nargs
< coding_arg_ccl_max
)
10220 val
= args
[coding_arg_ccl_decoder
];
10221 CHECK_CCL_PROGRAM (val
);
10223 val
= Fcopy_sequence (val
);
10224 ASET (attrs
, coding_attr_ccl_decoder
, val
);
10226 val
= args
[coding_arg_ccl_encoder
];
10227 CHECK_CCL_PROGRAM (val
);
10229 val
= Fcopy_sequence (val
);
10230 ASET (attrs
, coding_attr_ccl_encoder
, val
);
10232 val
= args
[coding_arg_ccl_valids
];
10233 valids
= Fmake_string (make_number (256), make_number (0));
10234 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
10239 if (INTEGERP (val
))
10241 if (! (0 <= XINT (val
) && XINT (val
) <= 255))
10242 args_out_of_range_3 (val
, make_number (0), make_number (255));
10243 from
= to
= XINT (val
);
10248 CHECK_NATNUM_CAR (val
);
10249 CHECK_NUMBER_CDR (val
);
10250 if (XINT (XCAR (val
)) > 255)
10251 args_out_of_range_3 (XCAR (val
),
10252 make_number (0), make_number (255));
10253 from
= XINT (XCAR (val
));
10254 if (! (from
<= XINT (XCDR (val
)) && XINT (XCDR (val
)) <= 255))
10255 args_out_of_range_3 (XCDR (val
),
10256 XCAR (val
), make_number (255));
10257 to
= XINT (XCDR (val
));
10259 for (i
= from
; i
<= to
; i
++)
10260 SSET (valids
, i
, 1);
10262 ASET (attrs
, coding_attr_ccl_valids
, valids
);
10264 category
= coding_category_ccl
;
10266 else if (EQ (coding_type
, Qutf_16
))
10268 Lisp_Object bom
, endian
;
10270 ASET (attrs
, coding_attr_ascii_compat
, Qnil
);
10272 if (nargs
< coding_arg_utf16_max
)
10275 bom
= args
[coding_arg_utf16_bom
];
10276 if (! NILP (bom
) && ! EQ (bom
, Qt
))
10280 CHECK_CODING_SYSTEM (val
);
10282 CHECK_CODING_SYSTEM (val
);
10284 ASET (attrs
, coding_attr_utf_bom
, bom
);
10286 endian
= args
[coding_arg_utf16_endian
];
10287 CHECK_SYMBOL (endian
);
10290 else if (! EQ (endian
, Qbig
) && ! EQ (endian
, Qlittle
))
10291 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian
)));
10292 ASET (attrs
, coding_attr_utf_16_endian
, endian
);
10294 category
= (CONSP (bom
)
10295 ? coding_category_utf_16_auto
10297 ? (EQ (endian
, Qbig
)
10298 ? coding_category_utf_16_be_nosig
10299 : coding_category_utf_16_le_nosig
)
10300 : (EQ (endian
, Qbig
)
10301 ? coding_category_utf_16_be
10302 : coding_category_utf_16_le
));
10304 else if (EQ (coding_type
, Qiso_2022
))
10306 Lisp_Object initial
, reg_usage
, request
, flags
;
10308 if (nargs
< coding_arg_iso2022_max
)
10311 initial
= Fcopy_sequence (args
[coding_arg_iso2022_initial
]);
10312 CHECK_VECTOR (initial
);
10313 for (i
= 0; i
< 4; i
++)
10315 val
= AREF (initial
, i
);
10318 struct charset
*charset
;
10320 CHECK_CHARSET_GET_CHARSET (val
, charset
);
10321 ASET (initial
, i
, make_number (CHARSET_ID (charset
)));
10322 if (i
== 0 && CHARSET_ASCII_COMPATIBLE_P (charset
))
10323 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10326 ASET (initial
, i
, make_number (-1));
10329 reg_usage
= args
[coding_arg_iso2022_reg_usage
];
10330 CHECK_CONS (reg_usage
);
10331 CHECK_NUMBER_CAR (reg_usage
);
10332 CHECK_NUMBER_CDR (reg_usage
);
10334 request
= Fcopy_sequence (args
[coding_arg_iso2022_request
]);
10335 for (tail
= request
; CONSP (tail
); tail
= XCDR (tail
))
10343 CHECK_CHARSET_GET_ID (tmp1
, id
);
10344 CHECK_NATNUM_CDR (val
);
10345 if (XINT (XCDR (val
)) >= 4)
10346 error ("Invalid graphic register number: %"pI
"d", XINT (XCDR (val
)));
10347 XSETCAR (val
, make_number (id
));
10350 flags
= args
[coding_arg_iso2022_flags
];
10351 CHECK_NATNUM (flags
);
10352 i
= XINT (flags
) & INT_MAX
;
10353 if (EQ (args
[coding_arg_charset_list
], Qiso_2022
))
10354 i
|= CODING_ISO_FLAG_FULL_SUPPORT
;
10355 flags
= make_number (i
);
10357 ASET (attrs
, coding_attr_iso_initial
, initial
);
10358 ASET (attrs
, coding_attr_iso_usage
, reg_usage
);
10359 ASET (attrs
, coding_attr_iso_request
, request
);
10360 ASET (attrs
, coding_attr_iso_flags
, flags
);
10361 setup_iso_safe_charsets (attrs
);
10363 if (i
& CODING_ISO_FLAG_SEVEN_BITS
)
10364 category
= ((i
& (CODING_ISO_FLAG_LOCKING_SHIFT
10365 | CODING_ISO_FLAG_SINGLE_SHIFT
))
10366 ? coding_category_iso_7_else
10367 : EQ (args
[coding_arg_charset_list
], Qiso_2022
)
10368 ? coding_category_iso_7
10369 : coding_category_iso_7_tight
);
10372 int id
= XINT (AREF (initial
, 1));
10374 category
= (((i
& CODING_ISO_FLAG_LOCKING_SHIFT
)
10375 || EQ (args
[coding_arg_charset_list
], Qiso_2022
)
10377 ? coding_category_iso_8_else
10378 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id
)) == 1)
10379 ? coding_category_iso_8_1
10380 : coding_category_iso_8_2
);
10382 if (category
!= coding_category_iso_8_1
10383 && category
!= coding_category_iso_8_2
)
10384 ASET (attrs
, coding_attr_ascii_compat
, Qnil
);
10386 else if (EQ (coding_type
, Qemacs_mule
))
10388 if (EQ (args
[coding_arg_charset_list
], Qemacs_mule
))
10389 ASET (attrs
, coding_attr_emacs_mule_full
, Qt
);
10390 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10391 category
= coding_category_emacs_mule
;
10393 else if (EQ (coding_type
, Qshift_jis
))
10396 struct charset
*charset
;
10398 if (XINT (Flength (charset_list
)) != 3
10399 && XINT (Flength (charset_list
)) != 4)
10400 error ("There should be three or four charsets");
10402 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10403 if (CHARSET_DIMENSION (charset
) != 1)
10404 error ("Dimension of charset %s is not one",
10405 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10406 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10407 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10409 charset_list
= XCDR (charset_list
);
10410 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10411 if (CHARSET_DIMENSION (charset
) != 1)
10412 error ("Dimension of charset %s is not one",
10413 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10415 charset_list
= XCDR (charset_list
);
10416 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10417 if (CHARSET_DIMENSION (charset
) != 2)
10418 error ("Dimension of charset %s is not two",
10419 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10421 charset_list
= XCDR (charset_list
);
10422 if (! NILP (charset_list
))
10424 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10425 if (CHARSET_DIMENSION (charset
) != 2)
10426 error ("Dimension of charset %s is not two",
10427 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10430 category
= coding_category_sjis
;
10431 Vsjis_coding_system
= name
;
10433 else if (EQ (coding_type
, Qbig5
))
10435 struct charset
*charset
;
10437 if (XINT (Flength (charset_list
)) != 2)
10438 error ("There should be just two charsets");
10440 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10441 if (CHARSET_DIMENSION (charset
) != 1)
10442 error ("Dimension of charset %s is not one",
10443 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10444 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10445 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10447 charset_list
= XCDR (charset_list
);
10448 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10449 if (CHARSET_DIMENSION (charset
) != 2)
10450 error ("Dimension of charset %s is not two",
10451 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10453 category
= coding_category_big5
;
10454 Vbig5_coding_system
= name
;
10456 else if (EQ (coding_type
, Qraw_text
))
10458 category
= coding_category_raw_text
;
10459 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10461 else if (EQ (coding_type
, Qutf_8
))
10465 if (nargs
< coding_arg_utf8_max
)
10468 bom
= args
[coding_arg_utf8_bom
];
10469 if (! NILP (bom
) && ! EQ (bom
, Qt
))
10473 CHECK_CODING_SYSTEM (val
);
10475 CHECK_CODING_SYSTEM (val
);
10477 ASET (attrs
, coding_attr_utf_bom
, bom
);
10479 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10481 category
= (CONSP (bom
) ? coding_category_utf_8_auto
10482 : NILP (bom
) ? coding_category_utf_8_nosig
10483 : coding_category_utf_8_sig
);
10485 else if (EQ (coding_type
, Qundecided
))
10487 if (nargs
< coding_arg_undecided_max
)
10489 ASET (attrs
, coding_attr_undecided_inhibit_null_byte_detection
,
10490 args
[coding_arg_undecided_inhibit_null_byte_detection
]);
10491 ASET (attrs
, coding_attr_undecided_inhibit_iso_escape_detection
,
10492 args
[coding_arg_undecided_inhibit_iso_escape_detection
]);
10493 ASET (attrs
, coding_attr_undecided_prefer_utf_8
,
10494 args
[coding_arg_undecided_prefer_utf_8
]);
10495 category
= coding_category_undecided
;
10498 error ("Invalid coding system type: %s",
10499 SDATA (SYMBOL_NAME (coding_type
)));
10501 ASET (attrs
, coding_attr_category
, make_number (category
));
10502 ASET (attrs
, coding_attr_plist
,
10504 Fcons (AREF (Vcoding_category_table
, category
),
10505 CODING_ATTR_PLIST (attrs
))));
10506 ASET (attrs
, coding_attr_plist
,
10507 Fcons (QCascii_compatible_p
,
10508 Fcons (CODING_ATTR_ASCII_COMPAT (attrs
),
10509 CODING_ATTR_PLIST (attrs
))));
10511 eol_type
= args
[coding_arg_eol_type
];
10512 if (! NILP (eol_type
)
10513 && ! EQ (eol_type
, Qunix
)
10514 && ! EQ (eol_type
, Qdos
)
10515 && ! EQ (eol_type
, Qmac
))
10516 error ("Invalid eol-type");
10518 aliases
= list1 (name
);
10520 if (NILP (eol_type
))
10522 eol_type
= make_subsidiaries (name
);
10523 for (i
= 0; i
< 3; i
++)
10525 Lisp_Object this_spec
, this_name
, this_aliases
, this_eol_type
;
10527 this_name
= AREF (eol_type
, i
);
10528 this_aliases
= list1 (this_name
);
10529 this_eol_type
= (i
== 0 ? Qunix
: i
== 1 ? Qdos
: Qmac
);
10530 this_spec
= make_uninit_vector (3);
10531 ASET (this_spec
, 0, attrs
);
10532 ASET (this_spec
, 1, this_aliases
);
10533 ASET (this_spec
, 2, this_eol_type
);
10534 Fputhash (this_name
, this_spec
, Vcoding_system_hash_table
);
10535 Vcoding_system_list
= Fcons (this_name
, Vcoding_system_list
);
10536 val
= Fassoc (Fsymbol_name (this_name
), Vcoding_system_alist
);
10538 Vcoding_system_alist
10539 = Fcons (Fcons (Fsymbol_name (this_name
), Qnil
),
10540 Vcoding_system_alist
);
10544 spec_vec
= make_uninit_vector (3);
10545 ASET (spec_vec
, 0, attrs
);
10546 ASET (spec_vec
, 1, aliases
);
10547 ASET (spec_vec
, 2, eol_type
);
10549 Fputhash (name
, spec_vec
, Vcoding_system_hash_table
);
10550 Vcoding_system_list
= Fcons (name
, Vcoding_system_list
);
10551 val
= Fassoc (Fsymbol_name (name
), Vcoding_system_alist
);
10553 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (name
), Qnil
),
10554 Vcoding_system_alist
);
10557 int id
= coding_categories
[category
].id
;
10559 if (id
< 0 || EQ (name
, CODING_ID_NAME (id
)))
10560 setup_coding_system (name
, &coding_categories
[category
]);
10566 return Fsignal (Qwrong_number_of_arguments
,
10567 Fcons (intern ("define-coding-system-internal"),
10568 make_number (nargs
)));
10572 DEFUN ("coding-system-put", Fcoding_system_put
, Scoding_system_put
,
10574 doc
: /* Change value in CODING-SYSTEM's property list PROP to VAL. */)
10575 (Lisp_Object coding_system
, Lisp_Object prop
, Lisp_Object val
)
10577 Lisp_Object spec
, attrs
;
10579 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10580 attrs
= AREF (spec
, 0);
10581 if (EQ (prop
, QCmnemonic
))
10583 if (! STRINGP (val
))
10584 CHECK_CHARACTER (val
);
10585 ASET (attrs
, coding_attr_mnemonic
, val
);
10587 else if (EQ (prop
, QCdefault_char
))
10590 val
= make_number (' ');
10592 CHECK_CHARACTER (val
);
10593 ASET (attrs
, coding_attr_default_char
, val
);
10595 else if (EQ (prop
, QCdecode_translation_table
))
10597 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10598 CHECK_SYMBOL (val
);
10599 ASET (attrs
, coding_attr_decode_tbl
, val
);
10601 else if (EQ (prop
, QCencode_translation_table
))
10603 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10604 CHECK_SYMBOL (val
);
10605 ASET (attrs
, coding_attr_encode_tbl
, val
);
10607 else if (EQ (prop
, QCpost_read_conversion
))
10609 CHECK_SYMBOL (val
);
10610 ASET (attrs
, coding_attr_post_read
, val
);
10612 else if (EQ (prop
, QCpre_write_conversion
))
10614 CHECK_SYMBOL (val
);
10615 ASET (attrs
, coding_attr_pre_write
, val
);
10617 else if (EQ (prop
, QCascii_compatible_p
))
10619 ASET (attrs
, coding_attr_ascii_compat
, val
);
10622 ASET (attrs
, coding_attr_plist
,
10623 Fplist_put (CODING_ATTR_PLIST (attrs
), prop
, val
));
10628 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias
,
10629 Sdefine_coding_system_alias
, 2, 2, 0,
10630 doc
: /* Define ALIAS as an alias for CODING-SYSTEM. */)
10631 (Lisp_Object alias
, Lisp_Object coding_system
)
10633 Lisp_Object spec
, aliases
, eol_type
, val
;
10635 CHECK_SYMBOL (alias
);
10636 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10637 aliases
= AREF (spec
, 1);
10638 /* ALIASES should be a list of length more than zero, and the first
10639 element is a base coding system. Append ALIAS at the tail of the
10641 while (!NILP (XCDR (aliases
)))
10642 aliases
= XCDR (aliases
);
10643 XSETCDR (aliases
, list1 (alias
));
10645 eol_type
= AREF (spec
, 2);
10646 if (VECTORP (eol_type
))
10648 Lisp_Object subsidiaries
;
10651 subsidiaries
= make_subsidiaries (alias
);
10652 for (i
= 0; i
< 3; i
++)
10653 Fdefine_coding_system_alias (AREF (subsidiaries
, i
),
10654 AREF (eol_type
, i
));
10657 Fputhash (alias
, spec
, Vcoding_system_hash_table
);
10658 Vcoding_system_list
= Fcons (alias
, Vcoding_system_list
);
10659 val
= Fassoc (Fsymbol_name (alias
), Vcoding_system_alist
);
10661 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (alias
), Qnil
),
10662 Vcoding_system_alist
);
10667 DEFUN ("coding-system-base", Fcoding_system_base
, Scoding_system_base
,
10669 doc
: /* Return the base of CODING-SYSTEM.
10670 Any alias or subsidiary coding system is not a base coding system. */)
10671 (Lisp_Object coding_system
)
10673 Lisp_Object spec
, attrs
;
10675 if (NILP (coding_system
))
10676 return (Qno_conversion
);
10677 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10678 attrs
= AREF (spec
, 0);
10679 return CODING_ATTR_BASE_NAME (attrs
);
10682 DEFUN ("coding-system-plist", Fcoding_system_plist
, Scoding_system_plist
,
10684 doc
: /* Return the property list of CODING-SYSTEM. */)
10685 (Lisp_Object coding_system
)
10687 Lisp_Object spec
, attrs
;
10689 if (NILP (coding_system
))
10690 coding_system
= Qno_conversion
;
10691 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10692 attrs
= AREF (spec
, 0);
10693 return CODING_ATTR_PLIST (attrs
);
10697 DEFUN ("coding-system-aliases", Fcoding_system_aliases
, Scoding_system_aliases
,
10699 doc
: /* Return the list of aliases of CODING-SYSTEM. */)
10700 (Lisp_Object coding_system
)
10704 if (NILP (coding_system
))
10705 coding_system
= Qno_conversion
;
10706 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10707 return AREF (spec
, 1);
10710 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type
,
10711 Scoding_system_eol_type
, 1, 1, 0,
10712 doc
: /* Return eol-type of CODING-SYSTEM.
10713 An eol-type is an integer 0, 1, 2, or a vector of coding systems.
10715 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF,
10716 and CR respectively.
10718 A vector value indicates that a format of end-of-line should be
10719 detected automatically. Nth element of the vector is the subsidiary
10720 coding system whose eol-type is N. */)
10721 (Lisp_Object coding_system
)
10723 Lisp_Object spec
, eol_type
;
10726 if (NILP (coding_system
))
10727 coding_system
= Qno_conversion
;
10728 if (! CODING_SYSTEM_P (coding_system
))
10730 spec
= CODING_SYSTEM_SPEC (coding_system
);
10731 eol_type
= AREF (spec
, 2);
10732 if (VECTORP (eol_type
))
10733 return Fcopy_sequence (eol_type
);
10734 n
= EQ (eol_type
, Qunix
) ? 0 : EQ (eol_type
, Qdos
) ? 1 : 2;
10735 return make_number (n
);
10741 /*** 9. Post-amble ***/
10744 init_coding_once (void)
10748 for (i
= 0; i
< coding_category_max
; i
++)
10750 coding_categories
[i
].id
= -1;
10751 coding_priorities
[i
] = i
;
10754 /* ISO2022 specific initialize routine. */
10755 for (i
= 0; i
< 0x20; i
++)
10756 iso_code_class
[i
] = ISO_control_0
;
10757 for (i
= 0x21; i
< 0x7F; i
++)
10758 iso_code_class
[i
] = ISO_graphic_plane_0
;
10759 for (i
= 0x80; i
< 0xA0; i
++)
10760 iso_code_class
[i
] = ISO_control_1
;
10761 for (i
= 0xA1; i
< 0xFF; i
++)
10762 iso_code_class
[i
] = ISO_graphic_plane_1
;
10763 iso_code_class
[0x20] = iso_code_class
[0x7F] = ISO_0x20_or_0x7F
;
10764 iso_code_class
[0xA0] = iso_code_class
[0xFF] = ISO_0xA0_or_0xFF
;
10765 iso_code_class
[ISO_CODE_SO
] = ISO_shift_out
;
10766 iso_code_class
[ISO_CODE_SI
] = ISO_shift_in
;
10767 iso_code_class
[ISO_CODE_SS2_7
] = ISO_single_shift_2_7
;
10768 iso_code_class
[ISO_CODE_ESC
] = ISO_escape
;
10769 iso_code_class
[ISO_CODE_SS2
] = ISO_single_shift_2
;
10770 iso_code_class
[ISO_CODE_SS3
] = ISO_single_shift_3
;
10771 iso_code_class
[ISO_CODE_CSI
] = ISO_control_sequence_introducer
;
10773 for (i
= 0; i
< 256; i
++)
10775 emacs_mule_bytes
[i
] = 1;
10777 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_11
] = 3;
10778 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_12
] = 3;
10779 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_21
] = 4;
10780 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_22
] = 4;
10786 syms_of_coding (void)
10788 staticpro (&Vcoding_system_hash_table
);
10789 Vcoding_system_hash_table
= CALLN (Fmake_hash_table
, QCtest
, Qeq
);
10791 staticpro (&Vsjis_coding_system
);
10792 Vsjis_coding_system
= Qnil
;
10794 staticpro (&Vbig5_coding_system
);
10795 Vbig5_coding_system
= Qnil
;
10797 staticpro (&Vcode_conversion_reused_workbuf
);
10798 Vcode_conversion_reused_workbuf
= Qnil
;
10800 staticpro (&Vcode_conversion_workbuf_name
);
10801 Vcode_conversion_workbuf_name
= build_pure_c_string (" *code-conversion-work*");
10803 reused_workbuf_in_use
= 0;
10805 DEFSYM (Qcharset
, "charset");
10806 DEFSYM (Qtarget_idx
, "target-idx");
10807 DEFSYM (Qcoding_system_history
, "coding-system-history");
10808 Fset (Qcoding_system_history
, Qnil
);
10810 /* Target FILENAME is the first argument. */
10811 Fput (Qinsert_file_contents
, Qtarget_idx
, make_number (0));
10812 /* Target FILENAME is the third argument. */
10813 Fput (Qwrite_region
, Qtarget_idx
, make_number (2));
10815 DEFSYM (Qcall_process
, "call-process");
10816 /* Target PROGRAM is the first argument. */
10817 Fput (Qcall_process
, Qtarget_idx
, make_number (0));
10819 DEFSYM (Qcall_process_region
, "call-process-region");
10820 /* Target PROGRAM is the third argument. */
10821 Fput (Qcall_process_region
, Qtarget_idx
, make_number (2));
10823 DEFSYM (Qstart_process
, "start-process");
10824 /* Target PROGRAM is the third argument. */
10825 Fput (Qstart_process
, Qtarget_idx
, make_number (2));
10827 DEFSYM (Qopen_network_stream
, "open-network-stream");
10828 /* Target SERVICE is the fourth argument. */
10829 Fput (Qopen_network_stream
, Qtarget_idx
, make_number (3));
10831 DEFSYM (Qcoding_system
, "coding-system");
10832 DEFSYM (Qcoding_aliases
, "coding-aliases");
10834 DEFSYM (Qeol_type
, "eol-type");
10835 DEFSYM (Qunix
, "unix");
10836 DEFSYM (Qdos
, "dos");
10837 DEFSYM (Qmac
, "mac");
10839 DEFSYM (Qbuffer_file_coding_system
, "buffer-file-coding-system");
10840 DEFSYM (Qpost_read_conversion
, "post-read-conversion");
10841 DEFSYM (Qpre_write_conversion
, "pre-write-conversion");
10842 DEFSYM (Qdefault_char
, "default-char");
10843 DEFSYM (Qundecided
, "undecided");
10844 DEFSYM (Qno_conversion
, "no-conversion");
10845 DEFSYM (Qraw_text
, "raw-text");
10847 DEFSYM (Qiso_2022
, "iso-2022");
10849 DEFSYM (Qutf_8
, "utf-8");
10850 DEFSYM (Qutf_8_emacs
, "utf-8-emacs");
10852 #if defined (WINDOWSNT) || defined (CYGWIN)
10853 /* No, not utf-16-le: that one has a BOM. */
10854 DEFSYM (Qutf_16le
, "utf-16le");
10857 DEFSYM (Qutf_16
, "utf-16");
10858 DEFSYM (Qbig
, "big");
10859 DEFSYM (Qlittle
, "little");
10861 DEFSYM (Qshift_jis
, "shift-jis");
10862 DEFSYM (Qbig5
, "big5");
10864 DEFSYM (Qcoding_system_p
, "coding-system-p");
10866 /* Error signaled when there's a problem with detecting a coding system. */
10867 DEFSYM (Qcoding_system_error
, "coding-system-error");
10868 Fput (Qcoding_system_error
, Qerror_conditions
,
10869 listn (CONSTYPE_PURE
, 2, Qcoding_system_error
, Qerror
));
10870 Fput (Qcoding_system_error
, Qerror_message
,
10871 build_pure_c_string ("Invalid coding system"));
10873 DEFSYM (Qtranslation_table
, "translation-table");
10874 Fput (Qtranslation_table
, Qchar_table_extra_slots
, make_number (2));
10875 DEFSYM (Qtranslation_table_id
, "translation-table-id");
10876 DEFSYM (Qtranslation_table_for_decode
, "translation-table-for-decode");
10877 DEFSYM (Qtranslation_table_for_encode
, "translation-table-for-encode");
10879 DEFSYM (Qvalid_codes
, "valid-codes");
10881 /* Coding system emacs-mule and raw-text are for converting only
10882 end-of-line format. */
10883 DEFSYM (Qemacs_mule
, "emacs-mule");
10885 DEFSYM (QCcategory
, ":category");
10886 DEFSYM (QCmnemonic
, ":mnemonic");
10887 DEFSYM (QCdefault_char
, ":default-char");
10888 DEFSYM (QCdecode_translation_table
, ":decode-translation-table");
10889 DEFSYM (QCencode_translation_table
, ":encode-translation-table");
10890 DEFSYM (QCpost_read_conversion
, ":post-read-conversion");
10891 DEFSYM (QCpre_write_conversion
, ":pre-write-conversion");
10892 DEFSYM (QCascii_compatible_p
, ":ascii-compatible-p");
10894 Vcoding_category_table
10895 = Fmake_vector (make_number (coding_category_max
), Qnil
);
10896 staticpro (&Vcoding_category_table
);
10897 /* Followings are target of code detection. */
10898 ASET (Vcoding_category_table
, coding_category_iso_7
,
10899 intern_c_string ("coding-category-iso-7"));
10900 ASET (Vcoding_category_table
, coding_category_iso_7_tight
,
10901 intern_c_string ("coding-category-iso-7-tight"));
10902 ASET (Vcoding_category_table
, coding_category_iso_8_1
,
10903 intern_c_string ("coding-category-iso-8-1"));
10904 ASET (Vcoding_category_table
, coding_category_iso_8_2
,
10905 intern_c_string ("coding-category-iso-8-2"));
10906 ASET (Vcoding_category_table
, coding_category_iso_7_else
,
10907 intern_c_string ("coding-category-iso-7-else"));
10908 ASET (Vcoding_category_table
, coding_category_iso_8_else
,
10909 intern_c_string ("coding-category-iso-8-else"));
10910 ASET (Vcoding_category_table
, coding_category_utf_8_auto
,
10911 intern_c_string ("coding-category-utf-8-auto"));
10912 ASET (Vcoding_category_table
, coding_category_utf_8_nosig
,
10913 intern_c_string ("coding-category-utf-8"));
10914 ASET (Vcoding_category_table
, coding_category_utf_8_sig
,
10915 intern_c_string ("coding-category-utf-8-sig"));
10916 ASET (Vcoding_category_table
, coding_category_utf_16_be
,
10917 intern_c_string ("coding-category-utf-16-be"));
10918 ASET (Vcoding_category_table
, coding_category_utf_16_auto
,
10919 intern_c_string ("coding-category-utf-16-auto"));
10920 ASET (Vcoding_category_table
, coding_category_utf_16_le
,
10921 intern_c_string ("coding-category-utf-16-le"));
10922 ASET (Vcoding_category_table
, coding_category_utf_16_be_nosig
,
10923 intern_c_string ("coding-category-utf-16-be-nosig"));
10924 ASET (Vcoding_category_table
, coding_category_utf_16_le_nosig
,
10925 intern_c_string ("coding-category-utf-16-le-nosig"));
10926 ASET (Vcoding_category_table
, coding_category_charset
,
10927 intern_c_string ("coding-category-charset"));
10928 ASET (Vcoding_category_table
, coding_category_sjis
,
10929 intern_c_string ("coding-category-sjis"));
10930 ASET (Vcoding_category_table
, coding_category_big5
,
10931 intern_c_string ("coding-category-big5"));
10932 ASET (Vcoding_category_table
, coding_category_ccl
,
10933 intern_c_string ("coding-category-ccl"));
10934 ASET (Vcoding_category_table
, coding_category_emacs_mule
,
10935 intern_c_string ("coding-category-emacs-mule"));
10936 /* Followings are NOT target of code detection. */
10937 ASET (Vcoding_category_table
, coding_category_raw_text
,
10938 intern_c_string ("coding-category-raw-text"));
10939 ASET (Vcoding_category_table
, coding_category_undecided
,
10940 intern_c_string ("coding-category-undecided"));
10942 DEFSYM (Qinsufficient_source
, "insufficient-source");
10943 DEFSYM (Qinvalid_source
, "invalid-source");
10944 DEFSYM (Qinterrupted
, "interrupted");
10946 /* If a symbol has this property, evaluate the value to define the
10947 symbol as a coding system. */
10948 DEFSYM (Qcoding_system_define_form
, "coding-system-define-form");
10950 defsubr (&Scoding_system_p
);
10951 defsubr (&Sread_coding_system
);
10952 defsubr (&Sread_non_nil_coding_system
);
10953 defsubr (&Scheck_coding_system
);
10954 defsubr (&Sdetect_coding_region
);
10955 defsubr (&Sdetect_coding_string
);
10956 defsubr (&Sfind_coding_systems_region_internal
);
10957 defsubr (&Sunencodable_char_position
);
10958 defsubr (&Scheck_coding_systems_region
);
10959 defsubr (&Sdecode_coding_region
);
10960 defsubr (&Sencode_coding_region
);
10961 defsubr (&Sdecode_coding_string
);
10962 defsubr (&Sencode_coding_string
);
10963 defsubr (&Sdecode_sjis_char
);
10964 defsubr (&Sencode_sjis_char
);
10965 defsubr (&Sdecode_big5_char
);
10966 defsubr (&Sencode_big5_char
);
10967 defsubr (&Sset_terminal_coding_system_internal
);
10968 defsubr (&Sset_safe_terminal_coding_system_internal
);
10969 defsubr (&Sterminal_coding_system
);
10970 defsubr (&Sset_keyboard_coding_system_internal
);
10971 defsubr (&Skeyboard_coding_system
);
10972 defsubr (&Sfind_operation_coding_system
);
10973 defsubr (&Sset_coding_system_priority
);
10974 defsubr (&Sdefine_coding_system_internal
);
10975 defsubr (&Sdefine_coding_system_alias
);
10976 defsubr (&Scoding_system_put
);
10977 defsubr (&Scoding_system_base
);
10978 defsubr (&Scoding_system_plist
);
10979 defsubr (&Scoding_system_aliases
);
10980 defsubr (&Scoding_system_eol_type
);
10981 defsubr (&Scoding_system_priority_list
);
10983 DEFVAR_LISP ("coding-system-list", Vcoding_system_list
,
10984 doc
: /* List of coding systems.
10986 Do not alter the value of this variable manually. This variable should be
10987 updated by the functions `define-coding-system' and
10988 `define-coding-system-alias'. */);
10989 Vcoding_system_list
= Qnil
;
10991 DEFVAR_LISP ("coding-system-alist", Vcoding_system_alist
,
10992 doc
: /* Alist of coding system names.
10993 Each element is one element list of coding system name.
10994 This variable is given to `completing-read' as COLLECTION argument.
10996 Do not alter the value of this variable manually. This variable should be
10997 updated by the functions `make-coding-system' and
10998 `define-coding-system-alias'. */);
10999 Vcoding_system_alist
= Qnil
;
11001 DEFVAR_LISP ("coding-category-list", Vcoding_category_list
,
11002 doc
: /* List of coding-categories (symbols) ordered by priority.
11004 On detecting a coding system, Emacs tries code detection algorithms
11005 associated with each coding-category one by one in this order. When
11006 one algorithm agrees with a byte sequence of source text, the coding
11007 system bound to the corresponding coding-category is selected.
11009 Don't modify this variable directly, but use `set-coding-system-priority'. */);
11013 Vcoding_category_list
= Qnil
;
11014 for (i
= coding_category_max
- 1; i
>= 0; i
--)
11015 Vcoding_category_list
11016 = Fcons (AREF (Vcoding_category_table
, i
),
11017 Vcoding_category_list
);
11020 DEFVAR_LISP ("coding-system-for-read", Vcoding_system_for_read
,
11021 doc
: /* Specify the coding system for read operations.
11022 It is useful to bind this variable with `let', but do not set it globally.
11023 If the value is a coding system, it is used for decoding on read operation.
11024 If not, an appropriate element is used from one of the coding system alists.
11025 There are three such tables: `file-coding-system-alist',
11026 `process-coding-system-alist', and `network-coding-system-alist'. */);
11027 Vcoding_system_for_read
= Qnil
;
11029 DEFVAR_LISP ("coding-system-for-write", Vcoding_system_for_write
,
11030 doc
: /* Specify the coding system for write operations.
11031 Programs bind this variable with `let', but you should not set it globally.
11032 If the value is a coding system, it is used for encoding of output,
11033 when writing it to a file and when sending it to a file or subprocess.
11035 If this does not specify a coding system, an appropriate element
11036 is used from one of the coding system alists.
11037 There are three such tables: `file-coding-system-alist',
11038 `process-coding-system-alist', and `network-coding-system-alist'.
11039 For output to files, if the above procedure does not specify a coding system,
11040 the value of `buffer-file-coding-system' is used. */);
11041 Vcoding_system_for_write
= Qnil
;
11043 DEFVAR_LISP ("last-coding-system-used", Vlast_coding_system_used
,
11045 Coding system used in the latest file or process I/O. */);
11046 Vlast_coding_system_used
= Qnil
;
11048 DEFVAR_LISP ("last-code-conversion-error", Vlast_code_conversion_error
,
11050 Error status of the last code conversion.
11052 When an error was detected in the last code conversion, this variable
11053 is set to one of the following symbols.
11054 `insufficient-source'
11058 `insufficient-memory'
11059 When no error was detected, the value doesn't change. So, to check
11060 the error status of a code conversion by this variable, you must
11061 explicitly set this variable to nil before performing code
11063 Vlast_code_conversion_error
= Qnil
;
11065 DEFVAR_BOOL ("inhibit-eol-conversion", inhibit_eol_conversion
,
11067 *Non-nil means always inhibit code conversion of end-of-line format.
11068 See info node `Coding Systems' and info node `Text and Binary' concerning
11069 such conversion. */);
11070 inhibit_eol_conversion
= 0;
11072 DEFVAR_BOOL ("inherit-process-coding-system", inherit_process_coding_system
,
11074 Non-nil means process buffer inherits coding system of process output.
11075 Bind it to t if the process output is to be treated as if it were a file
11076 read from some filesystem. */);
11077 inherit_process_coding_system
= 0;
11079 DEFVAR_LISP ("file-coding-system-alist", Vfile_coding_system_alist
,
11081 Alist to decide a coding system to use for a file I/O operation.
11082 The format is ((PATTERN . VAL) ...),
11083 where PATTERN is a regular expression matching a file name,
11084 VAL is a coding system, a cons of coding systems, or a function symbol.
11085 If VAL is a coding system, it is used for both decoding and encoding
11087 If VAL is a cons of coding systems, the car part is used for decoding,
11088 and the cdr part is used for encoding.
11089 If VAL is a function symbol, the function must return a coding system
11090 or a cons of coding systems which are used as above. The function is
11091 called with an argument that is a list of the arguments with which
11092 `find-operation-coding-system' was called. If the function can't decide
11093 a coding system, it can return `undecided' so that the normal
11094 code-detection is performed.
11096 See also the function `find-operation-coding-system'
11097 and the variable `auto-coding-alist'. */);
11098 Vfile_coding_system_alist
= Qnil
;
11100 DEFVAR_LISP ("process-coding-system-alist", Vprocess_coding_system_alist
,
11102 Alist to decide a coding system to use for a process I/O operation.
11103 The format is ((PATTERN . VAL) ...),
11104 where PATTERN is a regular expression matching a program name,
11105 VAL is a coding system, a cons of coding systems, or a function symbol.
11106 If VAL is a coding system, it is used for both decoding what received
11107 from the program and encoding what sent to the program.
11108 If VAL is a cons of coding systems, the car part is used for decoding,
11109 and the cdr part is used for encoding.
11110 If VAL is a function symbol, the function must return a coding system
11111 or a cons of coding systems which are used as above.
11113 See also the function `find-operation-coding-system'. */);
11114 Vprocess_coding_system_alist
= Qnil
;
11116 DEFVAR_LISP ("network-coding-system-alist", Vnetwork_coding_system_alist
,
11118 Alist to decide a coding system to use for a network I/O operation.
11119 The format is ((PATTERN . VAL) ...),
11120 where PATTERN is a regular expression matching a network service name
11121 or is a port number to connect to,
11122 VAL is a coding system, a cons of coding systems, or a function symbol.
11123 If VAL is a coding system, it is used for both decoding what received
11124 from the network stream and encoding what sent to the network stream.
11125 If VAL is a cons of coding systems, the car part is used for decoding,
11126 and the cdr part is used for encoding.
11127 If VAL is a function symbol, the function must return a coding system
11128 or a cons of coding systems which are used as above.
11130 See also the function `find-operation-coding-system'. */);
11131 Vnetwork_coding_system_alist
= Qnil
;
11133 DEFVAR_LISP ("locale-coding-system", Vlocale_coding_system
,
11134 doc
: /* Coding system to use with system messages.
11135 Also used for decoding keyboard input on X Window system. */);
11136 Vlocale_coding_system
= Qnil
;
11138 /* The eol mnemonics are reset in startup.el system-dependently. */
11139 DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix
,
11141 *String displayed in mode line for UNIX-like (LF) end-of-line format. */);
11142 eol_mnemonic_unix
= build_pure_c_string (":");
11144 DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos
,
11146 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
11147 eol_mnemonic_dos
= build_pure_c_string ("\\");
11149 DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac
,
11151 *String displayed in mode line for MAC-like (CR) end-of-line format. */);
11152 eol_mnemonic_mac
= build_pure_c_string ("/");
11154 DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided
,
11156 *String displayed in mode line when end-of-line format is not yet determined. */);
11157 eol_mnemonic_undecided
= build_pure_c_string (":");
11159 DEFVAR_LISP ("enable-character-translation", Venable_character_translation
,
11161 *Non-nil enables character translation while encoding and decoding. */);
11162 Venable_character_translation
= Qt
;
11164 DEFVAR_LISP ("standard-translation-table-for-decode",
11165 Vstandard_translation_table_for_decode
,
11166 doc
: /* Table for translating characters while decoding. */);
11167 Vstandard_translation_table_for_decode
= Qnil
;
11169 DEFVAR_LISP ("standard-translation-table-for-encode",
11170 Vstandard_translation_table_for_encode
,
11171 doc
: /* Table for translating characters while encoding. */);
11172 Vstandard_translation_table_for_encode
= Qnil
;
11174 DEFVAR_LISP ("charset-revision-table", Vcharset_revision_table
,
11175 doc
: /* Alist of charsets vs revision numbers.
11176 While encoding, if a charset (car part of an element) is found,
11177 designate it with the escape sequence identifying revision (cdr part
11178 of the element). */);
11179 Vcharset_revision_table
= Qnil
;
11181 DEFVAR_LISP ("default-process-coding-system",
11182 Vdefault_process_coding_system
,
11183 doc
: /* Cons of coding systems used for process I/O by default.
11184 The car part is used for decoding a process output,
11185 the cdr part is used for encoding a text to be sent to a process. */);
11186 Vdefault_process_coding_system
= Qnil
;
11188 DEFVAR_LISP ("latin-extra-code-table", Vlatin_extra_code_table
,
11190 Table of extra Latin codes in the range 128..159 (inclusive).
11191 This is a vector of length 256.
11192 If Nth element is non-nil, the existence of code N in a file
11193 \(or output of subprocess) doesn't prevent it to be detected as
11194 a coding system of ISO 2022 variant which has a flag
11195 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
11196 or reading output of a subprocess.
11197 Only 128th through 159th elements have a meaning. */);
11198 Vlatin_extra_code_table
= Fmake_vector (make_number (256), Qnil
);
11200 DEFVAR_LISP ("select-safe-coding-system-function",
11201 Vselect_safe_coding_system_function
,
11203 Function to call to select safe coding system for encoding a text.
11205 If set, this function is called to force a user to select a proper
11206 coding system which can encode the text in the case that a default
11207 coding system used in each operation can't encode the text. The
11208 function should take care that the buffer is not modified while
11209 the coding system is being selected.
11211 The default value is `select-safe-coding-system' (which see). */);
11212 Vselect_safe_coding_system_function
= Qnil
;
11214 DEFVAR_BOOL ("coding-system-require-warning",
11215 coding_system_require_warning
,
11216 doc
: /* Internal use only.
11217 If non-nil, on writing a file, `select-safe-coding-system-function' is
11218 called even if `coding-system-for-write' is non-nil. The command
11219 `universal-coding-system-argument' binds this variable to t temporarily. */);
11220 coding_system_require_warning
= 0;
11223 DEFVAR_BOOL ("inhibit-iso-escape-detection",
11224 inhibit_iso_escape_detection
,
11226 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection.
11228 When Emacs reads text, it tries to detect how the text is encoded.
11229 This code detection is sensitive to escape sequences. If Emacs sees
11230 a valid ISO-2022 escape sequence, it assumes the text is encoded in one
11231 of the ISO2022 encodings, and decodes text by the corresponding coding
11232 system (e.g. `iso-2022-7bit').
11234 However, there may be a case that you want to read escape sequences in
11235 a file as is. In such a case, you can set this variable to non-nil.
11236 Then the code detection will ignore any escape sequences, and no text is
11237 detected as encoded in some ISO-2022 encoding. The result is that all
11238 escape sequences become visible in a buffer.
11240 The default value is nil, and it is strongly recommended not to change
11241 it. That is because many Emacs Lisp source files that contain
11242 non-ASCII characters are encoded by the coding system `iso-2022-7bit'
11243 in Emacs's distribution, and they won't be decoded correctly on
11244 reading if you suppress escape sequence detection.
11246 The other way to read escape sequences in a file without decoding is
11247 to explicitly specify some coding system that doesn't use ISO-2022
11248 escape sequence (e.g., `latin-1') on reading by \\[universal-coding-system-argument]. */);
11249 inhibit_iso_escape_detection
= 0;
11251 DEFVAR_BOOL ("inhibit-null-byte-detection",
11252 inhibit_null_byte_detection
,
11253 doc
: /* If non-nil, Emacs ignores null bytes on code detection.
11254 By default, Emacs treats it as binary data, and does not attempt to
11255 decode it. The effect is as if you specified `no-conversion' for
11258 Set this to non-nil when a regular text happens to include null bytes.
11259 Examples are Index nodes of Info files and null-byte delimited output
11260 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and
11261 decode text as usual. */);
11262 inhibit_null_byte_detection
= 0;
11264 DEFVAR_BOOL ("disable-ascii-optimization", disable_ascii_optimization
,
11265 doc
: /* If non-nil, Emacs does not optimize code decoder for ASCII files.
11266 Internal use only. Remove after the experimental optimizer becomes stable. */);
11267 disable_ascii_optimization
= 0;
11269 DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input
,
11270 doc
: /* Char table for translating self-inserting characters.
11271 This is applied to the result of input methods, not their input.
11272 See also `keyboard-translate-table'.
11274 Use of this variable for character code unification was rendered
11275 obsolete in Emacs 23.1 and later, since Unicode is now the basis of
11276 internal character representation. */);
11277 Vtranslation_table_for_input
= Qnil
;
11279 Lisp_Object args
[coding_arg_undecided_max
];
11280 memclear (args
, sizeof args
);
11282 Lisp_Object plist
[] =
11284 intern_c_string (":name"),
11285 args
[coding_arg_name
] = Qno_conversion
,
11286 intern_c_string (":mnemonic"),
11287 args
[coding_arg_mnemonic
] = make_number ('='),
11288 intern_c_string (":coding-type"),
11289 args
[coding_arg_coding_type
] = Qraw_text
,
11290 intern_c_string (":ascii-compatible-p"),
11291 args
[coding_arg_ascii_compatible_p
] = Qt
,
11292 intern_c_string (":default-char"),
11293 args
[coding_arg_default_char
] = make_number (0),
11294 intern_c_string (":for-unibyte"),
11295 args
[coding_arg_for_unibyte
] = Qt
,
11296 intern_c_string (":docstring"),
11297 (build_pure_c_string
11298 ("Do no conversion.\n"
11300 "When you visit a file with this coding, the file is read into a\n"
11301 "unibyte buffer as is, thus each byte of a file is treated as a\n"
11303 intern_c_string (":eol-type"),
11304 args
[coding_arg_eol_type
] = Qunix
,
11306 args
[coding_arg_plist
] = CALLMANY (Flist
, plist
);
11307 Fdefine_coding_system_internal (coding_arg_max
, args
);
11309 plist
[1] = args
[coding_arg_name
] = Qundecided
;
11310 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('-');
11311 plist
[5] = args
[coding_arg_coding_type
] = Qundecided
;
11312 /* This is already set.
11313 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */
11314 plist
[8] = intern_c_string (":charset-list");
11315 plist
[9] = args
[coding_arg_charset_list
] = Fcons (Qascii
, Qnil
);
11316 plist
[11] = args
[coding_arg_for_unibyte
] = Qnil
;
11317 plist
[13] = build_pure_c_string ("No conversion on encoding, "
11318 "automatic conversion on decoding.");
11319 plist
[15] = args
[coding_arg_eol_type
] = Qnil
;
11320 args
[coding_arg_plist
] = CALLMANY (Flist
, plist
);
11321 args
[coding_arg_undecided_inhibit_null_byte_detection
] = make_number (0);
11322 args
[coding_arg_undecided_inhibit_iso_escape_detection
] = make_number (0);
11323 Fdefine_coding_system_internal (coding_arg_undecided_max
, args
);
11325 setup_coding_system (Qno_conversion
, &safe_terminal_coding
);
11327 for (int i
= 0; i
< coding_category_max
; i
++)
11328 Fset (AREF (Vcoding_category_table
, i
), Qno_conversion
);
11330 #if defined (DOS_NT)
11331 system_eol_type
= Qdos
;
11333 system_eol_type
= Qunix
;
11335 staticpro (&system_eol_type
);
11339 emacs_strerror (int error_number
)
11343 synchronize_system_messages_locale ();
11344 str
= strerror (error_number
);
11346 if (! NILP (Vlocale_coding_system
))
11348 Lisp_Object dec
= code_convert_string_norecord (build_string (str
),
11349 Vlocale_coding_system
,
11351 str
= SSDATA (dec
);