1 /* Coding system handler (conversion, detection, etc).
2 Copyright (C) 2001-2016 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 (at
16 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"
300 #include "termhooks.h"
302 Lisp_Object Vcoding_system_hash_table
;
304 /* Format of end-of-line decided by system. This is Qunix on
305 Unix and Mac, Qdos on DOS/Windows.
306 This has an effect only for external encoding (i.e. for output to
307 file and process), not for in-buffer or Lisp string encoding. */
308 static Lisp_Object system_eol_type
;
312 /* Coding-systems are handed between Emacs Lisp programs and C internal
313 routines by the following three variables. */
314 /* Coding system to be used to encode text for terminal display when
315 terminal coding system is nil. */
316 struct coding_system safe_terminal_coding
;
320 /* Two special coding systems. */
321 static Lisp_Object Vsjis_coding_system
;
322 static Lisp_Object Vbig5_coding_system
;
324 /* ISO2022 section */
326 #define CODING_ISO_INITIAL(coding, reg) \
327 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \
328 coding_attr_iso_initial), \
332 #define CODING_ISO_REQUEST(coding, charset_id) \
333 (((charset_id) <= (coding)->max_charset_id \
334 ? ((coding)->safe_charsets[charset_id] != 255 \
335 ? (coding)->safe_charsets[charset_id] \
340 #define CODING_ISO_FLAGS(coding) \
341 ((coding)->spec.iso_2022.flags)
342 #define CODING_ISO_DESIGNATION(coding, reg) \
343 ((coding)->spec.iso_2022.current_designation[reg])
344 #define CODING_ISO_INVOCATION(coding, plane) \
345 ((coding)->spec.iso_2022.current_invocation[plane])
346 #define CODING_ISO_SINGLE_SHIFTING(coding) \
347 ((coding)->spec.iso_2022.single_shifting)
348 #define CODING_ISO_BOL(coding) \
349 ((coding)->spec.iso_2022.bol)
350 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \
351 (CODING_ISO_INVOCATION (coding, plane) < 0 ? -1 \
352 : CODING_ISO_DESIGNATION (coding, CODING_ISO_INVOCATION (coding, plane)))
353 #define CODING_ISO_CMP_STATUS(coding) \
354 (&(coding)->spec.iso_2022.cmp_status)
355 #define CODING_ISO_EXTSEGMENT_LEN(coding) \
356 ((coding)->spec.iso_2022.ctext_extended_segment_len)
357 #define CODING_ISO_EMBEDDED_UTF_8(coding) \
358 ((coding)->spec.iso_2022.embedded_utf_8)
360 /* Control characters of ISO2022. */
361 /* code */ /* function */
362 #define ISO_CODE_SO 0x0E /* shift-out */
363 #define ISO_CODE_SI 0x0F /* shift-in */
364 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
365 #define ISO_CODE_ESC 0x1B /* escape */
366 #define ISO_CODE_SS2 0x8E /* single-shift-2 */
367 #define ISO_CODE_SS3 0x8F /* single-shift-3 */
368 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */
370 /* All code (1-byte) of ISO2022 is classified into one of the
372 enum iso_code_class_type
374 ISO_control_0
, /* Control codes in the range
375 0x00..0x1F and 0x7F, except for the
376 following 5 codes. */
377 ISO_shift_out
, /* ISO_CODE_SO (0x0E) */
378 ISO_shift_in
, /* ISO_CODE_SI (0x0F) */
379 ISO_single_shift_2_7
, /* ISO_CODE_SS2_7 (0x19) */
380 ISO_escape
, /* ISO_CODE_ESC (0x1B) */
381 ISO_control_1
, /* Control codes in the range
382 0x80..0x9F, except for the
383 following 3 codes. */
384 ISO_single_shift_2
, /* ISO_CODE_SS2 (0x8E) */
385 ISO_single_shift_3
, /* ISO_CODE_SS3 (0x8F) */
386 ISO_control_sequence_introducer
, /* ISO_CODE_CSI (0x9B) */
387 ISO_0x20_or_0x7F
, /* Codes of the values 0x20 or 0x7F. */
388 ISO_graphic_plane_0
, /* Graphic codes in the range 0x21..0x7E. */
389 ISO_0xA0_or_0xFF
, /* Codes of the values 0xA0 or 0xFF. */
390 ISO_graphic_plane_1
/* Graphic codes in the range 0xA1..0xFE. */
393 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the
394 `iso-flags' attribute of an iso2022 coding system. */
396 /* If set, produce long-form designation sequence (e.g. ESC $ ( A)
397 instead of the correct short-form sequence (e.g. ESC $ A). */
398 #define CODING_ISO_FLAG_LONG_FORM 0x0001
400 /* If set, reset graphic planes and registers at end-of-line to the
402 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002
404 /* If set, reset graphic planes and registers before any control
405 characters to the initial state. */
406 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004
408 /* If set, encode by 7-bit environment. */
409 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008
411 /* If set, use locking-shift function. */
412 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010
414 /* If set, use single-shift function. Overwrite
415 CODING_ISO_FLAG_LOCKING_SHIFT. */
416 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020
418 /* If set, use designation escape sequence. */
419 #define CODING_ISO_FLAG_DESIGNATION 0x0040
421 /* If set, produce revision number sequence. */
422 #define CODING_ISO_FLAG_REVISION 0x0080
424 /* If set, produce ISO6429's direction specifying sequence. */
425 #define CODING_ISO_FLAG_DIRECTION 0x0100
427 /* If set, assume designation states are reset at beginning of line on
429 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200
431 /* If set, designation sequence should be placed at beginning of line
433 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400
435 /* If set, do not encode unsafe characters on output. */
436 #define CODING_ISO_FLAG_SAFE 0x0800
438 /* If set, extra latin codes (128..159) are accepted as a valid code
440 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000
442 #define CODING_ISO_FLAG_COMPOSITION 0x2000
444 /* #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 */
446 #define CODING_ISO_FLAG_USE_ROMAN 0x8000
448 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000
450 #define CODING_ISO_FLAG_LEVEL_4 0x20000
452 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000
454 /* A character to be produced on output if encoding of the original
455 character is prohibited by CODING_ISO_FLAG_SAFE. */
456 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?'
459 #define CODING_UTF_8_BOM(coding) \
460 ((coding)->spec.utf_8_bom)
463 #define CODING_UTF_16_BOM(coding) \
464 ((coding)->spec.utf_16.bom)
466 #define CODING_UTF_16_ENDIAN(coding) \
467 ((coding)->spec.utf_16.endian)
469 #define CODING_UTF_16_SURROGATE(coding) \
470 ((coding)->spec.utf_16.surrogate)
474 #define CODING_CCL_DECODER(coding) \
475 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder)
476 #define CODING_CCL_ENCODER(coding) \
477 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder)
478 #define CODING_CCL_VALIDS(coding) \
479 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)))
481 /* Index for each coding category in `coding_categories' */
485 coding_category_iso_7
,
486 coding_category_iso_7_tight
,
487 coding_category_iso_8_1
,
488 coding_category_iso_8_2
,
489 coding_category_iso_7_else
,
490 coding_category_iso_8_else
,
491 coding_category_utf_8_auto
,
492 coding_category_utf_8_nosig
,
493 coding_category_utf_8_sig
,
494 coding_category_utf_16_auto
,
495 coding_category_utf_16_be
,
496 coding_category_utf_16_le
,
497 coding_category_utf_16_be_nosig
,
498 coding_category_utf_16_le_nosig
,
499 coding_category_charset
,
500 coding_category_sjis
,
501 coding_category_big5
,
503 coding_category_emacs_mule
,
504 /* All above are targets of code detection. */
505 coding_category_raw_text
,
506 coding_category_undecided
,
510 /* Definitions of flag bits used in detect_coding_XXXX. */
511 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7)
512 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight)
513 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1)
514 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2)
515 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else)
516 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else)
517 #define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto)
518 #define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig)
519 #define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig)
520 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto)
521 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be)
522 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le)
523 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig)
524 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig)
525 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset)
526 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis)
527 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5)
528 #define CATEGORY_MASK_CCL (1 << coding_category_ccl)
529 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule)
530 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text)
532 /* This value is returned if detect_coding_mask () find nothing other
533 than ASCII characters. */
534 #define CATEGORY_MASK_ANY \
535 (CATEGORY_MASK_ISO_7 \
536 | CATEGORY_MASK_ISO_7_TIGHT \
537 | CATEGORY_MASK_ISO_8_1 \
538 | CATEGORY_MASK_ISO_8_2 \
539 | CATEGORY_MASK_ISO_7_ELSE \
540 | CATEGORY_MASK_ISO_8_ELSE \
541 | CATEGORY_MASK_UTF_8_AUTO \
542 | CATEGORY_MASK_UTF_8_NOSIG \
543 | CATEGORY_MASK_UTF_8_SIG \
544 | CATEGORY_MASK_UTF_16_AUTO \
545 | CATEGORY_MASK_UTF_16_BE \
546 | CATEGORY_MASK_UTF_16_LE \
547 | CATEGORY_MASK_UTF_16_BE_NOSIG \
548 | CATEGORY_MASK_UTF_16_LE_NOSIG \
549 | CATEGORY_MASK_CHARSET \
550 | CATEGORY_MASK_SJIS \
551 | CATEGORY_MASK_BIG5 \
552 | CATEGORY_MASK_CCL \
553 | CATEGORY_MASK_EMACS_MULE)
556 #define CATEGORY_MASK_ISO_7BIT \
557 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT)
559 #define CATEGORY_MASK_ISO_8BIT \
560 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2)
562 #define CATEGORY_MASK_ISO_ELSE \
563 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE)
565 #define CATEGORY_MASK_ISO_ESCAPE \
566 (CATEGORY_MASK_ISO_7 \
567 | CATEGORY_MASK_ISO_7_TIGHT \
568 | CATEGORY_MASK_ISO_7_ELSE \
569 | CATEGORY_MASK_ISO_8_ELSE)
571 #define CATEGORY_MASK_ISO \
572 ( CATEGORY_MASK_ISO_7BIT \
573 | CATEGORY_MASK_ISO_8BIT \
574 | CATEGORY_MASK_ISO_ELSE)
576 #define CATEGORY_MASK_UTF_16 \
577 (CATEGORY_MASK_UTF_16_AUTO \
578 | CATEGORY_MASK_UTF_16_BE \
579 | CATEGORY_MASK_UTF_16_LE \
580 | CATEGORY_MASK_UTF_16_BE_NOSIG \
581 | CATEGORY_MASK_UTF_16_LE_NOSIG)
583 #define CATEGORY_MASK_UTF_8 \
584 (CATEGORY_MASK_UTF_8_AUTO \
585 | CATEGORY_MASK_UTF_8_NOSIG \
586 | CATEGORY_MASK_UTF_8_SIG)
588 /* Table of coding categories (Lisp symbols). This variable is for
589 internal use only. */
590 static Lisp_Object Vcoding_category_table
;
592 /* Table of coding-categories ordered by priority. */
593 static enum coding_category coding_priorities
[coding_category_max
];
595 /* Nth element is a coding context for the coding system bound to the
596 Nth coding category. */
597 static struct coding_system coding_categories
[coding_category_max
];
599 /* Encode a flag that can be nil, something else, or t as -1, 0, 1. */
602 encode_inhibit_flag (Lisp_Object flag
)
604 return NILP (flag
) ? -1 : EQ (flag
, Qt
);
607 /* True if the value of ENCODED_FLAG says a flag should be treated as set.
608 1 means yes, -1 means no, 0 means ask the user variable VAR. */
611 inhibit_flag (int encoded_flag
, bool var
)
613 return 0 < encoded_flag
+ var
;
616 #define CODING_GET_INFO(coding, attrs, charset_list) \
618 (attrs) = CODING_ID_ATTRS ((coding)->id); \
619 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \
623 CHECK_NATNUM_CAR (Lisp_Object x
)
625 Lisp_Object tmp
= XCAR (x
);
631 CHECK_NATNUM_CDR (Lisp_Object x
)
633 Lisp_Object tmp
= XCDR (x
);
638 /* True if CODING's destination can be grown. */
641 growable_destination (struct coding_system
*coding
)
643 return STRINGP (coding
->dst_object
) || BUFFERP (coding
->dst_object
);
647 /* Safely get one byte from the source text pointed by SRC which ends
648 at SRC_END, and set C to that byte. If there are not enough bytes
649 in the source, it jumps to 'no_more_source'. If MULTIBYTEP,
650 and a multibyte character is found at SRC, set C to the
651 negative value of the character code. The caller should declare
652 and set these variables appropriately in advance:
653 src, src_end, multibytep */
655 #define ONE_MORE_BYTE(c) \
657 if (src == src_end) \
659 if (src_base < src) \
660 record_conversion_result \
661 (coding, CODING_RESULT_INSUFFICIENT_SRC); \
662 goto no_more_source; \
665 if (multibytep && (c & 0x80)) \
667 if ((c & 0xFE) == 0xC0) \
668 c = ((c & 1) << 6) | *src++; \
672 c = - string_char (src, &src, NULL); \
673 record_conversion_result \
674 (coding, CODING_RESULT_INVALID_SRC); \
680 /* Safely get two bytes from the source text pointed by SRC which ends
681 at SRC_END, and set C1 and C2 to those bytes while skipping the
682 heading multibyte characters. If there are not enough bytes in the
683 source, it jumps to 'no_more_source'. If MULTIBYTEP and
684 a multibyte character is found for C2, set C2 to the negative value
685 of the character code. The caller should declare and set these
686 variables appropriately in advance:
687 src, src_end, multibytep
688 It is intended that this macro is used in detect_coding_utf_16. */
690 #define TWO_MORE_BYTES(c1, c2) \
693 if (src == src_end) \
694 goto no_more_source; \
696 if (multibytep && (c1 & 0x80)) \
698 if ((c1 & 0xFE) == 0xC0) \
699 c1 = ((c1 & 1) << 6) | *src++; \
702 src += BYTES_BY_CHAR_HEAD (c1) - 1; \
707 if (src == src_end) \
708 goto no_more_source; \
710 if (multibytep && (c2 & 0x80)) \
712 if ((c2 & 0xFE) == 0xC0) \
713 c2 = ((c2 & 1) << 6) | *src++; \
720 /* Store a byte C in the place pointed by DST and increment DST to the
721 next free point, and increment PRODUCED_CHARS. The caller should
722 assure that C is 0..127, and declare and set the variable `dst'
723 appropriately in advance.
727 #define EMIT_ONE_ASCII_BYTE(c) \
734 /* Like EMIT_ONE_ASCII_BYTE but store two bytes; C1 and C2. */
736 #define EMIT_TWO_ASCII_BYTES(c1, c2) \
738 produced_chars += 2; \
739 *dst++ = (c1), *dst++ = (c2); \
743 /* Store a byte C in the place pointed by DST and increment DST to the
744 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP,
745 store in an appropriate multibyte form. The caller should
746 declare and set the variables `dst' and `multibytep' appropriately
749 #define EMIT_ONE_BYTE(c) \
756 ch = BYTE8_TO_CHAR (ch); \
757 CHAR_STRING_ADVANCE (ch, dst); \
764 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */
766 #define EMIT_TWO_BYTES(c1, c2) \
768 produced_chars += 2; \
775 ch = BYTE8_TO_CHAR (ch); \
776 CHAR_STRING_ADVANCE (ch, dst); \
779 ch = BYTE8_TO_CHAR (ch); \
780 CHAR_STRING_ADVANCE (ch, dst); \
790 #define EMIT_THREE_BYTES(c1, c2, c3) \
792 EMIT_ONE_BYTE (c1); \
793 EMIT_TWO_BYTES (c2, c3); \
797 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \
799 EMIT_TWO_BYTES (c1, c2); \
800 EMIT_TWO_BYTES (c3, c4); \
805 record_conversion_result (struct coding_system
*coding
,
806 enum coding_result_code result
)
808 coding
->result
= result
;
811 case CODING_RESULT_INSUFFICIENT_SRC
:
812 Vlast_code_conversion_error
= Qinsufficient_source
;
814 case CODING_RESULT_INVALID_SRC
:
815 Vlast_code_conversion_error
= Qinvalid_source
;
817 case CODING_RESULT_INTERRUPT
:
818 Vlast_code_conversion_error
= Qinterrupted
;
820 case CODING_RESULT_INSUFFICIENT_DST
:
821 /* Don't record this error in Vlast_code_conversion_error
822 because it happens just temporarily and is resolved when the
823 whole conversion is finished. */
825 case CODING_RESULT_SUCCESS
:
828 Vlast_code_conversion_error
= intern ("Unknown error");
832 /* These wrapper macros are used to preserve validity of pointers into
833 buffer text across calls to decode_char, encode_char, etc, which
834 could cause relocation of buffers if it loads a charset map,
835 because loading a charset map allocates large structures. */
837 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \
841 charset_map_loaded = 0; \
842 c = DECODE_CHAR (charset, code); \
843 if (charset_map_loaded \
844 && (offset = coding_change_source (coding))) \
847 src_base += offset; \
852 #define CODING_ENCODE_CHAR(coding, dst, dst_end, charset, c, code) \
856 charset_map_loaded = 0; \
857 code = ENCODE_CHAR (charset, c); \
858 if (charset_map_loaded \
859 && (offset = coding_change_destination (coding))) \
866 #define CODING_CHAR_CHARSET(coding, dst, dst_end, c, charset_list, code_return, charset) \
870 charset_map_loaded = 0; \
871 charset = char_charset (c, charset_list, code_return); \
872 if (charset_map_loaded \
873 && (offset = coding_change_destination (coding))) \
880 #define CODING_CHAR_CHARSET_P(coding, dst, dst_end, c, charset, result) \
884 charset_map_loaded = 0; \
885 result = CHAR_CHARSET_P (c, charset); \
886 if (charset_map_loaded \
887 && (offset = coding_change_destination (coding))) \
895 /* If there are at least BYTES length of room at dst, allocate memory
896 for coding->destination and update dst and dst_end. We don't have
897 to take care of coding->source which will be relocated. It is
898 handled by calling coding_set_source in encode_coding. */
900 #define ASSURE_DESTINATION(bytes) \
902 if (dst + (bytes) >= dst_end) \
904 ptrdiff_t more_bytes = charbuf_end - charbuf + (bytes); \
906 dst = alloc_destination (coding, more_bytes, dst); \
907 dst_end = coding->destination + coding->dst_bytes; \
912 /* Store multibyte form of the character C in P, and advance P to the
913 end of the multibyte form. This used to be like CHAR_STRING_ADVANCE
914 without ever calling MAYBE_UNIFY_CHAR, but nowadays we don't call
915 MAYBE_UNIFY_CHAR in CHAR_STRING_ADVANCE. */
917 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) CHAR_STRING_ADVANCE(c, p)
919 /* Return the character code of character whose multibyte form is at
920 P, and advance P to the end of the multibyte form. This used to be
921 like STRING_CHAR_ADVANCE without ever calling MAYBE_UNIFY_CHAR, but
922 nowadays STRING_CHAR_ADVANCE doesn't call MAYBE_UNIFY_CHAR. */
924 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) STRING_CHAR_ADVANCE(p)
926 /* Set coding->source from coding->src_object. */
929 coding_set_source (struct coding_system
*coding
)
931 if (BUFFERP (coding
->src_object
))
933 struct buffer
*buf
= XBUFFER (coding
->src_object
);
935 if (coding
->src_pos
< 0)
936 coding
->source
= BUF_GAP_END_ADDR (buf
) + coding
->src_pos_byte
;
938 coding
->source
= BUF_BYTE_ADDRESS (buf
, coding
->src_pos_byte
);
940 else if (STRINGP (coding
->src_object
))
942 coding
->source
= SDATA (coding
->src_object
) + coding
->src_pos_byte
;
946 /* Otherwise, the source is C string and is never relocated
947 automatically. Thus we don't have to update anything. */
952 /* Set coding->source from coding->src_object, and return how many
953 bytes coding->source was changed. */
956 coding_change_source (struct coding_system
*coding
)
958 const unsigned char *orig
= coding
->source
;
959 coding_set_source (coding
);
960 return coding
->source
- orig
;
964 /* Set coding->destination from coding->dst_object. */
967 coding_set_destination (struct coding_system
*coding
)
969 if (BUFFERP (coding
->dst_object
))
971 if (BUFFERP (coding
->src_object
) && coding
->src_pos
< 0)
973 coding
->destination
= BEG_ADDR
+ coding
->dst_pos_byte
- BEG_BYTE
;
974 coding
->dst_bytes
= (GAP_END_ADDR
975 - (coding
->src_bytes
- coding
->consumed
)
976 - coding
->destination
);
980 /* We are sure that coding->dst_pos_byte is before the gap
982 coding
->destination
= (BUF_BEG_ADDR (XBUFFER (coding
->dst_object
))
983 + coding
->dst_pos_byte
- BEG_BYTE
);
984 coding
->dst_bytes
= (BUF_GAP_END_ADDR (XBUFFER (coding
->dst_object
))
985 - coding
->destination
);
990 /* Otherwise, the destination is C string and is never relocated
991 automatically. Thus we don't have to update anything. */
996 /* Set coding->destination from coding->dst_object, and return how
997 many bytes coding->destination was changed. */
1000 coding_change_destination (struct coding_system
*coding
)
1002 const unsigned char *orig
= coding
->destination
;
1003 coding_set_destination (coding
);
1004 return coding
->destination
- orig
;
1009 coding_alloc_by_realloc (struct coding_system
*coding
, ptrdiff_t bytes
)
1012 if (INT_ADD_WRAPV (coding
->dst_bytes
, bytes
, &newbytes
)
1013 || SIZE_MAX
< newbytes
)
1015 coding
->destination
= xrealloc (coding
->destination
, newbytes
);
1016 coding
->dst_bytes
= newbytes
;
1020 coding_alloc_by_making_gap (struct coding_system
*coding
,
1021 ptrdiff_t gap_head_used
, ptrdiff_t bytes
)
1023 if (EQ (coding
->src_object
, coding
->dst_object
))
1025 /* The gap may contain the produced data at the head and not-yet
1026 consumed data at the tail. To preserve those data, we at
1027 first make the gap size to zero, then increase the gap
1029 ptrdiff_t add
= GAP_SIZE
;
1031 GPT
+= gap_head_used
, GPT_BYTE
+= gap_head_used
;
1032 GAP_SIZE
= 0; ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
1034 GAP_SIZE
+= add
; ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
1035 GPT
-= gap_head_used
, GPT_BYTE
-= gap_head_used
;
1038 make_gap_1 (XBUFFER (coding
->dst_object
), bytes
);
1042 static unsigned char *
1043 alloc_destination (struct coding_system
*coding
, ptrdiff_t nbytes
,
1046 ptrdiff_t offset
= dst
- coding
->destination
;
1048 if (BUFFERP (coding
->dst_object
))
1050 struct buffer
*buf
= XBUFFER (coding
->dst_object
);
1052 coding_alloc_by_making_gap (coding
, dst
- BUF_GPT_ADDR (buf
), nbytes
);
1055 coding_alloc_by_realloc (coding
, nbytes
);
1056 coding_set_destination (coding
);
1057 dst
= coding
->destination
+ offset
;
1061 /** Macros for annotations. */
1063 /* An annotation data is stored in the array coding->charbuf in this
1065 [ -LENGTH ANNOTATION_MASK NCHARS ... ]
1066 LENGTH is the number of elements in the annotation.
1067 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK.
1068 NCHARS is the number of characters in the text annotated.
1070 The format of the following elements depend on ANNOTATION_MASK.
1072 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements
1074 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ]
1076 NBYTES is the number of bytes specified in the header part of
1077 old-style emacs-mule encoding, or 0 for the other kind of
1080 METHOD is one of enum composition_method.
1082 Optional COMPOSITION-COMPONENTS are characters and composition
1085 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID
1088 If ANNOTATION_MASK is 0, this annotation is just a space holder to
1089 recover from an invalid annotation, and should be skipped by
1090 produce_annotation. */
1092 /* Maximum length of the header of annotation data. */
1093 #define MAX_ANNOTATION_LENGTH 5
1095 #define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \
1097 *(buf)++ = -(len); \
1098 *(buf)++ = (mask); \
1099 *(buf)++ = (nchars); \
1100 coding->annotated = 1; \
1103 #define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \
1105 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \
1111 #define ADD_CHARSET_DATA(buf, nchars, id) \
1113 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \
1118 /* Bitmasks for coding->eol_seen. */
1120 #define EOL_SEEN_NONE 0
1121 #define EOL_SEEN_LF 1
1122 #define EOL_SEEN_CR 2
1123 #define EOL_SEEN_CRLF 4
1126 /*** 2. Emacs' internal format (emacs-utf-8) ***/
1133 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1134 Return true if a text is encoded in UTF-8. */
1136 #define UTF_8_1_OCTET_P(c) ((c) < 0x80)
1137 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
1138 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
1139 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
1140 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
1141 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
1143 #define UTF_8_BOM_1 0xEF
1144 #define UTF_8_BOM_2 0xBB
1145 #define UTF_8_BOM_3 0xBF
1147 /* Unlike the other detect_coding_XXX, this function counts the number
1148 of characters and checks the EOL format. */
1151 detect_coding_utf_8 (struct coding_system
*coding
,
1152 struct coding_detection_info
*detect_info
)
1154 const unsigned char *src
= coding
->source
, *src_base
;
1155 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1156 bool multibytep
= coding
->src_multibyte
;
1157 ptrdiff_t consumed_chars
= 0;
1159 ptrdiff_t nchars
= coding
->head_ascii
;
1160 int eol_seen
= coding
->eol_seen
;
1162 detect_info
->checked
|= CATEGORY_MASK_UTF_8
;
1163 /* A coding system of this category is always ASCII compatible. */
1166 if (src
== coding
->source
/* BOM should be at the head. */
1167 && src
+ 3 < src_end
/* BOM is 3-byte long. */
1168 && src
[0] == UTF_8_BOM_1
1169 && src
[1] == UTF_8_BOM_2
1170 && src
[2] == UTF_8_BOM_3
)
1179 int c
, c1
, c2
, c3
, c4
;
1183 if (c
< 0 || UTF_8_1_OCTET_P (c
))
1188 if (src
< src_end
&& *src
== '\n')
1190 eol_seen
|= EOL_SEEN_CRLF
;
1195 eol_seen
|= EOL_SEEN_CR
;
1198 eol_seen
|= EOL_SEEN_LF
;
1202 if (c1
< 0 || ! UTF_8_EXTRA_OCTET_P (c1
))
1204 if (UTF_8_2_OCTET_LEADING_P (c
))
1210 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1212 if (UTF_8_3_OCTET_LEADING_P (c
))
1218 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1220 if (UTF_8_4_OCTET_LEADING_P (c
))
1226 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1228 if (UTF_8_5_OCTET_LEADING_P (c
))
1235 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1239 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1241 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1246 /* The first character 0xFFFE doesn't necessarily mean a BOM. */
1247 detect_info
->found
|= CATEGORY_MASK_UTF_8_AUTO
| CATEGORY_MASK_UTF_8_SIG
| CATEGORY_MASK_UTF_8_NOSIG
;
1251 detect_info
->rejected
|= CATEGORY_MASK_UTF_8_SIG
;
1252 if (nchars
< src_end
- coding
->source
)
1253 /* The found characters are less than source bytes, which
1254 means that we found a valid non-ASCII characters. */
1255 detect_info
->found
|= CATEGORY_MASK_UTF_8_AUTO
| CATEGORY_MASK_UTF_8_NOSIG
;
1257 coding
->detected_utf8_bytes
= src_base
- coding
->source
;
1258 coding
->detected_utf8_chars
= nchars
;
1264 decode_coding_utf_8 (struct coding_system
*coding
)
1266 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1267 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1268 const unsigned char *src_base
;
1269 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1270 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
1271 ptrdiff_t consumed_chars
= 0, consumed_chars_base
= 0;
1272 bool multibytep
= coding
->src_multibyte
;
1273 enum utf_bom_type bom
= CODING_UTF_8_BOM (coding
);
1275 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1276 int byte_after_cr
= -1;
1278 if (bom
!= utf_without_bom
)
1284 if (! UTF_8_3_OCTET_LEADING_P (c1
))
1289 if (! UTF_8_EXTRA_OCTET_P (c2
))
1294 if (! UTF_8_EXTRA_OCTET_P (c3
))
1298 if ((c1
!= UTF_8_BOM_1
)
1299 || (c2
!= UTF_8_BOM_2
) || (c3
!= UTF_8_BOM_3
))
1302 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1307 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1311 int c
, c1
, c2
, c3
, c4
, c5
;
1314 consumed_chars_base
= consumed_chars
;
1316 if (charbuf
>= charbuf_end
)
1318 if (byte_after_cr
>= 0)
1323 /* In the simple case, rapidly handle ordinary characters */
1324 if (multibytep
&& ! eol_dos
1325 && charbuf
< charbuf_end
- 6 && src
< src_end
- 6)
1327 while (charbuf
< charbuf_end
- 6 && src
< src_end
- 6)
1357 /* If we handled at least one character, restart the main loop. */
1358 if (src
!= src_base
)
1362 if (byte_after_cr
>= 0)
1363 c1
= byte_after_cr
, byte_after_cr
= -1;
1370 else if (UTF_8_1_OCTET_P (c1
))
1372 if (eol_dos
&& c1
== '\r')
1373 ONE_MORE_BYTE (byte_after_cr
);
1379 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1381 if (UTF_8_2_OCTET_LEADING_P (c1
))
1383 c
= ((c1
& 0x1F) << 6) | (c2
& 0x3F);
1384 /* Reject overlong sequences here and below. Encoders
1385 producing them are incorrect, they can be misleading,
1386 and they mess up read/write invariance. */
1393 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1395 if (UTF_8_3_OCTET_LEADING_P (c1
))
1397 c
= (((c1
& 0xF) << 12)
1398 | ((c2
& 0x3F) << 6) | (c3
& 0x3F));
1400 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
1406 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1408 if (UTF_8_4_OCTET_LEADING_P (c1
))
1410 c
= (((c1
& 0x7) << 18) | ((c2
& 0x3F) << 12)
1411 | ((c3
& 0x3F) << 6) | (c4
& 0x3F));
1418 if (c5
< 0 || ! UTF_8_EXTRA_OCTET_P (c5
))
1420 if (UTF_8_5_OCTET_LEADING_P (c1
))
1422 c
= (((c1
& 0x3) << 24) | ((c2
& 0x3F) << 18)
1423 | ((c3
& 0x3F) << 12) | ((c4
& 0x3F) << 6)
1425 if ((c
> MAX_CHAR
) || (c
< 0x200000))
1440 consumed_chars
= consumed_chars_base
;
1442 *charbuf
++ = ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
1446 coding
->consumed_char
+= consumed_chars_base
;
1447 coding
->consumed
= src_base
- coding
->source
;
1448 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1453 encode_coding_utf_8 (struct coding_system
*coding
)
1455 bool multibytep
= coding
->dst_multibyte
;
1456 int *charbuf
= coding
->charbuf
;
1457 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1458 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1459 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1460 ptrdiff_t produced_chars
= 0;
1463 if (CODING_UTF_8_BOM (coding
) == utf_with_bom
)
1465 ASSURE_DESTINATION (3);
1466 EMIT_THREE_BYTES (UTF_8_BOM_1
, UTF_8_BOM_2
, UTF_8_BOM_3
);
1467 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1472 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
1474 while (charbuf
< charbuf_end
)
1476 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p
, *pend
= str
;
1478 ASSURE_DESTINATION (safe_room
);
1480 if (CHAR_BYTE8_P (c
))
1482 c
= CHAR_TO_BYTE8 (c
);
1487 CHAR_STRING_ADVANCE_NO_UNIFY (c
, pend
);
1488 for (p
= str
; p
< pend
; p
++)
1495 int safe_room
= MAX_MULTIBYTE_LENGTH
;
1497 while (charbuf
< charbuf_end
)
1499 ASSURE_DESTINATION (safe_room
);
1501 if (CHAR_BYTE8_P (c
))
1502 *dst
++ = CHAR_TO_BYTE8 (c
);
1504 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
1506 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
1508 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1509 coding
->produced_char
+= produced_chars
;
1510 coding
->produced
= dst
- coding
->destination
;
1515 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1516 Return true if a text is encoded in one of UTF-16 based coding systems. */
1518 #define UTF_16_HIGH_SURROGATE_P(val) \
1519 (((val) & 0xFC00) == 0xD800)
1521 #define UTF_16_LOW_SURROGATE_P(val) \
1522 (((val) & 0xFC00) == 0xDC00)
1526 detect_coding_utf_16 (struct coding_system
*coding
,
1527 struct coding_detection_info
*detect_info
)
1529 const unsigned char *src
= coding
->source
;
1530 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1531 bool multibytep
= coding
->src_multibyte
;
1534 detect_info
->checked
|= CATEGORY_MASK_UTF_16
;
1535 if (coding
->mode
& CODING_MODE_LAST_BLOCK
1536 && (coding
->src_chars
& 1))
1538 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1542 TWO_MORE_BYTES (c1
, c2
);
1543 if ((c1
== 0xFF) && (c2
== 0xFE))
1545 detect_info
->found
|= (CATEGORY_MASK_UTF_16_LE
1546 | CATEGORY_MASK_UTF_16_AUTO
);
1547 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_BE
1548 | CATEGORY_MASK_UTF_16_BE_NOSIG
1549 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1551 else if ((c1
== 0xFE) && (c2
== 0xFF))
1553 detect_info
->found
|= (CATEGORY_MASK_UTF_16_BE
1554 | CATEGORY_MASK_UTF_16_AUTO
);
1555 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_LE
1556 | CATEGORY_MASK_UTF_16_BE_NOSIG
1557 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1561 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1566 /* We check the dispersion of Eth and Oth bytes where E is even and
1567 O is odd. If both are high, we assume binary data.*/
1568 unsigned char e
[256], o
[256];
1569 unsigned e_num
= 1, o_num
= 1;
1576 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_AUTO
1577 |CATEGORY_MASK_UTF_16_BE
1578 | CATEGORY_MASK_UTF_16_LE
);
1580 while ((detect_info
->rejected
& CATEGORY_MASK_UTF_16
)
1581 != CATEGORY_MASK_UTF_16
)
1583 TWO_MORE_BYTES (c1
, c2
);
1591 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_BE_NOSIG
;
1598 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_LE_NOSIG
;
1609 decode_coding_utf_16 (struct coding_system
*coding
)
1611 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1612 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1613 const unsigned char *src_base
;
1614 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1615 /* We may produces at most 3 chars in one loop. */
1616 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
- 2;
1617 ptrdiff_t consumed_chars
= 0, consumed_chars_base
= 0;
1618 bool multibytep
= coding
->src_multibyte
;
1619 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1620 enum utf_16_endian_type endian
= CODING_UTF_16_ENDIAN (coding
);
1621 int surrogate
= CODING_UTF_16_SURROGATE (coding
);
1623 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1624 int byte_after_cr1
= -1, byte_after_cr2
= -1;
1626 if (bom
== utf_with_bom
)
1635 if (endian
== utf_16_big_endian
1636 ? c
!= 0xFEFF : c
!= 0xFFFE)
1638 /* The first two bytes are not BOM. Treat them as bytes
1639 for a normal character. */
1642 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1644 else if (bom
== utf_detect_bom
)
1646 /* We have already tried to detect BOM and failed in
1648 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1656 consumed_chars_base
= consumed_chars
;
1658 if (charbuf
>= charbuf_end
)
1660 if (byte_after_cr1
>= 0)
1665 if (byte_after_cr1
>= 0)
1666 c1
= byte_after_cr1
, byte_after_cr1
= -1;
1674 if (byte_after_cr2
>= 0)
1675 c2
= byte_after_cr2
, byte_after_cr2
= -1;
1680 *charbuf
++ = ASCII_CHAR_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
1684 c
= (endian
== utf_16_big_endian
1685 ? ((c1
<< 8) | c2
) : ((c2
<< 8) | c1
));
1689 if (! UTF_16_LOW_SURROGATE_P (c
))
1691 if (endian
== utf_16_big_endian
)
1692 c1
= surrogate
>> 8, c2
= surrogate
& 0xFF;
1694 c1
= surrogate
& 0xFF, c2
= surrogate
>> 8;
1697 if (UTF_16_HIGH_SURROGATE_P (c
))
1698 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1704 c
= ((surrogate
- 0xD800) << 10) | (c
- 0xDC00);
1705 CODING_UTF_16_SURROGATE (coding
) = surrogate
= 0;
1706 *charbuf
++ = 0x10000 + c
;
1711 if (UTF_16_HIGH_SURROGATE_P (c
))
1712 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1715 if (eol_dos
&& c
== '\r')
1717 ONE_MORE_BYTE (byte_after_cr1
);
1718 ONE_MORE_BYTE (byte_after_cr2
);
1726 coding
->consumed_char
+= consumed_chars_base
;
1727 coding
->consumed
= src_base
- coding
->source
;
1728 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1732 encode_coding_utf_16 (struct coding_system
*coding
)
1734 bool multibytep
= coding
->dst_multibyte
;
1735 int *charbuf
= coding
->charbuf
;
1736 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1737 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1738 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1740 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1741 bool big_endian
= CODING_UTF_16_ENDIAN (coding
) == utf_16_big_endian
;
1742 ptrdiff_t produced_chars
= 0;
1745 if (bom
!= utf_without_bom
)
1747 ASSURE_DESTINATION (safe_room
);
1749 EMIT_TWO_BYTES (0xFE, 0xFF);
1751 EMIT_TWO_BYTES (0xFF, 0xFE);
1752 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1755 while (charbuf
< charbuf_end
)
1757 ASSURE_DESTINATION (safe_room
);
1759 if (c
> MAX_UNICODE_CHAR
)
1760 c
= coding
->default_char
;
1765 EMIT_TWO_BYTES (c
>> 8, c
& 0xFF);
1767 EMIT_TWO_BYTES (c
& 0xFF, c
>> 8);
1774 c1
= (c
>> 10) + 0xD800;
1775 c2
= (c
& 0x3FF) + 0xDC00;
1777 EMIT_FOUR_BYTES (c1
>> 8, c1
& 0xFF, c2
>> 8, c2
& 0xFF);
1779 EMIT_FOUR_BYTES (c1
& 0xFF, c1
>> 8, c2
& 0xFF, c2
>> 8);
1782 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1783 coding
->produced
= dst
- coding
->destination
;
1784 coding
->produced_char
+= produced_chars
;
1789 /*** 6. Old Emacs' internal format (emacs-mule) ***/
1791 /* Emacs' internal format for representation of multiple character
1792 sets is a kind of multi-byte encoding, i.e. characters are
1793 represented by variable-length sequences of one-byte codes.
1795 ASCII characters and control characters (e.g. `tab', `newline') are
1796 represented by one-byte sequences which are their ASCII codes, in
1797 the range 0x00 through 0x7F.
1799 8-bit characters of the range 0x80..0x9F are represented by
1800 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
1803 8-bit characters of the range 0xA0..0xFF are represented by
1804 one-byte sequences which are their 8-bit code.
1806 The other characters are represented by a sequence of `base
1807 leading-code', optional `extended leading-code', and one or two
1808 `position-code's. The length of the sequence is determined by the
1809 base leading-code. Leading-code takes the range 0x81 through 0x9D,
1810 whereas extended leading-code and position-code take the range 0xA0
1811 through 0xFF. See `charset.h' for more details about leading-code
1814 --- CODE RANGE of Emacs' internal format ---
1818 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
1819 eight-bit-graphic 0xA0..0xBF
1820 ELSE 0x81..0x9D + [0xA0..0xFF]+
1821 ---------------------------------------------
1823 As this is the internal character representation, the format is
1824 usually not used externally (i.e. in a file or in a data sent to a
1825 process). But, it is possible to have a text externally in this
1826 format (i.e. by encoding by the coding system `emacs-mule').
1828 In that case, a sequence of one-byte codes has a slightly different
1831 At first, all characters in eight-bit-control are represented by
1832 one-byte sequences which are their 8-bit code.
1834 Next, character composition data are represented by the byte
1835 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
1837 METHOD is 0xF2 plus one of composition method (enum
1838 composition_method),
1840 BYTES is 0xA0 plus a byte length of this composition data,
1842 CHARS is 0xA0 plus a number of characters composed by this
1845 COMPONENTs are characters of multibyte form or composition
1846 rules encoded by two-byte of ASCII codes.
1848 In addition, for backward compatibility, the following formats are
1849 also recognized as composition data on decoding.
1852 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
1855 MSEQ is a multibyte form but in these special format:
1856 ASCII: 0xA0 ASCII_CODE+0x80,
1857 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
1858 RULE is a one byte code of the range 0xA0..0xF0 that
1859 represents a composition rule.
1862 char emacs_mule_bytes
[256];
1865 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1866 Return true if a text is encoded in 'emacs-mule'. */
1869 detect_coding_emacs_mule (struct coding_system
*coding
,
1870 struct coding_detection_info
*detect_info
)
1872 const unsigned char *src
= coding
->source
, *src_base
;
1873 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1874 bool multibytep
= coding
->src_multibyte
;
1875 ptrdiff_t consumed_chars
= 0;
1879 detect_info
->checked
|= CATEGORY_MASK_EMACS_MULE
;
1880 /* A coding system of this category is always ASCII compatible. */
1881 src
+= coding
->head_ascii
;
1891 /* Perhaps the start of composite character. We simply skip
1892 it because analyzing it is too heavy for detecting. But,
1893 at least, we check that the composite character
1894 constitutes of more than 4 bytes. */
1895 const unsigned char *src_start
;
1905 if (src
- src_start
<= 4)
1907 found
= CATEGORY_MASK_EMACS_MULE
;
1915 && (c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
))
1920 int more_bytes
= emacs_mule_bytes
[c
] - 1;
1922 while (more_bytes
> 0)
1927 src
--; /* Unread the last byte. */
1932 if (more_bytes
!= 0)
1934 found
= CATEGORY_MASK_EMACS_MULE
;
1937 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
1941 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1943 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
1946 detect_info
->found
|= found
;
1951 /* Parse emacs-mule multibyte sequence at SRC and return the decoded
1952 character. If CMP_STATUS indicates that we must expect MSEQ or
1953 RULE described above, decode it and return the negative value of
1954 the decoded character or rule. If an invalid byte is found, return
1955 -1. If SRC is too short, return -2. */
1958 emacs_mule_char (struct coding_system
*coding
, const unsigned char *src
,
1959 int *nbytes
, int *nchars
, int *id
,
1960 struct composition_status
*cmp_status
)
1962 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1963 const unsigned char *src_base
= src
;
1964 bool multibytep
= coding
->src_multibyte
;
1968 ptrdiff_t consumed_chars
= 0;
1969 bool mseq_found
= 0;
1975 charset_ID
= emacs_mule_charset
[0];
1981 if (cmp_status
->state
!= COMPOSING_NO
1982 && cmp_status
->old_form
)
1984 if (cmp_status
->state
== COMPOSING_CHAR
)
1999 *nbytes
= src
- src_base
;
2000 *nchars
= consumed_chars
;
2008 switch (emacs_mule_bytes
[c
])
2011 if ((charset_ID
= emacs_mule_charset
[c
]) < 0)
2020 if (c
== EMACS_MULE_LEADING_CODE_PRIVATE_11
2021 || c
== EMACS_MULE_LEADING_CODE_PRIVATE_12
)
2024 if (c
< 0xA0 || (charset_ID
= emacs_mule_charset
[c
]) < 0)
2033 if ((charset_ID
= emacs_mule_charset
[c
]) < 0)
2038 code
= (c
& 0x7F) << 8;
2048 if (c
< 0 || (charset_ID
= emacs_mule_charset
[c
]) < 0)
2053 code
= (c
& 0x7F) << 8;
2062 charset_ID
= ASCII_CHAR_P (code
) ? charset_ascii
: charset_eight_bit
;
2068 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
2069 CHARSET_FROM_ID (charset_ID
), code
, c
);
2073 *nbytes
= src
- src_base
;
2074 *nchars
= consumed_chars
;
2077 return (mseq_found
? -c
: c
);
2087 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
2089 /* Handle these composition sequence ('|': the end of header elements,
2090 BYTES and CHARS >= 0xA0):
2092 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ...
2093 (2) altchar composition: 0x80 0xF4 BYTES CHARS | ALT ... ALT CHAR ...
2094 (3) alt&rule composition: 0x80 0xF5 BYTES CHARS | ALT RULE ... ALT CHAR ...
2098 (4) relative composition: 0x80 | MSEQ ... MSEQ
2099 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ
2101 When the starter 0x80 and the following header elements are found,
2102 this annotation header is produced.
2104 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ]
2106 NCHARS is CHARS - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2107 NBYTES is BYTES - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2109 Then, upon reading the following elements, these codes are produced
2110 until the composition end is found:
2113 (2) ALT ... ALT CHAR ... CHAR
2114 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR
2116 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
2118 When the composition end is found, LENGTH and NCHARS in the
2119 annotation header is updated as below:
2121 (1) LENGTH: unchanged, NCHARS: unchanged
2122 (2) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2123 (3) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2124 (4) LENGTH: unchanged, NCHARS: number of CHARs
2125 (5) LENGTH: unchanged, NCHARS: number of CHARs
2127 If an error is found while composing, the annotation header is
2128 changed to the original composition header (plus filler -1s) as
2131 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ]
2132 (5) [ 0x80 0xFF -1 -1- -1 ]
2134 and the sequence [ -2 DECODED-RULE ] is changed to the original
2135 byte sequence as below:
2136 o the original byte sequence is B: [ B -1 ]
2137 o the original byte sequence is B1 B2: [ B1 B2 ]
2139 Most of the routines are implemented by macros because many
2140 variables and labels in the caller decode_coding_emacs_mule must be
2141 accessible, and they are usually called just once (thus doesn't
2142 increase the size of compiled object). */
2144 /* Decode a composition rule represented by C as a component of
2145 composition sequence of Emacs 20 style. Set RULE to the decoded
2148 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \
2153 if (c < 0 || c >= 81) \
2154 goto invalid_code; \
2155 gref = c / 9, nref = c % 9; \
2156 if (gref == 4) gref = 10; \
2157 if (nref == 4) nref = 10; \
2158 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2162 /* Decode a composition rule represented by C and the following byte
2163 at SRC as a component of composition sequence of Emacs 21 style.
2164 Set RULE to the decoded rule. */
2166 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \
2171 if (gref < 0 || gref >= 81) \
2172 goto invalid_code; \
2173 ONE_MORE_BYTE (c); \
2175 if (nref < 0 || nref >= 81) \
2176 goto invalid_code; \
2177 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2181 /* Start of Emacs 21 style format. The first three bytes at SRC are
2182 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is the
2183 byte length of this composition information, CHARS is the number of
2184 characters composed by this composition. */
2186 #define DECODE_EMACS_MULE_21_COMPOSITION() \
2188 enum composition_method method = c - 0xF2; \
2189 int nbytes, nchars; \
2191 ONE_MORE_BYTE (c); \
2193 goto invalid_code; \
2194 nbytes = c - 0xA0; \
2195 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \
2196 goto invalid_code; \
2197 ONE_MORE_BYTE (c); \
2198 nchars = c - 0xA0; \
2199 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \
2200 goto invalid_code; \
2201 cmp_status->old_form = 0; \
2202 cmp_status->method = method; \
2203 if (method == COMPOSITION_RELATIVE) \
2204 cmp_status->state = COMPOSING_CHAR; \
2206 cmp_status->state = COMPOSING_COMPONENT_CHAR; \
2207 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2208 cmp_status->nchars = nchars; \
2209 cmp_status->ncomps = nbytes - 4; \
2210 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \
2214 /* Start of Emacs 20 style format for relative composition. */
2216 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \
2218 cmp_status->old_form = 1; \
2219 cmp_status->method = COMPOSITION_RELATIVE; \
2220 cmp_status->state = COMPOSING_CHAR; \
2221 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2222 cmp_status->nchars = cmp_status->ncomps = 0; \
2223 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2227 /* Start of Emacs 20 style format for rule-base composition. */
2229 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \
2231 cmp_status->old_form = 1; \
2232 cmp_status->method = COMPOSITION_WITH_RULE; \
2233 cmp_status->state = COMPOSING_CHAR; \
2234 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2235 cmp_status->nchars = cmp_status->ncomps = 0; \
2236 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2240 #define DECODE_EMACS_MULE_COMPOSITION_START() \
2242 const unsigned char *current_src = src; \
2244 ONE_MORE_BYTE (c); \
2246 goto invalid_code; \
2247 if (c - 0xF2 >= COMPOSITION_RELATIVE \
2248 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \
2249 DECODE_EMACS_MULE_21_COMPOSITION (); \
2250 else if (c < 0xA0) \
2251 goto invalid_code; \
2252 else if (c < 0xC0) \
2254 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \
2255 /* Re-read C as a composition component. */ \
2256 src = current_src; \
2258 else if (c == 0xFF) \
2259 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \
2261 goto invalid_code; \
2264 #define EMACS_MULE_COMPOSITION_END() \
2266 int idx = - cmp_status->length; \
2268 if (cmp_status->old_form) \
2269 charbuf[idx + 2] = cmp_status->nchars; \
2270 else if (cmp_status->method > COMPOSITION_RELATIVE) \
2271 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \
2272 cmp_status->state = COMPOSING_NO; \
2277 emacs_mule_finish_composition (int *charbuf
,
2278 struct composition_status
*cmp_status
)
2280 int idx
= - cmp_status
->length
;
2283 if (cmp_status
->old_form
&& cmp_status
->nchars
> 0)
2285 charbuf
[idx
+ 2] = cmp_status
->nchars
;
2287 if (cmp_status
->method
== COMPOSITION_WITH_RULE
2288 && cmp_status
->state
== COMPOSING_CHAR
)
2290 /* The last rule was invalid. */
2291 int rule
= charbuf
[-1] + 0xA0;
2293 charbuf
[-2] = BYTE8_TO_CHAR (rule
);
2300 charbuf
[idx
++] = BYTE8_TO_CHAR (0x80);
2302 if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2304 charbuf
[idx
++] = BYTE8_TO_CHAR (0xFF);
2305 charbuf
[idx
++] = -3;
2311 int nchars
= charbuf
[idx
+ 1] + 0xA0;
2312 int nbytes
= charbuf
[idx
+ 2] + 0xA0;
2314 charbuf
[idx
++] = BYTE8_TO_CHAR (0xF2 + cmp_status
->method
);
2315 charbuf
[idx
++] = BYTE8_TO_CHAR (nbytes
);
2316 charbuf
[idx
++] = BYTE8_TO_CHAR (nchars
);
2317 charbuf
[idx
++] = -1;
2321 cmp_status
->state
= COMPOSING_NO
;
2325 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \
2327 if (cmp_status->state != COMPOSING_NO) \
2328 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \
2333 decode_coding_emacs_mule (struct coding_system
*coding
)
2335 const unsigned char *src
= coding
->source
+ coding
->consumed
;
2336 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2337 const unsigned char *src_base
;
2338 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
2339 /* We may produce two annotations (charset and composition) in one
2340 loop and one more charset annotation at the end. */
2342 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3)
2343 /* We can produce up to 2 characters in a loop. */
2345 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
2346 bool multibytep
= coding
->src_multibyte
;
2347 ptrdiff_t char_offset
= coding
->produced_char
;
2348 ptrdiff_t last_offset
= char_offset
;
2349 int last_id
= charset_ascii
;
2351 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
2352 int byte_after_cr
= -1;
2353 struct composition_status
*cmp_status
= &coding
->spec
.emacs_mule
.cmp_status
;
2355 if (cmp_status
->state
!= COMPOSING_NO
)
2359 if (charbuf_end
- charbuf
< cmp_status
->length
)
2361 for (i
= 0; i
< cmp_status
->length
; i
++)
2362 *charbuf
++ = cmp_status
->carryover
[i
];
2363 coding
->annotated
= 1;
2368 int c
, id
IF_LINT (= 0);
2371 consumed_chars_base
= consumed_chars
;
2373 if (charbuf
>= charbuf_end
)
2375 if (byte_after_cr
>= 0)
2380 if (byte_after_cr
>= 0)
2381 c
= byte_after_cr
, byte_after_cr
= -1;
2385 if (c
< 0 || c
== 0x80)
2387 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2394 DECODE_EMACS_MULE_COMPOSITION_START ();
2400 if (eol_dos
&& c
== '\r')
2401 ONE_MORE_BYTE (byte_after_cr
);
2403 if (cmp_status
->state
!= COMPOSING_NO
)
2405 if (cmp_status
->old_form
)
2406 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2407 else if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2408 cmp_status
->ncomps
--;
2413 int nchars
IF_LINT (= 0), nbytes
IF_LINT (= 0);
2414 /* emacs_mule_char can load a charset map from a file, which
2415 allocates a large structure and might cause buffer text
2416 to be relocated as result. Thus, we need to remember the
2417 original pointer to buffer text, and fix up all related
2418 pointers after the call. */
2419 const unsigned char *orig
= coding
->source
;
2422 c
= emacs_mule_char (coding
, src_base
, &nbytes
, &nchars
, &id
,
2424 offset
= coding
->source
- orig
;
2438 src
= src_base
+ nbytes
;
2439 consumed_chars
= consumed_chars_base
+ nchars
;
2440 if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2441 cmp_status
->ncomps
-= nchars
;
2444 /* Now if C >= 0, we found a normally encoded character, if C <
2445 0, we found an old-style composition component character or
2448 if (cmp_status
->state
== COMPOSING_NO
)
2452 if (last_id
!= charset_ascii
)
2453 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
,
2456 last_offset
= char_offset
;
2461 else if (cmp_status
->state
== COMPOSING_CHAR
)
2463 if (cmp_status
->old_form
)
2467 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2474 cmp_status
->nchars
++;
2475 cmp_status
->length
++;
2476 if (cmp_status
->nchars
== MAX_COMPOSITION_COMPONENTS
)
2477 EMACS_MULE_COMPOSITION_END ();
2478 else if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2479 cmp_status
->state
= COMPOSING_RULE
;
2485 cmp_status
->length
++;
2486 cmp_status
->nchars
--;
2487 if (cmp_status
->nchars
== 0)
2488 EMACS_MULE_COMPOSITION_END ();
2491 else if (cmp_status
->state
== COMPOSING_RULE
)
2497 EMACS_MULE_COMPOSITION_END ();
2504 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c
, rule
);
2509 cmp_status
->length
+= 2;
2510 cmp_status
->state
= COMPOSING_CHAR
;
2513 else if (cmp_status
->state
== COMPOSING_COMPONENT_CHAR
)
2516 cmp_status
->length
++;
2517 if (cmp_status
->ncomps
== 0)
2518 cmp_status
->state
= COMPOSING_CHAR
;
2519 else if (cmp_status
->ncomps
> 0)
2521 if (cmp_status
->method
== COMPOSITION_WITH_RULE_ALTCHARS
)
2522 cmp_status
->state
= COMPOSING_COMPONENT_RULE
;
2525 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2527 else /* COMPOSING_COMPONENT_RULE */
2531 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c
, rule
);
2536 cmp_status
->length
+= 2;
2537 cmp_status
->ncomps
--;
2538 if (cmp_status
->ncomps
> 0)
2539 cmp_status
->state
= COMPOSING_COMPONENT_CHAR
;
2541 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2546 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2548 consumed_chars
= consumed_chars_base
;
2550 *charbuf
++ = ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
2555 if (cmp_status
->state
!= COMPOSING_NO
)
2557 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
2558 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2563 charbuf
-= cmp_status
->length
;
2564 for (i
= 0; i
< cmp_status
->length
; i
++)
2565 cmp_status
->carryover
[i
] = charbuf
[i
];
2568 if (last_id
!= charset_ascii
)
2569 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
2570 coding
->consumed_char
+= consumed_chars_base
;
2571 coding
->consumed
= src_base
- coding
->source
;
2572 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
2576 #define EMACS_MULE_LEADING_CODES(id, codes) \
2579 codes[0] = id, codes[1] = 0; \
2580 else if (id < 0xE0) \
2581 codes[0] = 0x9A, codes[1] = id; \
2582 else if (id < 0xF0) \
2583 codes[0] = 0x9B, codes[1] = id; \
2584 else if (id < 0xF5) \
2585 codes[0] = 0x9C, codes[1] = id; \
2587 codes[0] = 0x9D, codes[1] = id; \
2592 encode_coding_emacs_mule (struct coding_system
*coding
)
2594 bool multibytep
= coding
->dst_multibyte
;
2595 int *charbuf
= coding
->charbuf
;
2596 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
2597 unsigned char *dst
= coding
->destination
+ coding
->produced
;
2598 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
2600 ptrdiff_t produced_chars
= 0;
2601 Lisp_Object attrs
, charset_list
;
2603 int preferred_charset_id
= -1;
2605 CODING_GET_INFO (coding
, attrs
, charset_list
);
2606 if (! EQ (charset_list
, Vemacs_mule_charset_list
))
2608 charset_list
= Vemacs_mule_charset_list
;
2609 ASET (attrs
, coding_attr_charset_list
, charset_list
);
2612 while (charbuf
< charbuf_end
)
2614 ASSURE_DESTINATION (safe_room
);
2619 /* Handle an annotation. */
2622 case CODING_ANNOTATE_COMPOSITION_MASK
:
2623 /* Not yet implemented. */
2625 case CODING_ANNOTATE_CHARSET_MASK
:
2626 preferred_charset_id
= charbuf
[3];
2627 if (preferred_charset_id
>= 0
2628 && NILP (Fmemq (make_number (preferred_charset_id
),
2630 preferred_charset_id
= -1;
2639 if (ASCII_CHAR_P (c
))
2640 EMIT_ONE_ASCII_BYTE (c
);
2641 else if (CHAR_BYTE8_P (c
))
2643 c
= CHAR_TO_BYTE8 (c
);
2648 struct charset
*charset
;
2652 unsigned char leading_codes
[2];
2654 if (preferred_charset_id
>= 0)
2658 charset
= CHARSET_FROM_ID (preferred_charset_id
);
2659 CODING_CHAR_CHARSET_P (coding
, dst
, dst_end
, c
, charset
, result
);
2661 code
= ENCODE_CHAR (charset
, c
);
2663 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2667 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2671 c
= coding
->default_char
;
2672 if (ASCII_CHAR_P (c
))
2674 EMIT_ONE_ASCII_BYTE (c
);
2677 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2680 dimension
= CHARSET_DIMENSION (charset
);
2681 emacs_mule_id
= CHARSET_EMACS_MULE_ID (charset
);
2682 EMACS_MULE_LEADING_CODES (emacs_mule_id
, leading_codes
);
2683 EMIT_ONE_BYTE (leading_codes
[0]);
2684 if (leading_codes
[1])
2685 EMIT_ONE_BYTE (leading_codes
[1]);
2687 EMIT_ONE_BYTE (code
| 0x80);
2691 EMIT_ONE_BYTE (code
>> 8);
2692 EMIT_ONE_BYTE (code
& 0xFF);
2696 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
2697 coding
->produced_char
+= produced_chars
;
2698 coding
->produced
= dst
- coding
->destination
;
2703 /*** 7. ISO2022 handlers ***/
2705 /* The following note describes the coding system ISO2022 briefly.
2706 Since the intention of this note is to help understand the
2707 functions in this file, some parts are NOT ACCURATE or are OVERLY
2708 SIMPLIFIED. For thorough understanding, please refer to the
2709 original document of ISO2022. This is equivalent to the standard
2710 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
2712 ISO2022 provides many mechanisms to encode several character sets
2713 in 7-bit and 8-bit environments. For 7-bit environments, all text
2714 is encoded using bytes less than 128. This may make the encoded
2715 text a little bit longer, but the text passes more easily through
2716 several types of gateway, some of which strip off the MSB (Most
2719 There are two kinds of character sets: control character sets and
2720 graphic character sets. The former contain control characters such
2721 as `newline' and `escape' to provide control functions (control
2722 functions are also provided by escape sequences). The latter
2723 contain graphic characters such as 'A' and '-'. Emacs recognizes
2724 two control character sets and many graphic character sets.
2726 Graphic character sets are classified into one of the following
2727 four classes, according to the number of bytes (DIMENSION) and
2728 number of characters in one dimension (CHARS) of the set:
2729 - DIMENSION1_CHARS94
2730 - DIMENSION1_CHARS96
2731 - DIMENSION2_CHARS94
2732 - DIMENSION2_CHARS96
2734 In addition, each character set is assigned an identification tag,
2735 unique for each set, called the "final character" (denoted as <F>
2736 hereafter). The <F> of each character set is decided by ECMA(*)
2737 when it is registered in ISO. The code range of <F> is 0x30..0x7F
2738 (0x30..0x3F are for private use only).
2740 Note (*): ECMA = European Computer Manufacturers Association
2742 Here are examples of graphic character sets [NAME(<F>)]:
2743 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
2744 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
2745 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
2746 o DIMENSION2_CHARS96 -- none for the moment
2748 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
2749 C0 [0x00..0x1F] -- control character plane 0
2750 GL [0x20..0x7F] -- graphic character plane 0
2751 C1 [0x80..0x9F] -- control character plane 1
2752 GR [0xA0..0xFF] -- graphic character plane 1
2754 A control character set is directly designated and invoked to C0 or
2755 C1 by an escape sequence. The most common case is that:
2756 - ISO646's control character set is designated/invoked to C0, and
2757 - ISO6429's control character set is designated/invoked to C1,
2758 and usually these designations/invocations are omitted in encoded
2759 text. In a 7-bit environment, only C0 can be used, and a control
2760 character for C1 is encoded by an appropriate escape sequence to
2761 fit into the environment. All control characters for C1 are
2762 defined to have corresponding escape sequences.
2764 A graphic character set is at first designated to one of four
2765 graphic registers (G0 through G3), then these graphic registers are
2766 invoked to GL or GR. These designations and invocations can be
2767 done independently. The most common case is that G0 is invoked to
2768 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
2769 these invocations and designations are omitted in encoded text.
2770 In a 7-bit environment, only GL can be used.
2772 When a graphic character set of CHARS94 is invoked to GL, codes
2773 0x20 and 0x7F of the GL area work as control characters SPACE and
2774 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
2777 There are two ways of invocation: locking-shift and single-shift.
2778 With locking-shift, the invocation lasts until the next different
2779 invocation, whereas with single-shift, the invocation affects the
2780 following character only and doesn't affect the locking-shift
2781 state. Invocations are done by the following control characters or
2784 ----------------------------------------------------------------------
2785 abbrev function cntrl escape seq description
2786 ----------------------------------------------------------------------
2787 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
2788 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
2789 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
2790 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
2791 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
2792 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
2793 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
2794 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
2795 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
2796 ----------------------------------------------------------------------
2797 (*) These are not used by any known coding system.
2799 Control characters for these functions are defined by macros
2800 ISO_CODE_XXX in `coding.h'.
2802 Designations are done by the following escape sequences:
2803 ----------------------------------------------------------------------
2804 escape sequence description
2805 ----------------------------------------------------------------------
2806 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
2807 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
2808 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
2809 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
2810 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
2811 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
2812 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
2813 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
2814 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
2815 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
2816 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
2817 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
2818 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
2819 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
2820 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
2821 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
2822 ----------------------------------------------------------------------
2824 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
2825 of dimension 1, chars 94, and final character <F>, etc...
2827 Note (*): Although these designations are not allowed in ISO2022,
2828 Emacs accepts them on decoding, and produces them on encoding
2829 CHARS96 character sets in a coding system which is characterized as
2830 7-bit environment, non-locking-shift, and non-single-shift.
2832 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
2833 '(' must be omitted. We refer to this as "short-form" hereafter.
2835 Now you may notice that there are a lot of ways of encoding the
2836 same multilingual text in ISO2022. Actually, there exist many
2837 coding systems such as Compound Text (used in X11's inter client
2838 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
2839 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
2840 localized platforms), and all of these are variants of ISO2022.
2842 In addition to the above, Emacs handles two more kinds of escape
2843 sequences: ISO6429's direction specification and Emacs' private
2844 sequence for specifying character composition.
2846 ISO6429's direction specification takes the following form:
2847 o CSI ']' -- end of the current direction
2848 o CSI '0' ']' -- end of the current direction
2849 o CSI '1' ']' -- start of left-to-right text
2850 o CSI '2' ']' -- start of right-to-left text
2851 The control character CSI (0x9B: control sequence introducer) is
2852 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
2854 Character composition specification takes the following form:
2855 o ESC '0' -- start relative composition
2856 o ESC '1' -- end composition
2857 o ESC '2' -- start rule-base composition (*)
2858 o ESC '3' -- start relative composition with alternate chars (**)
2859 o ESC '4' -- start rule-base composition with alternate chars (**)
2860 Since these are not standard escape sequences of any ISO standard,
2861 the use of them with these meanings is restricted to Emacs only.
2863 (*) This form is used only in Emacs 20.7 and older versions,
2864 but newer versions can safely decode it.
2865 (**) This form is used only in Emacs 21.1 and newer versions,
2866 and older versions can't decode it.
2868 Here's a list of example usages of these composition escape
2869 sequences (categorized by `enum composition_method').
2871 COMPOSITION_RELATIVE:
2872 ESC 0 CHAR [ CHAR ] ESC 1
2873 COMPOSITION_WITH_RULE:
2874 ESC 2 CHAR [ RULE CHAR ] ESC 1
2875 COMPOSITION_WITH_ALTCHARS:
2876 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
2877 COMPOSITION_WITH_RULE_ALTCHARS:
2878 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
2880 static enum iso_code_class_type iso_code_class
[256];
2882 #define SAFE_CHARSET_P(coding, id) \
2883 ((id) <= (coding)->max_charset_id \
2884 && (coding)->safe_charsets[id] != 255)
2887 setup_iso_safe_charsets (Lisp_Object attrs
)
2889 Lisp_Object charset_list
, safe_charsets
;
2890 Lisp_Object request
;
2891 Lisp_Object reg_usage
;
2893 EMACS_INT reg94
, reg96
;
2894 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
2897 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
2898 if ((flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
2899 && ! EQ (charset_list
, Viso_2022_charset_list
))
2901 charset_list
= Viso_2022_charset_list
;
2902 ASET (attrs
, coding_attr_charset_list
, charset_list
);
2903 ASET (attrs
, coding_attr_safe_charsets
, Qnil
);
2906 if (STRINGP (AREF (attrs
, coding_attr_safe_charsets
)))
2910 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
2912 int id
= XINT (XCAR (tail
));
2913 if (max_charset_id
< id
)
2914 max_charset_id
= id
;
2917 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
2918 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
2919 request
= AREF (attrs
, coding_attr_iso_request
);
2920 reg_usage
= AREF (attrs
, coding_attr_iso_usage
);
2921 reg94
= XINT (XCAR (reg_usage
));
2922 reg96
= XINT (XCDR (reg_usage
));
2924 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
2928 struct charset
*charset
;
2931 charset
= CHARSET_FROM_ID (XINT (id
));
2932 reg
= Fcdr (Fassq (id
, request
));
2934 SSET (safe_charsets
, XINT (id
), XINT (reg
));
2935 else if (charset
->iso_chars_96
)
2938 SSET (safe_charsets
, XINT (id
), reg96
);
2943 SSET (safe_charsets
, XINT (id
), reg94
);
2946 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
2950 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2951 Return true if a text is encoded in one of ISO-2022 based coding
2955 detect_coding_iso_2022 (struct coding_system
*coding
,
2956 struct coding_detection_info
*detect_info
)
2958 const unsigned char *src
= coding
->source
, *src_base
= src
;
2959 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2960 bool multibytep
= coding
->src_multibyte
;
2961 bool single_shifting
= 0;
2964 ptrdiff_t consumed_chars
= 0;
2968 int composition_count
= -1;
2970 detect_info
->checked
|= CATEGORY_MASK_ISO
;
2972 for (i
= coding_category_iso_7
; i
<= coding_category_iso_8_else
; i
++)
2974 struct coding_system
*this = &(coding_categories
[i
]);
2975 Lisp_Object attrs
, val
;
2979 attrs
= CODING_ID_ATTRS (this->id
);
2980 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT
2981 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Viso_2022_charset_list
))
2982 setup_iso_safe_charsets (attrs
);
2983 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
2984 this->max_charset_id
= SCHARS (val
) - 1;
2985 this->safe_charsets
= SDATA (val
);
2988 /* A coding system of this category is always ASCII compatible. */
2989 src
+= coding
->head_ascii
;
2991 while (rejected
!= CATEGORY_MASK_ISO
)
2998 if (inhibit_iso_escape_detection
)
3000 single_shifting
= 0;
3002 if (c
== 'N' || c
== 'O')
3004 /* ESC <Fe> for SS2 or SS3. */
3005 single_shifting
= 1;
3006 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3010 /* End of composition. */
3011 if (composition_count
< 0
3012 || composition_count
> MAX_COMPOSITION_COMPONENTS
)
3015 composition_count
= -1;
3016 found
|= CATEGORY_MASK_ISO
;
3018 else if (c
>= '0' && c
<= '4')
3020 /* ESC <Fp> for start/end composition. */
3021 composition_count
= 0;
3025 if (c
>= '(' && c
<= '/')
3027 /* Designation sequence for a charset of dimension 1. */
3029 if (c1
< ' ' || c1
>= 0x80
3030 || (id
= iso_charset_table
[0][c
>= ','][c1
]) < 0)
3032 /* Invalid designation sequence. Just ignore. */
3034 rejected
|= (CATEGORY_MASK_ISO_7BIT
3035 | CATEGORY_MASK_ISO_7_ELSE
);
3041 /* Designation sequence for a charset of dimension 2. */
3043 if (c
>= '@' && c
<= 'B')
3044 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
3045 id
= iso_charset_table
[1][0][c
];
3046 else if (c
>= '(' && c
<= '/')
3049 if (c1
< ' ' || c1
>= 0x80
3050 || (id
= iso_charset_table
[1][c
>= ','][c1
]) < 0)
3052 /* Invalid designation sequence. Just ignore. */
3054 rejected
|= (CATEGORY_MASK_ISO_7BIT
3055 | CATEGORY_MASK_ISO_7_ELSE
);
3061 /* Invalid designation sequence. Just ignore it. */
3063 rejected
|= (CATEGORY_MASK_ISO_7BIT
3064 | CATEGORY_MASK_ISO_7_ELSE
);
3070 /* Invalid escape sequence. Just ignore it. */
3072 rejected
|= (CATEGORY_MASK_ISO_7BIT
3073 | CATEGORY_MASK_ISO_7_ELSE
);
3077 /* We found a valid designation sequence for CHARSET. */
3078 rejected
|= CATEGORY_MASK_ISO_8BIT
;
3079 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7
],
3081 found
|= CATEGORY_MASK_ISO_7
;
3083 rejected
|= CATEGORY_MASK_ISO_7
;
3084 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_tight
],
3086 found
|= CATEGORY_MASK_ISO_7_TIGHT
;
3088 rejected
|= CATEGORY_MASK_ISO_7_TIGHT
;
3089 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_else
],
3091 found
|= CATEGORY_MASK_ISO_7_ELSE
;
3093 rejected
|= CATEGORY_MASK_ISO_7_ELSE
;
3094 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_8_else
],
3096 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3098 rejected
|= CATEGORY_MASK_ISO_8_ELSE
;
3104 /* Locking shift out/in. */
3105 if (inhibit_iso_escape_detection
)
3107 single_shifting
= 0;
3108 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3112 /* Control sequence introducer. */
3113 single_shifting
= 0;
3114 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3115 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3116 goto check_extra_latin
;
3121 if (inhibit_iso_escape_detection
)
3123 single_shifting
= 0;
3124 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3125 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3126 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3128 found
|= CATEGORY_MASK_ISO_8_1
;
3129 single_shifting
= 1;
3131 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_2
])
3132 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3134 found
|= CATEGORY_MASK_ISO_8_2
;
3135 single_shifting
= 1;
3137 if (single_shifting
)
3139 goto check_extra_latin
;
3146 if (composition_count
>= 0)
3147 composition_count
++;
3148 single_shifting
= 0;
3151 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3154 found
|= CATEGORY_MASK_ISO_8_1
;
3155 /* Check the length of succeeding codes of the range
3156 0xA0..0FF. If the byte length is even, we include
3157 CATEGORY_MASK_ISO_8_2 in `found'. We can check this
3158 only when we are not single shifting. */
3159 if (! single_shifting
3160 && ! (rejected
& CATEGORY_MASK_ISO_8_2
))
3163 while (src
< src_end
)
3175 if (len
& 1 && src
< src_end
)
3177 rejected
|= CATEGORY_MASK_ISO_8_2
;
3178 if (composition_count
>= 0)
3179 composition_count
+= len
;
3183 found
|= CATEGORY_MASK_ISO_8_2
;
3184 if (composition_count
>= 0)
3185 composition_count
+= len
/ 2;
3191 if (! VECTORP (Vlatin_extra_code_table
)
3192 || NILP (AREF (Vlatin_extra_code_table
, c
)))
3194 rejected
= CATEGORY_MASK_ISO
;
3197 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3198 & CODING_ISO_FLAG_LATIN_EXTRA
)
3199 found
|= CATEGORY_MASK_ISO_8_1
;
3201 rejected
|= CATEGORY_MASK_ISO_8_1
;
3202 rejected
|= CATEGORY_MASK_ISO_8_2
;
3206 detect_info
->rejected
|= CATEGORY_MASK_ISO
;
3210 detect_info
->rejected
|= rejected
;
3211 detect_info
->found
|= (found
& ~rejected
);
3216 /* Set designation state into CODING. Set CHARS_96 to -1 if the
3217 escape sequence should be kept. */
3218 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \
3222 if (final < '0' || final >= 128 \
3223 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \
3224 || !SAFE_CHARSET_P (coding, id)) \
3226 CODING_ISO_DESIGNATION (coding, reg) = -2; \
3230 prev = CODING_ISO_DESIGNATION (coding, reg); \
3231 if (id == charset_jisx0201_roman) \
3233 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
3234 id = charset_ascii; \
3236 else if (id == charset_jisx0208_1978) \
3238 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
3239 id = charset_jisx0208; \
3241 CODING_ISO_DESIGNATION (coding, reg) = id; \
3242 /* If there was an invalid designation to REG previously, and this \
3243 designation is ASCII to REG, we should keep this designation \
3245 if (prev == -2 && id == charset_ascii) \
3250 /* Handle these composition sequence (ALT: alternate char):
3252 (1) relative composition: ESC 0 CHAR ... ESC 1
3253 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3254 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1
3255 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1
3257 When the start sequence (ESC 0/2/3/4) is found, this annotation
3260 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ]
3262 Then, upon reading CHAR or RULE (one or two bytes), these codes are
3263 produced until the end sequence (ESC 1) is found:
3266 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
3267 (3) ALT ... ALT -1 -1 CHAR ... CHAR
3268 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR
3270 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the
3271 annotation header is updated as below:
3273 (1) LENGTH: unchanged, NCHARS: number of CHARs
3274 (2) LENGTH: unchanged, NCHARS: number of CHARs
3275 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs
3276 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs
3278 If an error is found while composing, the annotation header is
3281 [ ESC '0'/'2'/'3'/'4' -2 0 ]
3283 and the sequence [ -2 DECODED-RULE ] is changed to the original
3284 byte sequence as below:
3285 o the original byte sequence is B: [ B -1 ]
3286 o the original byte sequence is B1 B2: [ B1 B2 ]
3287 and the sequence [ -1 -1 ] is changed to the original byte
3292 /* Decode a composition rule C1 and maybe one more byte from the
3293 source, and set RULE to the encoded composition rule. If the rule
3294 is invalid, goto invalid_code. */
3296 #define DECODE_COMPOSITION_RULE(rule) \
3300 goto invalid_code; \
3301 if (rule < 81) /* old format (before ver.21) */ \
3303 int gref = (rule) / 9; \
3304 int nref = (rule) % 9; \
3305 if (gref == 4) gref = 10; \
3306 if (nref == 4) nref = 10; \
3307 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
3309 else /* new format (after ver.21) */ \
3313 ONE_MORE_BYTE (b); \
3314 if (! COMPOSITION_ENCODE_RULE_VALID (rule - 81, b - 32)) \
3315 goto invalid_code; \
3316 rule = COMPOSITION_ENCODE_RULE (rule - 81, b - 32); \
3317 rule += 0x100; /* Distinguish it from the old format. */ \
3321 #define ENCODE_COMPOSITION_RULE(rule) \
3323 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \
3325 if (rule < 0x100) /* old format */ \
3327 if (gref == 10) gref = 4; \
3328 if (nref == 10) nref = 4; \
3329 charbuf[idx] = 32 + gref * 9 + nref; \
3330 charbuf[idx + 1] = -1; \
3333 else /* new format */ \
3335 charbuf[idx] = 32 + 81 + gref; \
3336 charbuf[idx + 1] = 32 + nref; \
3341 /* Finish the current composition as invalid. */
3344 finish_composition (int *charbuf
, struct composition_status
*cmp_status
)
3346 int idx
= - cmp_status
->length
;
3349 /* Recover the original ESC sequence */
3350 charbuf
[idx
++] = ISO_CODE_ESC
;
3351 charbuf
[idx
++] = (cmp_status
->method
== COMPOSITION_RELATIVE
? '0'
3352 : cmp_status
->method
== COMPOSITION_WITH_RULE
? '2'
3353 : cmp_status
->method
== COMPOSITION_WITH_ALTCHARS
? '3'
3354 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */
3356 charbuf
[idx
++] = -2;
3358 charbuf
[idx
++] = -1;
3359 new_chars
= cmp_status
->nchars
;
3360 if (cmp_status
->method
>= COMPOSITION_WITH_RULE
)
3361 for (; idx
< 0; idx
++)
3363 int elt
= charbuf
[idx
];
3367 ENCODE_COMPOSITION_RULE (charbuf
[idx
+ 1]);
3372 charbuf
[idx
++] = ISO_CODE_ESC
;
3377 cmp_status
->state
= COMPOSING_NO
;
3381 /* If characters are under composition, finish the composition. */
3382 #define MAYBE_FINISH_COMPOSITION() \
3384 if (cmp_status->state != COMPOSING_NO) \
3385 char_offset += finish_composition (charbuf, cmp_status); \
3388 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
3390 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
3391 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3392 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1
3393 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1
3395 Produce this annotation sequence now:
3397 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ]
3400 #define DECODE_COMPOSITION_START(c1) \
3403 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \
3404 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3405 || (cmp_status->state == COMPOSING_COMPONENT_RULE \
3406 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \
3410 cmp_status->state = COMPOSING_CHAR; \
3411 cmp_status->length += 2; \
3415 MAYBE_FINISH_COMPOSITION (); \
3416 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \
3417 : c1 == '2' ? COMPOSITION_WITH_RULE \
3418 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
3419 : COMPOSITION_WITH_RULE_ALTCHARS); \
3421 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \
3422 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
3423 cmp_status->length = MAX_ANNOTATION_LENGTH; \
3424 cmp_status->nchars = cmp_status->ncomps = 0; \
3425 coding->annotated = 1; \
3430 /* Handle composition end sequence ESC 1. */
3432 #define DECODE_COMPOSITION_END() \
3434 if (cmp_status->nchars == 0 \
3435 || ((cmp_status->state == COMPOSING_CHAR) \
3436 == (cmp_status->method == COMPOSITION_WITH_RULE))) \
3438 MAYBE_FINISH_COMPOSITION (); \
3439 goto invalid_code; \
3441 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3442 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \
3443 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \
3444 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \
3445 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \
3446 char_offset += cmp_status->nchars; \
3447 cmp_status->state = COMPOSING_NO; \
3450 /* Store a composition rule RULE in charbuf, and update cmp_status. */
3452 #define STORE_COMPOSITION_RULE(rule) \
3455 *charbuf++ = rule; \
3456 cmp_status->length += 2; \
3457 cmp_status->state--; \
3460 /* Store a composed char or a component char C in charbuf, and update
3463 #define STORE_COMPOSITION_CHAR(c) \
3466 cmp_status->length++; \
3467 if (cmp_status->state == COMPOSING_CHAR) \
3468 cmp_status->nchars++; \
3470 cmp_status->ncomps++; \
3471 if (cmp_status->method == COMPOSITION_WITH_RULE \
3472 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \
3473 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \
3474 cmp_status->state++; \
3478 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3481 decode_coding_iso_2022 (struct coding_system
*coding
)
3483 const unsigned char *src
= coding
->source
+ coding
->consumed
;
3484 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3485 const unsigned char *src_base
;
3486 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
3487 /* We may produce two annotations (charset and composition) in one
3488 loop and one more charset annotation at the end. */
3490 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
3491 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
3492 bool multibytep
= coding
->src_multibyte
;
3493 /* Charsets invoked to graphic plane 0 and 1 respectively. */
3494 int charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3495 int charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3496 int charset_id_2
, charset_id_3
;
3497 struct charset
*charset
;
3499 struct composition_status
*cmp_status
= CODING_ISO_CMP_STATUS (coding
);
3500 Lisp_Object attrs
= CODING_ID_ATTRS (coding
->id
);
3501 ptrdiff_t char_offset
= coding
->produced_char
;
3502 ptrdiff_t last_offset
= char_offset
;
3503 int last_id
= charset_ascii
;
3505 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
3506 int byte_after_cr
= -1;
3509 setup_iso_safe_charsets (attrs
);
3510 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
3512 if (cmp_status
->state
!= COMPOSING_NO
)
3514 if (charbuf_end
- charbuf
< cmp_status
->length
)
3516 for (i
= 0; i
< cmp_status
->length
; i
++)
3517 *charbuf
++ = cmp_status
->carryover
[i
];
3518 coding
->annotated
= 1;
3526 consumed_chars_base
= consumed_chars
;
3528 if (charbuf
>= charbuf_end
)
3530 if (byte_after_cr
>= 0)
3535 if (byte_after_cr
>= 0)
3536 c1
= byte_after_cr
, byte_after_cr
= -1;
3542 if (CODING_ISO_EXTSEGMENT_LEN (coding
) > 0)
3544 *charbuf
++ = ASCII_CHAR_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3546 CODING_ISO_EXTSEGMENT_LEN (coding
)--;
3550 if (CODING_ISO_EMBEDDED_UTF_8 (coding
))
3552 if (c1
== ISO_CODE_ESC
)
3554 if (src
+ 1 >= src_end
)
3555 goto no_more_source
;
3556 *charbuf
++ = ISO_CODE_ESC
;
3558 if (src
[0] == '%' && src
[1] == '@')
3561 consumed_chars
+= 2;
3563 /* We are sure charbuf can contain two more chars. */
3566 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
3571 *charbuf
++ = ASCII_CHAR_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3577 if ((cmp_status
->state
== COMPOSING_RULE
3578 || cmp_status
->state
== COMPOSING_COMPONENT_RULE
)
3579 && c1
!= ISO_CODE_ESC
)
3583 DECODE_COMPOSITION_RULE (rule
);
3584 STORE_COMPOSITION_RULE (rule
);
3588 /* We produce at most one character. */
3589 switch (iso_code_class
[c1
])
3591 case ISO_0x20_or_0x7F
:
3592 if (charset_id_0
< 0
3593 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0
)))
3594 /* This is SPACE or DEL. */
3595 charset
= CHARSET_FROM_ID (charset_ascii
);
3597 charset
= CHARSET_FROM_ID (charset_id_0
);
3600 case ISO_graphic_plane_0
:
3601 if (charset_id_0
< 0)
3602 charset
= CHARSET_FROM_ID (charset_ascii
);
3604 charset
= CHARSET_FROM_ID (charset_id_0
);
3607 case ISO_0xA0_or_0xFF
:
3608 if (charset_id_1
< 0
3609 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1
))
3610 || CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3612 /* This is a graphic character, we fall down ... */
3614 case ISO_graphic_plane_1
:
3615 if (charset_id_1
< 0)
3617 charset
= CHARSET_FROM_ID (charset_id_1
);
3621 if (eol_dos
&& c1
== '\r')
3622 ONE_MORE_BYTE (byte_after_cr
);
3623 MAYBE_FINISH_COMPOSITION ();
3624 charset
= CHARSET_FROM_ID (charset_ascii
);
3631 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3632 || CODING_ISO_DESIGNATION (coding
, 1) < 0)
3634 CODING_ISO_INVOCATION (coding
, 0) = 1;
3635 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3639 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
))
3641 CODING_ISO_INVOCATION (coding
, 0) = 0;
3642 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3645 case ISO_single_shift_2_7
:
3646 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
))
3648 case ISO_single_shift_2
:
3649 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3651 /* SS2 is handled as an escape sequence of ESC 'N' */
3653 goto label_escape_sequence
;
3655 case ISO_single_shift_3
:
3656 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3658 /* SS2 is handled as an escape sequence of ESC 'O' */
3660 goto label_escape_sequence
;
3662 case ISO_control_sequence_introducer
:
3663 /* CSI is handled as an escape sequence of ESC '[' ... */
3665 goto label_escape_sequence
;
3669 label_escape_sequence
:
3670 /* Escape sequences handled here are invocation,
3671 designation, direction specification, and character
3672 composition specification. */
3675 case '&': /* revision of following character set */
3677 if (!(c1
>= '@' && c1
<= '~'))
3680 if (c1
!= ISO_CODE_ESC
)
3683 goto label_escape_sequence
;
3685 case '$': /* designation of 2-byte character set */
3686 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3692 if (c1
>= '@' && c1
<= 'B')
3693 { /* designation of JISX0208.1978, GB2312.1980,
3695 reg
= 0, chars96
= 0;
3697 else if (c1
>= 0x28 && c1
<= 0x2B)
3698 { /* designation of DIMENSION2_CHARS94 character set */
3699 reg
= c1
- 0x28, chars96
= 0;
3702 else if (c1
>= 0x2C && c1
<= 0x2F)
3703 { /* designation of DIMENSION2_CHARS96 character set */
3704 reg
= c1
- 0x2C, chars96
= 1;
3709 DECODE_DESIGNATION (reg
, 2, chars96
, c1
);
3710 /* We must update these variables now. */
3712 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3714 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3720 case 'n': /* invocation of locking-shift-2 */
3721 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3722 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3724 CODING_ISO_INVOCATION (coding
, 0) = 2;
3725 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3728 case 'o': /* invocation of locking-shift-3 */
3729 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3730 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3732 CODING_ISO_INVOCATION (coding
, 0) = 3;
3733 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3736 case 'N': /* invocation of single-shift-2 */
3737 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3738 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3740 charset_id_2
= CODING_ISO_DESIGNATION (coding
, 2);
3741 if (charset_id_2
< 0)
3742 charset
= CHARSET_FROM_ID (charset_ascii
);
3744 charset
= CHARSET_FROM_ID (charset_id_2
);
3746 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0)
3747 || (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3748 && ((CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LEVEL_4
)
3749 ? c1
>= 0x80 : c1
< 0x80)))
3753 case 'O': /* invocation of single-shift-3 */
3754 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3755 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3757 charset_id_3
= CODING_ISO_DESIGNATION (coding
, 3);
3758 if (charset_id_3
< 0)
3759 charset
= CHARSET_FROM_ID (charset_ascii
);
3761 charset
= CHARSET_FROM_ID (charset_id_3
);
3763 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0)
3764 || (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3765 && ((CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LEVEL_4
)
3766 ? c1
>= 0x80 : c1
< 0x80)))
3770 case '0': case '2': case '3': case '4': /* start composition */
3771 if (! (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
))
3773 if (last_id
!= charset_ascii
)
3775 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3776 last_id
= charset_ascii
;
3777 last_offset
= char_offset
;
3779 DECODE_COMPOSITION_START (c1
);
3782 case '1': /* end composition */
3783 if (cmp_status
->state
== COMPOSING_NO
)
3785 DECODE_COMPOSITION_END ();
3788 case '[': /* specification of direction */
3789 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DIRECTION
))
3791 /* For the moment, nested direction is not supported.
3792 So, `coding->mode & CODING_MODE_DIRECTION' zero means
3793 left-to-right, and nonzero means right-to-left. */
3797 case ']': /* end of the current direction */
3798 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3800 case '0': /* end of the current direction */
3801 case '1': /* start of left-to-right direction */
3804 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3809 case '2': /* start of right-to-left direction */
3812 coding
->mode
|= CODING_MODE_DIRECTION
;
3826 /* CTEXT extended segment:
3827 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
3828 We keep these bytes as is for the moment.
3829 They may be decoded by post-read-conversion. */
3833 ONE_MORE_BYTE (dim
);
3834 if (dim
< '0' || dim
> '4')
3842 size
= ((M
- 128) * 128) + (L
- 128);
3843 if (charbuf
+ 6 > charbuf_end
)
3845 *charbuf
++ = ISO_CODE_ESC
;
3849 *charbuf
++ = BYTE8_TO_CHAR (M
);
3850 *charbuf
++ = BYTE8_TO_CHAR (L
);
3851 CODING_ISO_EXTSEGMENT_LEN (coding
) = size
;
3855 /* XFree86 extension for embedding UTF-8 in CTEXT:
3856 ESC % G --UTF-8-BYTES-- ESC % @
3857 We keep these bytes as is for the moment.
3858 They may be decoded by post-read-conversion. */
3859 if (charbuf
+ 3 > charbuf_end
)
3861 *charbuf
++ = ISO_CODE_ESC
;
3864 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 1;
3872 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3877 if (c1
>= 0x28 && c1
<= 0x2B)
3878 { /* designation of DIMENSION1_CHARS94 character set */
3879 reg
= c1
- 0x28, chars96
= 0;
3882 else if (c1
>= 0x2C && c1
<= 0x2F)
3883 { /* designation of DIMENSION1_CHARS96 character set */
3884 reg
= c1
- 0x2C, chars96
= 1;
3889 DECODE_DESIGNATION (reg
, 1, chars96
, c1
);
3890 /* We must update these variables now. */
3892 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3894 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3906 if (cmp_status
->state
== COMPOSING_NO
3907 && charset
->id
!= charset_ascii
3908 && last_id
!= charset
->id
)
3910 if (last_id
!= charset_ascii
)
3911 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3912 last_id
= charset
->id
;
3913 last_offset
= char_offset
;
3916 /* Now we know CHARSET and 1st position code C1 of a character.
3917 Produce a decoded character while getting 2nd and 3rd
3918 position codes C2, C3 if necessary. */
3919 if (CHARSET_DIMENSION (charset
) > 1)
3922 if (c2
< 0x20 || (c2
>= 0x80 && c2
< 0xA0)
3923 || ((c1
& 0x80) != (c2
& 0x80)))
3924 /* C2 is not in a valid range. */
3926 if (CHARSET_DIMENSION (charset
) == 2)
3927 c1
= (c1
<< 8) | c2
;
3931 if (c3
< 0x20 || (c3
>= 0x80 && c3
< 0xA0)
3932 || ((c1
& 0x80) != (c3
& 0x80)))
3933 /* C3 is not in a valid range. */
3935 c1
= (c1
<< 16) | (c2
<< 8) | c2
;
3939 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c1
, c
);
3942 MAYBE_FINISH_COMPOSITION ();
3943 for (; src_base
< src
; src_base
++, char_offset
++)
3945 if (ASCII_CHAR_P (*src_base
))
3946 *charbuf
++ = *src_base
;
3948 *charbuf
++ = BYTE8_TO_CHAR (*src_base
);
3951 else if (cmp_status
->state
== COMPOSING_NO
)
3956 else if ((cmp_status
->state
== COMPOSING_CHAR
3957 ? cmp_status
->nchars
3958 : cmp_status
->ncomps
)
3959 >= MAX_COMPOSITION_COMPONENTS
)
3961 /* Too long composition. */
3962 MAYBE_FINISH_COMPOSITION ();
3967 STORE_COMPOSITION_CHAR (c
);
3971 MAYBE_FINISH_COMPOSITION ();
3973 consumed_chars
= consumed_chars_base
;
3975 *charbuf
++ = c
< 0 ? -c
: ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
3977 /* Reset the invocation and designation status to the safest
3978 one; i.e. designate ASCII to the graphic register 0, and
3979 invoke that register to the graphic plane 0. This typically
3980 helps the case that an designation sequence for ASCII "ESC (
3981 B" is somehow broken (e.g. broken by a newline). */
3982 CODING_ISO_INVOCATION (coding
, 0) = 0;
3983 CODING_ISO_DESIGNATION (coding
, 0) = charset_ascii
;
3984 charset_id_0
= charset_ascii
;
3992 if (cmp_status
->state
!= COMPOSING_NO
)
3994 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
3995 MAYBE_FINISH_COMPOSITION ();
3998 charbuf
-= cmp_status
->length
;
3999 for (i
= 0; i
< cmp_status
->length
; i
++)
4000 cmp_status
->carryover
[i
] = charbuf
[i
];
4003 else if (last_id
!= charset_ascii
)
4004 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4005 coding
->consumed_char
+= consumed_chars_base
;
4006 coding
->consumed
= src_base
- coding
->source
;
4007 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4011 /* ISO2022 encoding stuff. */
4014 It is not enough to say just "ISO2022" on encoding, we have to
4015 specify more details. In Emacs, each coding system of ISO2022
4016 variant has the following specifications:
4017 1. Initial designation to G0 thru G3.
4018 2. Allows short-form designation?
4019 3. ASCII should be designated to G0 before control characters?
4020 4. ASCII should be designated to G0 at end of line?
4021 5. 7-bit environment or 8-bit environment?
4022 6. Use locking-shift?
4023 7. Use Single-shift?
4024 And the following two are only for Japanese:
4025 8. Use ASCII in place of JIS0201-1976-Roman?
4026 9. Use JISX0208-1983 in place of JISX0208-1978?
4027 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits
4028 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more
4032 /* Produce codes (escape sequence) for designating CHARSET to graphic
4033 register REG at DST, and increment DST. If <final-char> of CHARSET is
4034 '@', 'A', or 'B' and the coding system CODING allows, produce
4035 designation sequence of short-form. */
4037 #define ENCODE_DESIGNATION(charset, reg, coding) \
4039 unsigned char final_char = CHARSET_ISO_FINAL (charset); \
4040 const char *intermediate_char_94 = "()*+"; \
4041 const char *intermediate_char_96 = ",-./"; \
4042 int revision = -1; \
4044 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \
4045 revision = CHARSET_ISO_REVISION (charset); \
4047 if (revision >= 0) \
4049 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \
4050 EMIT_ONE_BYTE ('@' + revision); \
4052 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \
4053 if (CHARSET_DIMENSION (charset) == 1) \
4056 if (! CHARSET_ISO_CHARS_96 (charset)) \
4057 b = intermediate_char_94[reg]; \
4059 b = intermediate_char_96[reg]; \
4060 EMIT_ONE_ASCII_BYTE (b); \
4064 EMIT_ONE_ASCII_BYTE ('$'); \
4065 if (! CHARSET_ISO_CHARS_96 (charset)) \
4067 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \
4069 || final_char < '@' || final_char > 'B') \
4070 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \
4073 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \
4075 EMIT_ONE_ASCII_BYTE (final_char); \
4077 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \
4081 /* The following two macros produce codes (control character or escape
4082 sequence) for ISO2022 single-shift functions (single-shift-2 and
4085 #define ENCODE_SINGLE_SHIFT_2 \
4087 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4088 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \
4090 EMIT_ONE_BYTE (ISO_CODE_SS2); \
4091 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4095 #define ENCODE_SINGLE_SHIFT_3 \
4097 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4098 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \
4100 EMIT_ONE_BYTE (ISO_CODE_SS3); \
4101 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4105 /* The following four macros produce codes (control character or
4106 escape sequence) for ISO2022 locking-shift functions (shift-in,
4107 shift-out, locking-shift-2, and locking-shift-3). */
4109 #define ENCODE_SHIFT_IN \
4111 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \
4112 CODING_ISO_INVOCATION (coding, 0) = 0; \
4116 #define ENCODE_SHIFT_OUT \
4118 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \
4119 CODING_ISO_INVOCATION (coding, 0) = 1; \
4123 #define ENCODE_LOCKING_SHIFT_2 \
4125 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4126 CODING_ISO_INVOCATION (coding, 0) = 2; \
4130 #define ENCODE_LOCKING_SHIFT_3 \
4132 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4133 CODING_ISO_INVOCATION (coding, 0) = 3; \
4137 /* Produce codes for a DIMENSION1 character whose character set is
4138 CHARSET and whose position-code is C1. Designation and invocation
4139 sequences are also produced in advance if necessary. */
4141 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
4143 int id = CHARSET_ID (charset); \
4145 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
4146 && id == charset_ascii) \
4148 id = charset_jisx0201_roman; \
4149 charset = CHARSET_FROM_ID (id); \
4152 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4154 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4155 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4157 EMIT_ONE_BYTE (c1 | 0x80); \
4158 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4161 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4163 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4166 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4168 EMIT_ONE_BYTE (c1 | 0x80); \
4172 /* Since CHARSET is not yet invoked to any graphic planes, we \
4173 must invoke it, or, at first, designate it to some graphic \
4174 register. Then repeat the loop to actually produce the \
4176 dst = encode_invocation_designation (charset, coding, dst, \
4181 /* Produce codes for a DIMENSION2 character whose character set is
4182 CHARSET and whose position-codes are C1 and C2. Designation and
4183 invocation codes are also produced in advance if necessary. */
4185 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
4187 int id = CHARSET_ID (charset); \
4189 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
4190 && id == charset_jisx0208) \
4192 id = charset_jisx0208_1978; \
4193 charset = CHARSET_FROM_ID (id); \
4196 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4198 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4199 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4201 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4202 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4205 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4207 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4210 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4212 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4216 /* Since CHARSET is not yet invoked to any graphic planes, we \
4217 must invoke it, or, at first, designate it to some graphic \
4218 register. Then repeat the loop to actually produce the \
4220 dst = encode_invocation_designation (charset, coding, dst, \
4225 #define ENCODE_ISO_CHARACTER(charset, c) \
4228 CODING_ENCODE_CHAR (coding, dst, dst_end, (charset), (c), code); \
4230 if (CHARSET_DIMENSION (charset) == 1) \
4231 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \
4233 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \
4237 /* Produce designation and invocation codes at a place pointed by DST
4238 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4241 static unsigned char *
4242 encode_invocation_designation (struct charset
*charset
,
4243 struct coding_system
*coding
,
4244 unsigned char *dst
, ptrdiff_t *p_nchars
)
4246 bool multibytep
= coding
->dst_multibyte
;
4247 ptrdiff_t produced_chars
= *p_nchars
;
4248 int reg
; /* graphic register number */
4249 int id
= CHARSET_ID (charset
);
4251 /* At first, check designations. */
4252 for (reg
= 0; reg
< 4; reg
++)
4253 if (id
== CODING_ISO_DESIGNATION (coding
, reg
))
4258 /* CHARSET is not yet designated to any graphic registers. */
4259 /* At first check the requested designation. */
4260 reg
= CODING_ISO_REQUEST (coding
, id
);
4262 /* Since CHARSET requests no special designation, designate it
4263 to graphic register 0. */
4266 ENCODE_DESIGNATION (charset
, reg
, coding
);
4269 if (CODING_ISO_INVOCATION (coding
, 0) != reg
4270 && CODING_ISO_INVOCATION (coding
, 1) != reg
)
4272 /* Since the graphic register REG is not invoked to any graphic
4273 planes, invoke it to graphic plane 0. */
4276 case 0: /* graphic register 0 */
4280 case 1: /* graphic register 1 */
4284 case 2: /* graphic register 2 */
4285 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4286 ENCODE_SINGLE_SHIFT_2
;
4288 ENCODE_LOCKING_SHIFT_2
;
4291 case 3: /* graphic register 3 */
4292 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4293 ENCODE_SINGLE_SHIFT_3
;
4295 ENCODE_LOCKING_SHIFT_3
;
4303 *p_nchars
= produced_chars
;
4308 /* Produce codes for designation and invocation to reset the graphic
4309 planes and registers to initial state. */
4310 #define ENCODE_RESET_PLANE_AND_REGISTER() \
4313 struct charset *charset; \
4315 if (CODING_ISO_INVOCATION (coding, 0) != 0) \
4317 for (reg = 0; reg < 4; reg++) \
4318 if (CODING_ISO_INITIAL (coding, reg) >= 0 \
4319 && (CODING_ISO_DESIGNATION (coding, reg) \
4320 != CODING_ISO_INITIAL (coding, reg))) \
4322 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \
4323 ENCODE_DESIGNATION (charset, reg, coding); \
4328 /* Produce designation sequences of charsets in the line started from
4329 CHARBUF to a place pointed by DST, and return the number of
4330 produced bytes. DST should not directly point a buffer text area
4331 which may be relocated by char_charset call.
4333 If the current block ends before any end-of-line, we may fail to
4334 find all the necessary designations. */
4337 encode_designation_at_bol (struct coding_system
*coding
,
4338 int *charbuf
, int *charbuf_end
,
4341 unsigned char *orig
= dst
;
4342 struct charset
*charset
;
4343 /* Table of charsets to be designated to each graphic register. */
4345 int c
, found
= 0, reg
;
4346 ptrdiff_t produced_chars
= 0;
4347 bool multibytep
= coding
->dst_multibyte
;
4349 Lisp_Object charset_list
;
4351 attrs
= CODING_ID_ATTRS (coding
->id
);
4352 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4353 if (EQ (charset_list
, Qiso_2022
))
4354 charset_list
= Viso_2022_charset_list
;
4356 for (reg
= 0; reg
< 4; reg
++)
4359 while (charbuf
< charbuf_end
&& found
< 4)
4366 charset
= char_charset (c
, charset_list
, NULL
);
4367 id
= CHARSET_ID (charset
);
4368 reg
= CODING_ISO_REQUEST (coding
, id
);
4369 if (reg
>= 0 && r
[reg
] < 0)
4378 for (reg
= 0; reg
< 4; reg
++)
4380 && CODING_ISO_DESIGNATION (coding
, reg
) != r
[reg
])
4381 ENCODE_DESIGNATION (CHARSET_FROM_ID (r
[reg
]), reg
, coding
);
4387 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
4390 encode_coding_iso_2022 (struct coding_system
*coding
)
4392 bool multibytep
= coding
->dst_multibyte
;
4393 int *charbuf
= coding
->charbuf
;
4394 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4395 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4396 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4398 bool bol_designation
4399 = (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
4400 && CODING_ISO_BOL (coding
));
4401 ptrdiff_t produced_chars
= 0;
4402 Lisp_Object attrs
, eol_type
, charset_list
;
4403 bool ascii_compatible
;
4405 int preferred_charset_id
= -1;
4407 CODING_GET_INFO (coding
, attrs
, charset_list
);
4408 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
4409 if (VECTORP (eol_type
))
4412 setup_iso_safe_charsets (attrs
);
4413 /* Charset list may have been changed. */
4414 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4415 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
4418 = (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
))
4419 && ! (CODING_ISO_FLAGS (coding
) & (CODING_ISO_FLAG_DESIGNATION
4420 | CODING_ISO_FLAG_LOCKING_SHIFT
)));
4422 while (charbuf
< charbuf_end
)
4424 ASSURE_DESTINATION (safe_room
);
4426 if (bol_designation
)
4428 /* We have to produce designation sequences if any now. */
4429 unsigned char desig_buf
[16];
4433 charset_map_loaded
= 0;
4434 nbytes
= encode_designation_at_bol (coding
, charbuf
, charbuf_end
,
4436 if (charset_map_loaded
4437 && (offset
= coding_change_destination (coding
)))
4442 memcpy (dst
, desig_buf
, nbytes
);
4444 /* We are sure that designation sequences are all ASCII bytes. */
4445 produced_chars
+= nbytes
;
4446 bol_designation
= 0;
4447 ASSURE_DESTINATION (safe_room
);
4454 /* Handle an annotation. */
4457 case CODING_ANNOTATE_COMPOSITION_MASK
:
4458 /* Not yet implemented. */
4460 case CODING_ANNOTATE_CHARSET_MASK
:
4461 preferred_charset_id
= charbuf
[2];
4462 if (preferred_charset_id
>= 0
4463 && NILP (Fmemq (make_number (preferred_charset_id
),
4465 preferred_charset_id
= -1;
4474 /* Now encode the character C. */
4475 if (c
< 0x20 || c
== 0x7F)
4478 || (c
== '\r' && EQ (eol_type
, Qmac
)))
4480 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4481 ENCODE_RESET_PLANE_AND_REGISTER ();
4482 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_INIT_AT_BOL
)
4486 for (i
= 0; i
< 4; i
++)
4487 CODING_ISO_DESIGNATION (coding
, i
)
4488 = CODING_ISO_INITIAL (coding
, i
);
4490 bol_designation
= ((CODING_ISO_FLAGS (coding
)
4491 & CODING_ISO_FLAG_DESIGNATE_AT_BOL
)
4494 else if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_CNTL
)
4495 ENCODE_RESET_PLANE_AND_REGISTER ();
4496 EMIT_ONE_ASCII_BYTE (c
);
4498 else if (ASCII_CHAR_P (c
))
4500 if (ascii_compatible
)
4501 EMIT_ONE_ASCII_BYTE (c
);
4504 struct charset
*charset
= CHARSET_FROM_ID (charset_ascii
);
4505 ENCODE_ISO_CHARACTER (charset
, c
);
4508 else if (CHAR_BYTE8_P (c
))
4510 c
= CHAR_TO_BYTE8 (c
);
4515 struct charset
*charset
;
4517 if (preferred_charset_id
>= 0)
4521 charset
= CHARSET_FROM_ID (preferred_charset_id
);
4522 CODING_CHAR_CHARSET_P (coding
, dst
, dst_end
, c
, charset
, result
);
4524 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4528 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4532 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4534 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4535 charset
= CHARSET_FROM_ID (charset_ascii
);
4539 c
= coding
->default_char
;
4540 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4541 charset_list
, NULL
, charset
);
4544 ENCODE_ISO_CHARACTER (charset
, c
);
4548 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4549 && CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4551 ASSURE_DESTINATION (safe_room
);
4552 ENCODE_RESET_PLANE_AND_REGISTER ();
4554 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4555 CODING_ISO_BOL (coding
) = bol_designation
;
4556 coding
->produced_char
+= produced_chars
;
4557 coding
->produced
= dst
- coding
->destination
;
4562 /*** 8,9. SJIS and BIG5 handlers ***/
4564 /* Although SJIS and BIG5 are not ISO's coding system, they are used
4565 quite widely. So, for the moment, Emacs supports them in the bare
4566 C code. But, in the future, they may be supported only by CCL. */
4568 /* SJIS is a coding system encoding three character sets: ASCII, right
4569 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
4570 as is. A character of charset katakana-jisx0201 is encoded by
4571 "position-code + 0x80". A character of charset japanese-jisx0208
4572 is encoded in 2-byte but two position-codes are divided and shifted
4573 so that it fit in the range below.
4575 --- CODE RANGE of SJIS ---
4576 (character set) (range)
4578 KATAKANA-JISX0201 0xA0 .. 0xDF
4579 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
4580 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
4581 -------------------------------
4585 /* BIG5 is a coding system encoding two character sets: ASCII and
4586 Big5. An ASCII character is encoded as is. Big5 is a two-byte
4587 character set and is encoded in two-byte.
4589 --- CODE RANGE of BIG5 ---
4590 (character set) (range)
4592 Big5 (1st byte) 0xA1 .. 0xFE
4593 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
4594 --------------------------
4598 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4599 Return true if a text is encoded in SJIS. */
4602 detect_coding_sjis (struct coding_system
*coding
,
4603 struct coding_detection_info
*detect_info
)
4605 const unsigned char *src
= coding
->source
, *src_base
;
4606 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4607 bool multibytep
= coding
->src_multibyte
;
4608 ptrdiff_t consumed_chars
= 0;
4611 Lisp_Object attrs
, charset_list
;
4612 int max_first_byte_of_2_byte_code
;
4614 CODING_GET_INFO (coding
, attrs
, charset_list
);
4615 max_first_byte_of_2_byte_code
4616 = (XINT (Flength (charset_list
)) > 3 ? 0xFC : 0xEF);
4618 detect_info
->checked
|= CATEGORY_MASK_SJIS
;
4619 /* A coding system of this category is always ASCII compatible. */
4620 src
+= coding
->head_ascii
;
4628 if ((c
>= 0x81 && c
<= 0x9F)
4629 || (c
>= 0xE0 && c
<= max_first_byte_of_2_byte_code
))
4632 if (c
< 0x40 || c
== 0x7F || c
> 0xFC)
4634 found
= CATEGORY_MASK_SJIS
;
4636 else if (c
>= 0xA0 && c
< 0xE0)
4637 found
= CATEGORY_MASK_SJIS
;
4641 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4645 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4647 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4650 detect_info
->found
|= found
;
4654 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4655 Return true if a text is encoded in BIG5. */
4658 detect_coding_big5 (struct coding_system
*coding
,
4659 struct coding_detection_info
*detect_info
)
4661 const unsigned char *src
= coding
->source
, *src_base
;
4662 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4663 bool multibytep
= coding
->src_multibyte
;
4664 ptrdiff_t consumed_chars
= 0;
4668 detect_info
->checked
|= CATEGORY_MASK_BIG5
;
4669 /* A coding system of this category is always ASCII compatible. */
4670 src
+= coding
->head_ascii
;
4681 if (c
< 0x40 || (c
>= 0x7F && c
<= 0xA0))
4683 found
= CATEGORY_MASK_BIG5
;
4688 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4692 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4694 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4697 detect_info
->found
|= found
;
4701 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
4704 decode_coding_sjis (struct coding_system
*coding
)
4706 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4707 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4708 const unsigned char *src_base
;
4709 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4710 /* We may produce one charset annotation in one loop and one more at
4713 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4714 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
4715 bool multibytep
= coding
->src_multibyte
;
4716 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
4717 struct charset
*charset_kanji2
;
4718 Lisp_Object attrs
, charset_list
, val
;
4719 ptrdiff_t char_offset
= coding
->produced_char
;
4720 ptrdiff_t last_offset
= char_offset
;
4721 int last_id
= charset_ascii
;
4723 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4724 int byte_after_cr
= -1;
4726 CODING_GET_INFO (coding
, attrs
, charset_list
);
4729 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4730 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4731 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4732 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4737 struct charset
*charset
;
4740 consumed_chars_base
= consumed_chars
;
4742 if (charbuf
>= charbuf_end
)
4744 if (byte_after_cr
>= 0)
4749 if (byte_after_cr
>= 0)
4750 c
= byte_after_cr
, byte_after_cr
= -1;
4757 if (eol_dos
&& c
== '\r')
4758 ONE_MORE_BYTE (byte_after_cr
);
4759 charset
= charset_roman
;
4761 else if (c
== 0x80 || c
== 0xA0)
4763 else if (c
>= 0xA1 && c
<= 0xDF)
4765 /* SJIS -> JISX0201-Kana */
4767 charset
= charset_kana
;
4771 /* SJIS -> JISX0208 */
4773 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4777 charset
= charset_kanji
;
4779 else if (c
<= 0xFC && charset_kanji2
)
4781 /* SJIS -> JISX0213-2 */
4783 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4787 charset
= charset_kanji2
;
4791 if (charset
->id
!= charset_ascii
4792 && last_id
!= charset
->id
)
4794 if (last_id
!= charset_ascii
)
4795 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4796 last_id
= charset
->id
;
4797 last_offset
= char_offset
;
4799 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4806 consumed_chars
= consumed_chars_base
;
4808 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4813 if (last_id
!= charset_ascii
)
4814 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4815 coding
->consumed_char
+= consumed_chars_base
;
4816 coding
->consumed
= src_base
- coding
->source
;
4817 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4821 decode_coding_big5 (struct coding_system
*coding
)
4823 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4824 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4825 const unsigned char *src_base
;
4826 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4827 /* We may produce one charset annotation in one loop and one more at
4830 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4831 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
4832 bool multibytep
= coding
->src_multibyte
;
4833 struct charset
*charset_roman
, *charset_big5
;
4834 Lisp_Object attrs
, charset_list
, val
;
4835 ptrdiff_t char_offset
= coding
->produced_char
;
4836 ptrdiff_t last_offset
= char_offset
;
4837 int last_id
= charset_ascii
;
4839 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4840 int byte_after_cr
= -1;
4842 CODING_GET_INFO (coding
, attrs
, charset_list
);
4844 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4845 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
4850 struct charset
*charset
;
4853 consumed_chars_base
= consumed_chars
;
4855 if (charbuf
>= charbuf_end
)
4857 if (byte_after_cr
>= 0)
4862 if (byte_after_cr
>= 0)
4863 c
= byte_after_cr
, byte_after_cr
= -1;
4871 if (eol_dos
&& c
== '\r')
4872 ONE_MORE_BYTE (byte_after_cr
);
4873 charset
= charset_roman
;
4878 if (c
< 0xA1 || c
> 0xFE)
4881 if (c1
< 0x40 || (c1
> 0x7E && c1
< 0xA1) || c1
> 0xFE)
4884 charset
= charset_big5
;
4886 if (charset
->id
!= charset_ascii
4887 && last_id
!= charset
->id
)
4889 if (last_id
!= charset_ascii
)
4890 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4891 last_id
= charset
->id
;
4892 last_offset
= char_offset
;
4894 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4901 consumed_chars
= consumed_chars_base
;
4903 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4908 if (last_id
!= charset_ascii
)
4909 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4910 coding
->consumed_char
+= consumed_chars_base
;
4911 coding
->consumed
= src_base
- coding
->source
;
4912 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4915 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
4916 This function can encode charsets `ascii', `katakana-jisx0201',
4917 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
4918 are sure that all these charsets are registered as official charset
4919 (i.e. do not have extended leading-codes). Characters of other
4920 charsets are produced without any encoding. */
4923 encode_coding_sjis (struct coding_system
*coding
)
4925 bool multibytep
= coding
->dst_multibyte
;
4926 int *charbuf
= coding
->charbuf
;
4927 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4928 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4929 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4931 ptrdiff_t produced_chars
= 0;
4932 Lisp_Object attrs
, charset_list
, val
;
4933 bool ascii_compatible
;
4934 struct charset
*charset_kanji
, *charset_kana
;
4935 struct charset
*charset_kanji2
;
4938 CODING_GET_INFO (coding
, attrs
, charset_list
);
4939 val
= XCDR (charset_list
);
4940 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4941 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4942 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4944 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
4946 while (charbuf
< charbuf_end
)
4948 ASSURE_DESTINATION (safe_room
);
4950 /* Now encode the character C. */
4951 if (ASCII_CHAR_P (c
) && ascii_compatible
)
4952 EMIT_ONE_ASCII_BYTE (c
);
4953 else if (CHAR_BYTE8_P (c
))
4955 c
= CHAR_TO_BYTE8 (c
);
4961 struct charset
*charset
;
4962 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4967 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4969 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4970 charset
= CHARSET_FROM_ID (charset_ascii
);
4974 c
= coding
->default_char
;
4975 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4976 charset_list
, &code
, charset
);
4979 if (code
== CHARSET_INVALID_CODE (charset
))
4981 if (charset
== charset_kanji
)
4985 c1
= code
>> 8, c2
= code
& 0xFF;
4986 EMIT_TWO_BYTES (c1
, c2
);
4988 else if (charset
== charset_kana
)
4989 EMIT_ONE_BYTE (code
| 0x80);
4990 else if (charset_kanji2
&& charset
== charset_kanji2
)
4995 if (c1
== 0x21 || (c1
>= 0x23 && c1
<= 0x25)
4997 || (c1
>= 0x2C && c1
<= 0x2F) || c1
>= 0x6E)
4999 JIS_TO_SJIS2 (code
);
5000 c1
= code
>> 8, c2
= code
& 0xFF;
5001 EMIT_TWO_BYTES (c1
, c2
);
5004 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5007 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5010 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5011 coding
->produced_char
+= produced_chars
;
5012 coding
->produced
= dst
- coding
->destination
;
5017 encode_coding_big5 (struct coding_system
*coding
)
5019 bool multibytep
= coding
->dst_multibyte
;
5020 int *charbuf
= coding
->charbuf
;
5021 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5022 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5023 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5025 ptrdiff_t produced_chars
= 0;
5026 Lisp_Object attrs
, charset_list
, val
;
5027 bool ascii_compatible
;
5028 struct charset
*charset_big5
;
5031 CODING_GET_INFO (coding
, attrs
, charset_list
);
5032 val
= XCDR (charset_list
);
5033 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
5034 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5036 while (charbuf
< charbuf_end
)
5038 ASSURE_DESTINATION (safe_room
);
5040 /* Now encode the character C. */
5041 if (ASCII_CHAR_P (c
) && ascii_compatible
)
5042 EMIT_ONE_ASCII_BYTE (c
);
5043 else if (CHAR_BYTE8_P (c
))
5045 c
= CHAR_TO_BYTE8 (c
);
5051 struct charset
*charset
;
5052 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
5057 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5059 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5060 charset
= CHARSET_FROM_ID (charset_ascii
);
5064 c
= coding
->default_char
;
5065 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
5066 charset_list
, &code
, charset
);
5069 if (code
== CHARSET_INVALID_CODE (charset
))
5071 if (charset
== charset_big5
)
5075 c1
= code
>> 8, c2
= code
& 0xFF;
5076 EMIT_TWO_BYTES (c1
, c2
);
5079 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5082 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5083 coding
->produced_char
+= produced_chars
;
5084 coding
->produced
= dst
- coding
->destination
;
5089 /*** 10. CCL handlers ***/
5091 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5092 Return true if a text is encoded in a coding system of which
5093 encoder/decoder are written in CCL program. */
5096 detect_coding_ccl (struct coding_system
*coding
,
5097 struct coding_detection_info
*detect_info
)
5099 const unsigned char *src
= coding
->source
, *src_base
;
5100 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5101 bool multibytep
= coding
->src_multibyte
;
5102 ptrdiff_t consumed_chars
= 0;
5104 unsigned char *valids
;
5105 ptrdiff_t head_ascii
= coding
->head_ascii
;
5108 detect_info
->checked
|= CATEGORY_MASK_CCL
;
5110 coding
= &coding_categories
[coding_category_ccl
];
5111 valids
= CODING_CCL_VALIDS (coding
);
5112 attrs
= CODING_ID_ATTRS (coding
->id
);
5113 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5122 if (c
< 0 || ! valids
[c
])
5124 if ((valids
[c
] > 1))
5125 found
= CATEGORY_MASK_CCL
;
5127 detect_info
->rejected
|= CATEGORY_MASK_CCL
;
5131 detect_info
->found
|= found
;
5136 decode_coding_ccl (struct coding_system
*coding
)
5138 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5139 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5140 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5141 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
5142 ptrdiff_t consumed_chars
= 0;
5143 bool multibytep
= coding
->src_multibyte
;
5144 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5145 int source_charbuf
[1024];
5146 int source_byteidx
[1025];
5147 Lisp_Object attrs
, charset_list
;
5149 CODING_GET_INFO (coding
, attrs
, charset_list
);
5153 const unsigned char *p
= src
;
5159 while (i
< 1024 && p
< src_end
)
5161 source_byteidx
[i
] = p
- src
;
5162 source_charbuf
[i
++] = STRING_CHAR_ADVANCE (p
);
5164 source_byteidx
[i
] = p
- src
;
5167 while (i
< 1024 && p
< src_end
)
5168 source_charbuf
[i
++] = *p
++;
5170 if (p
== src_end
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
5171 ccl
->last_block
= true;
5172 /* As ccl_driver calls DECODE_CHAR, buffer may be relocated. */
5173 charset_map_loaded
= 0;
5174 ccl_driver (ccl
, source_charbuf
, charbuf
, i
, charbuf_end
- charbuf
,
5176 if (charset_map_loaded
5177 && (offset
= coding_change_source (coding
)))
5183 charbuf
+= ccl
->produced
;
5185 src
+= source_byteidx
[ccl
->consumed
];
5187 src
+= ccl
->consumed
;
5188 consumed_chars
+= ccl
->consumed
;
5189 if (p
== src_end
|| ccl
->status
!= CCL_STAT_SUSPEND_BY_SRC
)
5193 switch (ccl
->status
)
5195 case CCL_STAT_SUSPEND_BY_SRC
:
5196 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5198 case CCL_STAT_SUSPEND_BY_DST
:
5199 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5202 case CCL_STAT_INVALID_CMD
:
5203 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5206 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5209 coding
->consumed_char
+= consumed_chars
;
5210 coding
->consumed
= src
- coding
->source
;
5211 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5215 encode_coding_ccl (struct coding_system
*coding
)
5217 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5218 bool multibytep
= coding
->dst_multibyte
;
5219 int *charbuf
= coding
->charbuf
;
5220 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5221 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5222 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5223 int destination_charbuf
[1024];
5224 ptrdiff_t produced_chars
= 0;
5226 Lisp_Object attrs
, charset_list
;
5228 CODING_GET_INFO (coding
, attrs
, charset_list
);
5229 if (coding
->consumed_char
== coding
->src_chars
5230 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
5231 ccl
->last_block
= true;
5237 /* As ccl_driver calls DECODE_CHAR, buffer may be relocated. */
5238 charset_map_loaded
= 0;
5239 ccl_driver (ccl
, charbuf
, destination_charbuf
,
5240 charbuf_end
- charbuf
, 1024, charset_list
);
5241 if (charset_map_loaded
5242 && (offset
= coding_change_destination (coding
)))
5246 ASSURE_DESTINATION (ccl
->produced
* 2);
5247 for (i
= 0; i
< ccl
->produced
; i
++)
5248 EMIT_ONE_BYTE (destination_charbuf
[i
] & 0xFF);
5252 ASSURE_DESTINATION (ccl
->produced
);
5253 for (i
= 0; i
< ccl
->produced
; i
++)
5254 *dst
++ = destination_charbuf
[i
] & 0xFF;
5255 produced_chars
+= ccl
->produced
;
5257 charbuf
+= ccl
->consumed
;
5258 if (ccl
->status
== CCL_STAT_QUIT
5259 || ccl
->status
== CCL_STAT_INVALID_CMD
)
5262 while (charbuf
< charbuf_end
);
5264 switch (ccl
->status
)
5266 case CCL_STAT_SUSPEND_BY_SRC
:
5267 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5269 case CCL_STAT_SUSPEND_BY_DST
:
5270 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5273 case CCL_STAT_INVALID_CMD
:
5274 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5277 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5281 coding
->produced_char
+= produced_chars
;
5282 coding
->produced
= dst
- coding
->destination
;
5287 /*** 10, 11. no-conversion handlers ***/
5289 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
5292 decode_coding_raw_text (struct coding_system
*coding
)
5295 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5297 coding
->chars_at_source
= 1;
5298 coding
->consumed_char
= coding
->src_chars
;
5299 coding
->consumed
= coding
->src_bytes
;
5300 if (eol_dos
&& coding
->source
[coding
->src_bytes
- 1] == '\r')
5302 coding
->consumed_char
--;
5304 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5307 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5311 encode_coding_raw_text (struct coding_system
*coding
)
5313 bool multibytep
= coding
->dst_multibyte
;
5314 int *charbuf
= coding
->charbuf
;
5315 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_used
;
5316 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5317 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5318 ptrdiff_t produced_chars
= 0;
5323 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
5325 if (coding
->src_multibyte
)
5326 while (charbuf
< charbuf_end
)
5328 ASSURE_DESTINATION (safe_room
);
5330 if (ASCII_CHAR_P (c
))
5331 EMIT_ONE_ASCII_BYTE (c
);
5332 else if (CHAR_BYTE8_P (c
))
5334 c
= CHAR_TO_BYTE8 (c
);
5339 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p0
= str
, *p1
= str
;
5341 CHAR_STRING_ADVANCE (c
, p1
);
5344 EMIT_ONE_BYTE (*p0
);
5351 while (charbuf
< charbuf_end
)
5353 ASSURE_DESTINATION (safe_room
);
5360 if (coding
->src_multibyte
)
5362 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5364 while (charbuf
< charbuf_end
)
5366 ASSURE_DESTINATION (safe_room
);
5368 if (ASCII_CHAR_P (c
))
5370 else if (CHAR_BYTE8_P (c
))
5371 *dst
++ = CHAR_TO_BYTE8 (c
);
5373 CHAR_STRING_ADVANCE (c
, dst
);
5378 ASSURE_DESTINATION (charbuf_end
- charbuf
);
5379 while (charbuf
< charbuf_end
&& dst
< dst_end
)
5380 *dst
++ = *charbuf
++;
5382 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
5384 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5385 coding
->produced_char
+= produced_chars
;
5386 coding
->produced
= dst
- coding
->destination
;
5390 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5391 Return true if a text is encoded in a charset-based coding system. */
5394 detect_coding_charset (struct coding_system
*coding
,
5395 struct coding_detection_info
*detect_info
)
5397 const unsigned char *src
= coding
->source
, *src_base
;
5398 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5399 bool multibytep
= coding
->src_multibyte
;
5400 ptrdiff_t consumed_chars
= 0;
5401 Lisp_Object attrs
, valids
, name
;
5403 ptrdiff_t head_ascii
= coding
->head_ascii
;
5404 bool check_latin_extra
= 0;
5406 detect_info
->checked
|= CATEGORY_MASK_CHARSET
;
5408 coding
= &coding_categories
[coding_category_charset
];
5409 attrs
= CODING_ID_ATTRS (coding
->id
);
5410 valids
= AREF (attrs
, coding_attr_charset_valids
);
5411 name
= CODING_ID_NAME (coding
->id
);
5412 if (strncmp (SSDATA (SYMBOL_NAME (name
)),
5413 "iso-8859-", sizeof ("iso-8859-") - 1) == 0
5414 || strncmp (SSDATA (SYMBOL_NAME (name
)),
5415 "iso-latin-", sizeof ("iso-latin-") - 1) == 0)
5416 check_latin_extra
= 1;
5418 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5425 struct charset
*charset
;
5432 val
= AREF (valids
, c
);
5438 && check_latin_extra
5439 && (!VECTORP (Vlatin_extra_code_table
)
5440 || NILP (AREF (Vlatin_extra_code_table
, c
))))
5442 found
= CATEGORY_MASK_CHARSET
;
5446 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5447 dim
= CHARSET_DIMENSION (charset
);
5448 for (idx
= 1; idx
< dim
; idx
++)
5453 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5454 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5463 for (; CONSP (val
); val
= XCDR (val
))
5465 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5466 dim
= CHARSET_DIMENSION (charset
);
5472 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5473 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5488 detect_info
->rejected
|= CATEGORY_MASK_CHARSET
;
5492 detect_info
->found
|= found
;
5497 decode_coding_charset (struct coding_system
*coding
)
5499 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5500 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5501 const unsigned char *src_base
;
5502 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5503 /* We may produce one charset annotation in one loop and one more at
5506 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
5507 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
5508 bool multibytep
= coding
->src_multibyte
;
5509 Lisp_Object attrs
= CODING_ID_ATTRS (coding
->id
);
5511 ptrdiff_t char_offset
= coding
->produced_char
;
5512 ptrdiff_t last_offset
= char_offset
;
5513 int last_id
= charset_ascii
;
5515 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5516 int byte_after_cr
= -1;
5518 valids
= AREF (attrs
, coding_attr_charset_valids
);
5524 struct charset
*charset
;
5530 consumed_chars_base
= consumed_chars
;
5532 if (charbuf
>= charbuf_end
)
5534 if (byte_after_cr
>= 0)
5539 if (byte_after_cr
>= 0)
5547 if (eol_dos
&& c
== '\r')
5548 ONE_MORE_BYTE (byte_after_cr
);
5554 val
= AREF (valids
, c
);
5555 if (! INTEGERP (val
) && ! CONSP (val
))
5559 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5560 dim
= CHARSET_DIMENSION (charset
);
5564 code
= (code
<< 8) | c
;
5567 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
5572 /* VAL is a list of charset IDs. It is assured that the
5573 list is sorted by charset dimensions (smaller one
5577 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5578 dim
= CHARSET_DIMENSION (charset
);
5582 code
= (code
<< 8) | c
;
5585 CODING_DECODE_CHAR (coding
, src
, src_base
,
5586 src_end
, charset
, code
, c
);
5594 if (charset
->id
!= charset_ascii
5595 && last_id
!= charset
->id
)
5597 if (last_id
!= charset_ascii
)
5598 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5599 last_id
= charset
->id
;
5600 last_offset
= char_offset
;
5609 consumed_chars
= consumed_chars_base
;
5611 *charbuf
++ = c
< 0 ? -c
: ASCII_CHAR_P (c
) ? c
: BYTE8_TO_CHAR (c
);
5616 if (last_id
!= charset_ascii
)
5617 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5618 coding
->consumed_char
+= consumed_chars_base
;
5619 coding
->consumed
= src_base
- coding
->source
;
5620 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5624 encode_coding_charset (struct coding_system
*coding
)
5626 bool multibytep
= coding
->dst_multibyte
;
5627 int *charbuf
= coding
->charbuf
;
5628 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5629 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5630 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5631 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5632 ptrdiff_t produced_chars
= 0;
5633 Lisp_Object attrs
, charset_list
;
5634 bool ascii_compatible
;
5637 CODING_GET_INFO (coding
, attrs
, charset_list
);
5638 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5640 while (charbuf
< charbuf_end
)
5642 struct charset
*charset
;
5645 ASSURE_DESTINATION (safe_room
);
5647 if (ascii_compatible
&& ASCII_CHAR_P (c
))
5648 EMIT_ONE_ASCII_BYTE (c
);
5649 else if (CHAR_BYTE8_P (c
))
5651 c
= CHAR_TO_BYTE8 (c
);
5656 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
5661 if (CHARSET_DIMENSION (charset
) == 1)
5662 EMIT_ONE_BYTE (code
);
5663 else if (CHARSET_DIMENSION (charset
) == 2)
5664 EMIT_TWO_BYTES (code
>> 8, code
& 0xFF);
5665 else if (CHARSET_DIMENSION (charset
) == 3)
5666 EMIT_THREE_BYTES (code
>> 16, (code
>> 8) & 0xFF, code
& 0xFF);
5668 EMIT_FOUR_BYTES (code
>> 24, (code
>> 16) & 0xFF,
5669 (code
>> 8) & 0xFF, code
& 0xFF);
5673 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5674 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5676 c
= coding
->default_char
;
5682 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5683 coding
->produced_char
+= produced_chars
;
5684 coding
->produced
= dst
- coding
->destination
;
5689 /*** 7. C library functions ***/
5691 /* Setup coding context CODING from information about CODING_SYSTEM.
5692 If CODING_SYSTEM is nil, `no-conversion' is assumed. If
5693 CODING_SYSTEM is invalid, signal an error. */
5696 setup_coding_system (Lisp_Object coding_system
, struct coding_system
*coding
)
5699 Lisp_Object eol_type
;
5700 Lisp_Object coding_type
;
5703 if (NILP (coding_system
))
5704 coding_system
= Qundecided
;
5706 CHECK_CODING_SYSTEM_GET_ID (coding_system
, coding
->id
);
5708 attrs
= CODING_ID_ATTRS (coding
->id
);
5709 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
5712 if (VECTORP (eol_type
))
5713 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5714 | CODING_REQUIRE_DETECTION_MASK
);
5715 else if (! EQ (eol_type
, Qunix
))
5716 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5717 | CODING_REQUIRE_ENCODING_MASK
);
5719 coding
->common_flags
= 0;
5720 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
5721 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5722 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
5723 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5724 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs
)))
5725 coding
->common_flags
|= CODING_FOR_UNIBYTE_MASK
;
5727 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5728 coding
->max_charset_id
= SCHARS (val
) - 1;
5729 coding
->safe_charsets
= SDATA (val
);
5730 coding
->default_char
= XINT (CODING_ATTR_DEFAULT_CHAR (attrs
));
5731 coding
->carryover_bytes
= 0;
5732 coding
->raw_destination
= 0;
5734 coding_type
= CODING_ATTR_TYPE (attrs
);
5735 if (EQ (coding_type
, Qundecided
))
5737 coding
->detector
= NULL
;
5738 coding
->decoder
= decode_coding_raw_text
;
5739 coding
->encoder
= encode_coding_raw_text
;
5740 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5741 coding
->spec
.undecided
.inhibit_nbd
5742 = (encode_inhibit_flag
5743 (AREF (attrs
, coding_attr_undecided_inhibit_null_byte_detection
)));
5744 coding
->spec
.undecided
.inhibit_ied
5745 = (encode_inhibit_flag
5746 (AREF (attrs
, coding_attr_undecided_inhibit_iso_escape_detection
)));
5747 coding
->spec
.undecided
.prefer_utf_8
5748 = ! NILP (AREF (attrs
, coding_attr_undecided_prefer_utf_8
));
5750 else if (EQ (coding_type
, Qiso_2022
))
5753 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5755 /* Invoke graphic register 0 to plane 0. */
5756 CODING_ISO_INVOCATION (coding
, 0) = 0;
5757 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */
5758 CODING_ISO_INVOCATION (coding
, 1)
5759 = (flags
& CODING_ISO_FLAG_SEVEN_BITS
? -1 : 1);
5760 /* Setup the initial status of designation. */
5761 for (i
= 0; i
< 4; i
++)
5762 CODING_ISO_DESIGNATION (coding
, i
) = CODING_ISO_INITIAL (coding
, i
);
5763 /* Not single shifting initially. */
5764 CODING_ISO_SINGLE_SHIFTING (coding
) = 0;
5765 /* Beginning of buffer should also be regarded as bol. */
5766 CODING_ISO_BOL (coding
) = 1;
5767 coding
->detector
= detect_coding_iso_2022
;
5768 coding
->decoder
= decode_coding_iso_2022
;
5769 coding
->encoder
= encode_coding_iso_2022
;
5770 if (flags
& CODING_ISO_FLAG_SAFE
)
5771 coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
5772 coding
->common_flags
5773 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5774 | CODING_REQUIRE_FLUSHING_MASK
);
5775 if (flags
& CODING_ISO_FLAG_COMPOSITION
)
5776 coding
->common_flags
|= CODING_ANNOTATE_COMPOSITION_MASK
;
5777 if (flags
& CODING_ISO_FLAG_DESIGNATION
)
5778 coding
->common_flags
|= CODING_ANNOTATE_CHARSET_MASK
;
5779 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5781 setup_iso_safe_charsets (attrs
);
5782 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5783 coding
->max_charset_id
= SCHARS (val
) - 1;
5784 coding
->safe_charsets
= SDATA (val
);
5786 CODING_ISO_FLAGS (coding
) = flags
;
5787 CODING_ISO_CMP_STATUS (coding
)->state
= COMPOSING_NO
;
5788 CODING_ISO_CMP_STATUS (coding
)->method
= COMPOSITION_NO
;
5789 CODING_ISO_EXTSEGMENT_LEN (coding
) = 0;
5790 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
5792 else if (EQ (coding_type
, Qcharset
))
5794 coding
->detector
= detect_coding_charset
;
5795 coding
->decoder
= decode_coding_charset
;
5796 coding
->encoder
= encode_coding_charset
;
5797 coding
->common_flags
5798 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5800 else if (EQ (coding_type
, Qutf_8
))
5802 val
= AREF (attrs
, coding_attr_utf_bom
);
5803 CODING_UTF_8_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5804 : EQ (val
, Qt
) ? utf_with_bom
5806 coding
->detector
= detect_coding_utf_8
;
5807 coding
->decoder
= decode_coding_utf_8
;
5808 coding
->encoder
= encode_coding_utf_8
;
5809 coding
->common_flags
5810 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5811 if (CODING_UTF_8_BOM (coding
) == utf_detect_bom
)
5812 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5814 else if (EQ (coding_type
, Qutf_16
))
5816 val
= AREF (attrs
, coding_attr_utf_bom
);
5817 CODING_UTF_16_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5818 : EQ (val
, Qt
) ? utf_with_bom
5820 val
= AREF (attrs
, coding_attr_utf_16_endian
);
5821 CODING_UTF_16_ENDIAN (coding
) = (EQ (val
, Qbig
) ? utf_16_big_endian
5822 : utf_16_little_endian
);
5823 CODING_UTF_16_SURROGATE (coding
) = 0;
5824 coding
->detector
= detect_coding_utf_16
;
5825 coding
->decoder
= decode_coding_utf_16
;
5826 coding
->encoder
= encode_coding_utf_16
;
5827 coding
->common_flags
5828 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5829 if (CODING_UTF_16_BOM (coding
) == utf_detect_bom
)
5830 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5832 else if (EQ (coding_type
, Qccl
))
5834 coding
->detector
= detect_coding_ccl
;
5835 coding
->decoder
= decode_coding_ccl
;
5836 coding
->encoder
= encode_coding_ccl
;
5837 coding
->common_flags
5838 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5839 | CODING_REQUIRE_FLUSHING_MASK
);
5841 else if (EQ (coding_type
, Qemacs_mule
))
5843 coding
->detector
= detect_coding_emacs_mule
;
5844 coding
->decoder
= decode_coding_emacs_mule
;
5845 coding
->encoder
= encode_coding_emacs_mule
;
5846 coding
->common_flags
5847 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5848 if (! NILP (AREF (attrs
, coding_attr_emacs_mule_full
))
5849 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Vemacs_mule_charset_list
))
5851 Lisp_Object tail
, safe_charsets
;
5852 int max_charset_id
= 0;
5854 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5856 if (max_charset_id
< XFASTINT (XCAR (tail
)))
5857 max_charset_id
= XFASTINT (XCAR (tail
));
5858 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
5859 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
5860 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5862 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
5863 coding
->max_charset_id
= max_charset_id
;
5864 coding
->safe_charsets
= SDATA (safe_charsets
);
5866 coding
->spec
.emacs_mule
.cmp_status
.state
= COMPOSING_NO
;
5867 coding
->spec
.emacs_mule
.cmp_status
.method
= COMPOSITION_NO
;
5869 else if (EQ (coding_type
, Qshift_jis
))
5871 coding
->detector
= detect_coding_sjis
;
5872 coding
->decoder
= decode_coding_sjis
;
5873 coding
->encoder
= encode_coding_sjis
;
5874 coding
->common_flags
5875 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5877 else if (EQ (coding_type
, Qbig5
))
5879 coding
->detector
= detect_coding_big5
;
5880 coding
->decoder
= decode_coding_big5
;
5881 coding
->encoder
= encode_coding_big5
;
5882 coding
->common_flags
5883 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5885 else /* EQ (coding_type, Qraw_text) */
5887 coding
->detector
= NULL
;
5888 coding
->decoder
= decode_coding_raw_text
;
5889 coding
->encoder
= encode_coding_raw_text
;
5890 if (! EQ (eol_type
, Qunix
))
5892 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5893 if (! VECTORP (eol_type
))
5894 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5902 /* Return a list of charsets supported by CODING. */
5905 coding_charset_list (struct coding_system
*coding
)
5907 Lisp_Object attrs
, charset_list
;
5909 CODING_GET_INFO (coding
, attrs
, charset_list
);
5910 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5912 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5914 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5915 charset_list
= Viso_2022_charset_list
;
5917 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5919 charset_list
= Vemacs_mule_charset_list
;
5921 return charset_list
;
5925 /* Return a list of charsets supported by CODING-SYSTEM. */
5928 coding_system_charset_list (Lisp_Object coding_system
)
5931 Lisp_Object attrs
, charset_list
;
5933 CHECK_CODING_SYSTEM_GET_ID (coding_system
, id
);
5934 attrs
= CODING_ID_ATTRS (id
);
5936 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5938 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5940 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5941 charset_list
= Viso_2022_charset_list
;
5943 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5945 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5947 charset_list
= Vemacs_mule_charset_list
;
5951 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5953 return charset_list
;
5957 /* Return raw-text or one of its subsidiaries that has the same
5958 eol_type as CODING-SYSTEM. */
5961 raw_text_coding_system (Lisp_Object coding_system
)
5963 Lisp_Object spec
, attrs
;
5964 Lisp_Object eol_type
, raw_text_eol_type
;
5966 if (NILP (coding_system
))
5968 spec
= CODING_SYSTEM_SPEC (coding_system
);
5969 attrs
= AREF (spec
, 0);
5971 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
5972 return coding_system
;
5974 eol_type
= AREF (spec
, 2);
5975 if (VECTORP (eol_type
))
5977 spec
= CODING_SYSTEM_SPEC (Qraw_text
);
5978 raw_text_eol_type
= AREF (spec
, 2);
5979 return (EQ (eol_type
, Qunix
) ? AREF (raw_text_eol_type
, 0)
5980 : EQ (eol_type
, Qdos
) ? AREF (raw_text_eol_type
, 1)
5981 : AREF (raw_text_eol_type
, 2));
5984 /* Return true if CODING corresponds to raw-text coding-system. */
5987 raw_text_coding_system_p (struct coding_system
*coding
)
5989 return (coding
->decoder
== decode_coding_raw_text
5990 && coding
->encoder
== encode_coding_raw_text
) ? true : false;
5994 /* If CODING_SYSTEM doesn't specify end-of-line format, return one of
5995 the subsidiary that has the same eol-spec as PARENT (if it is not
5996 nil and specifies end-of-line format) or the system's setting
5997 (system_eol_type). */
6000 coding_inherit_eol_type (Lisp_Object coding_system
, Lisp_Object parent
)
6002 Lisp_Object spec
, eol_type
;
6004 if (NILP (coding_system
))
6005 coding_system
= Qraw_text
;
6007 CHECK_CODING_SYSTEM (coding_system
);
6008 spec
= CODING_SYSTEM_SPEC (coding_system
);
6009 eol_type
= AREF (spec
, 2);
6010 if (VECTORP (eol_type
))
6012 Lisp_Object parent_eol_type
;
6014 if (! NILP (parent
))
6016 Lisp_Object parent_spec
;
6018 CHECK_CODING_SYSTEM (parent
);
6019 parent_spec
= CODING_SYSTEM_SPEC (parent
);
6020 parent_eol_type
= AREF (parent_spec
, 2);
6021 if (VECTORP (parent_eol_type
))
6022 parent_eol_type
= system_eol_type
;
6025 parent_eol_type
= system_eol_type
;
6026 if (EQ (parent_eol_type
, Qunix
))
6027 coding_system
= AREF (eol_type
, 0);
6028 else if (EQ (parent_eol_type
, Qdos
))
6029 coding_system
= AREF (eol_type
, 1);
6030 else if (EQ (parent_eol_type
, Qmac
))
6031 coding_system
= AREF (eol_type
, 2);
6033 return coding_system
;
6037 /* Check if text-conversion and eol-conversion of CODING_SYSTEM are
6038 decided for writing to a process. If not, complement them, and
6039 return a new coding system. */
6042 complement_process_encoding_system (Lisp_Object coding_system
)
6044 Lisp_Object coding_base
= Qnil
, eol_base
= Qnil
;
6045 Lisp_Object spec
, attrs
;
6048 for (i
= 0; i
< 3; i
++)
6051 coding_system
= CDR_SAFE (Vdefault_process_coding_system
);
6053 coding_system
= preferred_coding_system ();
6054 spec
= CODING_SYSTEM_SPEC (coding_system
);
6057 attrs
= AREF (spec
, 0);
6058 if (NILP (coding_base
) && ! EQ (CODING_ATTR_TYPE (attrs
), Qundecided
))
6059 coding_base
= CODING_ATTR_BASE_NAME (attrs
);
6060 if (NILP (eol_base
) && ! VECTORP (AREF (spec
, 2)))
6061 eol_base
= coding_system
;
6062 if (! NILP (coding_base
) && ! NILP (eol_base
))
6067 /* The original CODING_SYSTEM didn't specify text-conversion or
6068 eol-conversion. Be sure that we return a fully complemented
6070 coding_system
= coding_inherit_eol_type (coding_base
, eol_base
);
6071 return coding_system
;
6075 /* Emacs has a mechanism to automatically detect a coding system if it
6076 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
6077 it's impossible to distinguish some coding systems accurately
6078 because they use the same range of codes. So, at first, coding
6079 systems are categorized into 7, those are:
6081 o coding-category-emacs-mule
6083 The category for a coding system which has the same code range
6084 as Emacs' internal format. Assigned the coding-system (Lisp
6085 symbol) `emacs-mule' by default.
6087 o coding-category-sjis
6089 The category for a coding system which has the same code range
6090 as SJIS. Assigned the coding-system (Lisp
6091 symbol) `japanese-shift-jis' by default.
6093 o coding-category-iso-7
6095 The category for a coding system which has the same code range
6096 as ISO2022 of 7-bit environment. This doesn't use any locking
6097 shift and single shift functions. This can encode/decode all
6098 charsets. Assigned the coding-system (Lisp symbol)
6099 `iso-2022-7bit' by default.
6101 o coding-category-iso-7-tight
6103 Same as coding-category-iso-7 except that this can
6104 encode/decode only the specified charsets.
6106 o coding-category-iso-8-1
6108 The category for a coding system which has the same code range
6109 as ISO2022 of 8-bit environment and graphic plane 1 used only
6110 for DIMENSION1 charset. This doesn't use any locking shift
6111 and single shift functions. Assigned the coding-system (Lisp
6112 symbol) `iso-latin-1' by default.
6114 o coding-category-iso-8-2
6116 The category for a coding system which has the same code range
6117 as ISO2022 of 8-bit environment and graphic plane 1 used only
6118 for DIMENSION2 charset. This doesn't use any locking shift
6119 and single shift functions. Assigned the coding-system (Lisp
6120 symbol) `japanese-iso-8bit' by default.
6122 o coding-category-iso-7-else
6124 The category for a coding system which has the same code range
6125 as ISO2022 of 7-bit environment but uses locking shift or
6126 single shift functions. Assigned the coding-system (Lisp
6127 symbol) `iso-2022-7bit-lock' by default.
6129 o coding-category-iso-8-else
6131 The category for a coding system which has the same code range
6132 as ISO2022 of 8-bit environment but uses locking shift or
6133 single shift functions. Assigned the coding-system (Lisp
6134 symbol) `iso-2022-8bit-ss2' by default.
6136 o coding-category-big5
6138 The category for a coding system which has the same code range
6139 as BIG5. Assigned the coding-system (Lisp symbol)
6140 `cn-big5' by default.
6142 o coding-category-utf-8
6144 The category for a coding system which has the same code range
6145 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp
6146 symbol) `utf-8' by default.
6148 o coding-category-utf-16-be
6150 The category for a coding system in which a text has an
6151 Unicode signature (cf. Unicode Standard) in the order of BIG
6152 endian at the head. Assigned the coding-system (Lisp symbol)
6153 `utf-16-be' by default.
6155 o coding-category-utf-16-le
6157 The category for a coding system in which a text has an
6158 Unicode signature (cf. Unicode Standard) in the order of
6159 LITTLE endian at the head. Assigned the coding-system (Lisp
6160 symbol) `utf-16-le' by default.
6162 o coding-category-ccl
6164 The category for a coding system of which encoder/decoder is
6165 written in CCL programs. The default value is nil, i.e., no
6166 coding system is assigned.
6168 o coding-category-binary
6170 The category for a coding system not categorized in any of the
6171 above. Assigned the coding-system (Lisp symbol)
6172 `no-conversion' by default.
6174 Each of them is a Lisp symbol and the value is an actual
6175 `coding-system's (this is also a Lisp symbol) assigned by a user.
6176 What Emacs does actually is to detect a category of coding system.
6177 Then, it uses a `coding-system' assigned to it. If Emacs can't
6178 decide only one possible category, it selects a category of the
6179 highest priority. Priorities of categories are also specified by a
6180 user in a Lisp variable `coding-category-list'.
6184 static Lisp_Object
adjust_coding_eol_type (struct coding_system
*coding
,
6188 /* Return the number of ASCII characters at the head of the source.
6189 By side effects, set coding->head_ascii and update
6190 coding->eol_seen. The value of coding->eol_seen is "logical or" of
6191 EOL_SEEN_LF, EOL_SEEN_CR, and EOL_SEEN_CRLF, but the value is
6192 reliable only when all the source bytes are ASCII. */
6195 check_ascii (struct coding_system
*coding
)
6197 const unsigned char *src
, *end
;
6198 Lisp_Object eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6199 int eol_seen
= coding
->eol_seen
;
6201 coding_set_source (coding
);
6202 src
= coding
->source
;
6203 end
= src
+ coding
->src_bytes
;
6205 if (inhibit_eol_conversion
6206 || SYMBOLP (eol_type
))
6208 /* We don't have to check EOL format. */
6209 while (src
< end
&& !( *src
& 0x80))
6212 eol_seen
|= EOL_SEEN_LF
;
6217 end
--; /* We look ahead one byte for "CR LF". */
6229 eol_seen
|= EOL_SEEN_CRLF
;
6233 eol_seen
|= EOL_SEEN_CR
;
6236 eol_seen
|= EOL_SEEN_LF
;
6242 /* All bytes but the last one C are ASCII. */
6246 eol_seen
|= EOL_SEEN_CR
;
6248 eol_seen
|= EOL_SEEN_LF
;
6253 coding
->head_ascii
= src
- coding
->source
;
6254 coding
->eol_seen
= eol_seen
;
6255 return (coding
->head_ascii
);
6259 /* Return the number of characters at the source if all the bytes are
6260 valid UTF-8 (of Unicode range). Otherwise, return -1. By side
6261 effects, update coding->eol_seen. The value of coding->eol_seen is
6262 "logical or" of EOL_SEEN_LF, EOL_SEEN_CR, and EOL_SEEN_CRLF, but
6263 the value is reliable only when all the source bytes are valid
6267 check_utf_8 (struct coding_system
*coding
)
6269 const unsigned char *src
, *end
;
6271 ptrdiff_t nchars
= coding
->head_ascii
;
6273 if (coding
->head_ascii
< 0)
6274 check_ascii (coding
);
6276 coding_set_source (coding
);
6277 src
= coding
->source
+ coding
->head_ascii
;
6278 /* We look ahead one byte for CR LF. */
6279 end
= coding
->source
+ coding
->src_bytes
- 1;
6280 eol_seen
= coding
->eol_seen
;
6285 if (UTF_8_1_OCTET_P (*src
))
6294 eol_seen
|= EOL_SEEN_CRLF
;
6299 eol_seen
|= EOL_SEEN_CR
;
6302 eol_seen
|= EOL_SEEN_LF
;
6305 else if (UTF_8_2_OCTET_LEADING_P (c
))
6307 if (c
< 0xC2 /* overlong sequence */
6309 || ! UTF_8_EXTRA_OCTET_P (src
[1]))
6313 else if (UTF_8_3_OCTET_LEADING_P (c
))
6316 || ! (UTF_8_EXTRA_OCTET_P (src
[1])
6317 && UTF_8_EXTRA_OCTET_P (src
[2])))
6319 c
= (((c
& 0xF) << 12)
6320 | ((src
[1] & 0x3F) << 6) | (src
[2] & 0x3F));
6321 if (c
< 0x800 /* overlong sequence */
6322 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
6326 else if (UTF_8_4_OCTET_LEADING_P (c
))
6329 || ! (UTF_8_EXTRA_OCTET_P (src
[1])
6330 && UTF_8_EXTRA_OCTET_P (src
[2])
6331 && UTF_8_EXTRA_OCTET_P (src
[3])))
6333 c
= (((c
& 0x7) << 18) | ((src
[1] & 0x3F) << 12)
6334 | ((src
[2] & 0x3F) << 6) | (src
[3] & 0x3F));
6335 if (c
< 0x10000 /* overlong sequence */
6336 || c
>= 0x110000) /* non-Unicode character */
6347 if (! UTF_8_1_OCTET_P (*src
))
6351 eol_seen
|= EOL_SEEN_CR
;
6352 else if (*src
== '\n')
6353 eol_seen
|= EOL_SEEN_LF
;
6355 coding
->eol_seen
= eol_seen
;
6360 /* Detect how end-of-line of a text of length SRC_BYTES pointed by
6361 SOURCE is encoded. If CATEGORY is one of
6362 coding_category_utf_16_XXXX, assume that CR and LF are encoded by
6363 two-byte, else they are encoded by one-byte.
6365 Return one of EOL_SEEN_XXX. */
6367 #define MAX_EOL_CHECK_COUNT 3
6370 detect_eol (const unsigned char *source
, ptrdiff_t src_bytes
,
6371 enum coding_category category
)
6373 const unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
6376 int eol_seen
= EOL_SEEN_NONE
;
6378 if ((1 << category
) & CATEGORY_MASK_UTF_16
)
6380 bool msb
= category
== (coding_category_utf_16_le
6381 | coding_category_utf_16_le_nosig
);
6384 while (src
+ 1 < src_end
)
6387 if (src
[msb
] == 0 && (c
== '\n' || c
== '\r'))
6392 this_eol
= EOL_SEEN_LF
;
6393 else if (src
+ 3 >= src_end
6394 || src
[msb
+ 2] != 0
6395 || src
[lsb
+ 2] != '\n')
6396 this_eol
= EOL_SEEN_CR
;
6399 this_eol
= EOL_SEEN_CRLF
;
6403 if (eol_seen
== EOL_SEEN_NONE
)
6404 /* This is the first end-of-line. */
6405 eol_seen
= this_eol
;
6406 else if (eol_seen
!= this_eol
)
6408 /* The found type is different from what found before.
6409 Allow for stray ^M characters in DOS EOL files. */
6410 if ((eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
)
6411 || (eol_seen
== EOL_SEEN_CRLF
6412 && this_eol
== EOL_SEEN_CR
))
6413 eol_seen
= EOL_SEEN_CRLF
;
6416 eol_seen
= EOL_SEEN_LF
;
6420 if (++total
== MAX_EOL_CHECK_COUNT
)
6427 while (src
< src_end
)
6430 if (c
== '\n' || c
== '\r')
6435 this_eol
= EOL_SEEN_LF
;
6436 else if (src
>= src_end
|| *src
!= '\n')
6437 this_eol
= EOL_SEEN_CR
;
6439 this_eol
= EOL_SEEN_CRLF
, src
++;
6441 if (eol_seen
== EOL_SEEN_NONE
)
6442 /* This is the first end-of-line. */
6443 eol_seen
= this_eol
;
6444 else if (eol_seen
!= this_eol
)
6446 /* The found type is different from what found before.
6447 Allow for stray ^M characters in DOS EOL files. */
6448 if ((eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
)
6449 || (eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
))
6450 eol_seen
= EOL_SEEN_CRLF
;
6453 eol_seen
= EOL_SEEN_LF
;
6457 if (++total
== MAX_EOL_CHECK_COUNT
)
6466 adjust_coding_eol_type (struct coding_system
*coding
, int eol_seen
)
6468 Lisp_Object eol_type
;
6470 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6471 if (! VECTORP (eol_type
))
6472 /* Already adjusted. */
6474 if (eol_seen
& EOL_SEEN_LF
)
6476 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 0));
6479 else if (eol_seen
& EOL_SEEN_CRLF
)
6481 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 1));
6484 else if (eol_seen
& EOL_SEEN_CR
)
6486 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 2));
6492 /* Detect how a text specified in CODING is encoded. If a coding
6493 system is detected, update fields of CODING by the detected coding
6497 detect_coding (struct coding_system
*coding
)
6499 const unsigned char *src
, *src_end
;
6500 unsigned int saved_mode
= coding
->mode
;
6501 Lisp_Object found
= Qnil
;
6502 Lisp_Object eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6504 coding
->consumed
= coding
->consumed_char
= 0;
6505 coding
->produced
= coding
->produced_char
= 0;
6506 coding_set_source (coding
);
6508 src_end
= coding
->source
+ coding
->src_bytes
;
6510 coding
->eol_seen
= EOL_SEEN_NONE
;
6511 /* If we have not yet decided the text encoding type, detect it
6513 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding
->id
)), Qundecided
))
6516 struct coding_detection_info detect_info
;
6517 bool null_byte_found
= 0, eight_bit_found
= 0;
6518 bool inhibit_nbd
= inhibit_flag (coding
->spec
.undecided
.inhibit_nbd
,
6519 inhibit_null_byte_detection
);
6520 bool inhibit_ied
= inhibit_flag (coding
->spec
.undecided
.inhibit_ied
,
6521 inhibit_iso_escape_detection
);
6522 bool prefer_utf_8
= coding
->spec
.undecided
.prefer_utf_8
;
6524 coding
->head_ascii
= 0;
6525 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
6526 for (src
= coding
->source
; src
< src_end
; src
++)
6531 eight_bit_found
= 1;
6532 if (null_byte_found
)
6537 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
6539 && ! detect_info
.checked
)
6541 if (detect_coding_iso_2022 (coding
, &detect_info
))
6543 /* We have scanned the whole data. */
6544 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
6546 /* We didn't find an 8-bit code. We may
6547 have found a null-byte, but it's very
6548 rare that a binary file conforms to
6551 coding
->head_ascii
= src
- coding
->source
;
6553 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
6557 else if (! c
&& !inhibit_nbd
)
6559 null_byte_found
= 1;
6560 if (eight_bit_found
)
6563 else if (! disable_ascii_optimization
6564 && ! inhibit_eol_conversion
)
6568 if (src
< src_end
&& src
[1] == '\n')
6570 coding
->eol_seen
|= EOL_SEEN_CRLF
;
6572 if (! eight_bit_found
)
6573 coding
->head_ascii
++;
6576 coding
->eol_seen
|= EOL_SEEN_CR
;
6580 coding
->eol_seen
|= EOL_SEEN_LF
;
6584 if (! eight_bit_found
)
6585 coding
->head_ascii
++;
6587 else if (! eight_bit_found
)
6588 coding
->head_ascii
++;
6591 if (null_byte_found
|| eight_bit_found
6592 || coding
->head_ascii
< coding
->src_bytes
6593 || detect_info
.found
)
6595 enum coding_category category
;
6596 struct coding_system
*this;
6598 if (coding
->head_ascii
== coding
->src_bytes
)
6599 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
6600 for (i
= 0; i
< coding_category_raw_text
; i
++)
6602 category
= coding_priorities
[i
];
6603 this = coding_categories
+ category
;
6604 if (detect_info
.found
& (1 << category
))
6609 if (null_byte_found
)
6611 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
6612 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
6614 else if (prefer_utf_8
6615 && detect_coding_utf_8 (coding
, &detect_info
))
6617 detect_info
.checked
|= ~CATEGORY_MASK_UTF_8
;
6618 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_8
;
6620 for (i
= 0; i
< coding_category_raw_text
; i
++)
6622 category
= coding_priorities
[i
];
6623 this = coding_categories
+ category
;
6624 /* Some of this->detector (e.g. detect_coding_sjis)
6625 require this information. */
6626 coding
->id
= this->id
;
6629 /* No coding system of this category is defined. */
6630 detect_info
.rejected
|= (1 << category
);
6632 else if (category
>= coding_category_raw_text
)
6634 else if (detect_info
.checked
& (1 << category
))
6636 if (detect_info
.found
& (1 << category
))
6639 else if ((*(this->detector
)) (coding
, &detect_info
)
6640 && detect_info
.found
& (1 << category
))
6645 if (i
< coding_category_raw_text
)
6647 if (category
== coding_category_utf_8_auto
)
6649 Lisp_Object coding_systems
;
6651 coding_systems
= AREF (CODING_ID_ATTRS (this->id
),
6652 coding_attr_utf_bom
);
6653 if (CONSP (coding_systems
))
6655 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6656 found
= XCAR (coding_systems
);
6658 found
= XCDR (coding_systems
);
6661 found
= CODING_ID_NAME (this->id
);
6663 else if (category
== coding_category_utf_16_auto
)
6665 Lisp_Object coding_systems
;
6667 coding_systems
= AREF (CODING_ID_ATTRS (this->id
),
6668 coding_attr_utf_bom
);
6669 if (CONSP (coding_systems
))
6671 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6672 found
= XCAR (coding_systems
);
6673 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6674 found
= XCDR (coding_systems
);
6677 found
= CODING_ID_NAME (this->id
);
6680 found
= CODING_ID_NAME (this->id
);
6682 else if (null_byte_found
)
6683 found
= Qno_conversion
;
6684 else if ((detect_info
.rejected
& CATEGORY_MASK_ANY
)
6685 == CATEGORY_MASK_ANY
)
6687 else if (detect_info
.rejected
)
6688 for (i
= 0; i
< coding_category_raw_text
; i
++)
6689 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
6691 this = coding_categories
+ coding_priorities
[i
];
6692 found
= CODING_ID_NAME (this->id
);
6697 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6698 == coding_category_utf_8_auto
)
6700 Lisp_Object coding_systems
;
6701 struct coding_detection_info detect_info
;
6704 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6705 detect_info
.found
= detect_info
.rejected
= 0;
6706 if (check_ascii (coding
) == coding
->src_bytes
)
6708 if (CONSP (coding_systems
))
6709 found
= XCDR (coding_systems
);
6713 if (CONSP (coding_systems
)
6714 && detect_coding_utf_8 (coding
, &detect_info
))
6716 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6717 found
= XCAR (coding_systems
);
6719 found
= XCDR (coding_systems
);
6723 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6724 == coding_category_utf_16_auto
)
6726 Lisp_Object coding_systems
;
6727 struct coding_detection_info detect_info
;
6730 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6731 detect_info
.found
= detect_info
.rejected
= 0;
6732 coding
->head_ascii
= 0;
6733 if (CONSP (coding_systems
)
6734 && detect_coding_utf_16 (coding
, &detect_info
))
6736 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6737 found
= XCAR (coding_systems
);
6738 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6739 found
= XCDR (coding_systems
);
6745 int specified_eol
= (VECTORP (eol_type
) ? EOL_SEEN_NONE
6746 : EQ (eol_type
, Qdos
) ? EOL_SEEN_CRLF
6747 : EQ (eol_type
, Qmac
) ? EOL_SEEN_CR
6750 setup_coding_system (found
, coding
);
6751 if (specified_eol
!= EOL_SEEN_NONE
)
6752 adjust_coding_eol_type (coding
, specified_eol
);
6755 coding
->mode
= saved_mode
;
6760 decode_eol (struct coding_system
*coding
)
6762 Lisp_Object eol_type
;
6763 unsigned char *p
, *pbeg
, *pend
;
6765 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6766 if (EQ (eol_type
, Qunix
) || inhibit_eol_conversion
)
6769 if (NILP (coding
->dst_object
))
6770 pbeg
= coding
->destination
;
6772 pbeg
= BYTE_POS_ADDR (coding
->dst_pos_byte
);
6773 pend
= pbeg
+ coding
->produced
;
6775 if (VECTORP (eol_type
))
6777 int eol_seen
= EOL_SEEN_NONE
;
6779 for (p
= pbeg
; p
< pend
; p
++)
6782 eol_seen
|= EOL_SEEN_LF
;
6783 else if (*p
== '\r')
6785 if (p
+ 1 < pend
&& *(p
+ 1) == '\n')
6787 eol_seen
|= EOL_SEEN_CRLF
;
6791 eol_seen
|= EOL_SEEN_CR
;
6794 /* Handle DOS-style EOLs in a file with stray ^M characters. */
6795 if ((eol_seen
& EOL_SEEN_CRLF
) != 0
6796 && (eol_seen
& EOL_SEEN_CR
) != 0
6797 && (eol_seen
& EOL_SEEN_LF
) == 0)
6798 eol_seen
= EOL_SEEN_CRLF
;
6799 else if (eol_seen
!= EOL_SEEN_NONE
6800 && eol_seen
!= EOL_SEEN_LF
6801 && eol_seen
!= EOL_SEEN_CRLF
6802 && eol_seen
!= EOL_SEEN_CR
)
6803 eol_seen
= EOL_SEEN_LF
;
6804 if (eol_seen
!= EOL_SEEN_NONE
)
6805 eol_type
= adjust_coding_eol_type (coding
, eol_seen
);
6808 if (EQ (eol_type
, Qmac
))
6810 for (p
= pbeg
; p
< pend
; p
++)
6814 else if (EQ (eol_type
, Qdos
))
6817 ptrdiff_t pos
= coding
->dst_pos
;
6818 ptrdiff_t pos_byte
= coding
->dst_pos_byte
;
6819 ptrdiff_t pos_end
= pos_byte
+ coding
->produced
- 1;
6821 /* This assertion is here instead of code, now deleted, that
6822 handled the NILP case, which no longer happens with the
6823 current codebase. */
6824 eassert (!NILP (coding
->dst_object
));
6826 while (pos_byte
< pos_end
)
6828 p
= BYTE_POS_ADDR (pos_byte
);
6829 if (*p
== '\r' && p
[1] == '\n')
6831 del_range_2 (pos
, pos_byte
, pos
+ 1, pos_byte
+ 1, 0);
6836 if (coding
->dst_multibyte
)
6837 pos_byte
+= BYTES_BY_CHAR_HEAD (*p
);
6841 coding
->produced
-= n
;
6842 coding
->produced_char
-= n
;
6847 /* MAX_LOOKUP's maximum value. MAX_LOOKUP is an int and so cannot
6848 exceed INT_MAX. Also, MAX_LOOKUP is multiplied by sizeof (int) for
6849 alloca, so it cannot exceed MAX_ALLOCA / sizeof (int). */
6850 enum { MAX_LOOKUP_MAX
= min (INT_MAX
, MAX_ALLOCA
/ sizeof (int)) };
6852 /* Return a translation table (or list of them) from coding system
6853 attribute vector ATTRS for encoding (if ENCODEP) or decoding (if
6857 get_translation_table (Lisp_Object attrs
, bool encodep
, int *max_lookup
)
6859 Lisp_Object standard
, translation_table
;
6862 if (NILP (Venable_character_translation
))
6869 translation_table
= CODING_ATTR_ENCODE_TBL (attrs
),
6870 standard
= Vstandard_translation_table_for_encode
;
6872 translation_table
= CODING_ATTR_DECODE_TBL (attrs
),
6873 standard
= Vstandard_translation_table_for_decode
;
6874 if (NILP (translation_table
))
6875 translation_table
= standard
;
6878 if (SYMBOLP (translation_table
))
6879 translation_table
= Fget (translation_table
, Qtranslation_table
);
6880 else if (CONSP (translation_table
))
6882 translation_table
= Fcopy_sequence (translation_table
);
6883 for (val
= translation_table
; CONSP (val
); val
= XCDR (val
))
6884 if (SYMBOLP (XCAR (val
)))
6885 XSETCAR (val
, Fget (XCAR (val
), Qtranslation_table
));
6887 if (CHAR_TABLE_P (standard
))
6889 if (CONSP (translation_table
))
6890 translation_table
= nconc2 (translation_table
, list1 (standard
));
6892 translation_table
= list2 (translation_table
, standard
);
6899 if (CHAR_TABLE_P (translation_table
)
6900 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table
)) > 1)
6902 val
= XCHAR_TABLE (translation_table
)->extras
[1];
6903 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6904 *max_lookup
= min (XFASTINT (val
), MAX_LOOKUP_MAX
);
6906 else if (CONSP (translation_table
))
6910 for (tail
= translation_table
; CONSP (tail
); tail
= XCDR (tail
))
6911 if (CHAR_TABLE_P (XCAR (tail
))
6912 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail
))) > 1)
6914 Lisp_Object tailval
= XCHAR_TABLE (XCAR (tail
))->extras
[1];
6915 if (NATNUMP (tailval
) && *max_lookup
< XFASTINT (tailval
))
6916 *max_lookup
= min (XFASTINT (tailval
), MAX_LOOKUP_MAX
);
6920 return translation_table
;
6923 #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \
6926 if (CHAR_TABLE_P (table)) \
6928 trans = CHAR_TABLE_REF (table, c); \
6929 if (CHARACTERP (trans)) \
6930 c = XFASTINT (trans), trans = Qnil; \
6932 else if (CONSP (table)) \
6936 for (tail = table; CONSP (tail); tail = XCDR (tail)) \
6937 if (CHAR_TABLE_P (XCAR (tail))) \
6939 trans = CHAR_TABLE_REF (XCAR (tail), c); \
6940 if (CHARACTERP (trans)) \
6941 c = XFASTINT (trans), trans = Qnil; \
6942 else if (! NILP (trans)) \
6949 /* Return a translation of character(s) at BUF according to TRANS.
6950 TRANS is TO-CHAR or ((FROM . TO) ...) where
6951 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...].
6952 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a
6953 translation is found, and Qnil if not found..
6954 If BUF is too short to lookup characters in FROM, return Qt. */
6957 get_translation (Lisp_Object trans
, int *buf
, int *buf_end
)
6960 if (INTEGERP (trans
))
6962 for (; CONSP (trans
); trans
= XCDR (trans
))
6964 Lisp_Object val
= XCAR (trans
);
6965 Lisp_Object from
= XCAR (val
);
6966 ptrdiff_t len
= ASIZE (from
);
6969 for (i
= 0; i
< len
; i
++)
6971 if (buf
+ i
== buf_end
)
6973 if (XINT (AREF (from
, i
)) != buf
[i
])
6984 produce_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
6987 unsigned char *dst
= coding
->destination
+ coding
->produced
;
6988 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
6990 ptrdiff_t produced_chars
= 0;
6993 if (! coding
->chars_at_source
)
6995 /* Source characters are in coding->charbuf. */
6996 int *buf
= coding
->charbuf
;
6997 int *buf_end
= buf
+ coding
->charbuf_used
;
6999 if (EQ (coding
->src_object
, coding
->dst_object
)
7000 && ! NILP (coding
->dst_object
))
7002 eassert (growable_destination (coding
));
7003 coding_set_source (coding
);
7004 dst_end
= ((unsigned char *) coding
->source
) + coding
->consumed
;
7007 while (buf
< buf_end
)
7014 ptrdiff_t from_nchars
= 1, to_nchars
= 1;
7015 Lisp_Object trans
= Qnil
;
7017 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7020 trans
= get_translation (trans
, buf
, buf_end
);
7021 if (INTEGERP (trans
))
7023 else if (CONSP (trans
))
7025 from_nchars
= ASIZE (XCAR (trans
));
7026 trans
= XCDR (trans
);
7027 if (INTEGERP (trans
))
7031 to_nchars
= ASIZE (trans
);
7032 c
= XINT (AREF (trans
, 0));
7035 else if (EQ (trans
, Qt
) && ! last_block
)
7039 if ((dst_end
- dst
) / MAX_MULTIBYTE_LENGTH
< to_nchars
)
7041 eassert (growable_destination (coding
));
7043 if (INT_MULTIPLY_WRAPV (to_nchars
, MAX_MULTIBYTE_LENGTH
,
7045 || INT_ADD_WRAPV (buf_end
- buf
, dst_size
, &dst_size
))
7046 memory_full (SIZE_MAX
);
7047 dst
= alloc_destination (coding
, dst_size
, dst
);
7048 if (EQ (coding
->src_object
, coding
->dst_object
))
7050 coding_set_source (coding
);
7051 dst_end
= (((unsigned char *) coding
->source
)
7052 + coding
->consumed
);
7055 dst_end
= coding
->destination
+ coding
->dst_bytes
;
7058 for (i
= 0; i
< to_nchars
; i
++)
7061 c
= XINT (AREF (trans
, i
));
7062 if (coding
->dst_multibyte
7063 || ! CHAR_BYTE8_P (c
))
7064 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
7066 *dst
++ = CHAR_TO_BYTE8 (c
);
7068 produced_chars
+= to_nchars
;
7072 /* This is an annotation datum. (-C) is the length. */
7075 carryover
= buf_end
- buf
;
7079 /* Source characters are at coding->source. */
7080 const unsigned char *src
= coding
->source
;
7081 const unsigned char *src_end
= src
+ coding
->consumed
;
7083 if (EQ (coding
->dst_object
, coding
->src_object
))
7085 eassert (growable_destination (coding
));
7086 dst_end
= (unsigned char *) src
;
7088 if (coding
->src_multibyte
!= coding
->dst_multibyte
)
7090 if (coding
->src_multibyte
)
7092 bool multibytep
= 1;
7093 ptrdiff_t consumed_chars
= 0;
7097 const unsigned char *src_base
= src
;
7103 eassert (growable_destination (coding
));
7104 if (EQ (coding
->src_object
, coding
->dst_object
))
7105 dst_end
= (unsigned char *) src
;
7108 ptrdiff_t offset
= src
- coding
->source
;
7110 dst
= alloc_destination (coding
, src_end
- src
+ 1,
7112 dst_end
= coding
->destination
+ coding
->dst_bytes
;
7113 coding_set_source (coding
);
7114 src
= coding
->source
+ offset
;
7115 src_end
= coding
->source
+ coding
->consumed
;
7116 if (EQ (coding
->src_object
, coding
->dst_object
))
7117 dst_end
= (unsigned char *) src
;
7127 while (src
< src_end
)
7129 bool multibytep
= 1;
7132 if (dst
>= dst_end
- 1)
7134 eassert (growable_destination (coding
));
7135 if (EQ (coding
->src_object
, coding
->dst_object
))
7136 dst_end
= (unsigned char *) src
;
7137 if (dst
>= dst_end
- 1)
7139 ptrdiff_t offset
= src
- coding
->source
;
7140 ptrdiff_t more_bytes
;
7142 if (EQ (coding
->src_object
, coding
->dst_object
))
7143 more_bytes
= ((src_end
- src
) / 2) + 2;
7145 more_bytes
= src_end
- src
+ 2;
7146 dst
= alloc_destination (coding
, more_bytes
, dst
);
7147 dst_end
= coding
->destination
+ coding
->dst_bytes
;
7148 coding_set_source (coding
);
7149 src
= coding
->source
+ offset
;
7150 src_end
= coding
->source
+ coding
->consumed
;
7151 if (EQ (coding
->src_object
, coding
->dst_object
))
7152 dst_end
= (unsigned char *) src
;
7160 if (!EQ (coding
->src_object
, coding
->dst_object
))
7162 ptrdiff_t require
= coding
->src_bytes
- coding
->dst_bytes
;
7166 ptrdiff_t offset
= src
- coding
->source
;
7168 dst
= alloc_destination (coding
, require
, dst
);
7169 coding_set_source (coding
);
7170 src
= coding
->source
+ offset
;
7171 src_end
= coding
->source
+ coding
->consumed
;
7174 produced_chars
= coding
->consumed_char
;
7175 while (src
< src_end
)
7180 produced
= dst
- (coding
->destination
+ coding
->produced
);
7181 if (BUFFERP (coding
->dst_object
) && produced_chars
> 0)
7182 insert_from_gap (produced_chars
, produced
, 0);
7183 coding
->produced
+= produced
;
7184 coding
->produced_char
+= produced_chars
;
7188 /* Compose text in CODING->object according to the annotation data at
7189 CHARBUF. CHARBUF is an array:
7190 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ]
7194 produce_composition (struct coding_system
*coding
, int *charbuf
, ptrdiff_t pos
)
7198 enum composition_method method
;
7199 Lisp_Object components
;
7201 len
= -charbuf
[0] - MAX_ANNOTATION_LENGTH
;
7202 to
= pos
+ charbuf
[2];
7203 method
= (enum composition_method
) (charbuf
[4]);
7205 if (method
== COMPOSITION_RELATIVE
)
7209 Lisp_Object args
[MAX_COMPOSITION_COMPONENTS
* 2 - 1];
7212 if (method
== COMPOSITION_WITH_RULE
)
7213 len
= charbuf
[2] * 3 - 2;
7214 charbuf
+= MAX_ANNOTATION_LENGTH
;
7215 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */
7216 for (i
= j
= 0; i
< len
&& charbuf
[i
] != -1; i
++, j
++)
7218 if (charbuf
[i
] >= 0)
7219 args
[j
] = make_number (charbuf
[i
]);
7223 args
[j
] = make_number (charbuf
[i
] % 0x100);
7226 components
= (i
== j
? Fstring (j
, args
) : Fvector (j
, args
));
7228 compose_text (pos
, to
, components
, Qnil
, coding
->dst_object
);
7232 /* Put `charset' property on text in CODING->object according to
7233 the annotation data at CHARBUF. CHARBUF is an array:
7234 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ]
7238 produce_charset (struct coding_system
*coding
, int *charbuf
, ptrdiff_t pos
)
7240 ptrdiff_t from
= pos
- charbuf
[2];
7241 struct charset
*charset
= CHARSET_FROM_ID (charbuf
[3]);
7243 Fput_text_property (make_number (from
), make_number (pos
),
7244 Qcharset
, CHARSET_NAME (charset
),
7245 coding
->dst_object
);
7248 #define MAX_CHARBUF_SIZE 0x4000
7249 /* How many units decoding functions expect in coding->charbuf at
7250 most. Currently, decode_coding_emacs_mule expects the following
7251 size, and that is the largest value. */
7252 #define MAX_CHARBUF_EXTRA_SIZE ((MAX_ANNOTATION_LENGTH * 3) + 1)
7254 #define ALLOC_CONVERSION_WORK_AREA(coding, size) \
7256 ptrdiff_t units = min ((size) + MAX_CHARBUF_EXTRA_SIZE, \
7257 MAX_CHARBUF_SIZE); \
7258 coding->charbuf = SAFE_ALLOCA (units * sizeof (int)); \
7259 coding->charbuf_size = units; \
7263 produce_annotation (struct coding_system
*coding
, ptrdiff_t pos
)
7265 int *charbuf
= coding
->charbuf
;
7266 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
7268 if (NILP (coding
->dst_object
))
7271 while (charbuf
< charbuf_end
)
7277 int len
= -*charbuf
;
7282 case CODING_ANNOTATE_COMPOSITION_MASK
:
7283 produce_composition (coding
, charbuf
, pos
);
7285 case CODING_ANNOTATE_CHARSET_MASK
:
7286 produce_charset (coding
, charbuf
, pos
);
7296 /* Decode the data at CODING->src_object into CODING->dst_object.
7297 CODING->src_object is a buffer, a string, or nil.
7298 CODING->dst_object is a buffer.
7300 If CODING->src_object is a buffer, it must be the current buffer.
7301 In this case, if CODING->src_pos is positive, it is a position of
7302 the source text in the buffer, otherwise, the source text is in the
7303 gap area of the buffer, and CODING->src_pos specifies the offset of
7304 the text from GPT (which must be the same as PT). If this is the
7305 same buffer as CODING->dst_object, CODING->src_pos must be
7308 If CODING->src_object is a string, CODING->src_pos is an index to
7311 If CODING->src_object is nil, CODING->source must already point to
7312 the non-relocatable memory area. In this case, CODING->src_pos is
7313 an offset from CODING->source.
7315 The decoded data is inserted at the current point of the buffer
7320 decode_coding (struct coding_system
*coding
)
7323 Lisp_Object undo_list
;
7324 Lisp_Object translation_table
;
7325 struct ccl_spec cclspec
;
7331 if (BUFFERP (coding
->src_object
)
7332 && coding
->src_pos
> 0
7333 && coding
->src_pos
< GPT
7334 && coding
->src_pos
+ coding
->src_chars
> GPT
)
7335 move_gap_both (coding
->src_pos
, coding
->src_pos_byte
);
7338 if (BUFFERP (coding
->dst_object
))
7340 set_buffer_internal (XBUFFER (coding
->dst_object
));
7342 move_gap_both (PT
, PT_BYTE
);
7344 /* We must disable undo_list in order to record the whole insert
7345 transaction via record_insert at the end. But doing so also
7346 disables the recording of the first change to the undo_list.
7347 Therefore we check for first change here and record it via
7348 record_first_change if needed. */
7349 if (MODIFF
<= SAVE_MODIFF
)
7350 record_first_change ();
7352 undo_list
= BVAR (current_buffer
, undo_list
);
7353 bset_undo_list (current_buffer
, Qt
);
7356 coding
->consumed
= coding
->consumed_char
= 0;
7357 coding
->produced
= coding
->produced_char
= 0;
7358 coding
->chars_at_source
= 0;
7359 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7361 ALLOC_CONVERSION_WORK_AREA (coding
, coding
->src_bytes
);
7363 attrs
= CODING_ID_ATTRS (coding
->id
);
7364 translation_table
= get_translation_table (attrs
, 0, NULL
);
7367 if (coding
->decoder
== decode_coding_ccl
)
7369 coding
->spec
.ccl
= &cclspec
;
7370 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_DECODER (coding
));
7374 ptrdiff_t pos
= coding
->dst_pos
+ coding
->produced_char
;
7376 coding_set_source (coding
);
7377 coding
->annotated
= 0;
7378 coding
->charbuf_used
= carryover
;
7379 (*(coding
->decoder
)) (coding
);
7380 coding_set_destination (coding
);
7381 carryover
= produce_chars (coding
, translation_table
, 0);
7382 if (coding
->annotated
)
7383 produce_annotation (coding
, pos
);
7384 for (i
= 0; i
< carryover
; i
++)
7386 = coding
->charbuf
[coding
->charbuf_used
- carryover
+ i
];
7388 while (coding
->result
== CODING_RESULT_INSUFFICIENT_DST
7389 || (coding
->consumed
< coding
->src_bytes
7390 && (coding
->result
== CODING_RESULT_SUCCESS
7391 || coding
->result
== CODING_RESULT_INVALID_SRC
)));
7395 coding_set_destination (coding
);
7396 coding
->charbuf_used
= carryover
;
7397 produce_chars (coding
, translation_table
, 1);
7400 coding
->carryover_bytes
= 0;
7401 if (coding
->consumed
< coding
->src_bytes
)
7403 ptrdiff_t nbytes
= coding
->src_bytes
- coding
->consumed
;
7404 const unsigned char *src
;
7406 coding_set_source (coding
);
7407 coding_set_destination (coding
);
7408 src
= coding
->source
+ coding
->consumed
;
7410 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
7412 /* Flush out unprocessed data as binary chars. We are sure
7413 that the number of data is less than the size of
7415 coding
->charbuf_used
= 0;
7416 coding
->chars_at_source
= 0;
7418 while (nbytes
-- > 0)
7423 c
= BYTE8_TO_CHAR (c
);
7424 coding
->charbuf
[coding
->charbuf_used
++] = c
;
7426 produce_chars (coding
, Qnil
, 1);
7430 /* Record unprocessed bytes in coding->carryover. We are
7431 sure that the number of data is less than the size of
7432 coding->carryover. */
7433 unsigned char *p
= coding
->carryover
;
7435 if (nbytes
> sizeof coding
->carryover
)
7436 nbytes
= sizeof coding
->carryover
;
7437 coding
->carryover_bytes
= nbytes
;
7438 while (nbytes
-- > 0)
7441 coding
->consumed
= coding
->src_bytes
;
7444 if (! EQ (CODING_ID_EOL_TYPE (coding
->id
), Qunix
)
7445 && !inhibit_eol_conversion
)
7446 decode_eol (coding
);
7447 if (BUFFERP (coding
->dst_object
))
7449 bset_undo_list (current_buffer
, undo_list
);
7450 record_insert (coding
->dst_pos
, coding
->produced_char
);
7457 /* Extract an annotation datum from a composition starting at POS and
7458 ending before LIMIT of CODING->src_object (buffer or string), store
7459 the data in BUF, set *STOP to a starting position of the next
7460 composition (if any) or to LIMIT, and return the address of the
7461 next element of BUF.
7463 If such an annotation is not found, set *STOP to a starting
7464 position of a composition after POS (if any) or to LIMIT, and
7468 handle_composition_annotation (ptrdiff_t pos
, ptrdiff_t limit
,
7469 struct coding_system
*coding
, int *buf
,
7472 ptrdiff_t start
, end
;
7475 if (! find_composition (pos
, limit
, &start
, &end
, &prop
, coding
->src_object
)
7478 else if (start
> pos
)
7484 /* We found a composition. Store the corresponding
7485 annotation data in BUF. */
7487 enum composition_method method
= composition_method (prop
);
7488 int nchars
= COMPOSITION_LENGTH (prop
);
7490 ADD_COMPOSITION_DATA (buf
, nchars
, 0, method
);
7491 if (method
!= COMPOSITION_RELATIVE
)
7493 Lisp_Object components
;
7494 ptrdiff_t i
, len
, i_byte
;
7496 components
= COMPOSITION_COMPONENTS (prop
);
7497 if (VECTORP (components
))
7499 len
= ASIZE (components
);
7500 for (i
= 0; i
< len
; i
++)
7501 *buf
++ = XINT (AREF (components
, i
));
7503 else if (STRINGP (components
))
7505 len
= SCHARS (components
);
7509 FETCH_STRING_CHAR_ADVANCE (*buf
, components
, i
, i_byte
);
7513 else if (INTEGERP (components
))
7516 *buf
++ = XINT (components
);
7518 else if (CONSP (components
))
7520 for (len
= 0; CONSP (components
);
7521 len
++, components
= XCDR (components
))
7522 *buf
++ = XINT (XCAR (components
));
7530 if (find_composition (end
, limit
, &start
, &end
, &prop
,
7541 /* Extract an annotation datum from a text property `charset' at POS of
7542 CODING->src_object (buffer of string), store the data in BUF, set
7543 *STOP to the position where the value of `charset' property changes
7544 (limiting by LIMIT), and return the address of the next element of
7547 If the property value is nil, set *STOP to the position where the
7548 property value is non-nil (limiting by LIMIT), and return BUF. */
7551 handle_charset_annotation (ptrdiff_t pos
, ptrdiff_t limit
,
7552 struct coding_system
*coding
, int *buf
,
7555 Lisp_Object val
, next
;
7558 val
= Fget_text_property (make_number (pos
), Qcharset
, coding
->src_object
);
7559 if (! NILP (val
) && CHARSETP (val
))
7560 id
= XINT (CHARSET_SYMBOL_ID (val
));
7563 ADD_CHARSET_DATA (buf
, 0, id
);
7564 next
= Fnext_single_property_change (make_number (pos
), Qcharset
,
7566 make_number (limit
));
7567 *stop
= XINT (next
);
7573 consume_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
7576 int *buf
= coding
->charbuf
;
7577 int *buf_end
= coding
->charbuf
+ coding
->charbuf_size
;
7578 const unsigned char *src
= coding
->source
+ coding
->consumed
;
7579 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
7580 ptrdiff_t pos
= coding
->src_pos
+ coding
->consumed_char
;
7581 ptrdiff_t end_pos
= coding
->src_pos
+ coding
->src_chars
;
7582 bool multibytep
= coding
->src_multibyte
;
7583 Lisp_Object eol_type
;
7585 ptrdiff_t stop
, stop_composition
, stop_charset
;
7586 int *lookup_buf
= NULL
;
7588 if (! NILP (translation_table
))
7589 lookup_buf
= alloca (sizeof (int) * max_lookup
);
7591 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
7592 if (VECTORP (eol_type
))
7595 /* Note: composition handling is not yet implemented. */
7596 coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
7598 if (NILP (coding
->src_object
))
7599 stop
= stop_composition
= stop_charset
= end_pos
;
7602 if (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
)
7603 stop
= stop_composition
= pos
;
7605 stop
= stop_composition
= end_pos
;
7606 if (coding
->common_flags
& CODING_ANNOTATE_CHARSET_MASK
)
7607 stop
= stop_charset
= pos
;
7609 stop_charset
= end_pos
;
7612 /* Compensate for CRLF and conversion. */
7613 buf_end
-= 1 + MAX_ANNOTATION_LENGTH
;
7614 while (buf
< buf_end
)
7622 if (pos
== stop_composition
)
7623 buf
= handle_composition_annotation (pos
, end_pos
, coding
,
7624 buf
, &stop_composition
);
7625 if (pos
== stop_charset
)
7626 buf
= handle_charset_annotation (pos
, end_pos
, coding
,
7627 buf
, &stop_charset
);
7628 stop
= (stop_composition
< stop_charset
7629 ? stop_composition
: stop_charset
);
7636 if (coding
->encoder
== encode_coding_raw_text
7637 || coding
->encoder
== encode_coding_ccl
)
7639 else if ((bytes
= MULTIBYTE_LENGTH (src
, src_end
)) > 0)
7640 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
+= bytes
;
7642 c
= BYTE8_TO_CHAR (*src
), src
++, pos
++;
7645 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
++;
7646 if ((c
== '\r') && (coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
))
7648 if (! EQ (eol_type
, Qunix
))
7652 if (EQ (eol_type
, Qdos
))
7660 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7665 ptrdiff_t from_nchars
= 1, to_nchars
= 1;
7666 int *lookup_buf_end
;
7667 const unsigned char *p
= src
;
7671 for (i
= 1; i
< max_lookup
&& p
< src_end
; i
++)
7672 lookup_buf
[i
] = STRING_CHAR_ADVANCE (p
);
7673 lookup_buf_end
= lookup_buf
+ i
;
7674 trans
= get_translation (trans
, lookup_buf
, lookup_buf_end
);
7675 if (INTEGERP (trans
))
7677 else if (CONSP (trans
))
7679 from_nchars
= ASIZE (XCAR (trans
));
7680 trans
= XCDR (trans
);
7681 if (INTEGERP (trans
))
7685 to_nchars
= ASIZE (trans
);
7686 if (buf_end
- buf
< to_nchars
)
7688 c
= XINT (AREF (trans
, 0));
7694 for (i
= 1; i
< to_nchars
; i
++)
7695 *buf
++ = XINT (AREF (trans
, i
));
7696 for (i
= 1; i
< from_nchars
; i
++, pos
++)
7697 src
+= MULTIBYTE_LENGTH_NO_CHECK (src
);
7701 coding
->consumed
= src
- coding
->source
;
7702 coding
->consumed_char
= pos
- coding
->src_pos
;
7703 coding
->charbuf_used
= buf
- coding
->charbuf
;
7704 coding
->chars_at_source
= 0;
7708 /* Encode the text at CODING->src_object into CODING->dst_object.
7709 CODING->src_object is a buffer or a string.
7710 CODING->dst_object is a buffer or nil.
7712 If CODING->src_object is a buffer, it must be the current buffer.
7713 In this case, if CODING->src_pos is positive, it is a position of
7714 the source text in the buffer, otherwise. the source text is in the
7715 gap area of the buffer, and coding->src_pos specifies the offset of
7716 the text from GPT (which must be the same as PT). If this is the
7717 same buffer as CODING->dst_object, CODING->src_pos must be
7718 negative and CODING should not have `pre-write-conversion'.
7720 If CODING->src_object is a string, CODING should not have
7721 `pre-write-conversion'.
7723 If CODING->dst_object is a buffer, the encoded data is inserted at
7724 the current point of that buffer.
7726 If CODING->dst_object is nil, the encoded data is placed at the
7727 memory area specified by CODING->destination. */
7730 encode_coding (struct coding_system
*coding
)
7733 Lisp_Object translation_table
;
7735 struct ccl_spec cclspec
;
7739 attrs
= CODING_ID_ATTRS (coding
->id
);
7740 if (coding
->encoder
== encode_coding_raw_text
)
7741 translation_table
= Qnil
, max_lookup
= 0;
7743 translation_table
= get_translation_table (attrs
, 1, &max_lookup
);
7745 if (BUFFERP (coding
->dst_object
))
7747 set_buffer_internal (XBUFFER (coding
->dst_object
));
7748 coding
->dst_multibyte
7749 = ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
7752 coding
->consumed
= coding
->consumed_char
= 0;
7753 coding
->produced
= coding
->produced_char
= 0;
7754 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7756 ALLOC_CONVERSION_WORK_AREA (coding
, coding
->src_chars
);
7758 if (coding
->encoder
== encode_coding_ccl
)
7760 coding
->spec
.ccl
= &cclspec
;
7761 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_ENCODER (coding
));
7764 coding_set_source (coding
);
7765 consume_chars (coding
, translation_table
, max_lookup
);
7766 coding_set_destination (coding
);
7767 (*(coding
->encoder
)) (coding
);
7768 } while (coding
->consumed_char
< coding
->src_chars
);
7770 if (BUFFERP (coding
->dst_object
) && coding
->produced_char
> 0)
7771 insert_from_gap (coding
->produced_char
, coding
->produced
, 0);
7777 /* Name (or base name) of work buffer for code conversion. */
7778 static Lisp_Object Vcode_conversion_workbuf_name
;
7780 /* A working buffer used by the top level conversion. Once it is
7781 created, it is never destroyed. It has the name
7782 Vcode_conversion_workbuf_name. The other working buffers are
7783 destroyed after the use is finished, and their names are modified
7784 versions of Vcode_conversion_workbuf_name. */
7785 static Lisp_Object Vcode_conversion_reused_workbuf
;
7787 /* True iff Vcode_conversion_reused_workbuf is already in use. */
7788 static bool reused_workbuf_in_use
;
7791 /* Return a working buffer of code conversion. MULTIBYTE specifies the
7792 multibyteness of returning buffer. */
7795 make_conversion_work_buffer (bool multibyte
)
7797 Lisp_Object name
, workbuf
;
7798 struct buffer
*current
;
7800 if (reused_workbuf_in_use
)
7802 name
= Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name
, Qnil
);
7803 workbuf
= Fget_buffer_create (name
);
7807 reused_workbuf_in_use
= 1;
7808 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf
)))
7809 Vcode_conversion_reused_workbuf
7810 = Fget_buffer_create (Vcode_conversion_workbuf_name
);
7811 workbuf
= Vcode_conversion_reused_workbuf
;
7813 current
= current_buffer
;
7814 set_buffer_internal (XBUFFER (workbuf
));
7815 /* We can't allow modification hooks to run in the work buffer. For
7816 instance, directory_files_internal assumes that file decoding
7817 doesn't compile new regexps. */
7818 Fset (Fmake_local_variable (Qinhibit_modification_hooks
), Qt
);
7820 bset_undo_list (current_buffer
, Qt
);
7821 bset_enable_multibyte_characters (current_buffer
, multibyte
? Qt
: Qnil
);
7822 set_buffer_internal (current
);
7828 code_conversion_restore (Lisp_Object arg
)
7830 Lisp_Object current
, workbuf
;
7832 current
= XCAR (arg
);
7833 workbuf
= XCDR (arg
);
7834 if (! NILP (workbuf
))
7836 if (EQ (workbuf
, Vcode_conversion_reused_workbuf
))
7837 reused_workbuf_in_use
= 0;
7839 Fkill_buffer (workbuf
);
7841 set_buffer_internal (XBUFFER (current
));
7845 code_conversion_save (bool with_work_buf
, bool multibyte
)
7847 Lisp_Object workbuf
= Qnil
;
7850 workbuf
= make_conversion_work_buffer (multibyte
);
7851 record_unwind_protect (code_conversion_restore
,
7852 Fcons (Fcurrent_buffer (), workbuf
));
7857 decode_coding_gap (struct coding_system
*coding
,
7858 ptrdiff_t chars
, ptrdiff_t bytes
)
7860 ptrdiff_t count
= SPECPDL_INDEX ();
7863 coding
->src_object
= Fcurrent_buffer ();
7864 coding
->src_chars
= chars
;
7865 coding
->src_bytes
= bytes
;
7866 coding
->src_pos
= -chars
;
7867 coding
->src_pos_byte
= -bytes
;
7868 coding
->src_multibyte
= chars
< bytes
;
7869 coding
->dst_object
= coding
->src_object
;
7870 coding
->dst_pos
= PT
;
7871 coding
->dst_pos_byte
= PT_BYTE
;
7872 coding
->dst_multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
7874 coding
->head_ascii
= -1;
7875 coding
->detected_utf8_bytes
= coding
->detected_utf8_chars
= -1;
7876 coding
->eol_seen
= EOL_SEEN_NONE
;
7877 if (CODING_REQUIRE_DETECTION (coding
))
7878 detect_coding (coding
);
7879 attrs
= CODING_ID_ATTRS (coding
->id
);
7880 if (! disable_ascii_optimization
7881 && ! coding
->src_multibyte
7882 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
))
7883 && NILP (CODING_ATTR_POST_READ (attrs
))
7884 && NILP (get_translation_table (attrs
, 0, NULL
)))
7886 chars
= coding
->head_ascii
;
7888 chars
= check_ascii (coding
);
7891 /* There exists a non-ASCII byte. */
7892 if (EQ (CODING_ATTR_TYPE (attrs
), Qutf_8
)
7893 && coding
->detected_utf8_bytes
== coding
->src_bytes
)
7895 if (coding
->detected_utf8_chars
>= 0)
7896 chars
= coding
->detected_utf8_chars
;
7898 chars
= check_utf_8 (coding
);
7899 if (CODING_UTF_8_BOM (coding
) != utf_without_bom
7900 && coding
->head_ascii
== 0
7901 && coding
->source
[0] == UTF_8_BOM_1
7902 && coding
->source
[1] == UTF_8_BOM_2
7903 && coding
->source
[2] == UTF_8_BOM_3
)
7907 coding
->src_bytes
-= 3;
7915 Lisp_Object eol_type
;
7917 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
7918 if (VECTORP (eol_type
))
7920 if (coding
->eol_seen
!= EOL_SEEN_NONE
)
7921 eol_type
= adjust_coding_eol_type (coding
, coding
->eol_seen
);
7923 if (EQ (eol_type
, Qmac
))
7925 unsigned char *src_end
= GAP_END_ADDR
;
7926 unsigned char *src
= src_end
- coding
->src_bytes
;
7928 while (src
< src_end
)
7934 else if (EQ (eol_type
, Qdos
))
7936 unsigned char *src
= GAP_END_ADDR
;
7937 unsigned char *src_beg
= src
- coding
->src_bytes
;
7938 unsigned char *dst
= src
;
7941 while (src_beg
< src
)
7944 if (*src
== '\n' && src
> src_beg
&& src
[-1] == '\r')
7951 coding
->produced
= bytes
;
7952 coding
->produced_char
= chars
;
7953 insert_from_gap (chars
, bytes
, 1);
7957 code_conversion_save (0, 0);
7959 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
7960 current_buffer
->text
->inhibit_shrinking
= 1;
7961 decode_coding (coding
);
7962 current_buffer
->text
->inhibit_shrinking
= 0;
7964 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7966 ptrdiff_t prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7969 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7970 val
= call1 (CODING_ATTR_POST_READ (attrs
),
7971 make_number (coding
->produced_char
));
7973 coding
->produced_char
+= Z
- prev_Z
;
7974 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7977 unbind_to (count
, Qnil
);
7981 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in
7982 SRC_OBJECT into DST_OBJECT by coding context CODING.
7984 SRC_OBJECT is a buffer, a string, or Qnil.
7986 If it is a buffer, the text is at point of the buffer. FROM and TO
7987 are positions in the buffer.
7989 If it is a string, the text is at the beginning of the string.
7990 FROM and TO are indices to the string.
7992 If it is nil, the text is at coding->source. FROM and TO are
7993 indices to coding->source.
7995 DST_OBJECT is a buffer, Qt, or Qnil.
7997 If it is a buffer, the decoded text is inserted at point of the
7998 buffer. If the buffer is the same as SRC_OBJECT, the source text
8001 If it is Qt, a string is made from the decoded text, and
8002 set in CODING->dst_object.
8004 If it is Qnil, the decoded text is stored at CODING->destination.
8005 The caller must allocate CODING->dst_bytes bytes at
8006 CODING->destination by xmalloc. If the decoded text is longer than
8007 CODING->dst_bytes, CODING->destination is relocated by xrealloc.
8011 decode_coding_object (struct coding_system
*coding
,
8012 Lisp_Object src_object
,
8013 ptrdiff_t from
, ptrdiff_t from_byte
,
8014 ptrdiff_t to
, ptrdiff_t to_byte
,
8015 Lisp_Object dst_object
)
8017 ptrdiff_t count
= SPECPDL_INDEX ();
8018 unsigned char *destination
IF_LINT (= NULL
);
8019 ptrdiff_t dst_bytes
IF_LINT (= 0);
8020 ptrdiff_t chars
= to
- from
;
8021 ptrdiff_t bytes
= to_byte
- from_byte
;
8023 ptrdiff_t saved_pt
= -1, saved_pt_byte
IF_LINT (= 0);
8024 bool need_marker_adjustment
= 0;
8025 Lisp_Object old_deactivate_mark
;
8027 old_deactivate_mark
= Vdeactivate_mark
;
8029 if (NILP (dst_object
))
8031 destination
= coding
->destination
;
8032 dst_bytes
= coding
->dst_bytes
;
8035 coding
->src_object
= src_object
;
8036 coding
->src_chars
= chars
;
8037 coding
->src_bytes
= bytes
;
8038 coding
->src_multibyte
= chars
< bytes
;
8040 if (STRINGP (src_object
))
8042 coding
->src_pos
= from
;
8043 coding
->src_pos_byte
= from_byte
;
8045 else if (BUFFERP (src_object
))
8047 set_buffer_internal (XBUFFER (src_object
));
8049 move_gap_both (from
, from_byte
);
8050 if (EQ (src_object
, dst_object
))
8052 struct Lisp_Marker
*tail
;
8054 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8056 tail
->need_adjustment
8057 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
8058 need_marker_adjustment
|= tail
->need_adjustment
;
8060 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8061 TEMP_SET_PT_BOTH (from
, from_byte
);
8062 current_buffer
->text
->inhibit_shrinking
= 1;
8063 del_range_both (from
, from_byte
, to
, to_byte
, 1);
8064 coding
->src_pos
= -chars
;
8065 coding
->src_pos_byte
= -bytes
;
8069 coding
->src_pos
= from
;
8070 coding
->src_pos_byte
= from_byte
;
8074 if (CODING_REQUIRE_DETECTION (coding
))
8075 detect_coding (coding
);
8076 attrs
= CODING_ID_ATTRS (coding
->id
);
8078 if (EQ (dst_object
, Qt
)
8079 || (! NILP (CODING_ATTR_POST_READ (attrs
))
8080 && NILP (dst_object
)))
8082 coding
->dst_multibyte
= !CODING_FOR_UNIBYTE (coding
);
8083 coding
->dst_object
= code_conversion_save (1, coding
->dst_multibyte
);
8084 coding
->dst_pos
= BEG
;
8085 coding
->dst_pos_byte
= BEG_BYTE
;
8087 else if (BUFFERP (dst_object
))
8089 code_conversion_save (0, 0);
8090 coding
->dst_object
= dst_object
;
8091 coding
->dst_pos
= BUF_PT (XBUFFER (dst_object
));
8092 coding
->dst_pos_byte
= BUF_PT_BYTE (XBUFFER (dst_object
));
8093 coding
->dst_multibyte
8094 = ! NILP (BVAR (XBUFFER (dst_object
), enable_multibyte_characters
));
8098 code_conversion_save (0, 0);
8099 coding
->dst_object
= Qnil
;
8100 /* Most callers presume this will return a multibyte result, and they
8101 won't use `binary' or `raw-text' anyway, so let's not worry about
8102 CODING_FOR_UNIBYTE. */
8103 coding
->dst_multibyte
= 1;
8106 decode_coding (coding
);
8108 if (BUFFERP (coding
->dst_object
))
8109 set_buffer_internal (XBUFFER (coding
->dst_object
));
8111 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
8113 ptrdiff_t prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
8116 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
8117 val
= safe_call1 (CODING_ATTR_POST_READ (attrs
),
8118 make_number (coding
->produced_char
));
8120 coding
->produced_char
+= Z
- prev_Z
;
8121 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
8124 if (EQ (dst_object
, Qt
))
8126 coding
->dst_object
= Fbuffer_string ();
8128 else if (NILP (dst_object
) && BUFFERP (coding
->dst_object
))
8130 set_buffer_internal (XBUFFER (coding
->dst_object
));
8131 if (dst_bytes
< coding
->produced
)
8133 eassert (coding
->produced
> 0);
8134 destination
= xrealloc (destination
, coding
->produced
);
8135 if (BEGV
< GPT
&& GPT
< BEGV
+ coding
->produced_char
)
8136 move_gap_both (BEGV
, BEGV_BYTE
);
8137 memcpy (destination
, BEGV_ADDR
, coding
->produced
);
8138 coding
->destination
= destination
;
8144 /* This is the case of:
8145 (BUFFERP (src_object) && EQ (src_object, dst_object))
8146 As we have moved PT while replacing the original buffer
8147 contents, we must recover it now. */
8148 set_buffer_internal (XBUFFER (src_object
));
8149 current_buffer
->text
->inhibit_shrinking
= 0;
8150 if (saved_pt
< from
)
8151 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
8152 else if (saved_pt
< from
+ chars
)
8153 TEMP_SET_PT_BOTH (from
, from_byte
);
8154 else if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8155 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
8156 saved_pt_byte
+ (coding
->produced
- bytes
));
8158 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
8159 saved_pt_byte
+ (coding
->produced
- bytes
));
8161 if (need_marker_adjustment
)
8163 struct Lisp_Marker
*tail
;
8165 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8166 if (tail
->need_adjustment
)
8168 tail
->need_adjustment
= 0;
8169 if (tail
->insertion_type
)
8171 tail
->bytepos
= from_byte
;
8172 tail
->charpos
= from
;
8176 tail
->bytepos
= from_byte
+ coding
->produced
;
8178 = (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
8179 ? tail
->bytepos
: from
+ coding
->produced_char
);
8185 Vdeactivate_mark
= old_deactivate_mark
;
8186 unbind_to (count
, coding
->dst_object
);
8191 encode_coding_object (struct coding_system
*coding
,
8192 Lisp_Object src_object
,
8193 ptrdiff_t from
, ptrdiff_t from_byte
,
8194 ptrdiff_t to
, ptrdiff_t to_byte
,
8195 Lisp_Object dst_object
)
8197 ptrdiff_t count
= SPECPDL_INDEX ();
8198 ptrdiff_t chars
= to
- from
;
8199 ptrdiff_t bytes
= to_byte
- from_byte
;
8201 ptrdiff_t saved_pt
= -1, saved_pt_byte
IF_LINT (= 0);
8202 bool need_marker_adjustment
= 0;
8203 bool kill_src_buffer
= 0;
8204 Lisp_Object old_deactivate_mark
;
8206 old_deactivate_mark
= Vdeactivate_mark
;
8208 coding
->src_object
= src_object
;
8209 coding
->src_chars
= chars
;
8210 coding
->src_bytes
= bytes
;
8211 coding
->src_multibyte
= chars
< bytes
;
8213 attrs
= CODING_ID_ATTRS (coding
->id
);
8215 if (EQ (src_object
, dst_object
))
8217 struct Lisp_Marker
*tail
;
8219 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8221 tail
->need_adjustment
8222 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
8223 need_marker_adjustment
|= tail
->need_adjustment
;
8227 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
8229 coding
->src_object
= code_conversion_save (1, coding
->src_multibyte
);
8230 set_buffer_internal (XBUFFER (coding
->src_object
));
8231 if (STRINGP (src_object
))
8232 insert_from_string (src_object
, from
, from_byte
, chars
, bytes
, 0);
8233 else if (BUFFERP (src_object
))
8234 insert_from_buffer (XBUFFER (src_object
), from
, chars
, 0);
8236 insert_1_both ((char *) coding
->source
+ from
, chars
, bytes
, 0, 0, 0);
8238 if (EQ (src_object
, dst_object
))
8240 set_buffer_internal (XBUFFER (src_object
));
8241 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8242 del_range_both (from
, from_byte
, to
, to_byte
, 1);
8243 set_buffer_internal (XBUFFER (coding
->src_object
));
8246 safe_call2 (CODING_ATTR_PRE_WRITE (attrs
),
8247 make_number (BEG
), make_number (Z
));
8248 if (XBUFFER (coding
->src_object
) != current_buffer
)
8249 kill_src_buffer
= 1;
8250 coding
->src_object
= Fcurrent_buffer ();
8252 move_gap_both (BEG
, BEG_BYTE
);
8253 coding
->src_chars
= Z
- BEG
;
8254 coding
->src_bytes
= Z_BYTE
- BEG_BYTE
;
8255 coding
->src_pos
= BEG
;
8256 coding
->src_pos_byte
= BEG_BYTE
;
8257 coding
->src_multibyte
= Z
< Z_BYTE
;
8259 else if (STRINGP (src_object
))
8261 code_conversion_save (0, 0);
8262 coding
->src_pos
= from
;
8263 coding
->src_pos_byte
= from_byte
;
8265 else if (BUFFERP (src_object
))
8267 code_conversion_save (0, 0);
8268 set_buffer_internal (XBUFFER (src_object
));
8269 if (EQ (src_object
, dst_object
))
8271 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8272 coding
->src_object
= del_range_1 (from
, to
, 1, 1);
8273 coding
->src_pos
= 0;
8274 coding
->src_pos_byte
= 0;
8278 if (from
< GPT
&& to
>= GPT
)
8279 move_gap_both (from
, from_byte
);
8280 coding
->src_pos
= from
;
8281 coding
->src_pos_byte
= from_byte
;
8286 code_conversion_save (0, 0);
8287 coding
->src_pos
= from
;
8288 coding
->src_pos_byte
= from_byte
;
8291 if (BUFFERP (dst_object
))
8293 coding
->dst_object
= dst_object
;
8294 if (EQ (src_object
, dst_object
))
8296 coding
->dst_pos
= from
;
8297 coding
->dst_pos_byte
= from_byte
;
8301 struct buffer
*current
= current_buffer
;
8303 set_buffer_temp (XBUFFER (dst_object
));
8304 coding
->dst_pos
= PT
;
8305 coding
->dst_pos_byte
= PT_BYTE
;
8306 move_gap_both (coding
->dst_pos
, coding
->dst_pos_byte
);
8307 set_buffer_temp (current
);
8309 coding
->dst_multibyte
8310 = ! NILP (BVAR (XBUFFER (dst_object
), enable_multibyte_characters
));
8312 else if (EQ (dst_object
, Qt
))
8314 ptrdiff_t dst_bytes
= max (1, coding
->src_chars
);
8315 coding
->dst_object
= Qnil
;
8316 coding
->destination
= xmalloc (dst_bytes
);
8317 coding
->dst_bytes
= dst_bytes
;
8318 coding
->dst_multibyte
= 0;
8322 coding
->dst_object
= Qnil
;
8323 coding
->dst_multibyte
= 0;
8326 encode_coding (coding
);
8328 if (EQ (dst_object
, Qt
))
8330 if (BUFFERP (coding
->dst_object
))
8331 coding
->dst_object
= Fbuffer_string ();
8332 else if (coding
->raw_destination
)
8333 /* This is used to avoid creating huge Lisp string.
8334 NOTE: caller who sets `raw_destination' is also
8335 responsible for freeing `destination' buffer. */
8336 coding
->dst_object
= Qnil
;
8340 = make_unibyte_string ((char *) coding
->destination
,
8342 xfree (coding
->destination
);
8348 /* This is the case of:
8349 (BUFFERP (src_object) && EQ (src_object, dst_object))
8350 As we have moved PT while replacing the original buffer
8351 contents, we must recover it now. */
8352 set_buffer_internal (XBUFFER (src_object
));
8353 if (saved_pt
< from
)
8354 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
8355 else if (saved_pt
< from
+ chars
)
8356 TEMP_SET_PT_BOTH (from
, from_byte
);
8357 else if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8358 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
8359 saved_pt_byte
+ (coding
->produced
- bytes
));
8361 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
8362 saved_pt_byte
+ (coding
->produced
- bytes
));
8364 if (need_marker_adjustment
)
8366 struct Lisp_Marker
*tail
;
8368 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8369 if (tail
->need_adjustment
)
8371 tail
->need_adjustment
= 0;
8372 if (tail
->insertion_type
)
8374 tail
->bytepos
= from_byte
;
8375 tail
->charpos
= from
;
8379 tail
->bytepos
= from_byte
+ coding
->produced
;
8381 = (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
8382 ? tail
->bytepos
: from
+ coding
->produced_char
);
8388 if (kill_src_buffer
)
8389 Fkill_buffer (coding
->src_object
);
8391 Vdeactivate_mark
= old_deactivate_mark
;
8392 unbind_to (count
, Qnil
);
8397 preferred_coding_system (void)
8399 int id
= coding_categories
[coding_priorities
[0]].id
;
8401 return CODING_ID_NAME (id
);
8404 #if defined (WINDOWSNT) || defined (CYGWIN)
8407 from_unicode (Lisp_Object str
)
8410 if (!STRING_MULTIBYTE (str
) &&
8413 str
= Fsubstring (str
, make_number (0), make_number (-1));
8416 return code_convert_string_norecord (str
, Qutf_16le
, 0);
8420 from_unicode_buffer (const wchar_t *wstr
)
8422 /* We get one of the two final null bytes for free. */
8423 ptrdiff_t len
= 1 + sizeof (wchar_t) * wcslen (wstr
);
8424 AUTO_STRING_WITH_LEN (str
, (char *) wstr
, len
);
8425 return from_unicode (str
);
8429 to_unicode (Lisp_Object str
, Lisp_Object
*buf
)
8431 *buf
= code_convert_string_norecord (str
, Qutf_16le
, 1);
8432 /* We need to make another copy (in addition to the one made by
8433 code_convert_string_norecord) to ensure that the final string is
8434 _doubly_ zero terminated --- that is, that the string is
8435 terminated by two zero bytes and one utf-16le null character.
8436 Because strings are already terminated with a single zero byte,
8437 we just add one additional zero. */
8438 str
= make_uninit_string (SBYTES (*buf
) + 1);
8439 memcpy (SDATA (str
), SDATA (*buf
), SBYTES (*buf
));
8440 SDATA (str
) [SBYTES (*buf
)] = '\0';
8442 return WCSDATA (*buf
);
8445 #endif /* WINDOWSNT || CYGWIN */
8449 /*** 8. Emacs Lisp library functions ***/
8451 DEFUN ("coding-system-p", Fcoding_system_p
, Scoding_system_p
, 1, 1, 0,
8452 doc
: /* Return t if OBJECT is nil or a coding-system.
8453 See the documentation of `define-coding-system' for information
8454 about coding-system objects. */)
8455 (Lisp_Object object
)
8458 || CODING_SYSTEM_ID (object
) >= 0)
8460 if (! SYMBOLP (object
)
8461 || NILP (Fget (object
, Qcoding_system_define_form
)))
8466 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system
,
8467 Sread_non_nil_coding_system
, 1, 1, 0,
8468 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
8469 (Lisp_Object prompt
)
8474 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8475 Qt
, Qnil
, Qcoding_system_history
, Qnil
, Qnil
);
8477 while (SCHARS (val
) == 0);
8478 return (Fintern (val
, Qnil
));
8481 DEFUN ("read-coding-system", Fread_coding_system
, Sread_coding_system
, 1, 2, 0,
8482 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8483 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8484 Ignores case when completing coding systems (all Emacs coding systems
8485 are lower-case). */)
8486 (Lisp_Object prompt
, Lisp_Object default_coding_system
)
8489 ptrdiff_t count
= SPECPDL_INDEX ();
8491 if (SYMBOLP (default_coding_system
))
8492 default_coding_system
= SYMBOL_NAME (default_coding_system
);
8493 specbind (Qcompletion_ignore_case
, Qt
);
8494 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8495 Qt
, Qnil
, Qcoding_system_history
,
8496 default_coding_system
, Qnil
);
8497 unbind_to (count
, Qnil
);
8498 return (SCHARS (val
) == 0 ? Qnil
: Fintern (val
, Qnil
));
8501 DEFUN ("check-coding-system", Fcheck_coding_system
, Scheck_coding_system
,
8503 doc
: /* Check validity of CODING-SYSTEM.
8504 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
8505 It is valid if it is nil or a symbol defined as a coding system by the
8506 function `define-coding-system'. */)
8507 (Lisp_Object coding_system
)
8509 Lisp_Object define_form
;
8511 define_form
= Fget (coding_system
, Qcoding_system_define_form
);
8512 if (! NILP (define_form
))
8514 Fput (coding_system
, Qcoding_system_define_form
, Qnil
);
8515 safe_eval (define_form
);
8517 if (!NILP (Fcoding_system_p (coding_system
)))
8518 return coding_system
;
8519 xsignal1 (Qcoding_system_error
, coding_system
);
8523 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If
8524 HIGHEST, return the coding system of the highest
8525 priority among the detected coding systems. Otherwise return a
8526 list of detected coding systems sorted by their priorities. If
8527 MULTIBYTEP, it is assumed that the bytes are in correct
8528 multibyte form but contains only ASCII and eight-bit chars.
8529 Otherwise, the bytes are raw bytes.
8531 CODING-SYSTEM controls the detection as below:
8533 If it is nil, detect both text-format and eol-format. If the
8534 text-format part of CODING-SYSTEM is already specified
8535 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format
8536 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'),
8537 detect only text-format. */
8540 detect_coding_system (const unsigned char *src
,
8541 ptrdiff_t src_chars
, ptrdiff_t src_bytes
,
8542 bool highest
, bool multibytep
,
8543 Lisp_Object coding_system
)
8545 const unsigned char *src_end
= src
+ src_bytes
;
8546 Lisp_Object attrs
, eol_type
;
8547 Lisp_Object val
= Qnil
;
8548 struct coding_system coding
;
8550 struct coding_detection_info detect_info
;
8551 enum coding_category base_category
;
8552 bool null_byte_found
= 0, eight_bit_found
= 0;
8554 if (NILP (coding_system
))
8555 coding_system
= Qundecided
;
8556 setup_coding_system (coding_system
, &coding
);
8557 attrs
= CODING_ID_ATTRS (coding
.id
);
8558 eol_type
= CODING_ID_EOL_TYPE (coding
.id
);
8559 coding_system
= CODING_ATTR_BASE_NAME (attrs
);
8561 coding
.source
= src
;
8562 coding
.src_chars
= src_chars
;
8563 coding
.src_bytes
= src_bytes
;
8564 coding
.src_multibyte
= multibytep
;
8565 coding
.consumed
= 0;
8566 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8567 coding
.head_ascii
= 0;
8569 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
8571 /* At first, detect text-format if necessary. */
8572 base_category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8573 if (base_category
== coding_category_undecided
)
8575 enum coding_category category
IF_LINT (= 0);
8576 struct coding_system
*this IF_LINT (= NULL
);
8578 bool inhibit_nbd
= inhibit_flag (coding
.spec
.undecided
.inhibit_nbd
,
8579 inhibit_null_byte_detection
);
8580 bool inhibit_ied
= inhibit_flag (coding
.spec
.undecided
.inhibit_ied
,
8581 inhibit_iso_escape_detection
);
8582 bool prefer_utf_8
= coding
.spec
.undecided
.prefer_utf_8
;
8584 /* Skip all ASCII bytes except for a few ISO2022 controls. */
8585 for (; src
< src_end
; src
++)
8590 eight_bit_found
= 1;
8591 if (null_byte_found
)
8596 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
8598 && ! detect_info
.checked
)
8600 if (detect_coding_iso_2022 (&coding
, &detect_info
))
8602 /* We have scanned the whole data. */
8603 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
8605 /* We didn't find an 8-bit code. We may
8606 have found a null-byte, but it's very
8607 rare that a binary file confirm to
8610 coding
.head_ascii
= src
- coding
.source
;
8612 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
8616 else if (! c
&& !inhibit_nbd
)
8618 null_byte_found
= 1;
8619 if (eight_bit_found
)
8622 if (! eight_bit_found
)
8623 coding
.head_ascii
++;
8625 else if (! eight_bit_found
)
8626 coding
.head_ascii
++;
8629 if (null_byte_found
|| eight_bit_found
8630 || coding
.head_ascii
< coding
.src_bytes
8631 || detect_info
.found
)
8633 if (coding
.head_ascii
== coding
.src_bytes
)
8634 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
8635 for (i
= 0; i
< coding_category_raw_text
; i
++)
8637 category
= coding_priorities
[i
];
8638 this = coding_categories
+ category
;
8639 if (detect_info
.found
& (1 << category
))
8644 if (null_byte_found
)
8646 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
8647 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
8649 else if (prefer_utf_8
8650 && detect_coding_utf_8 (&coding
, &detect_info
))
8652 detect_info
.checked
|= ~CATEGORY_MASK_UTF_8
;
8653 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_8
;
8655 for (i
= 0; i
< coding_category_raw_text
; i
++)
8657 category
= coding_priorities
[i
];
8658 this = coding_categories
+ category
;
8662 /* No coding system of this category is defined. */
8663 detect_info
.rejected
|= (1 << category
);
8665 else if (category
>= coding_category_raw_text
)
8667 else if (detect_info
.checked
& (1 << category
))
8670 && (detect_info
.found
& (1 << category
)))
8673 else if ((*(this->detector
)) (&coding
, &detect_info
)
8675 && (detect_info
.found
& (1 << category
)))
8677 if (category
== coding_category_utf_16_auto
)
8679 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8680 category
= coding_category_utf_16_le
;
8682 category
= coding_category_utf_16_be
;
8690 if ((detect_info
.rejected
& CATEGORY_MASK_ANY
) == CATEGORY_MASK_ANY
8693 detect_info
.found
= CATEGORY_MASK_RAW_TEXT
;
8694 id
= CODING_SYSTEM_ID (Qno_conversion
);
8695 val
= list1 (make_number (id
));
8697 else if (! detect_info
.rejected
&& ! detect_info
.found
)
8699 detect_info
.found
= CATEGORY_MASK_ANY
;
8700 id
= coding_categories
[coding_category_undecided
].id
;
8701 val
= list1 (make_number (id
));
8705 if (detect_info
.found
)
8707 detect_info
.found
= 1 << category
;
8708 val
= list1 (make_number (this->id
));
8711 for (i
= 0; i
< coding_category_raw_text
; i
++)
8712 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
8714 detect_info
.found
= 1 << coding_priorities
[i
];
8715 id
= coding_categories
[coding_priorities
[i
]].id
;
8716 val
= list1 (make_number (id
));
8722 int mask
= detect_info
.rejected
| detect_info
.found
;
8725 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8727 category
= coding_priorities
[i
];
8728 if (! (mask
& (1 << category
)))
8730 found
|= 1 << category
;
8731 id
= coding_categories
[category
].id
;
8733 val
= list1 (make_number (id
));
8736 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8738 category
= coding_priorities
[i
];
8739 if (detect_info
.found
& (1 << category
))
8741 id
= coding_categories
[category
].id
;
8742 val
= Fcons (make_number (id
), val
);
8745 detect_info
.found
|= found
;
8748 else if (base_category
== coding_category_utf_8_auto
)
8750 if (detect_coding_utf_8 (&coding
, &detect_info
))
8752 struct coding_system
*this;
8754 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
8755 this = coding_categories
+ coding_category_utf_8_sig
;
8757 this = coding_categories
+ coding_category_utf_8_nosig
;
8758 val
= list1 (make_number (this->id
));
8761 else if (base_category
== coding_category_utf_16_auto
)
8763 if (detect_coding_utf_16 (&coding
, &detect_info
))
8765 struct coding_system
*this;
8767 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8768 this = coding_categories
+ coding_category_utf_16_le
;
8769 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
8770 this = coding_categories
+ coding_category_utf_16_be
;
8771 else if (detect_info
.rejected
& CATEGORY_MASK_UTF_16_LE_NOSIG
)
8772 this = coding_categories
+ coding_category_utf_16_be_nosig
;
8774 this = coding_categories
+ coding_category_utf_16_le_nosig
;
8775 val
= list1 (make_number (this->id
));
8780 detect_info
.found
= 1 << XINT (CODING_ATTR_CATEGORY (attrs
));
8781 val
= list1 (make_number (coding
.id
));
8784 /* Then, detect eol-format if necessary. */
8786 int normal_eol
= -1, utf_16_be_eol
= -1, utf_16_le_eol
= -1;
8789 if (VECTORP (eol_type
))
8791 if (detect_info
.found
& ~CATEGORY_MASK_UTF_16
)
8793 if (null_byte_found
)
8794 normal_eol
= EOL_SEEN_LF
;
8796 normal_eol
= detect_eol (coding
.source
, src_bytes
,
8797 coding_category_raw_text
);
8799 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_BE
8800 | CATEGORY_MASK_UTF_16_BE_NOSIG
))
8801 utf_16_be_eol
= detect_eol (coding
.source
, src_bytes
,
8802 coding_category_utf_16_be
);
8803 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_LE
8804 | CATEGORY_MASK_UTF_16_LE_NOSIG
))
8805 utf_16_le_eol
= detect_eol (coding
.source
, src_bytes
,
8806 coding_category_utf_16_le
);
8810 if (EQ (eol_type
, Qunix
))
8811 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_LF
;
8812 else if (EQ (eol_type
, Qdos
))
8813 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CRLF
;
8815 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CR
;
8818 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
8820 enum coding_category category
;
8823 id
= XINT (XCAR (tail
));
8824 attrs
= CODING_ID_ATTRS (id
);
8825 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8826 eol_type
= CODING_ID_EOL_TYPE (id
);
8827 if (VECTORP (eol_type
))
8829 if (category
== coding_category_utf_16_be
8830 || category
== coding_category_utf_16_be_nosig
)
8831 this_eol
= utf_16_be_eol
;
8832 else if (category
== coding_category_utf_16_le
8833 || category
== coding_category_utf_16_le_nosig
)
8834 this_eol
= utf_16_le_eol
;
8836 this_eol
= normal_eol
;
8838 if (this_eol
== EOL_SEEN_LF
)
8839 XSETCAR (tail
, AREF (eol_type
, 0));
8840 else if (this_eol
== EOL_SEEN_CRLF
)
8841 XSETCAR (tail
, AREF (eol_type
, 1));
8842 else if (this_eol
== EOL_SEEN_CR
)
8843 XSETCAR (tail
, AREF (eol_type
, 2));
8845 XSETCAR (tail
, CODING_ID_NAME (id
));
8848 XSETCAR (tail
, CODING_ID_NAME (id
));
8852 return (highest
? (CONSP (val
) ? XCAR (val
) : Qnil
) : val
);
8856 DEFUN ("detect-coding-region", Fdetect_coding_region
, Sdetect_coding_region
,
8858 doc
: /* Detect coding system of the text in the region between START and END.
8859 Return a list of possible coding systems ordered by priority.
8860 The coding systems to try and their priorities follows what
8861 the function `coding-system-priority-list' (which see) returns.
8863 If only ASCII characters are found (except for such ISO-2022 control
8864 characters as ESC), it returns a list of single element `undecided'
8865 or its subsidiary coding system according to a detected end-of-line
8868 If optional argument HIGHEST is non-nil, return the coding system of
8869 highest priority. */)
8870 (Lisp_Object start
, Lisp_Object end
, Lisp_Object highest
)
8873 ptrdiff_t from_byte
, to_byte
;
8875 validate_region (&start
, &end
);
8876 from
= XINT (start
), to
= XINT (end
);
8877 from_byte
= CHAR_TO_BYTE (from
);
8878 to_byte
= CHAR_TO_BYTE (to
);
8880 if (from
< GPT
&& to
>= GPT
)
8881 move_gap_both (to
, to_byte
);
8883 return detect_coding_system (BYTE_POS_ADDR (from_byte
),
8884 to
- from
, to_byte
- from_byte
,
8886 !NILP (BVAR (current_buffer
8887 , enable_multibyte_characters
)),
8891 DEFUN ("detect-coding-string", Fdetect_coding_string
, Sdetect_coding_string
,
8893 doc
: /* Detect coding system of the text in STRING.
8894 Return a list of possible coding systems ordered by priority.
8895 The coding systems to try and their priorities follows what
8896 the function `coding-system-priority-list' (which see) returns.
8898 If only ASCII characters are found (except for such ISO-2022 control
8899 characters as ESC), it returns a list of single element `undecided'
8900 or its subsidiary coding system according to a detected end-of-line
8903 If optional argument HIGHEST is non-nil, return the coding system of
8904 highest priority. */)
8905 (Lisp_Object string
, Lisp_Object highest
)
8907 CHECK_STRING (string
);
8909 return detect_coding_system (SDATA (string
),
8910 SCHARS (string
), SBYTES (string
),
8911 !NILP (highest
), STRING_MULTIBYTE (string
),
8917 char_encodable_p (int c
, Lisp_Object attrs
)
8920 struct charset
*charset
;
8921 Lisp_Object translation_table
;
8923 translation_table
= CODING_ATTR_TRANS_TBL (attrs
);
8924 if (! NILP (translation_table
))
8925 c
= translate_char (translation_table
, c
);
8926 for (tail
= CODING_ATTR_CHARSET_LIST (attrs
);
8927 CONSP (tail
); tail
= XCDR (tail
))
8929 charset
= CHARSET_FROM_ID (XINT (XCAR (tail
)));
8930 if (CHAR_CHARSET_P (c
, charset
))
8933 return (! NILP (tail
));
8937 /* Return a list of coding systems that safely encode the text between
8938 START and END. If EXCLUDE is non-nil, it is a list of coding
8939 systems not to check. The returned list doesn't contain any such
8940 coding systems. In any case, if the text contains only ASCII or is
8941 unibyte, return t. */
8943 DEFUN ("find-coding-systems-region-internal",
8944 Ffind_coding_systems_region_internal
,
8945 Sfind_coding_systems_region_internal
, 2, 3, 0,
8946 doc
: /* Internal use only. */)
8947 (Lisp_Object start
, Lisp_Object end
, Lisp_Object exclude
)
8949 Lisp_Object coding_attrs_list
, safe_codings
;
8950 ptrdiff_t start_byte
, end_byte
;
8951 const unsigned char *p
, *pbeg
, *pend
;
8953 Lisp_Object tail
, elt
, work_table
;
8955 if (STRINGP (start
))
8957 if (!STRING_MULTIBYTE (start
)
8958 || SCHARS (start
) == SBYTES (start
))
8961 end_byte
= SBYTES (start
);
8965 CHECK_NUMBER_COERCE_MARKER (start
);
8966 CHECK_NUMBER_COERCE_MARKER (end
);
8967 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8968 args_out_of_range (start
, end
);
8969 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8971 start_byte
= CHAR_TO_BYTE (XINT (start
));
8972 end_byte
= CHAR_TO_BYTE (XINT (end
));
8973 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8976 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8978 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8979 move_gap_both (XINT (start
), start_byte
);
8981 move_gap_both (XINT (end
), end_byte
);
8985 coding_attrs_list
= Qnil
;
8986 for (tail
= Vcoding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8988 || NILP (Fmemq (XCAR (tail
), exclude
)))
8992 attrs
= AREF (CODING_SYSTEM_SPEC (XCAR (tail
)), 0);
8993 if (EQ (XCAR (tail
), CODING_ATTR_BASE_NAME (attrs
)))
8995 ASET (attrs
, coding_attr_trans_tbl
,
8996 get_translation_table (attrs
, 1, NULL
));
8997 coding_attrs_list
= Fcons (attrs
, coding_attrs_list
);
9001 if (STRINGP (start
))
9002 p
= pbeg
= SDATA (start
);
9004 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
9005 pend
= p
+ (end_byte
- start_byte
);
9007 while (p
< pend
&& ASCII_CHAR_P (*p
)) p
++;
9008 while (p
< pend
&& ASCII_CHAR_P (*(pend
- 1))) pend
--;
9010 work_table
= Fmake_char_table (Qnil
, Qnil
);
9013 if (ASCII_CHAR_P (*p
))
9017 c
= STRING_CHAR_ADVANCE (p
);
9018 if (!NILP (char_table_ref (work_table
, c
)))
9019 /* This character was already checked. Ignore it. */
9022 charset_map_loaded
= 0;
9023 for (tail
= coding_attrs_list
; CONSP (tail
);)
9028 else if (char_encodable_p (c
, elt
))
9030 else if (CONSP (XCDR (tail
)))
9032 XSETCAR (tail
, XCAR (XCDR (tail
)));
9033 XSETCDR (tail
, XCDR (XCDR (tail
)));
9037 XSETCAR (tail
, Qnil
);
9041 if (charset_map_loaded
)
9043 ptrdiff_t p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
9045 if (STRINGP (start
))
9046 pbeg
= SDATA (start
);
9048 pbeg
= BYTE_POS_ADDR (start_byte
);
9049 p
= pbeg
+ p_offset
;
9050 pend
= pbeg
+ pend_offset
;
9052 char_table_set (work_table
, c
, Qt
);
9056 safe_codings
= list2 (Qraw_text
, Qno_conversion
);
9057 for (tail
= coding_attrs_list
; CONSP (tail
); tail
= XCDR (tail
))
9058 if (! NILP (XCAR (tail
)))
9059 safe_codings
= Fcons (CODING_ATTR_BASE_NAME (XCAR (tail
)), safe_codings
);
9061 return safe_codings
;
9065 DEFUN ("unencodable-char-position", Funencodable_char_position
,
9066 Sunencodable_char_position
, 3, 5, 0,
9067 doc
: /* Return position of first un-encodable character in a region.
9068 START and END specify the region and CODING-SYSTEM specifies the
9069 encoding to check. Return nil if CODING-SYSTEM does encode the region.
9071 If optional 4th argument COUNT is non-nil, it specifies at most how
9072 many un-encodable characters to search. In this case, the value is a
9075 If optional 5th argument STRING is non-nil, it is a string to search
9076 for un-encodable characters. In that case, START and END are indexes
9077 to the string and treated as in `substring'. */)
9078 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
,
9079 Lisp_Object count
, Lisp_Object string
)
9082 struct coding_system coding
;
9083 Lisp_Object attrs
, charset_list
, translation_table
;
9084 Lisp_Object positions
;
9086 const unsigned char *p
, *stop
, *pend
;
9087 bool ascii_compatible
;
9089 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
9090 attrs
= CODING_ID_ATTRS (coding
.id
);
9091 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
9093 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
9094 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9095 translation_table
= get_translation_table (attrs
, 1, NULL
);
9099 validate_region (&start
, &end
);
9100 from
= XINT (start
);
9102 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
9103 || (ascii_compatible
9104 && (to
- from
) == (CHAR_TO_BYTE (to
) - (CHAR_TO_BYTE (from
)))))
9106 p
= CHAR_POS_ADDR (from
);
9107 pend
= CHAR_POS_ADDR (to
);
9108 if (from
< GPT
&& to
>= GPT
)
9115 CHECK_STRING (string
);
9116 validate_subarray (string
, start
, end
, SCHARS (string
), &from
, &to
);
9117 if (! STRING_MULTIBYTE (string
))
9119 p
= SDATA (string
) + string_char_to_byte (string
, from
);
9120 stop
= pend
= SDATA (string
) + string_char_to_byte (string
, to
);
9121 if (ascii_compatible
&& (to
- from
) == (pend
- p
))
9129 CHECK_NATNUM (count
);
9134 charset_map_loaded
= 0;
9139 if (ascii_compatible
)
9140 while (p
< stop
&& ASCII_CHAR_P (*p
))
9150 c
= STRING_CHAR_ADVANCE (p
);
9151 if (! (ASCII_CHAR_P (c
) && ascii_compatible
)
9152 && ! char_charset (translate_char (translation_table
, c
),
9153 charset_list
, NULL
))
9155 positions
= Fcons (make_number (from
), positions
);
9162 if (charset_map_loaded
&& NILP (string
))
9164 p
= CHAR_POS_ADDR (from
);
9165 pend
= CHAR_POS_ADDR (to
);
9166 if (from
< GPT
&& to
>= GPT
)
9170 charset_map_loaded
= 0;
9174 return (NILP (count
) ? Fcar (positions
) : Fnreverse (positions
));
9178 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region
,
9179 Scheck_coding_systems_region
, 3, 3, 0,
9180 doc
: /* Check if the region is encodable by coding systems.
9182 START and END are buffer positions specifying the region.
9183 CODING-SYSTEM-LIST is a list of coding systems to check.
9185 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where
9186 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the
9187 whole region, POS0, POS1, ... are buffer positions where non-encodable
9188 characters are found.
9190 If all coding systems in CODING-SYSTEM-LIST can encode the region, the
9193 START may be a string. In that case, check if the string is
9194 encodable, and the value contains indices to the string instead of
9195 buffer positions. END is ignored.
9197 If the current buffer (or START if it is a string) is unibyte, the value
9199 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system_list
)
9202 ptrdiff_t start_byte
, end_byte
;
9204 const unsigned char *p
, *pbeg
, *pend
;
9206 Lisp_Object tail
, elt
, attrs
;
9208 if (STRINGP (start
))
9210 if (!STRING_MULTIBYTE (start
)
9211 || SCHARS (start
) == SBYTES (start
))
9214 end_byte
= SBYTES (start
);
9219 CHECK_NUMBER_COERCE_MARKER (start
);
9220 CHECK_NUMBER_COERCE_MARKER (end
);
9221 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
9222 args_out_of_range (start
, end
);
9223 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9225 start_byte
= CHAR_TO_BYTE (XINT (start
));
9226 end_byte
= CHAR_TO_BYTE (XINT (end
));
9227 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
9230 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
9232 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
9233 move_gap_both (XINT (start
), start_byte
);
9235 move_gap_both (XINT (end
), end_byte
);
9241 for (tail
= coding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
9244 attrs
= AREF (CODING_SYSTEM_SPEC (elt
), 0);
9245 ASET (attrs
, coding_attr_trans_tbl
,
9246 get_translation_table (attrs
, 1, NULL
));
9247 list
= Fcons (list2 (elt
, attrs
), list
);
9250 if (STRINGP (start
))
9251 p
= pbeg
= SDATA (start
);
9253 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
9254 pend
= p
+ (end_byte
- start_byte
);
9256 while (p
< pend
&& ASCII_CHAR_P (*p
)) p
++, pos
++;
9257 while (p
< pend
&& ASCII_CHAR_P (*(pend
- 1))) pend
--;
9261 if (ASCII_CHAR_P (*p
))
9265 c
= STRING_CHAR_ADVANCE (p
);
9267 charset_map_loaded
= 0;
9268 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
9270 elt
= XCDR (XCAR (tail
));
9271 if (! char_encodable_p (c
, XCAR (elt
)))
9272 XSETCDR (elt
, Fcons (make_number (pos
), XCDR (elt
)));
9274 if (charset_map_loaded
)
9276 ptrdiff_t p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
9278 if (STRINGP (start
))
9279 pbeg
= SDATA (start
);
9281 pbeg
= BYTE_POS_ADDR (start_byte
);
9282 p
= pbeg
+ p_offset
;
9283 pend
= pbeg
+ pend_offset
;
9291 for (; CONSP (tail
); tail
= XCDR (tail
))
9294 if (CONSP (XCDR (XCDR (elt
))))
9295 list
= Fcons (Fcons (XCAR (elt
), Fnreverse (XCDR (XCDR (elt
)))),
9304 code_convert_region (Lisp_Object start
, Lisp_Object end
,
9305 Lisp_Object coding_system
, Lisp_Object dst_object
,
9306 bool encodep
, bool norecord
)
9308 struct coding_system coding
;
9309 ptrdiff_t from
, from_byte
, to
, to_byte
;
9310 Lisp_Object src_object
;
9312 if (NILP (coding_system
))
9313 coding_system
= Qno_conversion
;
9315 CHECK_CODING_SYSTEM (coding_system
);
9316 src_object
= Fcurrent_buffer ();
9317 if (NILP (dst_object
))
9318 dst_object
= src_object
;
9319 else if (! EQ (dst_object
, Qt
))
9320 CHECK_BUFFER (dst_object
);
9322 validate_region (&start
, &end
);
9323 from
= XFASTINT (start
);
9324 from_byte
= CHAR_TO_BYTE (from
);
9325 to
= XFASTINT (end
);
9326 to_byte
= CHAR_TO_BYTE (to
);
9328 setup_coding_system (coding_system
, &coding
);
9329 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9331 if (BUFFERP (dst_object
) && !EQ (dst_object
, src_object
))
9333 struct buffer
*buf
= XBUFFER (dst_object
);
9334 ptrdiff_t buf_pt
= BUF_PT (buf
);
9336 invalidate_buffer_caches (buf
, buf_pt
, buf_pt
);
9340 encode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
9343 decode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
9346 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9348 return (BUFFERP (dst_object
)
9349 ? make_number (coding
.produced_char
)
9350 : coding
.dst_object
);
9354 DEFUN ("decode-coding-region", Fdecode_coding_region
, Sdecode_coding_region
,
9355 3, 4, "r\nzCoding system: ",
9356 doc
: /* Decode the current region from the specified coding system.
9357 When called from a program, takes four arguments:
9358 START, END, CODING-SYSTEM, and DESTINATION.
9359 START and END are buffer positions.
9361 Optional 4th arguments DESTINATION specifies where the decoded text goes.
9362 If nil, the region between START and END is replaced by the decoded text.
9363 If buffer, the decoded text is inserted in that buffer after point (point
9365 In those cases, the length of the decoded text is returned.
9366 If DESTINATION is t, the decoded text is returned.
9368 This function sets `last-coding-system-used' to the precise coding system
9369 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9370 not fully specified.) */)
9371 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
9373 return code_convert_region (start
, end
, coding_system
, destination
, 0, 0);
9376 DEFUN ("encode-coding-region", Fencode_coding_region
, Sencode_coding_region
,
9377 3, 4, "r\nzCoding system: ",
9378 doc
: /* Encode the current region by specified coding system.
9379 When called from a program, takes four arguments:
9380 START, END, CODING-SYSTEM and DESTINATION.
9381 START and END are buffer positions.
9383 Optional 4th arguments DESTINATION specifies where the encoded text goes.
9384 If nil, the region between START and END is replace by the encoded text.
9385 If buffer, the encoded text is inserted in that buffer after point (point
9387 In those cases, the length of the encoded text is returned.
9388 If DESTINATION is t, the encoded text is returned.
9390 This function sets `last-coding-system-used' to the precise coding system
9391 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9392 not fully specified.) */)
9393 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
9395 return code_convert_region (start
, end
, coding_system
, destination
, 1, 0);
9399 code_convert_string (Lisp_Object string
, Lisp_Object coding_system
,
9400 Lisp_Object dst_object
, bool encodep
, bool nocopy
,
9403 struct coding_system coding
;
9404 ptrdiff_t chars
, bytes
;
9406 CHECK_STRING (string
);
9407 if (NILP (coding_system
))
9410 Vlast_coding_system_used
= Qno_conversion
;
9411 if (NILP (dst_object
))
9412 return (nocopy
? Fcopy_sequence (string
) : string
);
9415 if (NILP (coding_system
))
9416 coding_system
= Qno_conversion
;
9418 CHECK_CODING_SYSTEM (coding_system
);
9419 if (NILP (dst_object
))
9421 else if (! EQ (dst_object
, Qt
))
9422 CHECK_BUFFER (dst_object
);
9424 setup_coding_system (coding_system
, &coding
);
9425 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9426 chars
= SCHARS (string
);
9427 bytes
= SBYTES (string
);
9429 if (BUFFERP (dst_object
))
9431 struct buffer
*buf
= XBUFFER (dst_object
);
9432 ptrdiff_t buf_pt
= BUF_PT (buf
);
9434 invalidate_buffer_caches (buf
, buf_pt
, buf_pt
);
9438 encode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9440 decode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9442 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9444 return (BUFFERP (dst_object
)
9445 ? make_number (coding
.produced_char
)
9446 : coding
.dst_object
);
9450 /* Encode or decode STRING according to CODING_SYSTEM.
9451 Do not set Vlast_coding_system_used.
9453 This function is called only from macros DECODE_FILE and
9454 ENCODE_FILE, thus we ignore character composition. */
9457 code_convert_string_norecord (Lisp_Object string
, Lisp_Object coding_system
,
9460 return code_convert_string (string
, coding_system
, Qt
, encodep
, 0, 1);
9463 /* Encode or decode a file name, to or from a unibyte string suitable
9464 for passing to C library functions. */
9466 decode_file_name (Lisp_Object fname
)
9469 /* The w32 build pretends to use UTF-8 for file-name encoding, and
9470 converts the file names either to UTF-16LE or to the system ANSI
9471 codepage internally, depending on the underlying OS; see w32.c. */
9472 if (! NILP (Fcoding_system_p (Qutf_8
)))
9473 return code_convert_string_norecord (fname
, Qutf_8
, 0);
9475 #else /* !WINDOWSNT */
9476 if (! NILP (Vfile_name_coding_system
))
9477 return code_convert_string_norecord (fname
, Vfile_name_coding_system
, 0);
9478 else if (! NILP (Vdefault_file_name_coding_system
))
9479 return code_convert_string_norecord (fname
,
9480 Vdefault_file_name_coding_system
, 0);
9487 encode_file_name (Lisp_Object fname
)
9489 /* This is especially important during bootstrap and dumping, when
9490 file-name encoding is not yet known, and therefore any non-ASCII
9491 file names are unibyte strings, and could only be thrashed if we
9492 try to encode them. */
9493 if (!STRING_MULTIBYTE (fname
))
9496 /* The w32 build pretends to use UTF-8 for file-name encoding, and
9497 converts the file names either to UTF-16LE or to the system ANSI
9498 codepage internally, depending on the underlying OS; see w32.c. */
9499 if (! NILP (Fcoding_system_p (Qutf_8
)))
9500 return code_convert_string_norecord (fname
, Qutf_8
, 1);
9502 #else /* !WINDOWSNT */
9503 if (! NILP (Vfile_name_coding_system
))
9504 return code_convert_string_norecord (fname
, Vfile_name_coding_system
, 1);
9505 else if (! NILP (Vdefault_file_name_coding_system
))
9506 return code_convert_string_norecord (fname
,
9507 Vdefault_file_name_coding_system
, 1);
9513 DEFUN ("decode-coding-string", Fdecode_coding_string
, Sdecode_coding_string
,
9515 doc
: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
9517 Optional third arg NOCOPY non-nil means it is OK to return STRING itself
9518 if the decoding operation is trivial.
9520 Optional fourth arg BUFFER non-nil means that the decoded text is
9521 inserted in that buffer after point (point does not move). In this
9522 case, the return value is the length of the decoded text.
9524 This function sets `last-coding-system-used' to the precise coding system
9525 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9526 not fully specified.) */)
9527 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9529 return code_convert_string (string
, coding_system
, buffer
,
9530 0, ! NILP (nocopy
), 0);
9533 DEFUN ("encode-coding-string", Fencode_coding_string
, Sencode_coding_string
,
9535 doc
: /* Encode STRING to CODING-SYSTEM, and return the result.
9537 Optional third arg NOCOPY non-nil means it is OK to return STRING
9538 itself if the encoding operation is trivial.
9540 Optional fourth arg BUFFER non-nil means that the encoded text is
9541 inserted in that buffer after point (point does not move). In this
9542 case, the return value is the length of the encoded text.
9544 This function sets `last-coding-system-used' to the precise coding system
9545 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9546 not fully specified.) */)
9547 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9549 return code_convert_string (string
, coding_system
, buffer
,
9550 1, ! NILP (nocopy
), 0);
9554 DEFUN ("decode-sjis-char", Fdecode_sjis_char
, Sdecode_sjis_char
, 1, 1, 0,
9555 doc
: /* Decode a Japanese character which has CODE in shift_jis encoding.
9556 Return the corresponding character. */)
9559 Lisp_Object spec
, attrs
, val
;
9560 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
, *charset
;
9564 CHECK_NATNUM (code
);
9565 ch
= XFASTINT (code
);
9566 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9567 attrs
= AREF (spec
, 0);
9569 if (ASCII_CHAR_P (ch
)
9570 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9573 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9574 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9575 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9576 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9581 charset
= charset_roman
;
9583 else if (ch
>= 0xA0 && ch
< 0xDF)
9586 charset
= charset_kana
;
9590 EMACS_INT c1
= ch
>> 8;
9593 if (c1
< 0x81 || (c1
> 0x9F && c1
< 0xE0) || c1
> 0xEF
9594 || c2
< 0x40 || c2
== 0x7F || c2
> 0xFC)
9595 error ("Invalid code: %"pI
"d", ch
);
9598 charset
= charset_kanji
;
9600 c
= DECODE_CHAR (charset
, c
);
9602 error ("Invalid code: %"pI
"d", ch
);
9603 return make_number (c
);
9607 DEFUN ("encode-sjis-char", Fencode_sjis_char
, Sencode_sjis_char
, 1, 1, 0,
9608 doc
: /* Encode a Japanese character CH to shift_jis encoding.
9609 Return the corresponding code in SJIS. */)
9612 Lisp_Object spec
, attrs
, charset_list
;
9614 struct charset
*charset
;
9617 CHECK_CHARACTER (ch
);
9619 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9620 attrs
= AREF (spec
, 0);
9622 if (ASCII_CHAR_P (c
)
9623 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9626 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9627 charset
= char_charset (c
, charset_list
, &code
);
9628 if (code
== CHARSET_INVALID_CODE (charset
))
9629 error ("Can't encode by shift_jis encoding: %c", c
);
9632 return make_number (code
);
9635 DEFUN ("decode-big5-char", Fdecode_big5_char
, Sdecode_big5_char
, 1, 1, 0,
9636 doc
: /* Decode a Big5 character which has CODE in BIG5 coding system.
9637 Return the corresponding character. */)
9640 Lisp_Object spec
, attrs
, val
;
9641 struct charset
*charset_roman
, *charset_big5
, *charset
;
9645 CHECK_NATNUM (code
);
9646 ch
= XFASTINT (code
);
9647 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9648 attrs
= AREF (spec
, 0);
9650 if (ASCII_CHAR_P (ch
)
9651 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9654 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9655 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9656 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9661 charset
= charset_roman
;
9665 EMACS_INT b1
= ch
>> 8;
9667 if (b1
< 0xA1 || b1
> 0xFE
9668 || b2
< 0x40 || (b2
> 0x7E && b2
< 0xA1) || b2
> 0xFE)
9669 error ("Invalid code: %"pI
"d", ch
);
9671 charset
= charset_big5
;
9673 c
= DECODE_CHAR (charset
, c
);
9675 error ("Invalid code: %"pI
"d", ch
);
9676 return make_number (c
);
9679 DEFUN ("encode-big5-char", Fencode_big5_char
, Sencode_big5_char
, 1, 1, 0,
9680 doc
: /* Encode the Big5 character CH to BIG5 coding system.
9681 Return the corresponding character code in Big5. */)
9684 Lisp_Object spec
, attrs
, charset_list
;
9685 struct charset
*charset
;
9689 CHECK_CHARACTER (ch
);
9691 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9692 attrs
= AREF (spec
, 0);
9693 if (ASCII_CHAR_P (c
)
9694 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9697 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9698 charset
= char_charset (c
, charset_list
, &code
);
9699 if (code
== CHARSET_INVALID_CODE (charset
))
9700 error ("Can't encode by Big5 encoding: %c", c
);
9702 return make_number (code
);
9706 DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal
,
9707 Sset_terminal_coding_system_internal
, 1, 2, 0,
9708 doc
: /* Internal use only. */)
9709 (Lisp_Object coding_system
, Lisp_Object terminal
)
9711 struct terminal
*term
= decode_live_terminal (terminal
);
9712 struct coding_system
*terminal_coding
= TERMINAL_TERMINAL_CODING (term
);
9713 CHECK_SYMBOL (coding_system
);
9714 setup_coding_system (Fcheck_coding_system (coding_system
), terminal_coding
);
9715 /* We had better not send unsafe characters to terminal. */
9716 terminal_coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
9717 /* Character composition should be disabled. */
9718 terminal_coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9719 terminal_coding
->src_multibyte
= 1;
9720 terminal_coding
->dst_multibyte
= 0;
9722 (term
, (terminal_coding
->common_flags
& CODING_REQUIRE_ENCODING_MASK
9723 ? coding_charset_list (terminal_coding
)
9724 : list1 (make_number (charset_ascii
))));
9728 DEFUN ("set-safe-terminal-coding-system-internal",
9729 Fset_safe_terminal_coding_system_internal
,
9730 Sset_safe_terminal_coding_system_internal
, 1, 1, 0,
9731 doc
: /* Internal use only. */)
9732 (Lisp_Object coding_system
)
9734 CHECK_SYMBOL (coding_system
);
9735 setup_coding_system (Fcheck_coding_system (coding_system
),
9736 &safe_terminal_coding
);
9737 /* Character composition should be disabled. */
9738 safe_terminal_coding
.common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9739 safe_terminal_coding
.src_multibyte
= 1;
9740 safe_terminal_coding
.dst_multibyte
= 0;
9744 DEFUN ("terminal-coding-system", Fterminal_coding_system
,
9745 Sterminal_coding_system
, 0, 1, 0,
9746 doc
: /* Return coding system specified for terminal output on the given terminal.
9747 TERMINAL may be a terminal object, a frame, or nil for the selected
9748 frame's terminal device. */)
9749 (Lisp_Object terminal
)
9751 struct coding_system
*terminal_coding
9752 = TERMINAL_TERMINAL_CODING (decode_live_terminal (terminal
));
9753 Lisp_Object coding_system
= CODING_ID_NAME (terminal_coding
->id
);
9755 /* For backward compatibility, return nil if it is `undecided'. */
9756 return (! EQ (coding_system
, Qundecided
) ? coding_system
: Qnil
);
9759 DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal
,
9760 Sset_keyboard_coding_system_internal
, 1, 2, 0,
9761 doc
: /* Internal use only. */)
9762 (Lisp_Object coding_system
, Lisp_Object terminal
)
9764 struct terminal
*t
= decode_live_terminal (terminal
);
9765 CHECK_SYMBOL (coding_system
);
9766 if (NILP (coding_system
))
9767 coding_system
= Qno_conversion
;
9769 Fcheck_coding_system (coding_system
);
9770 setup_coding_system (coding_system
, TERMINAL_KEYBOARD_CODING (t
));
9771 /* Character composition should be disabled. */
9772 TERMINAL_KEYBOARD_CODING (t
)->common_flags
9773 &= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9777 DEFUN ("keyboard-coding-system",
9778 Fkeyboard_coding_system
, Skeyboard_coding_system
, 0, 1, 0,
9779 doc
: /* Return coding system specified for decoding keyboard input. */)
9780 (Lisp_Object terminal
)
9782 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING
9783 (decode_live_terminal (terminal
))->id
);
9787 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system
,
9788 Sfind_operation_coding_system
, 1, MANY
, 0,
9789 doc
: /* Choose a coding system for an operation based on the target name.
9790 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9791 DECODING-SYSTEM is the coding system to use for decoding
9792 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9793 for encoding (in case OPERATION does encoding).
9795 The first argument OPERATION specifies an I/O primitive:
9796 For file I/O, `insert-file-contents' or `write-region'.
9797 For process I/O, `call-process', `call-process-region', or `start-process'.
9798 For network I/O, `open-network-stream'.
9800 The remaining arguments should be the same arguments that were passed
9801 to the primitive. Depending on which primitive, one of those arguments
9802 is selected as the TARGET. For example, if OPERATION does file I/O,
9803 whichever argument specifies the file name is TARGET.
9805 TARGET has a meaning which depends on OPERATION:
9806 For file I/O, TARGET is a file name (except for the special case below).
9807 For process I/O, TARGET is a process name.
9808 For network I/O, TARGET is a service name or a port number.
9810 This function looks up what is specified for TARGET in
9811 `file-coding-system-alist', `process-coding-system-alist',
9812 or `network-coding-system-alist' depending on OPERATION.
9813 They may specify a coding system, a cons of coding systems,
9814 or a function symbol to call.
9815 In the last case, we call the function with one argument,
9816 which is a list of all the arguments given to this function.
9817 If the function can't decide a coding system, it can return
9818 `undecided' so that the normal code-detection is performed.
9820 If OPERATION is `insert-file-contents', the argument corresponding to
9821 TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
9822 file name to look up, and BUFFER is a buffer that contains the file's
9823 contents (not yet decoded). If `file-coding-system-alist' specifies a
9824 function to call for FILENAME, that function should examine the
9825 contents of BUFFER instead of reading the file.
9827 usage: (find-operation-coding-system OPERATION ARGUMENTS...) */)
9828 (ptrdiff_t nargs
, Lisp_Object
*args
)
9830 Lisp_Object operation
, target_idx
, target
, val
;
9831 register Lisp_Object chain
;
9834 error ("Too few arguments");
9835 operation
= args
[0];
9836 if (!SYMBOLP (operation
)
9837 || (target_idx
= Fget (operation
, Qtarget_idx
), !NATNUMP (target_idx
)))
9838 error ("Invalid first argument");
9839 if (nargs
<= 1 + XFASTINT (target_idx
))
9840 error ("Too few arguments for operation `%s'",
9841 SDATA (SYMBOL_NAME (operation
)));
9842 target
= args
[XFASTINT (target_idx
) + 1];
9843 if (!(STRINGP (target
)
9844 || (EQ (operation
, Qinsert_file_contents
) && CONSP (target
)
9845 && STRINGP (XCAR (target
)) && BUFFERP (XCDR (target
)))
9846 || (EQ (operation
, Qopen_network_stream
)
9847 && (INTEGERP (target
) || EQ (target
, Qt
)))))
9848 error ("Invalid argument %"pI
"d of operation `%s'",
9849 XFASTINT (target_idx
) + 1, SDATA (SYMBOL_NAME (operation
)));
9851 target
= XCAR (target
);
9853 chain
= ((EQ (operation
, Qinsert_file_contents
)
9854 || EQ (operation
, Qwrite_region
))
9855 ? Vfile_coding_system_alist
9856 : (EQ (operation
, Qopen_network_stream
)
9857 ? Vnetwork_coding_system_alist
9858 : Vprocess_coding_system_alist
));
9862 for (; CONSP (chain
); chain
= XCDR (chain
))
9868 && ((STRINGP (target
)
9869 && STRINGP (XCAR (elt
))
9870 && fast_string_match (XCAR (elt
), target
) >= 0)
9871 || (INTEGERP (target
) && EQ (target
, XCAR (elt
)))))
9874 /* Here, if VAL is both a valid coding system and a valid
9875 function symbol, we return VAL as a coding system. */
9878 if (! SYMBOLP (val
))
9880 if (! NILP (Fcoding_system_p (val
)))
9881 return Fcons (val
, val
);
9882 if (! NILP (Ffboundp (val
)))
9884 /* We use call1 rather than safe_call1
9885 so as to get bug reports about functions called here
9886 which don't handle the current interface. */
9887 val
= call1 (val
, Flist (nargs
, args
));
9890 if (SYMBOLP (val
) && ! NILP (Fcoding_system_p (val
)))
9891 return Fcons (val
, val
);
9899 DEFUN ("set-coding-system-priority", Fset_coding_system_priority
,
9900 Sset_coding_system_priority
, 0, MANY
, 0,
9901 doc
: /* Assign higher priority to the coding systems given as arguments.
9902 If multiple coding systems belong to the same category,
9903 all but the first one are ignored.
9905 usage: (set-coding-system-priority &rest coding-systems) */)
9906 (ptrdiff_t nargs
, Lisp_Object
*args
)
9909 bool changed
[coding_category_max
];
9910 enum coding_category priorities
[coding_category_max
];
9912 memset (changed
, 0, sizeof changed
);
9914 for (i
= j
= 0; i
< nargs
; i
++)
9916 enum coding_category category
;
9917 Lisp_Object spec
, attrs
;
9919 CHECK_CODING_SYSTEM_GET_SPEC (args
[i
], spec
);
9920 attrs
= AREF (spec
, 0);
9921 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
9922 if (changed
[category
])
9923 /* Ignore this coding system because a coding system of the
9924 same category already had a higher priority. */
9926 changed
[category
] = 1;
9927 priorities
[j
++] = category
;
9928 if (coding_categories
[category
].id
>= 0
9929 && ! EQ (args
[i
], CODING_ID_NAME (coding_categories
[category
].id
)))
9930 setup_coding_system (args
[i
], &coding_categories
[category
]);
9931 Fset (AREF (Vcoding_category_table
, category
), args
[i
]);
9934 /* Now we have decided top J priorities. Reflect the order of the
9935 original priorities to the remaining priorities. */
9937 for (i
= j
, j
= 0; i
< coding_category_max
; i
++, j
++)
9939 while (j
< coding_category_max
9940 && changed
[coding_priorities
[j
]])
9942 if (j
== coding_category_max
)
9944 priorities
[i
] = coding_priorities
[j
];
9947 memcpy (coding_priorities
, priorities
, sizeof priorities
);
9949 /* Update `coding-category-list'. */
9950 Vcoding_category_list
= Qnil
;
9951 for (i
= coding_category_max
; i
-- > 0; )
9952 Vcoding_category_list
9953 = Fcons (AREF (Vcoding_category_table
, priorities
[i
]),
9954 Vcoding_category_list
);
9959 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list
,
9960 Scoding_system_priority_list
, 0, 1, 0,
9961 doc
: /* Return a list of coding systems ordered by their priorities.
9962 The list contains a subset of coding systems; i.e. coding systems
9963 assigned to each coding category (see `coding-category-list').
9965 HIGHESTP non-nil means just return the highest priority one. */)
9966 (Lisp_Object highestp
)
9971 for (i
= 0, val
= Qnil
; i
< coding_category_max
; i
++)
9973 enum coding_category category
= coding_priorities
[i
];
9974 int id
= coding_categories
[category
].id
;
9979 attrs
= CODING_ID_ATTRS (id
);
9980 if (! NILP (highestp
))
9981 return CODING_ATTR_BASE_NAME (attrs
);
9982 val
= Fcons (CODING_ATTR_BASE_NAME (attrs
), val
);
9984 return Fnreverse (val
);
9987 static const char *const suffixes
[] = { "-unix", "-dos", "-mac" };
9990 make_subsidiaries (Lisp_Object base
)
9992 Lisp_Object subsidiaries
;
9993 ptrdiff_t base_name_len
= SBYTES (SYMBOL_NAME (base
));
9995 char *buf
= SAFE_ALLOCA (base_name_len
+ 6);
9998 memcpy (buf
, SDATA (SYMBOL_NAME (base
)), base_name_len
);
9999 subsidiaries
= make_uninit_vector (3);
10000 for (i
= 0; i
< 3; i
++)
10002 strcpy (buf
+ base_name_len
, suffixes
[i
]);
10003 ASET (subsidiaries
, i
, intern (buf
));
10006 return subsidiaries
;
10010 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal
,
10011 Sdefine_coding_system_internal
, coding_arg_max
, MANY
, 0,
10012 doc
: /* For internal use only.
10013 usage: (define-coding-system-internal ...) */)
10014 (ptrdiff_t nargs
, Lisp_Object
*args
)
10017 Lisp_Object spec_vec
; /* [ ATTRS ALIASE EOL_TYPE ] */
10018 Lisp_Object attrs
; /* Vector of attributes. */
10019 Lisp_Object eol_type
;
10020 Lisp_Object aliases
;
10021 Lisp_Object coding_type
, charset_list
, safe_charsets
;
10022 enum coding_category category
;
10023 Lisp_Object tail
, val
;
10024 int max_charset_id
= 0;
10027 if (nargs
< coding_arg_max
)
10030 attrs
= Fmake_vector (make_number (coding_attr_last_index
), Qnil
);
10032 name
= args
[coding_arg_name
];
10033 CHECK_SYMBOL (name
);
10034 ASET (attrs
, coding_attr_base_name
, name
);
10036 val
= args
[coding_arg_mnemonic
];
10037 if (! STRINGP (val
))
10038 CHECK_CHARACTER (val
);
10039 ASET (attrs
, coding_attr_mnemonic
, val
);
10041 coding_type
= args
[coding_arg_coding_type
];
10042 CHECK_SYMBOL (coding_type
);
10043 ASET (attrs
, coding_attr_type
, coding_type
);
10045 charset_list
= args
[coding_arg_charset_list
];
10046 if (SYMBOLP (charset_list
))
10048 if (EQ (charset_list
, Qiso_2022
))
10050 if (! EQ (coding_type
, Qiso_2022
))
10051 error ("Invalid charset-list");
10052 charset_list
= Viso_2022_charset_list
;
10054 else if (EQ (charset_list
, Qemacs_mule
))
10056 if (! EQ (coding_type
, Qemacs_mule
))
10057 error ("Invalid charset-list");
10058 charset_list
= Vemacs_mule_charset_list
;
10060 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10062 if (! RANGED_INTEGERP (0, XCAR (tail
), INT_MAX
- 1))
10063 error ("Invalid charset-list");
10064 if (max_charset_id
< XFASTINT (XCAR (tail
)))
10065 max_charset_id
= XFASTINT (XCAR (tail
));
10070 charset_list
= Fcopy_sequence (charset_list
);
10071 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10073 struct charset
*charset
;
10076 CHECK_CHARSET_GET_CHARSET (val
, charset
);
10077 if (EQ (coding_type
, Qiso_2022
)
10078 ? CHARSET_ISO_FINAL (charset
) < 0
10079 : EQ (coding_type
, Qemacs_mule
)
10080 ? CHARSET_EMACS_MULE_ID (charset
) < 0
10082 error ("Can't handle charset `%s'",
10083 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10085 XSETCAR (tail
, make_number (charset
->id
));
10086 if (max_charset_id
< charset
->id
)
10087 max_charset_id
= charset
->id
;
10090 ASET (attrs
, coding_attr_charset_list
, charset_list
);
10092 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
10093 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
10094 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10095 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
10096 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
10098 ASET (attrs
, coding_attr_ascii_compat
, args
[coding_arg_ascii_compatible_p
]);
10100 val
= args
[coding_arg_decode_translation_table
];
10101 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10102 CHECK_SYMBOL (val
);
10103 ASET (attrs
, coding_attr_decode_tbl
, val
);
10105 val
= args
[coding_arg_encode_translation_table
];
10106 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10107 CHECK_SYMBOL (val
);
10108 ASET (attrs
, coding_attr_encode_tbl
, val
);
10110 val
= args
[coding_arg_post_read_conversion
];
10111 CHECK_SYMBOL (val
);
10112 ASET (attrs
, coding_attr_post_read
, val
);
10114 val
= args
[coding_arg_pre_write_conversion
];
10115 CHECK_SYMBOL (val
);
10116 ASET (attrs
, coding_attr_pre_write
, val
);
10118 val
= args
[coding_arg_default_char
];
10120 ASET (attrs
, coding_attr_default_char
, make_number (' '));
10123 CHECK_CHARACTER (val
);
10124 ASET (attrs
, coding_attr_default_char
, val
);
10127 val
= args
[coding_arg_for_unibyte
];
10128 ASET (attrs
, coding_attr_for_unibyte
, NILP (val
) ? Qnil
: Qt
);
10130 val
= args
[coding_arg_plist
];
10132 ASET (attrs
, coding_attr_plist
, val
);
10134 if (EQ (coding_type
, Qcharset
))
10136 /* Generate a lisp vector of 256 elements. Each element is nil,
10137 integer, or a list of charset IDs.
10139 If Nth element is nil, the byte code N is invalid in this
10142 If Nth element is a number NUM, N is the first byte of a
10143 charset whose ID is NUM.
10145 If Nth element is a list of charset IDs, N is the first byte
10146 of one of them. The list is sorted by dimensions of the
10147 charsets. A charset of smaller dimension comes first. */
10148 val
= Fmake_vector (make_number (256), Qnil
);
10150 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
10152 struct charset
*charset
= CHARSET_FROM_ID (XFASTINT (XCAR (tail
)));
10153 int dim
= CHARSET_DIMENSION (charset
);
10154 int idx
= (dim
- 1) * 4;
10156 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10157 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10159 for (i
= charset
->code_space
[idx
];
10160 i
<= charset
->code_space
[idx
+ 1]; i
++)
10162 Lisp_Object tmp
, tmp2
;
10165 tmp
= AREF (val
, i
);
10168 else if (NUMBERP (tmp
))
10170 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp
)));
10172 tmp
= list2 (XCAR (tail
), tmp
);
10174 tmp
= list2 (tmp
, XCAR (tail
));
10178 for (tmp2
= tmp
; CONSP (tmp2
); tmp2
= XCDR (tmp2
))
10180 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2
))));
10185 tmp
= nconc2 (tmp
, list1 (XCAR (tail
)));
10188 XSETCDR (tmp2
, Fcons (XCAR (tmp2
), XCDR (tmp2
)));
10189 XSETCAR (tmp2
, XCAR (tail
));
10192 ASET (val
, i
, tmp
);
10195 ASET (attrs
, coding_attr_charset_valids
, val
);
10196 category
= coding_category_charset
;
10198 else if (EQ (coding_type
, Qccl
))
10200 Lisp_Object valids
;
10202 if (nargs
< coding_arg_ccl_max
)
10205 val
= args
[coding_arg_ccl_decoder
];
10206 CHECK_CCL_PROGRAM (val
);
10208 val
= Fcopy_sequence (val
);
10209 ASET (attrs
, coding_attr_ccl_decoder
, val
);
10211 val
= args
[coding_arg_ccl_encoder
];
10212 CHECK_CCL_PROGRAM (val
);
10214 val
= Fcopy_sequence (val
);
10215 ASET (attrs
, coding_attr_ccl_encoder
, val
);
10217 val
= args
[coding_arg_ccl_valids
];
10218 valids
= Fmake_string (make_number (256), make_number (0));
10219 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
10224 if (INTEGERP (val
))
10226 if (! (0 <= XINT (val
) && XINT (val
) <= 255))
10227 args_out_of_range_3 (val
, make_number (0), make_number (255));
10228 from
= to
= XINT (val
);
10233 CHECK_NATNUM_CAR (val
);
10234 CHECK_NUMBER_CDR (val
);
10235 if (XINT (XCAR (val
)) > 255)
10236 args_out_of_range_3 (XCAR (val
),
10237 make_number (0), make_number (255));
10238 from
= XINT (XCAR (val
));
10239 if (! (from
<= XINT (XCDR (val
)) && XINT (XCDR (val
)) <= 255))
10240 args_out_of_range_3 (XCDR (val
),
10241 XCAR (val
), make_number (255));
10242 to
= XINT (XCDR (val
));
10244 for (i
= from
; i
<= to
; i
++)
10245 SSET (valids
, i
, 1);
10247 ASET (attrs
, coding_attr_ccl_valids
, valids
);
10249 category
= coding_category_ccl
;
10251 else if (EQ (coding_type
, Qutf_16
))
10253 Lisp_Object bom
, endian
;
10255 ASET (attrs
, coding_attr_ascii_compat
, Qnil
);
10257 if (nargs
< coding_arg_utf16_max
)
10260 bom
= args
[coding_arg_utf16_bom
];
10261 if (! NILP (bom
) && ! EQ (bom
, Qt
))
10265 CHECK_CODING_SYSTEM (val
);
10267 CHECK_CODING_SYSTEM (val
);
10269 ASET (attrs
, coding_attr_utf_bom
, bom
);
10271 endian
= args
[coding_arg_utf16_endian
];
10272 CHECK_SYMBOL (endian
);
10275 else if (! EQ (endian
, Qbig
) && ! EQ (endian
, Qlittle
))
10276 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian
)));
10277 ASET (attrs
, coding_attr_utf_16_endian
, endian
);
10279 category
= (CONSP (bom
)
10280 ? coding_category_utf_16_auto
10282 ? (EQ (endian
, Qbig
)
10283 ? coding_category_utf_16_be_nosig
10284 : coding_category_utf_16_le_nosig
)
10285 : (EQ (endian
, Qbig
)
10286 ? coding_category_utf_16_be
10287 : coding_category_utf_16_le
));
10289 else if (EQ (coding_type
, Qiso_2022
))
10291 Lisp_Object initial
, reg_usage
, request
, flags
;
10293 if (nargs
< coding_arg_iso2022_max
)
10296 initial
= Fcopy_sequence (args
[coding_arg_iso2022_initial
]);
10297 CHECK_VECTOR (initial
);
10298 for (i
= 0; i
< 4; i
++)
10300 val
= AREF (initial
, i
);
10303 struct charset
*charset
;
10305 CHECK_CHARSET_GET_CHARSET (val
, charset
);
10306 ASET (initial
, i
, make_number (CHARSET_ID (charset
)));
10307 if (i
== 0 && CHARSET_ASCII_COMPATIBLE_P (charset
))
10308 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10311 ASET (initial
, i
, make_number (-1));
10314 reg_usage
= args
[coding_arg_iso2022_reg_usage
];
10315 CHECK_CONS (reg_usage
);
10316 CHECK_NUMBER_CAR (reg_usage
);
10317 CHECK_NUMBER_CDR (reg_usage
);
10319 request
= Fcopy_sequence (args
[coding_arg_iso2022_request
]);
10320 for (tail
= request
; CONSP (tail
); tail
= XCDR (tail
))
10328 CHECK_CHARSET_GET_ID (tmp1
, id
);
10329 CHECK_NATNUM_CDR (val
);
10330 if (XINT (XCDR (val
)) >= 4)
10331 error ("Invalid graphic register number: %"pI
"d", XINT (XCDR (val
)));
10332 XSETCAR (val
, make_number (id
));
10335 flags
= args
[coding_arg_iso2022_flags
];
10336 CHECK_NATNUM (flags
);
10337 i
= XINT (flags
) & INT_MAX
;
10338 if (EQ (args
[coding_arg_charset_list
], Qiso_2022
))
10339 i
|= CODING_ISO_FLAG_FULL_SUPPORT
;
10340 flags
= make_number (i
);
10342 ASET (attrs
, coding_attr_iso_initial
, initial
);
10343 ASET (attrs
, coding_attr_iso_usage
, reg_usage
);
10344 ASET (attrs
, coding_attr_iso_request
, request
);
10345 ASET (attrs
, coding_attr_iso_flags
, flags
);
10346 setup_iso_safe_charsets (attrs
);
10348 if (i
& CODING_ISO_FLAG_SEVEN_BITS
)
10349 category
= ((i
& (CODING_ISO_FLAG_LOCKING_SHIFT
10350 | CODING_ISO_FLAG_SINGLE_SHIFT
))
10351 ? coding_category_iso_7_else
10352 : EQ (args
[coding_arg_charset_list
], Qiso_2022
)
10353 ? coding_category_iso_7
10354 : coding_category_iso_7_tight
);
10357 int id
= XINT (AREF (initial
, 1));
10359 category
= (((i
& CODING_ISO_FLAG_LOCKING_SHIFT
)
10360 || EQ (args
[coding_arg_charset_list
], Qiso_2022
)
10362 ? coding_category_iso_8_else
10363 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id
)) == 1)
10364 ? coding_category_iso_8_1
10365 : coding_category_iso_8_2
);
10367 if (category
!= coding_category_iso_8_1
10368 && category
!= coding_category_iso_8_2
)
10369 ASET (attrs
, coding_attr_ascii_compat
, Qnil
);
10371 else if (EQ (coding_type
, Qemacs_mule
))
10373 if (EQ (args
[coding_arg_charset_list
], Qemacs_mule
))
10374 ASET (attrs
, coding_attr_emacs_mule_full
, Qt
);
10375 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10376 category
= coding_category_emacs_mule
;
10378 else if (EQ (coding_type
, Qshift_jis
))
10381 struct charset
*charset
;
10383 if (XINT (Flength (charset_list
)) != 3
10384 && XINT (Flength (charset_list
)) != 4)
10385 error ("There should be three or four charsets");
10387 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10388 if (CHARSET_DIMENSION (charset
) != 1)
10389 error ("Dimension of charset %s is not one",
10390 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10391 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10392 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10394 charset_list
= XCDR (charset_list
);
10395 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10396 if (CHARSET_DIMENSION (charset
) != 1)
10397 error ("Dimension of charset %s is not one",
10398 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10400 charset_list
= XCDR (charset_list
);
10401 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10402 if (CHARSET_DIMENSION (charset
) != 2)
10403 error ("Dimension of charset %s is not two",
10404 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10406 charset_list
= XCDR (charset_list
);
10407 if (! NILP (charset_list
))
10409 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10410 if (CHARSET_DIMENSION (charset
) != 2)
10411 error ("Dimension of charset %s is not two",
10412 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10415 category
= coding_category_sjis
;
10416 Vsjis_coding_system
= name
;
10418 else if (EQ (coding_type
, Qbig5
))
10420 struct charset
*charset
;
10422 if (XINT (Flength (charset_list
)) != 2)
10423 error ("There should be just two charsets");
10425 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10426 if (CHARSET_DIMENSION (charset
) != 1)
10427 error ("Dimension of charset %s is not one",
10428 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10429 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10430 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10432 charset_list
= XCDR (charset_list
);
10433 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10434 if (CHARSET_DIMENSION (charset
) != 2)
10435 error ("Dimension of charset %s is not two",
10436 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10438 category
= coding_category_big5
;
10439 Vbig5_coding_system
= name
;
10441 else if (EQ (coding_type
, Qraw_text
))
10443 category
= coding_category_raw_text
;
10444 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10446 else if (EQ (coding_type
, Qutf_8
))
10450 if (nargs
< coding_arg_utf8_max
)
10453 bom
= args
[coding_arg_utf8_bom
];
10454 if (! NILP (bom
) && ! EQ (bom
, Qt
))
10458 CHECK_CODING_SYSTEM (val
);
10460 CHECK_CODING_SYSTEM (val
);
10462 ASET (attrs
, coding_attr_utf_bom
, bom
);
10464 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
10466 category
= (CONSP (bom
) ? coding_category_utf_8_auto
10467 : NILP (bom
) ? coding_category_utf_8_nosig
10468 : coding_category_utf_8_sig
);
10470 else if (EQ (coding_type
, Qundecided
))
10472 if (nargs
< coding_arg_undecided_max
)
10474 ASET (attrs
, coding_attr_undecided_inhibit_null_byte_detection
,
10475 args
[coding_arg_undecided_inhibit_null_byte_detection
]);
10476 ASET (attrs
, coding_attr_undecided_inhibit_iso_escape_detection
,
10477 args
[coding_arg_undecided_inhibit_iso_escape_detection
]);
10478 ASET (attrs
, coding_attr_undecided_prefer_utf_8
,
10479 args
[coding_arg_undecided_prefer_utf_8
]);
10480 category
= coding_category_undecided
;
10483 error ("Invalid coding system type: %s",
10484 SDATA (SYMBOL_NAME (coding_type
)));
10486 ASET (attrs
, coding_attr_category
, make_number (category
));
10487 ASET (attrs
, coding_attr_plist
,
10489 Fcons (AREF (Vcoding_category_table
, category
),
10490 CODING_ATTR_PLIST (attrs
))));
10491 ASET (attrs
, coding_attr_plist
,
10492 Fcons (QCascii_compatible_p
,
10493 Fcons (CODING_ATTR_ASCII_COMPAT (attrs
),
10494 CODING_ATTR_PLIST (attrs
))));
10496 eol_type
= args
[coding_arg_eol_type
];
10497 if (! NILP (eol_type
)
10498 && ! EQ (eol_type
, Qunix
)
10499 && ! EQ (eol_type
, Qdos
)
10500 && ! EQ (eol_type
, Qmac
))
10501 error ("Invalid eol-type");
10503 aliases
= list1 (name
);
10505 if (NILP (eol_type
))
10507 eol_type
= make_subsidiaries (name
);
10508 for (i
= 0; i
< 3; i
++)
10510 Lisp_Object this_spec
, this_name
, this_aliases
, this_eol_type
;
10512 this_name
= AREF (eol_type
, i
);
10513 this_aliases
= list1 (this_name
);
10514 this_eol_type
= (i
== 0 ? Qunix
: i
== 1 ? Qdos
: Qmac
);
10515 this_spec
= make_uninit_vector (3);
10516 ASET (this_spec
, 0, attrs
);
10517 ASET (this_spec
, 1, this_aliases
);
10518 ASET (this_spec
, 2, this_eol_type
);
10519 Fputhash (this_name
, this_spec
, Vcoding_system_hash_table
);
10520 Vcoding_system_list
= Fcons (this_name
, Vcoding_system_list
);
10521 val
= Fassoc (Fsymbol_name (this_name
), Vcoding_system_alist
);
10523 Vcoding_system_alist
10524 = Fcons (Fcons (Fsymbol_name (this_name
), Qnil
),
10525 Vcoding_system_alist
);
10529 spec_vec
= make_uninit_vector (3);
10530 ASET (spec_vec
, 0, attrs
);
10531 ASET (spec_vec
, 1, aliases
);
10532 ASET (spec_vec
, 2, eol_type
);
10534 Fputhash (name
, spec_vec
, Vcoding_system_hash_table
);
10535 Vcoding_system_list
= Fcons (name
, Vcoding_system_list
);
10536 val
= Fassoc (Fsymbol_name (name
), Vcoding_system_alist
);
10538 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (name
), Qnil
),
10539 Vcoding_system_alist
);
10542 int id
= coding_categories
[category
].id
;
10544 if (id
< 0 || EQ (name
, CODING_ID_NAME (id
)))
10545 setup_coding_system (name
, &coding_categories
[category
]);
10551 return Fsignal (Qwrong_number_of_arguments
,
10552 Fcons (intern ("define-coding-system-internal"),
10553 make_number (nargs
)));
10557 DEFUN ("coding-system-put", Fcoding_system_put
, Scoding_system_put
,
10559 doc
: /* Change value in CODING-SYSTEM's property list PROP to VAL. */)
10560 (Lisp_Object coding_system
, Lisp_Object prop
, Lisp_Object val
)
10562 Lisp_Object spec
, attrs
;
10564 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10565 attrs
= AREF (spec
, 0);
10566 if (EQ (prop
, QCmnemonic
))
10568 if (! STRINGP (val
))
10569 CHECK_CHARACTER (val
);
10570 ASET (attrs
, coding_attr_mnemonic
, val
);
10572 else if (EQ (prop
, QCdefault_char
))
10575 val
= make_number (' ');
10577 CHECK_CHARACTER (val
);
10578 ASET (attrs
, coding_attr_default_char
, val
);
10580 else if (EQ (prop
, QCdecode_translation_table
))
10582 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10583 CHECK_SYMBOL (val
);
10584 ASET (attrs
, coding_attr_decode_tbl
, val
);
10586 else if (EQ (prop
, QCencode_translation_table
))
10588 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10589 CHECK_SYMBOL (val
);
10590 ASET (attrs
, coding_attr_encode_tbl
, val
);
10592 else if (EQ (prop
, QCpost_read_conversion
))
10594 CHECK_SYMBOL (val
);
10595 ASET (attrs
, coding_attr_post_read
, val
);
10597 else if (EQ (prop
, QCpre_write_conversion
))
10599 CHECK_SYMBOL (val
);
10600 ASET (attrs
, coding_attr_pre_write
, val
);
10602 else if (EQ (prop
, QCascii_compatible_p
))
10604 ASET (attrs
, coding_attr_ascii_compat
, val
);
10607 ASET (attrs
, coding_attr_plist
,
10608 Fplist_put (CODING_ATTR_PLIST (attrs
), prop
, val
));
10613 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias
,
10614 Sdefine_coding_system_alias
, 2, 2, 0,
10615 doc
: /* Define ALIAS as an alias for CODING-SYSTEM. */)
10616 (Lisp_Object alias
, Lisp_Object coding_system
)
10618 Lisp_Object spec
, aliases
, eol_type
, val
;
10620 CHECK_SYMBOL (alias
);
10621 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10622 aliases
= AREF (spec
, 1);
10623 /* ALIASES should be a list of length more than zero, and the first
10624 element is a base coding system. Append ALIAS at the tail of the
10626 while (!NILP (XCDR (aliases
)))
10627 aliases
= XCDR (aliases
);
10628 XSETCDR (aliases
, list1 (alias
));
10630 eol_type
= AREF (spec
, 2);
10631 if (VECTORP (eol_type
))
10633 Lisp_Object subsidiaries
;
10636 subsidiaries
= make_subsidiaries (alias
);
10637 for (i
= 0; i
< 3; i
++)
10638 Fdefine_coding_system_alias (AREF (subsidiaries
, i
),
10639 AREF (eol_type
, i
));
10642 Fputhash (alias
, spec
, Vcoding_system_hash_table
);
10643 Vcoding_system_list
= Fcons (alias
, Vcoding_system_list
);
10644 val
= Fassoc (Fsymbol_name (alias
), Vcoding_system_alist
);
10646 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (alias
), Qnil
),
10647 Vcoding_system_alist
);
10652 DEFUN ("coding-system-base", Fcoding_system_base
, Scoding_system_base
,
10654 doc
: /* Return the base of CODING-SYSTEM.
10655 Any alias or subsidiary coding system is not a base coding system. */)
10656 (Lisp_Object coding_system
)
10658 Lisp_Object spec
, attrs
;
10660 if (NILP (coding_system
))
10661 return (Qno_conversion
);
10662 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10663 attrs
= AREF (spec
, 0);
10664 return CODING_ATTR_BASE_NAME (attrs
);
10667 DEFUN ("coding-system-plist", Fcoding_system_plist
, Scoding_system_plist
,
10669 doc
: /* Return the property list of CODING-SYSTEM. */)
10670 (Lisp_Object coding_system
)
10672 Lisp_Object spec
, attrs
;
10674 if (NILP (coding_system
))
10675 coding_system
= Qno_conversion
;
10676 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10677 attrs
= AREF (spec
, 0);
10678 return CODING_ATTR_PLIST (attrs
);
10682 DEFUN ("coding-system-aliases", Fcoding_system_aliases
, Scoding_system_aliases
,
10684 doc
: /* Return the list of aliases of CODING-SYSTEM. */)
10685 (Lisp_Object coding_system
)
10689 if (NILP (coding_system
))
10690 coding_system
= Qno_conversion
;
10691 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10692 return AREF (spec
, 1);
10695 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type
,
10696 Scoding_system_eol_type
, 1, 1, 0,
10697 doc
: /* Return eol-type of CODING-SYSTEM.
10698 An eol-type is an integer 0, 1, 2, or a vector of coding systems.
10700 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF,
10701 and CR respectively.
10703 A vector value indicates that a format of end-of-line should be
10704 detected automatically. Nth element of the vector is the subsidiary
10705 coding system whose eol-type is N. */)
10706 (Lisp_Object coding_system
)
10708 Lisp_Object spec
, eol_type
;
10711 if (NILP (coding_system
))
10712 coding_system
= Qno_conversion
;
10713 if (! CODING_SYSTEM_P (coding_system
))
10715 spec
= CODING_SYSTEM_SPEC (coding_system
);
10716 eol_type
= AREF (spec
, 2);
10717 if (VECTORP (eol_type
))
10718 return Fcopy_sequence (eol_type
);
10719 n
= EQ (eol_type
, Qunix
) ? 0 : EQ (eol_type
, Qdos
) ? 1 : 2;
10720 return make_number (n
);
10726 /*** 9. Post-amble ***/
10729 init_coding_once (void)
10733 for (i
= 0; i
< coding_category_max
; i
++)
10735 coding_categories
[i
].id
= -1;
10736 coding_priorities
[i
] = i
;
10739 /* ISO2022 specific initialize routine. */
10740 for (i
= 0; i
< 0x20; i
++)
10741 iso_code_class
[i
] = ISO_control_0
;
10742 for (i
= 0x21; i
< 0x7F; i
++)
10743 iso_code_class
[i
] = ISO_graphic_plane_0
;
10744 for (i
= 0x80; i
< 0xA0; i
++)
10745 iso_code_class
[i
] = ISO_control_1
;
10746 for (i
= 0xA1; i
< 0xFF; i
++)
10747 iso_code_class
[i
] = ISO_graphic_plane_1
;
10748 iso_code_class
[0x20] = iso_code_class
[0x7F] = ISO_0x20_or_0x7F
;
10749 iso_code_class
[0xA0] = iso_code_class
[0xFF] = ISO_0xA0_or_0xFF
;
10750 iso_code_class
[ISO_CODE_SO
] = ISO_shift_out
;
10751 iso_code_class
[ISO_CODE_SI
] = ISO_shift_in
;
10752 iso_code_class
[ISO_CODE_SS2_7
] = ISO_single_shift_2_7
;
10753 iso_code_class
[ISO_CODE_ESC
] = ISO_escape
;
10754 iso_code_class
[ISO_CODE_SS2
] = ISO_single_shift_2
;
10755 iso_code_class
[ISO_CODE_SS3
] = ISO_single_shift_3
;
10756 iso_code_class
[ISO_CODE_CSI
] = ISO_control_sequence_introducer
;
10758 for (i
= 0; i
< 256; i
++)
10760 emacs_mule_bytes
[i
] = 1;
10762 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_11
] = 3;
10763 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_12
] = 3;
10764 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_21
] = 4;
10765 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_22
] = 4;
10771 syms_of_coding (void)
10773 staticpro (&Vcoding_system_hash_table
);
10774 Vcoding_system_hash_table
= CALLN (Fmake_hash_table
, QCtest
, Qeq
);
10776 staticpro (&Vsjis_coding_system
);
10777 Vsjis_coding_system
= Qnil
;
10779 staticpro (&Vbig5_coding_system
);
10780 Vbig5_coding_system
= Qnil
;
10782 staticpro (&Vcode_conversion_reused_workbuf
);
10783 Vcode_conversion_reused_workbuf
= Qnil
;
10785 staticpro (&Vcode_conversion_workbuf_name
);
10786 Vcode_conversion_workbuf_name
= build_pure_c_string (" *code-conversion-work*");
10788 reused_workbuf_in_use
= 0;
10790 DEFSYM (Qcharset
, "charset");
10791 DEFSYM (Qtarget_idx
, "target-idx");
10792 DEFSYM (Qcoding_system_history
, "coding-system-history");
10793 Fset (Qcoding_system_history
, Qnil
);
10795 /* Target FILENAME is the first argument. */
10796 Fput (Qinsert_file_contents
, Qtarget_idx
, make_number (0));
10797 /* Target FILENAME is the third argument. */
10798 Fput (Qwrite_region
, Qtarget_idx
, make_number (2));
10800 DEFSYM (Qcall_process
, "call-process");
10801 /* Target PROGRAM is the first argument. */
10802 Fput (Qcall_process
, Qtarget_idx
, make_number (0));
10804 DEFSYM (Qcall_process_region
, "call-process-region");
10805 /* Target PROGRAM is the third argument. */
10806 Fput (Qcall_process_region
, Qtarget_idx
, make_number (2));
10808 DEFSYM (Qstart_process
, "start-process");
10809 /* Target PROGRAM is the third argument. */
10810 Fput (Qstart_process
, Qtarget_idx
, make_number (2));
10812 DEFSYM (Qopen_network_stream
, "open-network-stream");
10813 /* Target SERVICE is the fourth argument. */
10814 Fput (Qopen_network_stream
, Qtarget_idx
, make_number (3));
10816 DEFSYM (Qunix
, "unix");
10817 DEFSYM (Qdos
, "dos");
10818 DEFSYM (Qmac
, "mac");
10820 DEFSYM (Qbuffer_file_coding_system
, "buffer-file-coding-system");
10821 DEFSYM (Qundecided
, "undecided");
10822 DEFSYM (Qno_conversion
, "no-conversion");
10823 DEFSYM (Qraw_text
, "raw-text");
10825 DEFSYM (Qiso_2022
, "iso-2022");
10827 DEFSYM (Qutf_8
, "utf-8");
10828 DEFSYM (Qutf_8_emacs
, "utf-8-emacs");
10830 #if defined (WINDOWSNT) || defined (CYGWIN)
10831 /* No, not utf-16-le: that one has a BOM. */
10832 DEFSYM (Qutf_16le
, "utf-16le");
10835 DEFSYM (Qutf_16
, "utf-16");
10836 DEFSYM (Qbig
, "big");
10837 DEFSYM (Qlittle
, "little");
10839 DEFSYM (Qshift_jis
, "shift-jis");
10840 DEFSYM (Qbig5
, "big5");
10842 DEFSYM (Qcoding_system_p
, "coding-system-p");
10844 /* Error signaled when there's a problem with detecting a coding system. */
10845 DEFSYM (Qcoding_system_error
, "coding-system-error");
10846 Fput (Qcoding_system_error
, Qerror_conditions
,
10847 listn (CONSTYPE_PURE
, 2, Qcoding_system_error
, Qerror
));
10848 Fput (Qcoding_system_error
, Qerror_message
,
10849 build_pure_c_string ("Invalid coding system"));
10851 DEFSYM (Qtranslation_table
, "translation-table");
10852 Fput (Qtranslation_table
, Qchar_table_extra_slots
, make_number (2));
10853 DEFSYM (Qtranslation_table_id
, "translation-table-id");
10855 /* Coding system emacs-mule and raw-text are for converting only
10856 end-of-line format. */
10857 DEFSYM (Qemacs_mule
, "emacs-mule");
10859 DEFSYM (QCcategory
, ":category");
10860 DEFSYM (QCmnemonic
, ":mnemonic");
10861 DEFSYM (QCdefault_char
, ":default-char");
10862 DEFSYM (QCdecode_translation_table
, ":decode-translation-table");
10863 DEFSYM (QCencode_translation_table
, ":encode-translation-table");
10864 DEFSYM (QCpost_read_conversion
, ":post-read-conversion");
10865 DEFSYM (QCpre_write_conversion
, ":pre-write-conversion");
10866 DEFSYM (QCascii_compatible_p
, ":ascii-compatible-p");
10868 Vcoding_category_table
10869 = Fmake_vector (make_number (coding_category_max
), Qnil
);
10870 staticpro (&Vcoding_category_table
);
10871 /* Followings are target of code detection. */
10872 ASET (Vcoding_category_table
, coding_category_iso_7
,
10873 intern_c_string ("coding-category-iso-7"));
10874 ASET (Vcoding_category_table
, coding_category_iso_7_tight
,
10875 intern_c_string ("coding-category-iso-7-tight"));
10876 ASET (Vcoding_category_table
, coding_category_iso_8_1
,
10877 intern_c_string ("coding-category-iso-8-1"));
10878 ASET (Vcoding_category_table
, coding_category_iso_8_2
,
10879 intern_c_string ("coding-category-iso-8-2"));
10880 ASET (Vcoding_category_table
, coding_category_iso_7_else
,
10881 intern_c_string ("coding-category-iso-7-else"));
10882 ASET (Vcoding_category_table
, coding_category_iso_8_else
,
10883 intern_c_string ("coding-category-iso-8-else"));
10884 ASET (Vcoding_category_table
, coding_category_utf_8_auto
,
10885 intern_c_string ("coding-category-utf-8-auto"));
10886 ASET (Vcoding_category_table
, coding_category_utf_8_nosig
,
10887 intern_c_string ("coding-category-utf-8"));
10888 ASET (Vcoding_category_table
, coding_category_utf_8_sig
,
10889 intern_c_string ("coding-category-utf-8-sig"));
10890 ASET (Vcoding_category_table
, coding_category_utf_16_be
,
10891 intern_c_string ("coding-category-utf-16-be"));
10892 ASET (Vcoding_category_table
, coding_category_utf_16_auto
,
10893 intern_c_string ("coding-category-utf-16-auto"));
10894 ASET (Vcoding_category_table
, coding_category_utf_16_le
,
10895 intern_c_string ("coding-category-utf-16-le"));
10896 ASET (Vcoding_category_table
, coding_category_utf_16_be_nosig
,
10897 intern_c_string ("coding-category-utf-16-be-nosig"));
10898 ASET (Vcoding_category_table
, coding_category_utf_16_le_nosig
,
10899 intern_c_string ("coding-category-utf-16-le-nosig"));
10900 ASET (Vcoding_category_table
, coding_category_charset
,
10901 intern_c_string ("coding-category-charset"));
10902 ASET (Vcoding_category_table
, coding_category_sjis
,
10903 intern_c_string ("coding-category-sjis"));
10904 ASET (Vcoding_category_table
, coding_category_big5
,
10905 intern_c_string ("coding-category-big5"));
10906 ASET (Vcoding_category_table
, coding_category_ccl
,
10907 intern_c_string ("coding-category-ccl"));
10908 ASET (Vcoding_category_table
, coding_category_emacs_mule
,
10909 intern_c_string ("coding-category-emacs-mule"));
10910 /* Followings are NOT target of code detection. */
10911 ASET (Vcoding_category_table
, coding_category_raw_text
,
10912 intern_c_string ("coding-category-raw-text"));
10913 ASET (Vcoding_category_table
, coding_category_undecided
,
10914 intern_c_string ("coding-category-undecided"));
10916 DEFSYM (Qinsufficient_source
, "insufficient-source");
10917 DEFSYM (Qinvalid_source
, "invalid-source");
10918 DEFSYM (Qinterrupted
, "interrupted");
10920 /* If a symbol has this property, evaluate the value to define the
10921 symbol as a coding system. */
10922 DEFSYM (Qcoding_system_define_form
, "coding-system-define-form");
10924 defsubr (&Scoding_system_p
);
10925 defsubr (&Sread_coding_system
);
10926 defsubr (&Sread_non_nil_coding_system
);
10927 defsubr (&Scheck_coding_system
);
10928 defsubr (&Sdetect_coding_region
);
10929 defsubr (&Sdetect_coding_string
);
10930 defsubr (&Sfind_coding_systems_region_internal
);
10931 defsubr (&Sunencodable_char_position
);
10932 defsubr (&Scheck_coding_systems_region
);
10933 defsubr (&Sdecode_coding_region
);
10934 defsubr (&Sencode_coding_region
);
10935 defsubr (&Sdecode_coding_string
);
10936 defsubr (&Sencode_coding_string
);
10937 defsubr (&Sdecode_sjis_char
);
10938 defsubr (&Sencode_sjis_char
);
10939 defsubr (&Sdecode_big5_char
);
10940 defsubr (&Sencode_big5_char
);
10941 defsubr (&Sset_terminal_coding_system_internal
);
10942 defsubr (&Sset_safe_terminal_coding_system_internal
);
10943 defsubr (&Sterminal_coding_system
);
10944 defsubr (&Sset_keyboard_coding_system_internal
);
10945 defsubr (&Skeyboard_coding_system
);
10946 defsubr (&Sfind_operation_coding_system
);
10947 defsubr (&Sset_coding_system_priority
);
10948 defsubr (&Sdefine_coding_system_internal
);
10949 defsubr (&Sdefine_coding_system_alias
);
10950 defsubr (&Scoding_system_put
);
10951 defsubr (&Scoding_system_base
);
10952 defsubr (&Scoding_system_plist
);
10953 defsubr (&Scoding_system_aliases
);
10954 defsubr (&Scoding_system_eol_type
);
10955 defsubr (&Scoding_system_priority_list
);
10957 DEFVAR_LISP ("coding-system-list", Vcoding_system_list
,
10958 doc
: /* List of coding systems.
10960 Do not alter the value of this variable manually. This variable should be
10961 updated by the functions `define-coding-system' and
10962 `define-coding-system-alias'. */);
10963 Vcoding_system_list
= Qnil
;
10965 DEFVAR_LISP ("coding-system-alist", Vcoding_system_alist
,
10966 doc
: /* Alist of coding system names.
10967 Each element is one element list of coding system name.
10968 This variable is given to `completing-read' as COLLECTION argument.
10970 Do not alter the value of this variable manually. This variable should be
10971 updated by the functions `make-coding-system' and
10972 `define-coding-system-alias'. */);
10973 Vcoding_system_alist
= Qnil
;
10975 DEFVAR_LISP ("coding-category-list", Vcoding_category_list
,
10976 doc
: /* List of coding-categories (symbols) ordered by priority.
10978 On detecting a coding system, Emacs tries code detection algorithms
10979 associated with each coding-category one by one in this order. When
10980 one algorithm agrees with a byte sequence of source text, the coding
10981 system bound to the corresponding coding-category is selected.
10983 Don't modify this variable directly, but use `set-coding-system-priority'. */);
10987 Vcoding_category_list
= Qnil
;
10988 for (i
= coding_category_max
- 1; i
>= 0; i
--)
10989 Vcoding_category_list
10990 = Fcons (AREF (Vcoding_category_table
, i
),
10991 Vcoding_category_list
);
10994 DEFVAR_LISP ("coding-system-for-read", Vcoding_system_for_read
,
10995 doc
: /* Specify the coding system for read operations.
10996 It is useful to bind this variable with `let', but do not set it globally.
10997 If the value is a coding system, it is used for decoding on read operation.
10998 If not, an appropriate element is used from one of the coding system alists.
10999 There are three such tables: `file-coding-system-alist',
11000 `process-coding-system-alist', and `network-coding-system-alist'. */);
11001 Vcoding_system_for_read
= Qnil
;
11003 DEFVAR_LISP ("coding-system-for-write", Vcoding_system_for_write
,
11004 doc
: /* Specify the coding system for write operations.
11005 Programs bind this variable with `let', but you should not set it globally.
11006 If the value is a coding system, it is used for encoding of output,
11007 when writing it to a file and when sending it to a file or subprocess.
11009 If this does not specify a coding system, an appropriate element
11010 is used from one of the coding system alists.
11011 There are three such tables: `file-coding-system-alist',
11012 `process-coding-system-alist', and `network-coding-system-alist'.
11013 For output to files, if the above procedure does not specify a coding system,
11014 the value of `buffer-file-coding-system' is used. */);
11015 Vcoding_system_for_write
= Qnil
;
11017 DEFVAR_LISP ("last-coding-system-used", Vlast_coding_system_used
,
11019 Coding system used in the latest file or process I/O. */);
11020 Vlast_coding_system_used
= Qnil
;
11022 DEFVAR_LISP ("last-code-conversion-error", Vlast_code_conversion_error
,
11024 Error status of the last code conversion.
11026 When an error was detected in the last code conversion, this variable
11027 is set to one of the following symbols.
11028 `insufficient-source'
11032 `insufficient-memory'
11033 When no error was detected, the value doesn't change. So, to check
11034 the error status of a code conversion by this variable, you must
11035 explicitly set this variable to nil before performing code
11037 Vlast_code_conversion_error
= Qnil
;
11039 DEFVAR_BOOL ("inhibit-eol-conversion", inhibit_eol_conversion
,
11041 Non-nil means always inhibit code conversion of end-of-line format.
11042 See info node `Coding Systems' and info node `Text and Binary' concerning
11043 such conversion. */);
11044 inhibit_eol_conversion
= 0;
11046 DEFVAR_BOOL ("inherit-process-coding-system", inherit_process_coding_system
,
11048 Non-nil means process buffer inherits coding system of process output.
11049 Bind it to t if the process output is to be treated as if it were a file
11050 read from some filesystem. */);
11051 inherit_process_coding_system
= 0;
11053 DEFVAR_LISP ("file-coding-system-alist", Vfile_coding_system_alist
,
11055 Alist to decide a coding system to use for a file I/O operation.
11056 The format is ((PATTERN . VAL) ...),
11057 where PATTERN is a regular expression matching a file name,
11058 VAL is a coding system, a cons of coding systems, or a function symbol.
11059 If VAL is a coding system, it is used for both decoding and encoding
11061 If VAL is a cons of coding systems, the car part is used for decoding,
11062 and the cdr part is used for encoding.
11063 If VAL is a function symbol, the function must return a coding system
11064 or a cons of coding systems which are used as above. The function is
11065 called with an argument that is a list of the arguments with which
11066 `find-operation-coding-system' was called. If the function can't decide
11067 a coding system, it can return `undecided' so that the normal
11068 code-detection is performed.
11070 See also the function `find-operation-coding-system'
11071 and the variable `auto-coding-alist'. */);
11072 Vfile_coding_system_alist
= Qnil
;
11074 DEFVAR_LISP ("process-coding-system-alist", Vprocess_coding_system_alist
,
11076 Alist to decide a coding system to use for a process I/O operation.
11077 The format is ((PATTERN . VAL) ...),
11078 where PATTERN is a regular expression matching a program name,
11079 VAL is a coding system, a cons of coding systems, or a function symbol.
11080 If VAL is a coding system, it is used for both decoding what received
11081 from the program and encoding what sent to the program.
11082 If VAL is a cons of coding systems, the car part is used for decoding,
11083 and the cdr part is used for encoding.
11084 If VAL is a function symbol, the function must return a coding system
11085 or a cons of coding systems which are used as above.
11087 See also the function `find-operation-coding-system'. */);
11088 Vprocess_coding_system_alist
= Qnil
;
11090 DEFVAR_LISP ("network-coding-system-alist", Vnetwork_coding_system_alist
,
11092 Alist to decide a coding system to use for a network I/O operation.
11093 The format is ((PATTERN . VAL) ...),
11094 where PATTERN is a regular expression matching a network service name
11095 or is a port number to connect to,
11096 VAL is a coding system, a cons of coding systems, or a function symbol.
11097 If VAL is a coding system, it is used for both decoding what received
11098 from the network stream and encoding what sent to the network stream.
11099 If VAL is a cons of coding systems, the car part is used for decoding,
11100 and the cdr part is used for encoding.
11101 If VAL is a function symbol, the function must return a coding system
11102 or a cons of coding systems which are used as above.
11104 See also the function `find-operation-coding-system'. */);
11105 Vnetwork_coding_system_alist
= Qnil
;
11107 DEFVAR_LISP ("locale-coding-system", Vlocale_coding_system
,
11108 doc
: /* Coding system to use with system messages.
11109 Also used for decoding keyboard input on X Window system, and for
11110 encoding standard output and error streams. */);
11111 Vlocale_coding_system
= Qnil
;
11113 /* The eol mnemonics are reset in startup.el system-dependently. */
11114 DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix
,
11116 String displayed in mode line for UNIX-like (LF) end-of-line format. */);
11117 eol_mnemonic_unix
= build_pure_c_string (":");
11119 DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos
,
11121 String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
11122 eol_mnemonic_dos
= build_pure_c_string ("\\");
11124 DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac
,
11126 String displayed in mode line for MAC-like (CR) end-of-line format. */);
11127 eol_mnemonic_mac
= build_pure_c_string ("/");
11129 DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided
,
11131 String displayed in mode line when end-of-line format is not yet determined. */);
11132 eol_mnemonic_undecided
= build_pure_c_string (":");
11134 DEFVAR_LISP ("enable-character-translation", Venable_character_translation
,
11136 Non-nil enables character translation while encoding and decoding. */);
11137 Venable_character_translation
= Qt
;
11139 DEFVAR_LISP ("standard-translation-table-for-decode",
11140 Vstandard_translation_table_for_decode
,
11141 doc
: /* Table for translating characters while decoding. */);
11142 Vstandard_translation_table_for_decode
= Qnil
;
11144 DEFVAR_LISP ("standard-translation-table-for-encode",
11145 Vstandard_translation_table_for_encode
,
11146 doc
: /* Table for translating characters while encoding. */);
11147 Vstandard_translation_table_for_encode
= Qnil
;
11149 DEFVAR_LISP ("charset-revision-table", Vcharset_revision_table
,
11150 doc
: /* Alist of charsets vs revision numbers.
11151 While encoding, if a charset (car part of an element) is found,
11152 designate it with the escape sequence identifying revision (cdr part
11153 of the element). */);
11154 Vcharset_revision_table
= Qnil
;
11156 DEFVAR_LISP ("default-process-coding-system",
11157 Vdefault_process_coding_system
,
11158 doc
: /* Cons of coding systems used for process I/O by default.
11159 The car part is used for decoding a process output,
11160 the cdr part is used for encoding a text to be sent to a process. */);
11161 Vdefault_process_coding_system
= Qnil
;
11163 DEFVAR_LISP ("latin-extra-code-table", Vlatin_extra_code_table
,
11165 Table of extra Latin codes in the range 128..159 (inclusive).
11166 This is a vector of length 256.
11167 If Nth element is non-nil, the existence of code N in a file
11168 \(or output of subprocess) doesn't prevent it to be detected as
11169 a coding system of ISO 2022 variant which has a flag
11170 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
11171 or reading output of a subprocess.
11172 Only 128th through 159th elements have a meaning. */);
11173 Vlatin_extra_code_table
= Fmake_vector (make_number (256), Qnil
);
11175 DEFVAR_LISP ("select-safe-coding-system-function",
11176 Vselect_safe_coding_system_function
,
11178 Function to call to select safe coding system for encoding a text.
11180 If set, this function is called to force a user to select a proper
11181 coding system which can encode the text in the case that a default
11182 coding system used in each operation can't encode the text. The
11183 function should take care that the buffer is not modified while
11184 the coding system is being selected.
11186 The default value is `select-safe-coding-system' (which see). */);
11187 Vselect_safe_coding_system_function
= Qnil
;
11189 DEFVAR_BOOL ("coding-system-require-warning",
11190 coding_system_require_warning
,
11191 doc
: /* Internal use only.
11192 If non-nil, on writing a file, `select-safe-coding-system-function' is
11193 called even if `coding-system-for-write' is non-nil. The command
11194 `universal-coding-system-argument' binds this variable to t temporarily. */);
11195 coding_system_require_warning
= 0;
11198 DEFVAR_BOOL ("inhibit-iso-escape-detection",
11199 inhibit_iso_escape_detection
,
11201 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection.
11203 When Emacs reads text, it tries to detect how the text is encoded.
11204 This code detection is sensitive to escape sequences. If Emacs sees
11205 a valid ISO-2022 escape sequence, it assumes the text is encoded in one
11206 of the ISO2022 encodings, and decodes text by the corresponding coding
11207 system (e.g. `iso-2022-7bit').
11209 However, there may be a case that you want to read escape sequences in
11210 a file as is. In such a case, you can set this variable to non-nil.
11211 Then the code detection will ignore any escape sequences, and no text is
11212 detected as encoded in some ISO-2022 encoding. The result is that all
11213 escape sequences become visible in a buffer.
11215 The default value is nil, and it is strongly recommended not to change
11216 it. That is because many Emacs Lisp source files that contain
11217 non-ASCII characters are encoded by the coding system `iso-2022-7bit'
11218 in Emacs's distribution, and they won't be decoded correctly on
11219 reading if you suppress escape sequence detection.
11221 The other way to read escape sequences in a file without decoding is
11222 to explicitly specify some coding system that doesn't use ISO-2022
11223 escape sequence (e.g., `latin-1') on reading by \\[universal-coding-system-argument]. */);
11224 inhibit_iso_escape_detection
= 0;
11226 DEFVAR_BOOL ("inhibit-null-byte-detection",
11227 inhibit_null_byte_detection
,
11228 doc
: /* If non-nil, Emacs ignores null bytes on code detection.
11229 By default, Emacs treats it as binary data, and does not attempt to
11230 decode it. The effect is as if you specified `no-conversion' for
11233 Set this to non-nil when a regular text happens to include null bytes.
11234 Examples are Index nodes of Info files and null-byte delimited output
11235 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and
11236 decode text as usual. */);
11237 inhibit_null_byte_detection
= 0;
11239 DEFVAR_BOOL ("disable-ascii-optimization", disable_ascii_optimization
,
11240 doc
: /* If non-nil, Emacs does not optimize code decoder for ASCII files.
11241 Internal use only. Remove after the experimental optimizer becomes stable. */);
11242 disable_ascii_optimization
= 0;
11244 DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input
,
11245 doc
: /* Char table for translating self-inserting characters.
11246 This is applied to the result of input methods, not their input.
11247 See also `keyboard-translate-table'.
11249 Use of this variable for character code unification was rendered
11250 obsolete in Emacs 23.1 and later, since Unicode is now the basis of
11251 internal character representation. */);
11252 Vtranslation_table_for_input
= Qnil
;
11254 Lisp_Object args
[coding_arg_undecided_max
];
11255 memclear (args
, sizeof args
);
11257 Lisp_Object plist
[] =
11260 args
[coding_arg_name
] = Qno_conversion
,
11262 args
[coding_arg_mnemonic
] = make_number ('='),
11263 intern_c_string (":coding-type"),
11264 args
[coding_arg_coding_type
] = Qraw_text
,
11265 QCascii_compatible_p
,
11266 args
[coding_arg_ascii_compatible_p
] = Qt
,
11268 args
[coding_arg_default_char
] = make_number (0),
11269 intern_c_string (":for-unibyte"),
11270 args
[coding_arg_for_unibyte
] = Qt
,
11271 intern_c_string (":docstring"),
11272 (build_pure_c_string
11273 ("Do no conversion.\n"
11275 "When you visit a file with this coding, the file is read into a\n"
11276 "unibyte buffer as is, thus each byte of a file is treated as a\n"
11278 intern_c_string (":eol-type"),
11279 args
[coding_arg_eol_type
] = Qunix
,
11281 args
[coding_arg_plist
] = CALLMANY (Flist
, plist
);
11282 Fdefine_coding_system_internal (coding_arg_max
, args
);
11284 plist
[1] = args
[coding_arg_name
] = Qundecided
;
11285 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('-');
11286 plist
[5] = args
[coding_arg_coding_type
] = Qundecided
;
11287 /* This is already set.
11288 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */
11289 plist
[8] = intern_c_string (":charset-list");
11290 plist
[9] = args
[coding_arg_charset_list
] = Fcons (Qascii
, Qnil
);
11291 plist
[11] = args
[coding_arg_for_unibyte
] = Qnil
;
11292 plist
[13] = build_pure_c_string ("No conversion on encoding, "
11293 "automatic conversion on decoding.");
11294 plist
[15] = args
[coding_arg_eol_type
] = Qnil
;
11295 args
[coding_arg_plist
] = CALLMANY (Flist
, plist
);
11296 args
[coding_arg_undecided_inhibit_null_byte_detection
] = make_number (0);
11297 args
[coding_arg_undecided_inhibit_iso_escape_detection
] = make_number (0);
11298 Fdefine_coding_system_internal (coding_arg_undecided_max
, args
);
11300 setup_coding_system (Qno_conversion
, &safe_terminal_coding
);
11302 for (int i
= 0; i
< coding_category_max
; i
++)
11303 Fset (AREF (Vcoding_category_table
, i
), Qno_conversion
);
11305 #if defined (DOS_NT)
11306 system_eol_type
= Qdos
;
11308 system_eol_type
= Qunix
;
11310 staticpro (&system_eol_type
);
11314 emacs_strerror (int error_number
)
11318 synchronize_system_messages_locale ();
11319 str
= strerror (error_number
);
11321 if (! NILP (Vlocale_coding_system
))
11323 Lisp_Object dec
= code_convert_string_norecord (build_string (str
),
11324 Vlocale_coding_system
,
11326 str
= SSDATA (dec
);