1 /* Coding system handler (conversion, detection, etc).
2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
3 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H14PRO021
8 National Institute of Advanced Industrial Science and Technology (AIST)
9 Registration Number H13PRO009
11 This file is part of GNU Emacs.
13 GNU Emacs is free software: you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
18 GNU Emacs is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 /*** TABLE OF CONTENTS ***
30 2. Emacs' internal format (emacs-utf-8) handlers
33 5. Charset-base coding systems handlers
34 6. emacs-mule (old Emacs' internal format) handlers
36 8. Shift-JIS and BIG5 handlers
38 10. C library functions
39 11. Emacs Lisp library functions
44 /*** 0. General comments ***
49 A coding system is an object for an encoding mechanism that contains
50 information about how to convert byte sequences to character
51 sequences and vice versa. When we say "decode", it means converting
52 a byte sequence of a specific coding system into a character
53 sequence that is represented by Emacs' internal coding system
54 `emacs-utf-8', and when we say "encode", it means converting a
55 character sequence of emacs-utf-8 to a byte sequence of a specific
58 In Emacs Lisp, a coding system is represented by a Lisp symbol. On
59 the C level, a coding system is represented by a vector of attributes
60 stored in the hash table Vcharset_hash_table. The conversion from
61 coding system symbol to attributes vector is done by looking up
62 Vcharset_hash_table by the symbol.
64 Coding systems are classified into the following types depending on
65 the encoding mechanism. Here's a brief description of the types.
71 o Charset-base coding system
73 A coding system defined by one or more (coded) character sets.
74 Decoding and encoding are done by a code converter defined for each
77 o Old Emacs internal format (emacs-mule)
79 The coding system adopted by old versions of Emacs (20 and 21).
81 o ISO2022-base coding system
83 The most famous coding system for multiple character sets. X's
84 Compound Text, various EUCs (Extended Unix Code), and coding systems
85 used in the Internet communication such as ISO-2022-JP are all
88 o SJIS (or Shift-JIS or MS-Kanji-Code)
90 A coding system to encode character sets: ASCII, JISX0201, and
91 JISX0208. Widely used for PC's in Japan. Details are described in
96 A coding system to encode character sets: ASCII and Big5. Widely
97 used for Chinese (mainly in Taiwan and Hong Kong). Details are
98 described in section 8. In this file, when we write "big5" (all
99 lowercase), we mean the coding system, and when we write "Big5"
100 (capitalized), we mean the character set.
104 If a user wants to decode/encode text encoded in a coding system
105 not listed above, he can supply a decoder and an encoder for it in
106 CCL (Code Conversion Language) programs. Emacs executes the CCL
107 program while decoding/encoding.
111 A coding system for text containing raw eight-bit data. Emacs
112 treats each byte of source text as a character (except for
113 end-of-line conversion).
117 Like raw text, but don't do end-of-line conversion.
122 How text end-of-line is encoded depends on operating system. For
123 instance, Unix's format is just one byte of LF (line-feed) code,
124 whereas DOS's format is two-byte sequence of `carriage-return' and
125 `line-feed' codes. MacOS's format is usually one byte of
128 Since text character encoding and end-of-line encoding are
129 independent, any coding system described above can take any format
130 of end-of-line (except for no-conversion).
134 Before using a coding system for code conversion (i.e. decoding and
135 encoding), we setup a structure of type `struct coding_system'.
136 This structure keeps various information about a specific code
137 conversion (e.g. the location of source and destination data).
144 /*** GENERAL NOTES on `detect_coding_XXX ()' functions ***
146 These functions check if a byte sequence specified as a source in
147 CODING conforms to the format of XXX, and update the members of
150 Return true if the byte sequence conforms to XXX.
152 Below is the template of these functions. */
156 detect_coding_XXX (struct coding_system
*coding
,
157 struct coding_detection_info
*detect_info
)
159 const unsigned char *src
= coding
->source
;
160 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
161 bool multibytep
= coding
->src_multibyte
;
162 ptrdiff_t consumed_chars
= 0;
168 /* Get one byte from the source. If the source is exhausted, jump
169 to no_more_source:. */
172 if (! __C_conforms_to_XXX___ (c
))
174 if (! __C_strongly_suggests_XXX__ (c
))
175 found
= CATEGORY_MASK_XXX
;
177 /* The byte sequence is invalid for XXX. */
178 detect_info
->rejected
|= CATEGORY_MASK_XXX
;
182 /* The source exhausted successfully. */
183 detect_info
->found
|= found
;
188 /*** GENERAL NOTES on `decode_coding_XXX ()' functions ***
190 These functions decode a byte sequence specified as a source by
191 CODING. The resulting multibyte text goes to a place pointed to by
192 CODING->charbuf, the length of which should not exceed
193 CODING->charbuf_size;
195 These functions set the information of original and decoded texts in
196 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used.
197 They also set CODING->result to one of CODING_RESULT_XXX indicating
198 how the decoding is finished.
200 Below is the template of these functions. */
204 decode_coding_XXXX (struct coding_system
*coding
)
206 const unsigned char *src
= coding
->source
+ coding
->consumed
;
207 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
208 /* SRC_BASE remembers the start position in source in each loop.
209 The loop will be exited when there's not enough source code, or
210 when there's no room in CHARBUF for a decoded character. */
211 const unsigned char *src_base
;
212 /* A buffer to produce decoded characters. */
213 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
214 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
215 bool multibytep
= coding
->src_multibyte
;
220 if (charbuf
< charbuf_end
)
221 /* No more room to produce a decoded character. */
228 if (src_base
< src_end
229 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
230 /* If the source ends by partial bytes to construct a character,
231 treat them as eight-bit raw data. */
232 while (src_base
< src_end
&& charbuf
< charbuf_end
)
233 *charbuf
++ = *src_base
++;
234 /* Remember how many bytes and characters we consumed. If the
235 source is multibyte, the bytes and chars are not identical. */
236 coding
->consumed
= coding
->consumed_char
= src_base
- coding
->source
;
237 /* Remember how many characters we produced. */
238 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
242 /*** GENERAL NOTES on `encode_coding_XXX ()' functions ***
244 These functions encode SRC_BYTES length text at SOURCE of Emacs'
245 internal multibyte format by CODING. The resulting byte sequence
246 goes to a place pointed to by DESTINATION, the length of which
247 should not exceed DST_BYTES.
249 These functions set the information of original and encoded texts in
250 the members produced, produced_char, consumed, and consumed_char of
251 the structure *CODING. They also set the member result to one of
252 CODING_RESULT_XXX indicating how the encoding finished.
254 DST_BYTES zero means that source area and destination area are
255 overlapped, which means that we can produce a encoded text until it
256 reaches at the head of not-yet-encoded source text.
258 Below is a template of these functions. */
261 encode_coding_XXX (struct coding_system
*coding
)
263 bool multibytep
= coding
->dst_multibyte
;
264 int *charbuf
= coding
->charbuf
;
265 int *charbuf_end
= charbuf
->charbuf
+ coding
->charbuf_used
;
266 unsigned char *dst
= coding
->destination
+ coding
->produced
;
267 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
268 unsigned char *adjusted_dst_end
= dst_end
- _MAX_BYTES_PRODUCED_IN_LOOP_
;
269 ptrdiff_t produced_chars
= 0;
271 for (; charbuf
< charbuf_end
&& dst
< adjusted_dst_end
; charbuf
++)
274 /* Encode C into DST, and increment DST. */
276 label_no_more_destination
:
277 /* How many chars and bytes we produced. */
278 coding
->produced_char
+= produced_chars
;
279 coding
->produced
= dst
- coding
->destination
;
284 /*** 1. Preamble ***/
291 #endif /* HAVE_WCHAR_H */
294 #include "character.h"
298 #include "composite.h"
302 #include "termhooks.h"
304 Lisp_Object Vcoding_system_hash_table
;
306 static Lisp_Object Qcoding_system
, Qeol_type
;
307 static Lisp_Object Qcoding_aliases
;
308 Lisp_Object Qunix
, Qdos
;
309 static Lisp_Object Qmac
;
310 Lisp_Object Qbuffer_file_coding_system
;
311 static Lisp_Object Qpost_read_conversion
, Qpre_write_conversion
;
312 static Lisp_Object Qdefault_char
;
313 Lisp_Object Qno_conversion
, Qundecided
;
314 Lisp_Object Qcharset
, Qutf_8
;
315 static Lisp_Object Qiso_2022
;
316 static Lisp_Object Qutf_16
, Qshift_jis
, Qbig5
;
317 static Lisp_Object Qbig
, Qlittle
;
318 static Lisp_Object Qcoding_system_history
;
319 static Lisp_Object Qvalid_codes
;
320 static Lisp_Object QCcategory
, QCmnemonic
, QCdefault_char
;
321 static Lisp_Object QCdecode_translation_table
, QCencode_translation_table
;
322 static Lisp_Object QCpost_read_conversion
, QCpre_write_conversion
;
323 static Lisp_Object QCascii_compatible_p
;
325 Lisp_Object Qcall_process
, Qcall_process_region
;
326 Lisp_Object Qstart_process
, Qopen_network_stream
;
327 static Lisp_Object Qtarget_idx
;
329 static Lisp_Object Qinsufficient_source
, Qinvalid_source
, Qinterrupted
;
331 /* If a symbol has this property, evaluate the value to define the
332 symbol as a coding system. */
333 static Lisp_Object Qcoding_system_define_form
;
335 /* Format of end-of-line decided by system. This is Qunix on
336 Unix and Mac, Qdos on DOS/Windows.
337 This has an effect only for external encoding (i.e. for output to
338 file and process), not for in-buffer or Lisp string encoding. */
339 static Lisp_Object system_eol_type
;
343 Lisp_Object Qcoding_system_p
, Qcoding_system_error
;
345 /* Coding system emacs-mule and raw-text are for converting only
346 end-of-line format. */
347 Lisp_Object Qemacs_mule
, Qraw_text
;
348 Lisp_Object Qutf_8_emacs
;
350 #if defined (WINDOWSNT) || defined (CYGWIN)
351 static Lisp_Object Qutf_16le
;
354 /* Coding-systems are handed between Emacs Lisp programs and C internal
355 routines by the following three variables. */
356 /* Coding system to be used to encode text for terminal display when
357 terminal coding system is nil. */
358 struct coding_system safe_terminal_coding
;
362 Lisp_Object Qtranslation_table
;
363 Lisp_Object Qtranslation_table_id
;
364 static Lisp_Object Qtranslation_table_for_decode
;
365 static Lisp_Object Qtranslation_table_for_encode
;
367 /* Two special coding systems. */
368 static Lisp_Object Vsjis_coding_system
;
369 static Lisp_Object Vbig5_coding_system
;
371 /* ISO2022 section */
373 #define CODING_ISO_INITIAL(coding, reg) \
374 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \
375 coding_attr_iso_initial), \
379 #define CODING_ISO_REQUEST(coding, charset_id) \
380 (((charset_id) <= (coding)->max_charset_id \
381 ? ((coding)->safe_charsets[charset_id] != 255 \
382 ? (coding)->safe_charsets[charset_id] \
387 #define CODING_ISO_FLAGS(coding) \
388 ((coding)->spec.iso_2022.flags)
389 #define CODING_ISO_DESIGNATION(coding, reg) \
390 ((coding)->spec.iso_2022.current_designation[reg])
391 #define CODING_ISO_INVOCATION(coding, plane) \
392 ((coding)->spec.iso_2022.current_invocation[plane])
393 #define CODING_ISO_SINGLE_SHIFTING(coding) \
394 ((coding)->spec.iso_2022.single_shifting)
395 #define CODING_ISO_BOL(coding) \
396 ((coding)->spec.iso_2022.bol)
397 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \
398 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane)))
399 #define CODING_ISO_CMP_STATUS(coding) \
400 (&(coding)->spec.iso_2022.cmp_status)
401 #define CODING_ISO_EXTSEGMENT_LEN(coding) \
402 ((coding)->spec.iso_2022.ctext_extended_segment_len)
403 #define CODING_ISO_EMBEDDED_UTF_8(coding) \
404 ((coding)->spec.iso_2022.embedded_utf_8)
406 /* Control characters of ISO2022. */
407 /* code */ /* function */
408 #define ISO_CODE_SO 0x0E /* shift-out */
409 #define ISO_CODE_SI 0x0F /* shift-in */
410 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
411 #define ISO_CODE_ESC 0x1B /* escape */
412 #define ISO_CODE_SS2 0x8E /* single-shift-2 */
413 #define ISO_CODE_SS3 0x8F /* single-shift-3 */
414 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */
416 /* All code (1-byte) of ISO2022 is classified into one of the
418 enum iso_code_class_type
420 ISO_control_0
, /* Control codes in the range
421 0x00..0x1F and 0x7F, except for the
422 following 5 codes. */
423 ISO_shift_out
, /* ISO_CODE_SO (0x0E) */
424 ISO_shift_in
, /* ISO_CODE_SI (0x0F) */
425 ISO_single_shift_2_7
, /* ISO_CODE_SS2_7 (0x19) */
426 ISO_escape
, /* ISO_CODE_ESC (0x1B) */
427 ISO_control_1
, /* Control codes in the range
428 0x80..0x9F, except for the
429 following 3 codes. */
430 ISO_single_shift_2
, /* ISO_CODE_SS2 (0x8E) */
431 ISO_single_shift_3
, /* ISO_CODE_SS3 (0x8F) */
432 ISO_control_sequence_introducer
, /* ISO_CODE_CSI (0x9B) */
433 ISO_0x20_or_0x7F
, /* Codes of the values 0x20 or 0x7F. */
434 ISO_graphic_plane_0
, /* Graphic codes in the range 0x21..0x7E. */
435 ISO_0xA0_or_0xFF
, /* Codes of the values 0xA0 or 0xFF. */
436 ISO_graphic_plane_1
/* Graphic codes in the range 0xA1..0xFE. */
439 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the
440 `iso-flags' attribute of an iso2022 coding system. */
442 /* If set, produce long-form designation sequence (e.g. ESC $ ( A)
443 instead of the correct short-form sequence (e.g. ESC $ A). */
444 #define CODING_ISO_FLAG_LONG_FORM 0x0001
446 /* If set, reset graphic planes and registers at end-of-line to the
448 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002
450 /* If set, reset graphic planes and registers before any control
451 characters to the initial state. */
452 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004
454 /* If set, encode by 7-bit environment. */
455 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008
457 /* If set, use locking-shift function. */
458 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010
460 /* If set, use single-shift function. Overwrite
461 CODING_ISO_FLAG_LOCKING_SHIFT. */
462 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020
464 /* If set, use designation escape sequence. */
465 #define CODING_ISO_FLAG_DESIGNATION 0x0040
467 /* If set, produce revision number sequence. */
468 #define CODING_ISO_FLAG_REVISION 0x0080
470 /* If set, produce ISO6429's direction specifying sequence. */
471 #define CODING_ISO_FLAG_DIRECTION 0x0100
473 /* If set, assume designation states are reset at beginning of line on
475 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200
477 /* If set, designation sequence should be placed at beginning of line
479 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400
481 /* If set, do not encode unsafe characters on output. */
482 #define CODING_ISO_FLAG_SAFE 0x0800
484 /* If set, extra latin codes (128..159) are accepted as a valid code
486 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000
488 #define CODING_ISO_FLAG_COMPOSITION 0x2000
490 /* #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 */
492 #define CODING_ISO_FLAG_USE_ROMAN 0x8000
494 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000
496 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000
498 /* A character to be produced on output if encoding of the original
499 character is prohibited by CODING_ISO_FLAG_SAFE. */
500 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?'
503 #define CODING_UTF_8_BOM(coding) \
504 ((coding)->spec.utf_8_bom)
507 #define CODING_UTF_16_BOM(coding) \
508 ((coding)->spec.utf_16.bom)
510 #define CODING_UTF_16_ENDIAN(coding) \
511 ((coding)->spec.utf_16.endian)
513 #define CODING_UTF_16_SURROGATE(coding) \
514 ((coding)->spec.utf_16.surrogate)
518 #define CODING_CCL_DECODER(coding) \
519 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder)
520 #define CODING_CCL_ENCODER(coding) \
521 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder)
522 #define CODING_CCL_VALIDS(coding) \
523 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)))
525 /* Index for each coding category in `coding_categories' */
529 coding_category_iso_7
,
530 coding_category_iso_7_tight
,
531 coding_category_iso_8_1
,
532 coding_category_iso_8_2
,
533 coding_category_iso_7_else
,
534 coding_category_iso_8_else
,
535 coding_category_utf_8_auto
,
536 coding_category_utf_8_nosig
,
537 coding_category_utf_8_sig
,
538 coding_category_utf_16_auto
,
539 coding_category_utf_16_be
,
540 coding_category_utf_16_le
,
541 coding_category_utf_16_be_nosig
,
542 coding_category_utf_16_le_nosig
,
543 coding_category_charset
,
544 coding_category_sjis
,
545 coding_category_big5
,
547 coding_category_emacs_mule
,
548 /* All above are targets of code detection. */
549 coding_category_raw_text
,
550 coding_category_undecided
,
554 /* Definitions of flag bits used in detect_coding_XXXX. */
555 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7)
556 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight)
557 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1)
558 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2)
559 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else)
560 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else)
561 #define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto)
562 #define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig)
563 #define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig)
564 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto)
565 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be)
566 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le)
567 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig)
568 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig)
569 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset)
570 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis)
571 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5)
572 #define CATEGORY_MASK_CCL (1 << coding_category_ccl)
573 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule)
574 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text)
576 /* This value is returned if detect_coding_mask () find nothing other
577 than ASCII characters. */
578 #define CATEGORY_MASK_ANY \
579 (CATEGORY_MASK_ISO_7 \
580 | CATEGORY_MASK_ISO_7_TIGHT \
581 | CATEGORY_MASK_ISO_8_1 \
582 | CATEGORY_MASK_ISO_8_2 \
583 | CATEGORY_MASK_ISO_7_ELSE \
584 | CATEGORY_MASK_ISO_8_ELSE \
585 | CATEGORY_MASK_UTF_8_AUTO \
586 | CATEGORY_MASK_UTF_8_NOSIG \
587 | CATEGORY_MASK_UTF_8_SIG \
588 | CATEGORY_MASK_UTF_16_AUTO \
589 | CATEGORY_MASK_UTF_16_BE \
590 | CATEGORY_MASK_UTF_16_LE \
591 | CATEGORY_MASK_UTF_16_BE_NOSIG \
592 | CATEGORY_MASK_UTF_16_LE_NOSIG \
593 | CATEGORY_MASK_CHARSET \
594 | CATEGORY_MASK_SJIS \
595 | CATEGORY_MASK_BIG5 \
596 | CATEGORY_MASK_CCL \
597 | CATEGORY_MASK_EMACS_MULE)
600 #define CATEGORY_MASK_ISO_7BIT \
601 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT)
603 #define CATEGORY_MASK_ISO_8BIT \
604 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2)
606 #define CATEGORY_MASK_ISO_ELSE \
607 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE)
609 #define CATEGORY_MASK_ISO_ESCAPE \
610 (CATEGORY_MASK_ISO_7 \
611 | CATEGORY_MASK_ISO_7_TIGHT \
612 | CATEGORY_MASK_ISO_7_ELSE \
613 | CATEGORY_MASK_ISO_8_ELSE)
615 #define CATEGORY_MASK_ISO \
616 ( CATEGORY_MASK_ISO_7BIT \
617 | CATEGORY_MASK_ISO_8BIT \
618 | CATEGORY_MASK_ISO_ELSE)
620 #define CATEGORY_MASK_UTF_16 \
621 (CATEGORY_MASK_UTF_16_AUTO \
622 | CATEGORY_MASK_UTF_16_BE \
623 | CATEGORY_MASK_UTF_16_LE \
624 | CATEGORY_MASK_UTF_16_BE_NOSIG \
625 | CATEGORY_MASK_UTF_16_LE_NOSIG)
627 #define CATEGORY_MASK_UTF_8 \
628 (CATEGORY_MASK_UTF_8_AUTO \
629 | CATEGORY_MASK_UTF_8_NOSIG \
630 | CATEGORY_MASK_UTF_8_SIG)
632 /* Table of coding categories (Lisp symbols). This variable is for
633 internal use only. */
634 static Lisp_Object Vcoding_category_table
;
636 /* Table of coding-categories ordered by priority. */
637 static enum coding_category coding_priorities
[coding_category_max
];
639 /* Nth element is a coding context for the coding system bound to the
640 Nth coding category. */
641 static struct coding_system coding_categories
[coding_category_max
];
643 /*** Commonly used macros and functions ***/
646 #define min(a, b) ((a) < (b) ? (a) : (b))
649 #define max(a, b) ((a) > (b) ? (a) : (b))
652 #define CODING_GET_INFO(coding, attrs, charset_list) \
654 (attrs) = CODING_ID_ATTRS ((coding)->id); \
655 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \
659 /* Safely get one byte from the source text pointed by SRC which ends
660 at SRC_END, and set C to that byte. If there are not enough bytes
661 in the source, it jumps to 'no_more_source'. If MULTIBYTEP,
662 and a multibyte character is found at SRC, set C to the
663 negative value of the character code. The caller should declare
664 and set these variables appropriately in advance:
665 src, src_end, multibytep */
667 #define ONE_MORE_BYTE(c) \
669 if (src == src_end) \
671 if (src_base < src) \
672 record_conversion_result \
673 (coding, CODING_RESULT_INSUFFICIENT_SRC); \
674 goto no_more_source; \
677 if (multibytep && (c & 0x80)) \
679 if ((c & 0xFE) == 0xC0) \
680 c = ((c & 1) << 6) | *src++; \
684 c = - string_char (src, &src, NULL); \
685 record_conversion_result \
686 (coding, CODING_RESULT_INVALID_SRC); \
692 /* Safely get two bytes from the source text pointed by SRC which ends
693 at SRC_END, and set C1 and C2 to those bytes while skipping the
694 heading multibyte characters. If there are not enough bytes in the
695 source, it jumps to 'no_more_source'. If MULTIBYTEP and
696 a multibyte character is found for C2, set C2 to the negative value
697 of the character code. The caller should declare and set these
698 variables appropriately in advance:
699 src, src_end, multibytep
700 It is intended that this macro is used in detect_coding_utf_16. */
702 #define TWO_MORE_BYTES(c1, c2) \
705 if (src == src_end) \
706 goto no_more_source; \
708 if (multibytep && (c1 & 0x80)) \
710 if ((c1 & 0xFE) == 0xC0) \
711 c1 = ((c1 & 1) << 6) | *src++; \
714 src += BYTES_BY_CHAR_HEAD (c1) - 1; \
719 if (src == src_end) \
720 goto no_more_source; \
722 if (multibytep && (c2 & 0x80)) \
724 if ((c2 & 0xFE) == 0xC0) \
725 c2 = ((c2 & 1) << 6) | *src++; \
732 /* Store a byte C in the place pointed by DST and increment DST to the
733 next free point, and increment PRODUCED_CHARS. The caller should
734 assure that C is 0..127, and declare and set the variable `dst'
735 appropriately in advance.
739 #define EMIT_ONE_ASCII_BYTE(c) \
746 /* Like EMIT_ONE_ASCII_BYTE but store two bytes; C1 and C2. */
748 #define EMIT_TWO_ASCII_BYTES(c1, c2) \
750 produced_chars += 2; \
751 *dst++ = (c1), *dst++ = (c2); \
755 /* Store a byte C in the place pointed by DST and increment DST to the
756 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP,
757 store in an appropriate multibyte form. The caller should
758 declare and set the variables `dst' and `multibytep' appropriately
761 #define EMIT_ONE_BYTE(c) \
768 ch = BYTE8_TO_CHAR (ch); \
769 CHAR_STRING_ADVANCE (ch, dst); \
776 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */
778 #define EMIT_TWO_BYTES(c1, c2) \
780 produced_chars += 2; \
787 ch = BYTE8_TO_CHAR (ch); \
788 CHAR_STRING_ADVANCE (ch, dst); \
791 ch = BYTE8_TO_CHAR (ch); \
792 CHAR_STRING_ADVANCE (ch, dst); \
802 #define EMIT_THREE_BYTES(c1, c2, c3) \
804 EMIT_ONE_BYTE (c1); \
805 EMIT_TWO_BYTES (c2, c3); \
809 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \
811 EMIT_TWO_BYTES (c1, c2); \
812 EMIT_TWO_BYTES (c3, c4); \
817 record_conversion_result (struct coding_system
*coding
,
818 enum coding_result_code result
)
820 coding
->result
= result
;
823 case CODING_RESULT_INSUFFICIENT_SRC
:
824 Vlast_code_conversion_error
= Qinsufficient_source
;
826 case CODING_RESULT_INVALID_SRC
:
827 Vlast_code_conversion_error
= Qinvalid_source
;
829 case CODING_RESULT_INTERRUPT
:
830 Vlast_code_conversion_error
= Qinterrupted
;
832 case CODING_RESULT_INSUFFICIENT_DST
:
833 /* Don't record this error in Vlast_code_conversion_error
834 because it happens just temporarily and is resolved when the
835 whole conversion is finished. */
837 case CODING_RESULT_SUCCESS
:
840 Vlast_code_conversion_error
= intern ("Unknown error");
844 /* These wrapper macros are used to preserve validity of pointers into
845 buffer text across calls to decode_char, encode_char, etc, which
846 could cause relocation of buffers if it loads a charset map,
847 because loading a charset map allocates large structures. */
849 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \
853 charset_map_loaded = 0; \
854 c = DECODE_CHAR (charset, code); \
855 if (charset_map_loaded \
856 && (offset = coding_change_source (coding))) \
859 src_base += offset; \
864 #define CODING_ENCODE_CHAR(coding, dst, dst_end, charset, c, code) \
868 charset_map_loaded = 0; \
869 code = ENCODE_CHAR (charset, c); \
870 if (charset_map_loaded \
871 && (offset = coding_change_destination (coding))) \
878 #define CODING_CHAR_CHARSET(coding, dst, dst_end, c, charset_list, code_return, charset) \
882 charset_map_loaded = 0; \
883 charset = char_charset (c, charset_list, code_return); \
884 if (charset_map_loaded \
885 && (offset = coding_change_destination (coding))) \
892 #define CODING_CHAR_CHARSET_P(coding, dst, dst_end, c, charset, result) \
896 charset_map_loaded = 0; \
897 result = CHAR_CHARSET_P (c, charset); \
898 if (charset_map_loaded \
899 && (offset = coding_change_destination (coding))) \
907 /* If there are at least BYTES length of room at dst, allocate memory
908 for coding->destination and update dst and dst_end. We don't have
909 to take care of coding->source which will be relocated. It is
910 handled by calling coding_set_source in encode_coding. */
912 #define ASSURE_DESTINATION(bytes) \
914 if (dst + (bytes) >= dst_end) \
916 ptrdiff_t more_bytes = charbuf_end - charbuf + (bytes); \
918 dst = alloc_destination (coding, more_bytes, dst); \
919 dst_end = coding->destination + coding->dst_bytes; \
924 /* Store multibyte form of the character C in P, and advance P to the
925 end of the multibyte form. This used to be like CHAR_STRING_ADVANCE
926 without ever calling MAYBE_UNIFY_CHAR, but nowadays we don't call
927 MAYBE_UNIFY_CHAR in CHAR_STRING_ADVANCE. */
929 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) CHAR_STRING_ADVANCE(c, p)
931 /* Return the character code of character whose multibyte form is at
932 P, and advance P to the end of the multibyte form. This used to be
933 like STRING_CHAR_ADVANCE without ever calling MAYBE_UNIFY_CHAR, but
934 nowadays STRING_CHAR_ADVANCE doesn't call MAYBE_UNIFY_CHAR. */
936 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) STRING_CHAR_ADVANCE(p)
938 /* Set coding->source from coding->src_object. */
941 coding_set_source (struct coding_system
*coding
)
943 if (BUFFERP (coding
->src_object
))
945 struct buffer
*buf
= XBUFFER (coding
->src_object
);
947 if (coding
->src_pos
< 0)
948 coding
->source
= BUF_GAP_END_ADDR (buf
) + coding
->src_pos_byte
;
950 coding
->source
= BUF_BYTE_ADDRESS (buf
, coding
->src_pos_byte
);
952 else if (STRINGP (coding
->src_object
))
954 coding
->source
= SDATA (coding
->src_object
) + coding
->src_pos_byte
;
958 /* Otherwise, the source is C string and is never relocated
959 automatically. Thus we don't have to update anything. */
964 /* Set coding->source from coding->src_object, and return how many
965 bytes coding->source was changed. */
968 coding_change_source (struct coding_system
*coding
)
970 const unsigned char *orig
= coding
->source
;
971 coding_set_source (coding
);
972 return coding
->source
- orig
;
976 /* Set coding->destination from coding->dst_object. */
979 coding_set_destination (struct coding_system
*coding
)
981 if (BUFFERP (coding
->dst_object
))
983 if (BUFFERP (coding
->src_object
) && coding
->src_pos
< 0)
985 coding
->destination
= BEG_ADDR
+ coding
->dst_pos_byte
- BEG_BYTE
;
986 coding
->dst_bytes
= (GAP_END_ADDR
987 - (coding
->src_bytes
- coding
->consumed
)
988 - coding
->destination
);
992 /* We are sure that coding->dst_pos_byte is before the gap
994 coding
->destination
= (BUF_BEG_ADDR (XBUFFER (coding
->dst_object
))
995 + coding
->dst_pos_byte
- BEG_BYTE
);
996 coding
->dst_bytes
= (BUF_GAP_END_ADDR (XBUFFER (coding
->dst_object
))
997 - coding
->destination
);
1002 /* Otherwise, the destination is C string and is never relocated
1003 automatically. Thus we don't have to update anything. */
1008 /* Set coding->destination from coding->dst_object, and return how
1009 many bytes coding->destination was changed. */
1012 coding_change_destination (struct coding_system
*coding
)
1014 const unsigned char *orig
= coding
->destination
;
1015 coding_set_destination (coding
);
1016 return coding
->destination
- orig
;
1021 coding_alloc_by_realloc (struct coding_system
*coding
, ptrdiff_t bytes
)
1023 if (STRING_BYTES_BOUND
- coding
->dst_bytes
< bytes
)
1025 coding
->destination
= xrealloc (coding
->destination
,
1026 coding
->dst_bytes
+ bytes
);
1027 coding
->dst_bytes
+= bytes
;
1031 coding_alloc_by_making_gap (struct coding_system
*coding
,
1032 ptrdiff_t gap_head_used
, ptrdiff_t bytes
)
1034 if (EQ (coding
->src_object
, coding
->dst_object
))
1036 /* The gap may contain the produced data at the head and not-yet
1037 consumed data at the tail. To preserve those data, we at
1038 first make the gap size to zero, then increase the gap
1040 ptrdiff_t add
= GAP_SIZE
;
1042 GPT
+= gap_head_used
, GPT_BYTE
+= gap_head_used
;
1043 GAP_SIZE
= 0; ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
1045 GAP_SIZE
+= add
; ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
1046 GPT
-= gap_head_used
, GPT_BYTE
-= gap_head_used
;
1049 make_gap_1 (XBUFFER (coding
->dst_object
), bytes
);
1053 static unsigned char *
1054 alloc_destination (struct coding_system
*coding
, ptrdiff_t nbytes
,
1057 ptrdiff_t offset
= dst
- coding
->destination
;
1059 if (BUFFERP (coding
->dst_object
))
1061 struct buffer
*buf
= XBUFFER (coding
->dst_object
);
1063 coding_alloc_by_making_gap (coding
, dst
- BUF_GPT_ADDR (buf
), nbytes
);
1066 coding_alloc_by_realloc (coding
, nbytes
);
1067 coding_set_destination (coding
);
1068 dst
= coding
->destination
+ offset
;
1072 /** Macros for annotations. */
1074 /* An annotation data is stored in the array coding->charbuf in this
1076 [ -LENGTH ANNOTATION_MASK NCHARS ... ]
1077 LENGTH is the number of elements in the annotation.
1078 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK.
1079 NCHARS is the number of characters in the text annotated.
1081 The format of the following elements depend on ANNOTATION_MASK.
1083 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements
1085 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ]
1087 NBYTES is the number of bytes specified in the header part of
1088 old-style emacs-mule encoding, or 0 for the other kind of
1091 METHOD is one of enum composition_method.
1093 Optional COMPOSITION-COMPONENTS are characters and composition
1096 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID
1099 If ANNOTATION_MASK is 0, this annotation is just a space holder to
1100 recover from an invalid annotation, and should be skipped by
1101 produce_annotation. */
1103 /* Maximum length of the header of annotation data. */
1104 #define MAX_ANNOTATION_LENGTH 5
1106 #define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \
1108 *(buf)++ = -(len); \
1109 *(buf)++ = (mask); \
1110 *(buf)++ = (nchars); \
1111 coding->annotated = 1; \
1114 #define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \
1116 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \
1122 #define ADD_CHARSET_DATA(buf, nchars, id) \
1124 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \
1129 /*** 2. Emacs' internal format (emacs-utf-8) ***/
1136 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1137 Return true if a text is encoded in UTF-8. */
1139 #define UTF_8_1_OCTET_P(c) ((c) < 0x80)
1140 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
1141 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
1142 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
1143 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
1144 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
1146 #define UTF_8_BOM_1 0xEF
1147 #define UTF_8_BOM_2 0xBB
1148 #define UTF_8_BOM_3 0xBF
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;
1161 detect_info
->checked
|= CATEGORY_MASK_UTF_8
;
1162 /* A coding system of this category is always ASCII compatible. */
1163 src
+= coding
->head_ascii
;
1167 int c
, c1
, c2
, c3
, c4
;
1171 if (c
< 0 || UTF_8_1_OCTET_P (c
))
1174 if (c1
< 0 || ! UTF_8_EXTRA_OCTET_P (c1
))
1176 if (UTF_8_2_OCTET_LEADING_P (c
))
1182 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1184 if (UTF_8_3_OCTET_LEADING_P (c
))
1187 if (src_base
== coding
->source
1188 && c
== UTF_8_BOM_1
&& c1
== UTF_8_BOM_2
&& c2
== UTF_8_BOM_3
)
1193 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1195 if (UTF_8_4_OCTET_LEADING_P (c
))
1201 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1203 if (UTF_8_5_OCTET_LEADING_P (c
))
1210 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1214 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1216 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1221 /* The first character 0xFFFE doesn't necessarily mean a BOM. */
1222 detect_info
->found
|= CATEGORY_MASK_UTF_8_SIG
| CATEGORY_MASK_UTF_8_NOSIG
;
1226 detect_info
->rejected
|= CATEGORY_MASK_UTF_8_SIG
;
1228 detect_info
->found
|= CATEGORY_MASK_UTF_8_NOSIG
;
1235 decode_coding_utf_8 (struct coding_system
*coding
)
1237 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1238 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1239 const unsigned char *src_base
;
1240 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1241 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
1242 ptrdiff_t consumed_chars
= 0, consumed_chars_base
= 0;
1243 bool multibytep
= coding
->src_multibyte
;
1244 enum utf_bom_type bom
= CODING_UTF_8_BOM (coding
);
1246 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1247 int byte_after_cr
= -1;
1249 if (bom
!= utf_without_bom
)
1255 if (! UTF_8_3_OCTET_LEADING_P (c1
))
1260 if (! UTF_8_EXTRA_OCTET_P (c2
))
1265 if (! UTF_8_EXTRA_OCTET_P (c3
))
1269 if ((c1
!= UTF_8_BOM_1
)
1270 || (c2
!= UTF_8_BOM_2
) || (c3
!= UTF_8_BOM_3
))
1273 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1278 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1282 int c
, c1
, c2
, c3
, c4
, c5
;
1285 consumed_chars_base
= consumed_chars
;
1287 if (charbuf
>= charbuf_end
)
1289 if (byte_after_cr
>= 0)
1294 if (byte_after_cr
>= 0)
1295 c1
= byte_after_cr
, byte_after_cr
= -1;
1302 else if (UTF_8_1_OCTET_P (c1
))
1304 if (eol_dos
&& c1
== '\r')
1305 ONE_MORE_BYTE (byte_after_cr
);
1311 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1313 if (UTF_8_2_OCTET_LEADING_P (c1
))
1315 c
= ((c1
& 0x1F) << 6) | (c2
& 0x3F);
1316 /* Reject overlong sequences here and below. Encoders
1317 producing them are incorrect, they can be misleading,
1318 and they mess up read/write invariance. */
1325 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1327 if (UTF_8_3_OCTET_LEADING_P (c1
))
1329 c
= (((c1
& 0xF) << 12)
1330 | ((c2
& 0x3F) << 6) | (c3
& 0x3F));
1332 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
1338 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1340 if (UTF_8_4_OCTET_LEADING_P (c1
))
1342 c
= (((c1
& 0x7) << 18) | ((c2
& 0x3F) << 12)
1343 | ((c3
& 0x3F) << 6) | (c4
& 0x3F));
1350 if (c5
< 0 || ! UTF_8_EXTRA_OCTET_P (c5
))
1352 if (UTF_8_5_OCTET_LEADING_P (c1
))
1354 c
= (((c1
& 0x3) << 24) | ((c2
& 0x3F) << 18)
1355 | ((c3
& 0x3F) << 12) | ((c4
& 0x3F) << 6)
1357 if ((c
> MAX_CHAR
) || (c
< 0x200000))
1372 consumed_chars
= consumed_chars_base
;
1374 *charbuf
++ = ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
1379 coding
->consumed_char
+= consumed_chars_base
;
1380 coding
->consumed
= src_base
- coding
->source
;
1381 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1386 encode_coding_utf_8 (struct coding_system
*coding
)
1388 bool multibytep
= coding
->dst_multibyte
;
1389 int *charbuf
= coding
->charbuf
;
1390 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1391 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1392 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1393 ptrdiff_t produced_chars
= 0;
1396 if (CODING_UTF_8_BOM (coding
) == utf_with_bom
)
1398 ASSURE_DESTINATION (3);
1399 EMIT_THREE_BYTES (UTF_8_BOM_1
, UTF_8_BOM_2
, UTF_8_BOM_3
);
1400 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1405 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
1407 while (charbuf
< charbuf_end
)
1409 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p
, *pend
= str
;
1411 ASSURE_DESTINATION (safe_room
);
1413 if (CHAR_BYTE8_P (c
))
1415 c
= CHAR_TO_BYTE8 (c
);
1420 CHAR_STRING_ADVANCE_NO_UNIFY (c
, pend
);
1421 for (p
= str
; p
< pend
; p
++)
1428 int safe_room
= MAX_MULTIBYTE_LENGTH
;
1430 while (charbuf
< charbuf_end
)
1432 ASSURE_DESTINATION (safe_room
);
1434 if (CHAR_BYTE8_P (c
))
1435 *dst
++ = CHAR_TO_BYTE8 (c
);
1437 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
1441 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1442 coding
->produced_char
+= produced_chars
;
1443 coding
->produced
= dst
- coding
->destination
;
1448 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1449 Return true if a text is encoded in one of UTF-16 based coding systems. */
1451 #define UTF_16_HIGH_SURROGATE_P(val) \
1452 (((val) & 0xFC00) == 0xD800)
1454 #define UTF_16_LOW_SURROGATE_P(val) \
1455 (((val) & 0xFC00) == 0xDC00)
1459 detect_coding_utf_16 (struct coding_system
*coding
,
1460 struct coding_detection_info
*detect_info
)
1462 const unsigned char *src
= coding
->source
;
1463 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1464 bool multibytep
= coding
->src_multibyte
;
1467 detect_info
->checked
|= CATEGORY_MASK_UTF_16
;
1468 if (coding
->mode
& CODING_MODE_LAST_BLOCK
1469 && (coding
->src_chars
& 1))
1471 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1475 TWO_MORE_BYTES (c1
, c2
);
1476 if ((c1
== 0xFF) && (c2
== 0xFE))
1478 detect_info
->found
|= (CATEGORY_MASK_UTF_16_LE
1479 | CATEGORY_MASK_UTF_16_AUTO
);
1480 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_BE
1481 | CATEGORY_MASK_UTF_16_BE_NOSIG
1482 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1484 else if ((c1
== 0xFE) && (c2
== 0xFF))
1486 detect_info
->found
|= (CATEGORY_MASK_UTF_16_BE
1487 | CATEGORY_MASK_UTF_16_AUTO
);
1488 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_LE
1489 | CATEGORY_MASK_UTF_16_BE_NOSIG
1490 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1494 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1499 /* We check the dispersion of Eth and Oth bytes where E is even and
1500 O is odd. If both are high, we assume binary data.*/
1501 unsigned char e
[256], o
[256];
1502 unsigned e_num
= 1, o_num
= 1;
1509 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_AUTO
1510 |CATEGORY_MASK_UTF_16_BE
1511 | CATEGORY_MASK_UTF_16_LE
);
1513 while ((detect_info
->rejected
& CATEGORY_MASK_UTF_16
)
1514 != CATEGORY_MASK_UTF_16
)
1516 TWO_MORE_BYTES (c1
, c2
);
1524 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_BE_NOSIG
;
1531 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_LE_NOSIG
;
1542 decode_coding_utf_16 (struct coding_system
*coding
)
1544 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1545 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1546 const unsigned char *src_base
;
1547 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1548 /* We may produces at most 3 chars in one loop. */
1549 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
- 2;
1550 ptrdiff_t consumed_chars
= 0, consumed_chars_base
= 0;
1551 bool multibytep
= coding
->src_multibyte
;
1552 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1553 enum utf_16_endian_type endian
= CODING_UTF_16_ENDIAN (coding
);
1554 int surrogate
= CODING_UTF_16_SURROGATE (coding
);
1556 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1557 int byte_after_cr1
= -1, byte_after_cr2
= -1;
1559 if (bom
== utf_with_bom
)
1568 if (endian
== utf_16_big_endian
1569 ? c
!= 0xFEFF : c
!= 0xFFFE)
1571 /* The first two bytes are not BOM. Treat them as bytes
1572 for a normal character. */
1576 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1578 else if (bom
== utf_detect_bom
)
1580 /* We have already tried to detect BOM and failed in
1582 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1590 consumed_chars_base
= consumed_chars
;
1592 if (charbuf
>= charbuf_end
)
1594 if (byte_after_cr1
>= 0)
1599 if (byte_after_cr1
>= 0)
1600 c1
= byte_after_cr1
, byte_after_cr1
= -1;
1608 if (byte_after_cr2
>= 0)
1609 c2
= byte_after_cr2
, byte_after_cr2
= -1;
1614 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
1618 c
= (endian
== utf_16_big_endian
1619 ? ((c1
<< 8) | c2
) : ((c2
<< 8) | c1
));
1623 if (! UTF_16_LOW_SURROGATE_P (c
))
1625 if (endian
== utf_16_big_endian
)
1626 c1
= surrogate
>> 8, c2
= surrogate
& 0xFF;
1628 c1
= surrogate
& 0xFF, c2
= surrogate
>> 8;
1632 if (UTF_16_HIGH_SURROGATE_P (c
))
1633 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1639 c
= ((surrogate
- 0xD800) << 10) | (c
- 0xDC00);
1640 CODING_UTF_16_SURROGATE (coding
) = surrogate
= 0;
1641 *charbuf
++ = 0x10000 + c
;
1646 if (UTF_16_HIGH_SURROGATE_P (c
))
1647 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1650 if (eol_dos
&& c
== '\r')
1652 ONE_MORE_BYTE (byte_after_cr1
);
1653 ONE_MORE_BYTE (byte_after_cr2
);
1661 coding
->consumed_char
+= consumed_chars_base
;
1662 coding
->consumed
= src_base
- coding
->source
;
1663 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1667 encode_coding_utf_16 (struct coding_system
*coding
)
1669 bool multibytep
= coding
->dst_multibyte
;
1670 int *charbuf
= coding
->charbuf
;
1671 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1672 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1673 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1675 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1676 bool big_endian
= CODING_UTF_16_ENDIAN (coding
) == utf_16_big_endian
;
1677 ptrdiff_t produced_chars
= 0;
1680 if (bom
!= utf_without_bom
)
1682 ASSURE_DESTINATION (safe_room
);
1684 EMIT_TWO_BYTES (0xFE, 0xFF);
1686 EMIT_TWO_BYTES (0xFF, 0xFE);
1687 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1690 while (charbuf
< charbuf_end
)
1692 ASSURE_DESTINATION (safe_room
);
1694 if (c
> MAX_UNICODE_CHAR
)
1695 c
= coding
->default_char
;
1700 EMIT_TWO_BYTES (c
>> 8, c
& 0xFF);
1702 EMIT_TWO_BYTES (c
& 0xFF, c
>> 8);
1709 c1
= (c
>> 10) + 0xD800;
1710 c2
= (c
& 0x3FF) + 0xDC00;
1712 EMIT_FOUR_BYTES (c1
>> 8, c1
& 0xFF, c2
>> 8, c2
& 0xFF);
1714 EMIT_FOUR_BYTES (c1
& 0xFF, c1
>> 8, c2
& 0xFF, c2
>> 8);
1717 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1718 coding
->produced
= dst
- coding
->destination
;
1719 coding
->produced_char
+= produced_chars
;
1724 /*** 6. Old Emacs' internal format (emacs-mule) ***/
1726 /* Emacs' internal format for representation of multiple character
1727 sets is a kind of multi-byte encoding, i.e. characters are
1728 represented by variable-length sequences of one-byte codes.
1730 ASCII characters and control characters (e.g. `tab', `newline') are
1731 represented by one-byte sequences which are their ASCII codes, in
1732 the range 0x00 through 0x7F.
1734 8-bit characters of the range 0x80..0x9F are represented by
1735 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
1738 8-bit characters of the range 0xA0..0xFF are represented by
1739 one-byte sequences which are their 8-bit code.
1741 The other characters are represented by a sequence of `base
1742 leading-code', optional `extended leading-code', and one or two
1743 `position-code's. The length of the sequence is determined by the
1744 base leading-code. Leading-code takes the range 0x81 through 0x9D,
1745 whereas extended leading-code and position-code take the range 0xA0
1746 through 0xFF. See `charset.h' for more details about leading-code
1749 --- CODE RANGE of Emacs' internal format ---
1753 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
1754 eight-bit-graphic 0xA0..0xBF
1755 ELSE 0x81..0x9D + [0xA0..0xFF]+
1756 ---------------------------------------------
1758 As this is the internal character representation, the format is
1759 usually not used externally (i.e. in a file or in a data sent to a
1760 process). But, it is possible to have a text externally in this
1761 format (i.e. by encoding by the coding system `emacs-mule').
1763 In that case, a sequence of one-byte codes has a slightly different
1766 At first, all characters in eight-bit-control are represented by
1767 one-byte sequences which are their 8-bit code.
1769 Next, character composition data are represented by the byte
1770 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
1772 METHOD is 0xF2 plus one of composition method (enum
1773 composition_method),
1775 BYTES is 0xA0 plus a byte length of this composition data,
1777 CHARS is 0xA0 plus a number of characters composed by this
1780 COMPONENTs are characters of multibyte form or composition
1781 rules encoded by two-byte of ASCII codes.
1783 In addition, for backward compatibility, the following formats are
1784 also recognized as composition data on decoding.
1787 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
1790 MSEQ is a multibyte form but in these special format:
1791 ASCII: 0xA0 ASCII_CODE+0x80,
1792 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
1793 RULE is a one byte code of the range 0xA0..0xF0 that
1794 represents a composition rule.
1797 char emacs_mule_bytes
[256];
1800 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1801 Return true if a text is encoded in 'emacs-mule'. */
1804 detect_coding_emacs_mule (struct coding_system
*coding
,
1805 struct coding_detection_info
*detect_info
)
1807 const unsigned char *src
= coding
->source
, *src_base
;
1808 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1809 bool multibytep
= coding
->src_multibyte
;
1810 ptrdiff_t consumed_chars
= 0;
1814 detect_info
->checked
|= CATEGORY_MASK_EMACS_MULE
;
1815 /* A coding system of this category is always ASCII compatible. */
1816 src
+= coding
->head_ascii
;
1826 /* Perhaps the start of composite character. We simply skip
1827 it because analyzing it is too heavy for detecting. But,
1828 at least, we check that the composite character
1829 constitutes of more than 4 bytes. */
1830 const unsigned char *src_start
;
1840 if (src
- src_start
<= 4)
1842 found
= CATEGORY_MASK_EMACS_MULE
;
1850 && (c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
))
1855 int more_bytes
= emacs_mule_bytes
[c
] - 1;
1857 while (more_bytes
> 0)
1862 src
--; /* Unread the last byte. */
1867 if (more_bytes
!= 0)
1869 found
= CATEGORY_MASK_EMACS_MULE
;
1872 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
1876 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1878 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
1881 detect_info
->found
|= found
;
1886 /* Parse emacs-mule multibyte sequence at SRC and return the decoded
1887 character. If CMP_STATUS indicates that we must expect MSEQ or
1888 RULE described above, decode it and return the negative value of
1889 the decoded character or rule. If an invalid byte is found, return
1890 -1. If SRC is too short, return -2. */
1893 emacs_mule_char (struct coding_system
*coding
, const unsigned char *src
,
1894 int *nbytes
, int *nchars
, int *id
,
1895 struct composition_status
*cmp_status
)
1897 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1898 const unsigned char *src_base
= src
;
1899 bool multibytep
= coding
->src_multibyte
;
1903 int consumed_chars
= 0;
1904 bool mseq_found
= 0;
1910 charset_ID
= emacs_mule_charset
[0];
1916 if (cmp_status
->state
!= COMPOSING_NO
1917 && cmp_status
->old_form
)
1919 if (cmp_status
->state
== COMPOSING_CHAR
)
1934 *nbytes
= src
- src_base
;
1935 *nchars
= consumed_chars
;
1943 switch (emacs_mule_bytes
[c
])
1946 if ((charset_ID
= emacs_mule_charset
[c
]) < 0)
1955 if (c
== EMACS_MULE_LEADING_CODE_PRIVATE_11
1956 || c
== EMACS_MULE_LEADING_CODE_PRIVATE_12
)
1959 if (c
< 0xA0 || (charset_ID
= emacs_mule_charset
[c
]) < 0)
1968 if ((charset_ID
= emacs_mule_charset
[c
]) < 0)
1973 code
= (c
& 0x7F) << 8;
1983 if (c
< 0 || (charset_ID
= emacs_mule_charset
[c
]) < 0)
1988 code
= (c
& 0x7F) << 8;
1997 charset_ID
= ASCII_BYTE_P (code
) ? charset_ascii
: charset_eight_bit
;
2003 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
2004 CHARSET_FROM_ID (charset_ID
), code
, c
);
2008 *nbytes
= src
- src_base
;
2009 *nchars
= consumed_chars
;
2012 return (mseq_found
? -c
: c
);
2022 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
2024 /* Handle these composition sequence ('|': the end of header elements,
2025 BYTES and CHARS >= 0xA0):
2027 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ...
2028 (2) altchar composition: 0x80 0xF4 BYTES CHARS | ALT ... ALT CHAR ...
2029 (3) alt&rule composition: 0x80 0xF5 BYTES CHARS | ALT RULE ... ALT CHAR ...
2033 (4) relative composition: 0x80 | MSEQ ... MSEQ
2034 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ
2036 When the starter 0x80 and the following header elements are found,
2037 this annotation header is produced.
2039 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ]
2041 NCHARS is CHARS - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2042 NBYTES is BYTES - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2044 Then, upon reading the following elements, these codes are produced
2045 until the composition end is found:
2048 (2) ALT ... ALT CHAR ... CHAR
2049 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR
2051 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
2053 When the composition end is found, LENGTH and NCHARS in the
2054 annotation header is updated as below:
2056 (1) LENGTH: unchanged, NCHARS: unchanged
2057 (2) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2058 (3) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2059 (4) LENGTH: unchanged, NCHARS: number of CHARs
2060 (5) LENGTH: unchanged, NCHARS: number of CHARs
2062 If an error is found while composing, the annotation header is
2063 changed to the original composition header (plus filler -1s) as
2066 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ]
2067 (5) [ 0x80 0xFF -1 -1- -1 ]
2069 and the sequence [ -2 DECODED-RULE ] is changed to the original
2070 byte sequence as below:
2071 o the original byte sequence is B: [ B -1 ]
2072 o the original byte sequence is B1 B2: [ B1 B2 ]
2074 Most of the routines are implemented by macros because many
2075 variables and labels in the caller decode_coding_emacs_mule must be
2076 accessible, and they are usually called just once (thus doesn't
2077 increase the size of compiled object). */
2079 /* Decode a composition rule represented by C as a component of
2080 composition sequence of Emacs 20 style. Set RULE to the decoded
2083 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \
2088 if (c < 0 || c >= 81) \
2089 goto invalid_code; \
2090 gref = c / 9, nref = c % 9; \
2091 if (gref == 4) gref = 10; \
2092 if (nref == 4) nref = 10; \
2093 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2097 /* Decode a composition rule represented by C and the following byte
2098 at SRC as a component of composition sequence of Emacs 21 style.
2099 Set RULE to the decoded rule. */
2101 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \
2106 if (gref < 0 || gref >= 81) \
2107 goto invalid_code; \
2108 ONE_MORE_BYTE (c); \
2110 if (nref < 0 || nref >= 81) \
2111 goto invalid_code; \
2112 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2116 /* Start of Emacs 21 style format. The first three bytes at SRC are
2117 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is the
2118 byte length of this composition information, CHARS is the number of
2119 characters composed by this composition. */
2121 #define DECODE_EMACS_MULE_21_COMPOSITION() \
2123 enum composition_method method = c - 0xF2; \
2124 int nbytes, nchars; \
2126 ONE_MORE_BYTE (c); \
2128 goto invalid_code; \
2129 nbytes = c - 0xA0; \
2130 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \
2131 goto invalid_code; \
2132 ONE_MORE_BYTE (c); \
2133 nchars = c - 0xA0; \
2134 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \
2135 goto invalid_code; \
2136 cmp_status->old_form = 0; \
2137 cmp_status->method = method; \
2138 if (method == COMPOSITION_RELATIVE) \
2139 cmp_status->state = COMPOSING_CHAR; \
2141 cmp_status->state = COMPOSING_COMPONENT_CHAR; \
2142 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2143 cmp_status->nchars = nchars; \
2144 cmp_status->ncomps = nbytes - 4; \
2145 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \
2149 /* Start of Emacs 20 style format for relative composition. */
2151 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \
2153 cmp_status->old_form = 1; \
2154 cmp_status->method = COMPOSITION_RELATIVE; \
2155 cmp_status->state = COMPOSING_CHAR; \
2156 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2157 cmp_status->nchars = cmp_status->ncomps = 0; \
2158 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2162 /* Start of Emacs 20 style format for rule-base composition. */
2164 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \
2166 cmp_status->old_form = 1; \
2167 cmp_status->method = COMPOSITION_WITH_RULE; \
2168 cmp_status->state = COMPOSING_CHAR; \
2169 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2170 cmp_status->nchars = cmp_status->ncomps = 0; \
2171 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2175 #define DECODE_EMACS_MULE_COMPOSITION_START() \
2177 const unsigned char *current_src = src; \
2179 ONE_MORE_BYTE (c); \
2181 goto invalid_code; \
2182 if (c - 0xF2 >= COMPOSITION_RELATIVE \
2183 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \
2184 DECODE_EMACS_MULE_21_COMPOSITION (); \
2185 else if (c < 0xA0) \
2186 goto invalid_code; \
2187 else if (c < 0xC0) \
2189 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \
2190 /* Re-read C as a composition component. */ \
2191 src = current_src; \
2193 else if (c == 0xFF) \
2194 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \
2196 goto invalid_code; \
2199 #define EMACS_MULE_COMPOSITION_END() \
2201 int idx = - cmp_status->length; \
2203 if (cmp_status->old_form) \
2204 charbuf[idx + 2] = cmp_status->nchars; \
2205 else if (cmp_status->method > COMPOSITION_RELATIVE) \
2206 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \
2207 cmp_status->state = COMPOSING_NO; \
2212 emacs_mule_finish_composition (int *charbuf
,
2213 struct composition_status
*cmp_status
)
2215 int idx
= - cmp_status
->length
;
2218 if (cmp_status
->old_form
&& cmp_status
->nchars
> 0)
2220 charbuf
[idx
+ 2] = cmp_status
->nchars
;
2222 if (cmp_status
->method
== COMPOSITION_WITH_RULE
2223 && cmp_status
->state
== COMPOSING_CHAR
)
2225 /* The last rule was invalid. */
2226 int rule
= charbuf
[-1] + 0xA0;
2228 charbuf
[-2] = BYTE8_TO_CHAR (rule
);
2235 charbuf
[idx
++] = BYTE8_TO_CHAR (0x80);
2237 if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2239 charbuf
[idx
++] = BYTE8_TO_CHAR (0xFF);
2240 charbuf
[idx
++] = -3;
2246 int nchars
= charbuf
[idx
+ 1] + 0xA0;
2247 int nbytes
= charbuf
[idx
+ 2] + 0xA0;
2249 charbuf
[idx
++] = BYTE8_TO_CHAR (0xF2 + cmp_status
->method
);
2250 charbuf
[idx
++] = BYTE8_TO_CHAR (nbytes
);
2251 charbuf
[idx
++] = BYTE8_TO_CHAR (nchars
);
2252 charbuf
[idx
++] = -1;
2256 cmp_status
->state
= COMPOSING_NO
;
2260 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \
2262 if (cmp_status->state != COMPOSING_NO) \
2263 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \
2268 decode_coding_emacs_mule (struct coding_system
*coding
)
2270 const unsigned char *src
= coding
->source
+ coding
->consumed
;
2271 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2272 const unsigned char *src_base
;
2273 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
2274 /* We may produce two annotations (charset and composition) in one
2275 loop and one more charset annotation at the end. */
2277 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3)
2278 /* We can produce up to 2 characters in a loop. */
2280 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
2281 bool multibytep
= coding
->src_multibyte
;
2282 ptrdiff_t char_offset
= coding
->produced_char
;
2283 ptrdiff_t last_offset
= char_offset
;
2284 int last_id
= charset_ascii
;
2286 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
2287 int byte_after_cr
= -1;
2288 struct composition_status
*cmp_status
= &coding
->spec
.emacs_mule
.cmp_status
;
2290 if (cmp_status
->state
!= COMPOSING_NO
)
2294 if (charbuf_end
- charbuf
< cmp_status
->length
)
2296 for (i
= 0; i
< cmp_status
->length
; i
++)
2297 *charbuf
++ = cmp_status
->carryover
[i
];
2298 coding
->annotated
= 1;
2303 int c
, id
IF_LINT (= 0);
2306 consumed_chars_base
= consumed_chars
;
2308 if (charbuf
>= charbuf_end
)
2310 if (byte_after_cr
>= 0)
2315 if (byte_after_cr
>= 0)
2316 c
= byte_after_cr
, byte_after_cr
= -1;
2320 if (c
< 0 || c
== 0x80)
2322 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2329 DECODE_EMACS_MULE_COMPOSITION_START ();
2335 if (eol_dos
&& c
== '\r')
2336 ONE_MORE_BYTE (byte_after_cr
);
2338 if (cmp_status
->state
!= COMPOSING_NO
)
2340 if (cmp_status
->old_form
)
2341 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2342 else if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2343 cmp_status
->ncomps
--;
2348 int nchars
IF_LINT (= 0), nbytes
IF_LINT (= 0);
2349 /* emacs_mule_char can load a charset map from a file, which
2350 allocates a large structure and might cause buffer text
2351 to be relocated as result. Thus, we need to remember the
2352 original pointer to buffer text, and fix up all related
2353 pointers after the call. */
2354 const unsigned char *orig
= coding
->source
;
2357 c
= emacs_mule_char (coding
, src_base
, &nbytes
, &nchars
, &id
,
2359 offset
= coding
->source
- orig
;
2373 src
= src_base
+ nbytes
;
2374 consumed_chars
= consumed_chars_base
+ nchars
;
2375 if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2376 cmp_status
->ncomps
-= nchars
;
2379 /* Now if C >= 0, we found a normally encoded character, if C <
2380 0, we found an old-style composition component character or
2383 if (cmp_status
->state
== COMPOSING_NO
)
2387 if (last_id
!= charset_ascii
)
2388 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
,
2391 last_offset
= char_offset
;
2396 else if (cmp_status
->state
== COMPOSING_CHAR
)
2398 if (cmp_status
->old_form
)
2402 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2409 cmp_status
->nchars
++;
2410 cmp_status
->length
++;
2411 if (cmp_status
->nchars
== MAX_COMPOSITION_COMPONENTS
)
2412 EMACS_MULE_COMPOSITION_END ();
2413 else if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2414 cmp_status
->state
= COMPOSING_RULE
;
2420 cmp_status
->length
++;
2421 cmp_status
->nchars
--;
2422 if (cmp_status
->nchars
== 0)
2423 EMACS_MULE_COMPOSITION_END ();
2426 else if (cmp_status
->state
== COMPOSING_RULE
)
2432 EMACS_MULE_COMPOSITION_END ();
2439 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c
, rule
);
2444 cmp_status
->length
+= 2;
2445 cmp_status
->state
= COMPOSING_CHAR
;
2448 else if (cmp_status
->state
== COMPOSING_COMPONENT_CHAR
)
2451 cmp_status
->length
++;
2452 if (cmp_status
->ncomps
== 0)
2453 cmp_status
->state
= COMPOSING_CHAR
;
2454 else if (cmp_status
->ncomps
> 0)
2456 if (cmp_status
->method
== COMPOSITION_WITH_RULE_ALTCHARS
)
2457 cmp_status
->state
= COMPOSING_COMPONENT_RULE
;
2460 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2462 else /* COMPOSING_COMPONENT_RULE */
2466 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c
, rule
);
2471 cmp_status
->length
+= 2;
2472 cmp_status
->ncomps
--;
2473 if (cmp_status
->ncomps
> 0)
2474 cmp_status
->state
= COMPOSING_COMPONENT_CHAR
;
2476 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2481 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2483 consumed_chars
= consumed_chars_base
;
2485 *charbuf
++ = ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
2491 if (cmp_status
->state
!= COMPOSING_NO
)
2493 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
2494 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2499 charbuf
-= cmp_status
->length
;
2500 for (i
= 0; i
< cmp_status
->length
; i
++)
2501 cmp_status
->carryover
[i
] = charbuf
[i
];
2504 if (last_id
!= charset_ascii
)
2505 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
2506 coding
->consumed_char
+= consumed_chars_base
;
2507 coding
->consumed
= src_base
- coding
->source
;
2508 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
2512 #define EMACS_MULE_LEADING_CODES(id, codes) \
2515 codes[0] = id, codes[1] = 0; \
2516 else if (id < 0xE0) \
2517 codes[0] = 0x9A, codes[1] = id; \
2518 else if (id < 0xF0) \
2519 codes[0] = 0x9B, codes[1] = id; \
2520 else if (id < 0xF5) \
2521 codes[0] = 0x9C, codes[1] = id; \
2523 codes[0] = 0x9D, codes[1] = id; \
2528 encode_coding_emacs_mule (struct coding_system
*coding
)
2530 bool multibytep
= coding
->dst_multibyte
;
2531 int *charbuf
= coding
->charbuf
;
2532 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
2533 unsigned char *dst
= coding
->destination
+ coding
->produced
;
2534 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
2536 ptrdiff_t produced_chars
= 0;
2537 Lisp_Object attrs
, charset_list
;
2539 int preferred_charset_id
= -1;
2541 CODING_GET_INFO (coding
, attrs
, charset_list
);
2542 if (! EQ (charset_list
, Vemacs_mule_charset_list
))
2544 charset_list
= Vemacs_mule_charset_list
;
2545 ASET (attrs
, coding_attr_charset_list
, charset_list
);
2548 while (charbuf
< charbuf_end
)
2550 ASSURE_DESTINATION (safe_room
);
2555 /* Handle an annotation. */
2558 case CODING_ANNOTATE_COMPOSITION_MASK
:
2559 /* Not yet implemented. */
2561 case CODING_ANNOTATE_CHARSET_MASK
:
2562 preferred_charset_id
= charbuf
[3];
2563 if (preferred_charset_id
>= 0
2564 && NILP (Fmemq (make_number (preferred_charset_id
),
2566 preferred_charset_id
= -1;
2575 if (ASCII_CHAR_P (c
))
2576 EMIT_ONE_ASCII_BYTE (c
);
2577 else if (CHAR_BYTE8_P (c
))
2579 c
= CHAR_TO_BYTE8 (c
);
2584 struct charset
*charset
;
2588 unsigned char leading_codes
[2];
2590 if (preferred_charset_id
>= 0)
2594 charset
= CHARSET_FROM_ID (preferred_charset_id
);
2595 CODING_CHAR_CHARSET_P (coding
, dst
, dst_end
, c
, charset
, result
);
2597 code
= ENCODE_CHAR (charset
, c
);
2599 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2603 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2607 c
= coding
->default_char
;
2608 if (ASCII_CHAR_P (c
))
2610 EMIT_ONE_ASCII_BYTE (c
);
2613 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
2616 dimension
= CHARSET_DIMENSION (charset
);
2617 emacs_mule_id
= CHARSET_EMACS_MULE_ID (charset
);
2618 EMACS_MULE_LEADING_CODES (emacs_mule_id
, leading_codes
);
2619 EMIT_ONE_BYTE (leading_codes
[0]);
2620 if (leading_codes
[1])
2621 EMIT_ONE_BYTE (leading_codes
[1]);
2623 EMIT_ONE_BYTE (code
| 0x80);
2627 EMIT_ONE_BYTE (code
>> 8);
2628 EMIT_ONE_BYTE (code
& 0xFF);
2632 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
2633 coding
->produced_char
+= produced_chars
;
2634 coding
->produced
= dst
- coding
->destination
;
2639 /*** 7. ISO2022 handlers ***/
2641 /* The following note describes the coding system ISO2022 briefly.
2642 Since the intention of this note is to help understand the
2643 functions in this file, some parts are NOT ACCURATE or are OVERLY
2644 SIMPLIFIED. For thorough understanding, please refer to the
2645 original document of ISO2022. This is equivalent to the standard
2646 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
2648 ISO2022 provides many mechanisms to encode several character sets
2649 in 7-bit and 8-bit environments. For 7-bit environments, all text
2650 is encoded using bytes less than 128. This may make the encoded
2651 text a little bit longer, but the text passes more easily through
2652 several types of gateway, some of which strip off the MSB (Most
2655 There are two kinds of character sets: control character sets and
2656 graphic character sets. The former contain control characters such
2657 as `newline' and `escape' to provide control functions (control
2658 functions are also provided by escape sequences). The latter
2659 contain graphic characters such as 'A' and '-'. Emacs recognizes
2660 two control character sets and many graphic character sets.
2662 Graphic character sets are classified into one of the following
2663 four classes, according to the number of bytes (DIMENSION) and
2664 number of characters in one dimension (CHARS) of the set:
2665 - DIMENSION1_CHARS94
2666 - DIMENSION1_CHARS96
2667 - DIMENSION2_CHARS94
2668 - DIMENSION2_CHARS96
2670 In addition, each character set is assigned an identification tag,
2671 unique for each set, called the "final character" (denoted as <F>
2672 hereafter). The <F> of each character set is decided by ECMA(*)
2673 when it is registered in ISO. The code range of <F> is 0x30..0x7F
2674 (0x30..0x3F are for private use only).
2676 Note (*): ECMA = European Computer Manufacturers Association
2678 Here are examples of graphic character sets [NAME(<F>)]:
2679 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
2680 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
2681 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
2682 o DIMENSION2_CHARS96 -- none for the moment
2684 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
2685 C0 [0x00..0x1F] -- control character plane 0
2686 GL [0x20..0x7F] -- graphic character plane 0
2687 C1 [0x80..0x9F] -- control character plane 1
2688 GR [0xA0..0xFF] -- graphic character plane 1
2690 A control character set is directly designated and invoked to C0 or
2691 C1 by an escape sequence. The most common case is that:
2692 - ISO646's control character set is designated/invoked to C0, and
2693 - ISO6429's control character set is designated/invoked to C1,
2694 and usually these designations/invocations are omitted in encoded
2695 text. In a 7-bit environment, only C0 can be used, and a control
2696 character for C1 is encoded by an appropriate escape sequence to
2697 fit into the environment. All control characters for C1 are
2698 defined to have corresponding escape sequences.
2700 A graphic character set is at first designated to one of four
2701 graphic registers (G0 through G3), then these graphic registers are
2702 invoked to GL or GR. These designations and invocations can be
2703 done independently. The most common case is that G0 is invoked to
2704 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
2705 these invocations and designations are omitted in encoded text.
2706 In a 7-bit environment, only GL can be used.
2708 When a graphic character set of CHARS94 is invoked to GL, codes
2709 0x20 and 0x7F of the GL area work as control characters SPACE and
2710 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
2713 There are two ways of invocation: locking-shift and single-shift.
2714 With locking-shift, the invocation lasts until the next different
2715 invocation, whereas with single-shift, the invocation affects the
2716 following character only and doesn't affect the locking-shift
2717 state. Invocations are done by the following control characters or
2720 ----------------------------------------------------------------------
2721 abbrev function cntrl escape seq description
2722 ----------------------------------------------------------------------
2723 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
2724 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
2725 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
2726 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
2727 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
2728 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
2729 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
2730 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
2731 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
2732 ----------------------------------------------------------------------
2733 (*) These are not used by any known coding system.
2735 Control characters for these functions are defined by macros
2736 ISO_CODE_XXX in `coding.h'.
2738 Designations are done by the following escape sequences:
2739 ----------------------------------------------------------------------
2740 escape sequence description
2741 ----------------------------------------------------------------------
2742 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
2743 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
2744 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
2745 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
2746 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
2747 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
2748 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
2749 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
2750 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
2751 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
2752 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
2753 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
2754 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
2755 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
2756 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
2757 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
2758 ----------------------------------------------------------------------
2760 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
2761 of dimension 1, chars 94, and final character <F>, etc...
2763 Note (*): Although these designations are not allowed in ISO2022,
2764 Emacs accepts them on decoding, and produces them on encoding
2765 CHARS96 character sets in a coding system which is characterized as
2766 7-bit environment, non-locking-shift, and non-single-shift.
2768 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
2769 '(' must be omitted. We refer to this as "short-form" hereafter.
2771 Now you may notice that there are a lot of ways of encoding the
2772 same multilingual text in ISO2022. Actually, there exist many
2773 coding systems such as Compound Text (used in X11's inter client
2774 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
2775 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
2776 localized platforms), and all of these are variants of ISO2022.
2778 In addition to the above, Emacs handles two more kinds of escape
2779 sequences: ISO6429's direction specification and Emacs' private
2780 sequence for specifying character composition.
2782 ISO6429's direction specification takes the following form:
2783 o CSI ']' -- end of the current direction
2784 o CSI '0' ']' -- end of the current direction
2785 o CSI '1' ']' -- start of left-to-right text
2786 o CSI '2' ']' -- start of right-to-left text
2787 The control character CSI (0x9B: control sequence introducer) is
2788 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
2790 Character composition specification takes the following form:
2791 o ESC '0' -- start relative composition
2792 o ESC '1' -- end composition
2793 o ESC '2' -- start rule-base composition (*)
2794 o ESC '3' -- start relative composition with alternate chars (**)
2795 o ESC '4' -- start rule-base composition with alternate chars (**)
2796 Since these are not standard escape sequences of any ISO standard,
2797 the use of them with these meanings is restricted to Emacs only.
2799 (*) This form is used only in Emacs 20.7 and older versions,
2800 but newer versions can safely decode it.
2801 (**) This form is used only in Emacs 21.1 and newer versions,
2802 and older versions can't decode it.
2804 Here's a list of example usages of these composition escape
2805 sequences (categorized by `enum composition_method').
2807 COMPOSITION_RELATIVE:
2808 ESC 0 CHAR [ CHAR ] ESC 1
2809 COMPOSITION_WITH_RULE:
2810 ESC 2 CHAR [ RULE CHAR ] ESC 1
2811 COMPOSITION_WITH_ALTCHARS:
2812 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
2813 COMPOSITION_WITH_RULE_ALTCHARS:
2814 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
2816 static enum iso_code_class_type iso_code_class
[256];
2818 #define SAFE_CHARSET_P(coding, id) \
2819 ((id) <= (coding)->max_charset_id \
2820 && (coding)->safe_charsets[id] != 255)
2823 setup_iso_safe_charsets (Lisp_Object attrs
)
2825 Lisp_Object charset_list
, safe_charsets
;
2826 Lisp_Object request
;
2827 Lisp_Object reg_usage
;
2829 EMACS_INT reg94
, reg96
;
2830 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
2833 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
2834 if ((flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
2835 && ! EQ (charset_list
, Viso_2022_charset_list
))
2837 charset_list
= Viso_2022_charset_list
;
2838 ASET (attrs
, coding_attr_charset_list
, charset_list
);
2839 ASET (attrs
, coding_attr_safe_charsets
, Qnil
);
2842 if (STRINGP (AREF (attrs
, coding_attr_safe_charsets
)))
2846 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
2848 int id
= XINT (XCAR (tail
));
2849 if (max_charset_id
< id
)
2850 max_charset_id
= id
;
2853 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
2854 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
2855 request
= AREF (attrs
, coding_attr_iso_request
);
2856 reg_usage
= AREF (attrs
, coding_attr_iso_usage
);
2857 reg94
= XINT (XCAR (reg_usage
));
2858 reg96
= XINT (XCDR (reg_usage
));
2860 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
2864 struct charset
*charset
;
2867 charset
= CHARSET_FROM_ID (XINT (id
));
2868 reg
= Fcdr (Fassq (id
, request
));
2870 SSET (safe_charsets
, XINT (id
), XINT (reg
));
2871 else if (charset
->iso_chars_96
)
2874 SSET (safe_charsets
, XINT (id
), reg96
);
2879 SSET (safe_charsets
, XINT (id
), reg94
);
2882 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
2886 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2887 Return true if a text is encoded in one of ISO-2022 based coding
2891 detect_coding_iso_2022 (struct coding_system
*coding
,
2892 struct coding_detection_info
*detect_info
)
2894 const unsigned char *src
= coding
->source
, *src_base
= src
;
2895 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2896 bool multibytep
= coding
->src_multibyte
;
2897 bool single_shifting
= 0;
2900 ptrdiff_t consumed_chars
= 0;
2904 int composition_count
= -1;
2906 detect_info
->checked
|= CATEGORY_MASK_ISO
;
2908 for (i
= coding_category_iso_7
; i
<= coding_category_iso_8_else
; i
++)
2910 struct coding_system
*this = &(coding_categories
[i
]);
2911 Lisp_Object attrs
, val
;
2915 attrs
= CODING_ID_ATTRS (this->id
);
2916 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT
2917 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Viso_2022_charset_list
))
2918 setup_iso_safe_charsets (attrs
);
2919 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
2920 this->max_charset_id
= SCHARS (val
) - 1;
2921 this->safe_charsets
= SDATA (val
);
2924 /* A coding system of this category is always ASCII compatible. */
2925 src
+= coding
->head_ascii
;
2927 while (rejected
!= CATEGORY_MASK_ISO
)
2934 if (inhibit_iso_escape_detection
)
2936 single_shifting
= 0;
2938 if (c
== 'N' || c
== 'O')
2940 /* ESC <Fe> for SS2 or SS3. */
2941 single_shifting
= 1;
2942 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
2946 /* End of composition. */
2947 if (composition_count
< 0
2948 || composition_count
> MAX_COMPOSITION_COMPONENTS
)
2951 composition_count
= -1;
2952 found
|= CATEGORY_MASK_ISO
;
2954 else if (c
>= '0' && c
<= '4')
2956 /* ESC <Fp> for start/end composition. */
2957 composition_count
= 0;
2961 if (c
>= '(' && c
<= '/')
2963 /* Designation sequence for a charset of dimension 1. */
2965 if (c1
< ' ' || c1
>= 0x80
2966 || (id
= iso_charset_table
[0][c
>= ','][c1
]) < 0)
2967 /* Invalid designation sequence. Just ignore. */
2972 /* Designation sequence for a charset of dimension 2. */
2974 if (c
>= '@' && c
<= 'B')
2975 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
2976 id
= iso_charset_table
[1][0][c
];
2977 else if (c
>= '(' && c
<= '/')
2980 if (c1
< ' ' || c1
>= 0x80
2981 || (id
= iso_charset_table
[1][c
>= ','][c1
]) < 0)
2982 /* Invalid designation sequence. Just ignore. */
2986 /* Invalid designation sequence. Just ignore it. */
2991 /* Invalid escape sequence. Just ignore it. */
2995 /* We found a valid designation sequence for CHARSET. */
2996 rejected
|= CATEGORY_MASK_ISO_8BIT
;
2997 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7
],
2999 found
|= CATEGORY_MASK_ISO_7
;
3001 rejected
|= CATEGORY_MASK_ISO_7
;
3002 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_tight
],
3004 found
|= CATEGORY_MASK_ISO_7_TIGHT
;
3006 rejected
|= CATEGORY_MASK_ISO_7_TIGHT
;
3007 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_else
],
3009 found
|= CATEGORY_MASK_ISO_7_ELSE
;
3011 rejected
|= CATEGORY_MASK_ISO_7_ELSE
;
3012 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_8_else
],
3014 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3016 rejected
|= CATEGORY_MASK_ISO_8_ELSE
;
3022 /* Locking shift out/in. */
3023 if (inhibit_iso_escape_detection
)
3025 single_shifting
= 0;
3026 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3030 /* Control sequence introducer. */
3031 single_shifting
= 0;
3032 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3033 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3034 goto check_extra_latin
;
3039 if (inhibit_iso_escape_detection
)
3041 single_shifting
= 0;
3042 rejected
|= CATEGORY_MASK_ISO_7BIT
;
3043 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3044 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3046 found
|= CATEGORY_MASK_ISO_8_1
;
3047 single_shifting
= 1;
3049 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_2
])
3050 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3052 found
|= CATEGORY_MASK_ISO_8_2
;
3053 single_shifting
= 1;
3055 if (single_shifting
)
3057 goto check_extra_latin
;
3064 if (composition_count
>= 0)
3065 composition_count
++;
3066 single_shifting
= 0;
3071 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3072 found
|= CATEGORY_MASK_ISO_8_1
;
3073 /* Check the length of succeeding codes of the range
3074 0xA0..0FF. If the byte length is even, we include
3075 CATEGORY_MASK_ISO_8_2 in `found'. We can check this
3076 only when we are not single shifting. */
3077 if (! single_shifting
3078 && ! (rejected
& CATEGORY_MASK_ISO_8_2
))
3081 while (src
< src_end
)
3093 if (len
& 1 && src
< src_end
)
3095 rejected
|= CATEGORY_MASK_ISO_8_2
;
3096 if (composition_count
>= 0)
3097 composition_count
+= len
;
3101 found
|= CATEGORY_MASK_ISO_8_2
;
3102 if (composition_count
>= 0)
3103 composition_count
+= len
/ 2;
3109 if (! VECTORP (Vlatin_extra_code_table
)
3110 || NILP (AREF (Vlatin_extra_code_table
, c
)))
3112 rejected
= CATEGORY_MASK_ISO
;
3115 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3116 & CODING_ISO_FLAG_LATIN_EXTRA
)
3117 found
|= CATEGORY_MASK_ISO_8_1
;
3119 rejected
|= CATEGORY_MASK_ISO_8_1
;
3120 rejected
|= CATEGORY_MASK_ISO_8_2
;
3124 detect_info
->rejected
|= CATEGORY_MASK_ISO
;
3128 detect_info
->rejected
|= rejected
;
3129 detect_info
->found
|= (found
& ~rejected
);
3134 /* Set designation state into CODING. Set CHARS_96 to -1 if the
3135 escape sequence should be kept. */
3136 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \
3140 if (final < '0' || final >= 128 \
3141 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \
3142 || !SAFE_CHARSET_P (coding, id)) \
3144 CODING_ISO_DESIGNATION (coding, reg) = -2; \
3148 prev = CODING_ISO_DESIGNATION (coding, reg); \
3149 if (id == charset_jisx0201_roman) \
3151 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
3152 id = charset_ascii; \
3154 else if (id == charset_jisx0208_1978) \
3156 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
3157 id = charset_jisx0208; \
3159 CODING_ISO_DESIGNATION (coding, reg) = id; \
3160 /* If there was an invalid designation to REG previously, and this \
3161 designation is ASCII to REG, we should keep this designation \
3163 if (prev == -2 && id == charset_ascii) \
3168 /* Handle these composition sequence (ALT: alternate char):
3170 (1) relative composition: ESC 0 CHAR ... ESC 1
3171 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3172 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1
3173 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1
3175 When the start sequence (ESC 0/2/3/4) is found, this annotation
3178 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ]
3180 Then, upon reading CHAR or RULE (one or two bytes), these codes are
3181 produced until the end sequence (ESC 1) is found:
3184 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
3185 (3) ALT ... ALT -1 -1 CHAR ... CHAR
3186 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR
3188 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the
3189 annotation header is updated as below:
3191 (1) LENGTH: unchanged, NCHARS: number of CHARs
3192 (2) LENGTH: unchanged, NCHARS: number of CHARs
3193 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs
3194 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs
3196 If an error is found while composing, the annotation header is
3199 [ ESC '0'/'2'/'3'/'4' -2 0 ]
3201 and the sequence [ -2 DECODED-RULE ] is changed to the original
3202 byte sequence as below:
3203 o the original byte sequence is B: [ B -1 ]
3204 o the original byte sequence is B1 B2: [ B1 B2 ]
3205 and the sequence [ -1 -1 ] is changed to the original byte
3210 /* Decode a composition rule C1 and maybe one more byte from the
3211 source, and set RULE to the encoded composition rule. If the rule
3212 is invalid, goto invalid_code. */
3214 #define DECODE_COMPOSITION_RULE(rule) \
3218 goto invalid_code; \
3219 if (rule < 81) /* old format (before ver.21) */ \
3221 int gref = (rule) / 9; \
3222 int nref = (rule) % 9; \
3223 if (gref == 4) gref = 10; \
3224 if (nref == 4) nref = 10; \
3225 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
3227 else /* new format (after ver.21) */ \
3231 ONE_MORE_BYTE (b); \
3232 if (! COMPOSITION_ENCODE_RULE_VALID (rule - 81, b - 32)) \
3233 goto invalid_code; \
3234 rule = COMPOSITION_ENCODE_RULE (rule - 81, b - 32); \
3235 rule += 0x100; /* Distinguish it from the old format. */ \
3239 #define ENCODE_COMPOSITION_RULE(rule) \
3241 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \
3243 if (rule < 0x100) /* old format */ \
3245 if (gref == 10) gref = 4; \
3246 if (nref == 10) nref = 4; \
3247 charbuf[idx] = 32 + gref * 9 + nref; \
3248 charbuf[idx + 1] = -1; \
3251 else /* new format */ \
3253 charbuf[idx] = 32 + 81 + gref; \
3254 charbuf[idx + 1] = 32 + nref; \
3259 /* Finish the current composition as invalid. */
3262 finish_composition (int *charbuf
, struct composition_status
*cmp_status
)
3264 int idx
= - cmp_status
->length
;
3267 /* Recover the original ESC sequence */
3268 charbuf
[idx
++] = ISO_CODE_ESC
;
3269 charbuf
[idx
++] = (cmp_status
->method
== COMPOSITION_RELATIVE
? '0'
3270 : cmp_status
->method
== COMPOSITION_WITH_RULE
? '2'
3271 : cmp_status
->method
== COMPOSITION_WITH_ALTCHARS
? '3'
3272 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */
3274 charbuf
[idx
++] = -2;
3276 charbuf
[idx
++] = -1;
3277 new_chars
= cmp_status
->nchars
;
3278 if (cmp_status
->method
>= COMPOSITION_WITH_RULE
)
3279 for (; idx
< 0; idx
++)
3281 int elt
= charbuf
[idx
];
3285 ENCODE_COMPOSITION_RULE (charbuf
[idx
+ 1]);
3290 charbuf
[idx
++] = ISO_CODE_ESC
;
3295 cmp_status
->state
= COMPOSING_NO
;
3299 /* If characters are under composition, finish the composition. */
3300 #define MAYBE_FINISH_COMPOSITION() \
3302 if (cmp_status->state != COMPOSING_NO) \
3303 char_offset += finish_composition (charbuf, cmp_status); \
3306 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
3308 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
3309 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3310 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1
3311 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1
3313 Produce this annotation sequence now:
3315 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ]
3318 #define DECODE_COMPOSITION_START(c1) \
3321 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \
3322 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3323 || (cmp_status->state == COMPOSING_COMPONENT_RULE \
3324 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \
3328 cmp_status->state = COMPOSING_CHAR; \
3329 cmp_status->length += 2; \
3333 MAYBE_FINISH_COMPOSITION (); \
3334 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \
3335 : c1 == '2' ? COMPOSITION_WITH_RULE \
3336 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
3337 : COMPOSITION_WITH_RULE_ALTCHARS); \
3339 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \
3340 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
3341 cmp_status->length = MAX_ANNOTATION_LENGTH; \
3342 cmp_status->nchars = cmp_status->ncomps = 0; \
3343 coding->annotated = 1; \
3348 /* Handle composition end sequence ESC 1. */
3350 #define DECODE_COMPOSITION_END() \
3352 if (cmp_status->nchars == 0 \
3353 || ((cmp_status->state == COMPOSING_CHAR) \
3354 == (cmp_status->method == COMPOSITION_WITH_RULE))) \
3356 MAYBE_FINISH_COMPOSITION (); \
3357 goto invalid_code; \
3359 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3360 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \
3361 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \
3362 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \
3363 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \
3364 char_offset += cmp_status->nchars; \
3365 cmp_status->state = COMPOSING_NO; \
3368 /* Store a composition rule RULE in charbuf, and update cmp_status. */
3370 #define STORE_COMPOSITION_RULE(rule) \
3373 *charbuf++ = rule; \
3374 cmp_status->length += 2; \
3375 cmp_status->state--; \
3378 /* Store a composed char or a component char C in charbuf, and update
3381 #define STORE_COMPOSITION_CHAR(c) \
3384 cmp_status->length++; \
3385 if (cmp_status->state == COMPOSING_CHAR) \
3386 cmp_status->nchars++; \
3388 cmp_status->ncomps++; \
3389 if (cmp_status->method == COMPOSITION_WITH_RULE \
3390 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \
3391 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \
3392 cmp_status->state++; \
3396 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3399 decode_coding_iso_2022 (struct coding_system
*coding
)
3401 const unsigned char *src
= coding
->source
+ coding
->consumed
;
3402 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3403 const unsigned char *src_base
;
3404 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
3405 /* We may produce two annotations (charset and composition) in one
3406 loop and one more charset annotation at the end. */
3408 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
3409 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
3410 bool multibytep
= coding
->src_multibyte
;
3411 /* Charsets invoked to graphic plane 0 and 1 respectively. */
3412 int charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3413 int charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3414 int charset_id_2
, charset_id_3
;
3415 struct charset
*charset
;
3417 struct composition_status
*cmp_status
= CODING_ISO_CMP_STATUS (coding
);
3418 Lisp_Object attrs
= CODING_ID_ATTRS (coding
->id
);
3419 ptrdiff_t char_offset
= coding
->produced_char
;
3420 ptrdiff_t last_offset
= char_offset
;
3421 int last_id
= charset_ascii
;
3423 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
3424 int byte_after_cr
= -1;
3427 setup_iso_safe_charsets (attrs
);
3428 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
3430 if (cmp_status
->state
!= COMPOSING_NO
)
3432 if (charbuf_end
- charbuf
< cmp_status
->length
)
3434 for (i
= 0; i
< cmp_status
->length
; i
++)
3435 *charbuf
++ = cmp_status
->carryover
[i
];
3436 coding
->annotated
= 1;
3444 consumed_chars_base
= consumed_chars
;
3446 if (charbuf
>= charbuf_end
)
3448 if (byte_after_cr
>= 0)
3453 if (byte_after_cr
>= 0)
3454 c1
= byte_after_cr
, byte_after_cr
= -1;
3460 if (CODING_ISO_EXTSEGMENT_LEN (coding
) > 0)
3462 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3464 CODING_ISO_EXTSEGMENT_LEN (coding
)--;
3468 if (CODING_ISO_EMBEDDED_UTF_8 (coding
))
3470 if (c1
== ISO_CODE_ESC
)
3472 if (src
+ 1 >= src_end
)
3473 goto no_more_source
;
3474 *charbuf
++ = ISO_CODE_ESC
;
3476 if (src
[0] == '%' && src
[1] == '@')
3479 consumed_chars
+= 2;
3481 /* We are sure charbuf can contain two more chars. */
3484 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
3489 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3495 if ((cmp_status
->state
== COMPOSING_RULE
3496 || cmp_status
->state
== COMPOSING_COMPONENT_RULE
)
3497 && c1
!= ISO_CODE_ESC
)
3501 DECODE_COMPOSITION_RULE (rule
);
3502 STORE_COMPOSITION_RULE (rule
);
3506 /* We produce at most one character. */
3507 switch (iso_code_class
[c1
])
3509 case ISO_0x20_or_0x7F
:
3510 if (charset_id_0
< 0
3511 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0
)))
3512 /* This is SPACE or DEL. */
3513 charset
= CHARSET_FROM_ID (charset_ascii
);
3515 charset
= CHARSET_FROM_ID (charset_id_0
);
3518 case ISO_graphic_plane_0
:
3519 if (charset_id_0
< 0)
3520 charset
= CHARSET_FROM_ID (charset_ascii
);
3522 charset
= CHARSET_FROM_ID (charset_id_0
);
3525 case ISO_0xA0_or_0xFF
:
3526 if (charset_id_1
< 0
3527 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1
))
3528 || CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3530 /* This is a graphic character, we fall down ... */
3532 case ISO_graphic_plane_1
:
3533 if (charset_id_1
< 0)
3535 charset
= CHARSET_FROM_ID (charset_id_1
);
3539 if (eol_dos
&& c1
== '\r')
3540 ONE_MORE_BYTE (byte_after_cr
);
3541 MAYBE_FINISH_COMPOSITION ();
3542 charset
= CHARSET_FROM_ID (charset_ascii
);
3549 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3550 || CODING_ISO_DESIGNATION (coding
, 1) < 0)
3552 CODING_ISO_INVOCATION (coding
, 0) = 1;
3553 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3557 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
))
3559 CODING_ISO_INVOCATION (coding
, 0) = 0;
3560 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3563 case ISO_single_shift_2_7
:
3564 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
))
3566 case ISO_single_shift_2
:
3567 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3569 /* SS2 is handled as an escape sequence of ESC 'N' */
3571 goto label_escape_sequence
;
3573 case ISO_single_shift_3
:
3574 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3576 /* SS2 is handled as an escape sequence of ESC 'O' */
3578 goto label_escape_sequence
;
3580 case ISO_control_sequence_introducer
:
3581 /* CSI is handled as an escape sequence of ESC '[' ... */
3583 goto label_escape_sequence
;
3587 label_escape_sequence
:
3588 /* Escape sequences handled here are invocation,
3589 designation, direction specification, and character
3590 composition specification. */
3593 case '&': /* revision of following character set */
3595 if (!(c1
>= '@' && c1
<= '~'))
3598 if (c1
!= ISO_CODE_ESC
)
3601 goto label_escape_sequence
;
3603 case '$': /* designation of 2-byte character set */
3604 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3610 if (c1
>= '@' && c1
<= 'B')
3611 { /* designation of JISX0208.1978, GB2312.1980,
3613 reg
= 0, chars96
= 0;
3615 else if (c1
>= 0x28 && c1
<= 0x2B)
3616 { /* designation of DIMENSION2_CHARS94 character set */
3617 reg
= c1
- 0x28, chars96
= 0;
3620 else if (c1
>= 0x2C && c1
<= 0x2F)
3621 { /* designation of DIMENSION2_CHARS96 character set */
3622 reg
= c1
- 0x2C, chars96
= 1;
3627 DECODE_DESIGNATION (reg
, 2, chars96
, c1
);
3628 /* We must update these variables now. */
3630 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3632 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3638 case 'n': /* invocation of locking-shift-2 */
3639 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3640 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3642 CODING_ISO_INVOCATION (coding
, 0) = 2;
3643 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3646 case 'o': /* invocation of locking-shift-3 */
3647 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3648 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3650 CODING_ISO_INVOCATION (coding
, 0) = 3;
3651 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3654 case 'N': /* invocation of single-shift-2 */
3655 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3656 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3658 charset_id_2
= CODING_ISO_DESIGNATION (coding
, 2);
3659 if (charset_id_2
< 0)
3660 charset
= CHARSET_FROM_ID (charset_ascii
);
3662 charset
= CHARSET_FROM_ID (charset_id_2
);
3664 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
3668 case 'O': /* invocation of single-shift-3 */
3669 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3670 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3672 charset_id_3
= CODING_ISO_DESIGNATION (coding
, 3);
3673 if (charset_id_3
< 0)
3674 charset
= CHARSET_FROM_ID (charset_ascii
);
3676 charset
= CHARSET_FROM_ID (charset_id_3
);
3678 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
3682 case '0': case '2': case '3': case '4': /* start composition */
3683 if (! (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
))
3685 if (last_id
!= charset_ascii
)
3687 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3688 last_id
= charset_ascii
;
3689 last_offset
= char_offset
;
3691 DECODE_COMPOSITION_START (c1
);
3694 case '1': /* end composition */
3695 if (cmp_status
->state
== COMPOSING_NO
)
3697 DECODE_COMPOSITION_END ();
3700 case '[': /* specification of direction */
3701 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DIRECTION
))
3703 /* For the moment, nested direction is not supported.
3704 So, `coding->mode & CODING_MODE_DIRECTION' zero means
3705 left-to-right, and nonzero means right-to-left. */
3709 case ']': /* end of the current direction */
3710 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3712 case '0': /* end of the current direction */
3713 case '1': /* start of left-to-right direction */
3716 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3721 case '2': /* start of right-to-left direction */
3724 coding
->mode
|= CODING_MODE_DIRECTION
;
3738 /* CTEXT extended segment:
3739 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
3740 We keep these bytes as is for the moment.
3741 They may be decoded by post-read-conversion. */
3745 ONE_MORE_BYTE (dim
);
3746 if (dim
< '0' || dim
> '4')
3754 size
= ((M
- 128) * 128) + (L
- 128);
3755 if (charbuf
+ 6 > charbuf_end
)
3757 *charbuf
++ = ISO_CODE_ESC
;
3761 *charbuf
++ = BYTE8_TO_CHAR (M
);
3762 *charbuf
++ = BYTE8_TO_CHAR (L
);
3763 CODING_ISO_EXTSEGMENT_LEN (coding
) = size
;
3767 /* XFree86 extension for embedding UTF-8 in CTEXT:
3768 ESC % G --UTF-8-BYTES-- ESC % @
3769 We keep these bytes as is for the moment.
3770 They may be decoded by post-read-conversion. */
3771 if (charbuf
+ 3 > charbuf_end
)
3773 *charbuf
++ = ISO_CODE_ESC
;
3776 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 1;
3784 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3789 if (c1
>= 0x28 && c1
<= 0x2B)
3790 { /* designation of DIMENSION1_CHARS94 character set */
3791 reg
= c1
- 0x28, chars96
= 0;
3794 else if (c1
>= 0x2C && c1
<= 0x2F)
3795 { /* designation of DIMENSION1_CHARS96 character set */
3796 reg
= c1
- 0x2C, chars96
= 1;
3801 DECODE_DESIGNATION (reg
, 1, chars96
, c1
);
3802 /* We must update these variables now. */
3804 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3806 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3818 if (cmp_status
->state
== COMPOSING_NO
3819 && charset
->id
!= charset_ascii
3820 && last_id
!= charset
->id
)
3822 if (last_id
!= charset_ascii
)
3823 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3824 last_id
= charset
->id
;
3825 last_offset
= char_offset
;
3828 /* Now we know CHARSET and 1st position code C1 of a character.
3829 Produce a decoded character while getting 2nd and 3rd
3830 position codes C2, C3 if necessary. */
3831 if (CHARSET_DIMENSION (charset
) > 1)
3834 if (c2
< 0x20 || (c2
>= 0x80 && c2
< 0xA0)
3835 || ((c1
& 0x80) != (c2
& 0x80)))
3836 /* C2 is not in a valid range. */
3838 if (CHARSET_DIMENSION (charset
) == 2)
3839 c1
= (c1
<< 8) | c2
;
3843 if (c3
< 0x20 || (c3
>= 0x80 && c3
< 0xA0)
3844 || ((c1
& 0x80) != (c3
& 0x80)))
3845 /* C3 is not in a valid range. */
3847 c1
= (c1
<< 16) | (c2
<< 8) | c2
;
3851 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c1
, c
);
3854 MAYBE_FINISH_COMPOSITION ();
3855 for (; src_base
< src
; src_base
++, char_offset
++)
3857 if (ASCII_BYTE_P (*src_base
))
3858 *charbuf
++ = *src_base
;
3860 *charbuf
++ = BYTE8_TO_CHAR (*src_base
);
3863 else if (cmp_status
->state
== COMPOSING_NO
)
3868 else if ((cmp_status
->state
== COMPOSING_CHAR
3869 ? cmp_status
->nchars
3870 : cmp_status
->ncomps
)
3871 >= MAX_COMPOSITION_COMPONENTS
)
3873 /* Too long composition. */
3874 MAYBE_FINISH_COMPOSITION ();
3879 STORE_COMPOSITION_CHAR (c
);
3883 MAYBE_FINISH_COMPOSITION ();
3885 consumed_chars
= consumed_chars_base
;
3887 *charbuf
++ = c
< 0 ? -c
: ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
3897 if (cmp_status
->state
!= COMPOSING_NO
)
3899 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
3900 MAYBE_FINISH_COMPOSITION ();
3903 charbuf
-= cmp_status
->length
;
3904 for (i
= 0; i
< cmp_status
->length
; i
++)
3905 cmp_status
->carryover
[i
] = charbuf
[i
];
3908 else if (last_id
!= charset_ascii
)
3909 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3910 coding
->consumed_char
+= consumed_chars_base
;
3911 coding
->consumed
= src_base
- coding
->source
;
3912 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
3916 /* ISO2022 encoding stuff. */
3919 It is not enough to say just "ISO2022" on encoding, we have to
3920 specify more details. In Emacs, each coding system of ISO2022
3921 variant has the following specifications:
3922 1. Initial designation to G0 thru G3.
3923 2. Allows short-form designation?
3924 3. ASCII should be designated to G0 before control characters?
3925 4. ASCII should be designated to G0 at end of line?
3926 5. 7-bit environment or 8-bit environment?
3927 6. Use locking-shift?
3928 7. Use Single-shift?
3929 And the following two are only for Japanese:
3930 8. Use ASCII in place of JIS0201-1976-Roman?
3931 9. Use JISX0208-1983 in place of JISX0208-1978?
3932 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits
3933 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more
3937 /* Produce codes (escape sequence) for designating CHARSET to graphic
3938 register REG at DST, and increment DST. If <final-char> of CHARSET is
3939 '@', 'A', or 'B' and the coding system CODING allows, produce
3940 designation sequence of short-form. */
3942 #define ENCODE_DESIGNATION(charset, reg, coding) \
3944 unsigned char final_char = CHARSET_ISO_FINAL (charset); \
3945 const char *intermediate_char_94 = "()*+"; \
3946 const char *intermediate_char_96 = ",-./"; \
3947 int revision = -1; \
3949 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \
3950 revision = CHARSET_ISO_REVISION (charset); \
3952 if (revision >= 0) \
3954 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \
3955 EMIT_ONE_BYTE ('@' + revision); \
3957 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \
3958 if (CHARSET_DIMENSION (charset) == 1) \
3961 if (! CHARSET_ISO_CHARS_96 (charset)) \
3962 b = intermediate_char_94[reg]; \
3964 b = intermediate_char_96[reg]; \
3965 EMIT_ONE_ASCII_BYTE (b); \
3969 EMIT_ONE_ASCII_BYTE ('$'); \
3970 if (! CHARSET_ISO_CHARS_96 (charset)) \
3972 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \
3974 || final_char < '@' || final_char > 'B') \
3975 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \
3978 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \
3980 EMIT_ONE_ASCII_BYTE (final_char); \
3982 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \
3986 /* The following two macros produce codes (control character or escape
3987 sequence) for ISO2022 single-shift functions (single-shift-2 and
3990 #define ENCODE_SINGLE_SHIFT_2 \
3992 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
3993 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \
3995 EMIT_ONE_BYTE (ISO_CODE_SS2); \
3996 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4000 #define ENCODE_SINGLE_SHIFT_3 \
4002 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4003 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \
4005 EMIT_ONE_BYTE (ISO_CODE_SS3); \
4006 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4010 /* The following four macros produce codes (control character or
4011 escape sequence) for ISO2022 locking-shift functions (shift-in,
4012 shift-out, locking-shift-2, and locking-shift-3). */
4014 #define ENCODE_SHIFT_IN \
4016 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \
4017 CODING_ISO_INVOCATION (coding, 0) = 0; \
4021 #define ENCODE_SHIFT_OUT \
4023 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \
4024 CODING_ISO_INVOCATION (coding, 0) = 1; \
4028 #define ENCODE_LOCKING_SHIFT_2 \
4030 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4031 CODING_ISO_INVOCATION (coding, 0) = 2; \
4035 #define ENCODE_LOCKING_SHIFT_3 \
4037 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4038 CODING_ISO_INVOCATION (coding, 0) = 3; \
4042 /* Produce codes for a DIMENSION1 character whose character set is
4043 CHARSET and whose position-code is C1. Designation and invocation
4044 sequences are also produced in advance if necessary. */
4046 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
4048 int id = CHARSET_ID (charset); \
4050 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
4051 && id == charset_ascii) \
4053 id = charset_jisx0201_roman; \
4054 charset = CHARSET_FROM_ID (id); \
4057 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4059 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4060 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4062 EMIT_ONE_BYTE (c1 | 0x80); \
4063 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4066 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4068 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4071 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4073 EMIT_ONE_BYTE (c1 | 0x80); \
4077 /* Since CHARSET is not yet invoked to any graphic planes, we \
4078 must invoke it, or, at first, designate it to some graphic \
4079 register. Then repeat the loop to actually produce the \
4081 dst = encode_invocation_designation (charset, coding, dst, \
4086 /* Produce codes for a DIMENSION2 character whose character set is
4087 CHARSET and whose position-codes are C1 and C2. Designation and
4088 invocation codes are also produced in advance if necessary. */
4090 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
4092 int id = CHARSET_ID (charset); \
4094 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
4095 && id == charset_jisx0208) \
4097 id = charset_jisx0208_1978; \
4098 charset = CHARSET_FROM_ID (id); \
4101 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4103 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4104 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4106 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4107 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4110 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4112 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4115 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4117 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4121 /* Since CHARSET is not yet invoked to any graphic planes, we \
4122 must invoke it, or, at first, designate it to some graphic \
4123 register. Then repeat the loop to actually produce the \
4125 dst = encode_invocation_designation (charset, coding, dst, \
4130 #define ENCODE_ISO_CHARACTER(charset, c) \
4133 CODING_ENCODE_CHAR (coding, dst, dst_end, (charset), (c), code); \
4135 if (CHARSET_DIMENSION (charset) == 1) \
4136 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \
4138 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \
4142 /* Produce designation and invocation codes at a place pointed by DST
4143 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4146 static unsigned char *
4147 encode_invocation_designation (struct charset
*charset
,
4148 struct coding_system
*coding
,
4149 unsigned char *dst
, ptrdiff_t *p_nchars
)
4151 bool multibytep
= coding
->dst_multibyte
;
4152 ptrdiff_t produced_chars
= *p_nchars
;
4153 int reg
; /* graphic register number */
4154 int id
= CHARSET_ID (charset
);
4156 /* At first, check designations. */
4157 for (reg
= 0; reg
< 4; reg
++)
4158 if (id
== CODING_ISO_DESIGNATION (coding
, reg
))
4163 /* CHARSET is not yet designated to any graphic registers. */
4164 /* At first check the requested designation. */
4165 reg
= CODING_ISO_REQUEST (coding
, id
);
4167 /* Since CHARSET requests no special designation, designate it
4168 to graphic register 0. */
4171 ENCODE_DESIGNATION (charset
, reg
, coding
);
4174 if (CODING_ISO_INVOCATION (coding
, 0) != reg
4175 && CODING_ISO_INVOCATION (coding
, 1) != reg
)
4177 /* Since the graphic register REG is not invoked to any graphic
4178 planes, invoke it to graphic plane 0. */
4181 case 0: /* graphic register 0 */
4185 case 1: /* graphic register 1 */
4189 case 2: /* graphic register 2 */
4190 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4191 ENCODE_SINGLE_SHIFT_2
;
4193 ENCODE_LOCKING_SHIFT_2
;
4196 case 3: /* graphic register 3 */
4197 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4198 ENCODE_SINGLE_SHIFT_3
;
4200 ENCODE_LOCKING_SHIFT_3
;
4205 *p_nchars
= produced_chars
;
4210 /* Produce codes for designation and invocation to reset the graphic
4211 planes and registers to initial state. */
4212 #define ENCODE_RESET_PLANE_AND_REGISTER() \
4215 struct charset *charset; \
4217 if (CODING_ISO_INVOCATION (coding, 0) != 0) \
4219 for (reg = 0; reg < 4; reg++) \
4220 if (CODING_ISO_INITIAL (coding, reg) >= 0 \
4221 && (CODING_ISO_DESIGNATION (coding, reg) \
4222 != CODING_ISO_INITIAL (coding, reg))) \
4224 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \
4225 ENCODE_DESIGNATION (charset, reg, coding); \
4230 /* Produce designation sequences of charsets in the line started from
4231 CHARBUF to a place pointed by DST, and return the number of
4232 produced bytes. DST should not directly point a buffer text area
4233 which may be relocated by char_charset call.
4235 If the current block ends before any end-of-line, we may fail to
4236 find all the necessary designations. */
4239 encode_designation_at_bol (struct coding_system
*coding
,
4240 int *charbuf
, int *charbuf_end
,
4243 unsigned char *orig
= dst
;
4244 struct charset
*charset
;
4245 /* Table of charsets to be designated to each graphic register. */
4247 int c
, found
= 0, reg
;
4248 ptrdiff_t produced_chars
= 0;
4249 bool multibytep
= coding
->dst_multibyte
;
4251 Lisp_Object charset_list
;
4253 attrs
= CODING_ID_ATTRS (coding
->id
);
4254 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4255 if (EQ (charset_list
, Qiso_2022
))
4256 charset_list
= Viso_2022_charset_list
;
4258 for (reg
= 0; reg
< 4; reg
++)
4261 while (charbuf
< charbuf_end
&& found
< 4)
4268 charset
= char_charset (c
, charset_list
, NULL
);
4269 id
= CHARSET_ID (charset
);
4270 reg
= CODING_ISO_REQUEST (coding
, id
);
4271 if (reg
>= 0 && r
[reg
] < 0)
4280 for (reg
= 0; reg
< 4; reg
++)
4282 && CODING_ISO_DESIGNATION (coding
, reg
) != r
[reg
])
4283 ENCODE_DESIGNATION (CHARSET_FROM_ID (r
[reg
]), reg
, coding
);
4289 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
4292 encode_coding_iso_2022 (struct coding_system
*coding
)
4294 bool multibytep
= coding
->dst_multibyte
;
4295 int *charbuf
= coding
->charbuf
;
4296 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4297 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4298 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4300 bool bol_designation
4301 = (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
4302 && CODING_ISO_BOL (coding
));
4303 ptrdiff_t produced_chars
= 0;
4304 Lisp_Object attrs
, eol_type
, charset_list
;
4305 bool ascii_compatible
;
4307 int preferred_charset_id
= -1;
4309 CODING_GET_INFO (coding
, attrs
, charset_list
);
4310 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
4311 if (VECTORP (eol_type
))
4314 setup_iso_safe_charsets (attrs
);
4315 /* Charset list may have been changed. */
4316 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4317 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
4320 = (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
))
4321 && ! (CODING_ISO_FLAGS (coding
) & (CODING_ISO_FLAG_DESIGNATION
4322 | CODING_ISO_FLAG_LOCKING_SHIFT
)));
4324 while (charbuf
< charbuf_end
)
4326 ASSURE_DESTINATION (safe_room
);
4328 if (bol_designation
)
4330 /* We have to produce designation sequences if any now. */
4331 unsigned char desig_buf
[16];
4335 charset_map_loaded
= 0;
4336 nbytes
= encode_designation_at_bol (coding
, charbuf
, charbuf_end
,
4338 if (charset_map_loaded
4339 && (offset
= coding_change_destination (coding
)))
4344 memcpy (dst
, desig_buf
, nbytes
);
4346 /* We are sure that designation sequences are all ASCII bytes. */
4347 produced_chars
+= nbytes
;
4348 bol_designation
= 0;
4349 ASSURE_DESTINATION (safe_room
);
4356 /* Handle an annotation. */
4359 case CODING_ANNOTATE_COMPOSITION_MASK
:
4360 /* Not yet implemented. */
4362 case CODING_ANNOTATE_CHARSET_MASK
:
4363 preferred_charset_id
= charbuf
[2];
4364 if (preferred_charset_id
>= 0
4365 && NILP (Fmemq (make_number (preferred_charset_id
),
4367 preferred_charset_id
= -1;
4376 /* Now encode the character C. */
4377 if (c
< 0x20 || c
== 0x7F)
4380 || (c
== '\r' && EQ (eol_type
, Qmac
)))
4382 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4383 ENCODE_RESET_PLANE_AND_REGISTER ();
4384 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_INIT_AT_BOL
)
4388 for (i
= 0; i
< 4; i
++)
4389 CODING_ISO_DESIGNATION (coding
, i
)
4390 = CODING_ISO_INITIAL (coding
, i
);
4392 bol_designation
= ((CODING_ISO_FLAGS (coding
)
4393 & CODING_ISO_FLAG_DESIGNATE_AT_BOL
)
4396 else if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_CNTL
)
4397 ENCODE_RESET_PLANE_AND_REGISTER ();
4398 EMIT_ONE_ASCII_BYTE (c
);
4400 else if (ASCII_CHAR_P (c
))
4402 if (ascii_compatible
)
4403 EMIT_ONE_ASCII_BYTE (c
);
4406 struct charset
*charset
= CHARSET_FROM_ID (charset_ascii
);
4407 ENCODE_ISO_CHARACTER (charset
, c
);
4410 else if (CHAR_BYTE8_P (c
))
4412 c
= CHAR_TO_BYTE8 (c
);
4417 struct charset
*charset
;
4419 if (preferred_charset_id
>= 0)
4423 charset
= CHARSET_FROM_ID (preferred_charset_id
);
4424 CODING_CHAR_CHARSET_P (coding
, dst
, dst_end
, c
, charset
, result
);
4426 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4430 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4434 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4436 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4437 charset
= CHARSET_FROM_ID (charset_ascii
);
4441 c
= coding
->default_char
;
4442 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4443 charset_list
, NULL
, charset
);
4446 ENCODE_ISO_CHARACTER (charset
, c
);
4450 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4451 && CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4453 ASSURE_DESTINATION (safe_room
);
4454 ENCODE_RESET_PLANE_AND_REGISTER ();
4456 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4457 CODING_ISO_BOL (coding
) = bol_designation
;
4458 coding
->produced_char
+= produced_chars
;
4459 coding
->produced
= dst
- coding
->destination
;
4464 /*** 8,9. SJIS and BIG5 handlers ***/
4466 /* Although SJIS and BIG5 are not ISO's coding system, they are used
4467 quite widely. So, for the moment, Emacs supports them in the bare
4468 C code. But, in the future, they may be supported only by CCL. */
4470 /* SJIS is a coding system encoding three character sets: ASCII, right
4471 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
4472 as is. A character of charset katakana-jisx0201 is encoded by
4473 "position-code + 0x80". A character of charset japanese-jisx0208
4474 is encoded in 2-byte but two position-codes are divided and shifted
4475 so that it fit in the range below.
4477 --- CODE RANGE of SJIS ---
4478 (character set) (range)
4480 KATAKANA-JISX0201 0xA0 .. 0xDF
4481 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
4482 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
4483 -------------------------------
4487 /* BIG5 is a coding system encoding two character sets: ASCII and
4488 Big5. An ASCII character is encoded as is. Big5 is a two-byte
4489 character set and is encoded in two-byte.
4491 --- CODE RANGE of BIG5 ---
4492 (character set) (range)
4494 Big5 (1st byte) 0xA1 .. 0xFE
4495 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
4496 --------------------------
4500 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4501 Return true if a text is encoded in SJIS. */
4504 detect_coding_sjis (struct coding_system
*coding
,
4505 struct coding_detection_info
*detect_info
)
4507 const unsigned char *src
= coding
->source
, *src_base
;
4508 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4509 bool multibytep
= coding
->src_multibyte
;
4510 ptrdiff_t consumed_chars
= 0;
4513 Lisp_Object attrs
, charset_list
;
4514 int max_first_byte_of_2_byte_code
;
4516 CODING_GET_INFO (coding
, attrs
, charset_list
);
4517 max_first_byte_of_2_byte_code
4518 = (XINT (Flength (charset_list
)) > 3 ? 0xFC : 0xEF);
4520 detect_info
->checked
|= CATEGORY_MASK_SJIS
;
4521 /* A coding system of this category is always ASCII compatible. */
4522 src
+= coding
->head_ascii
;
4530 if ((c
>= 0x81 && c
<= 0x9F)
4531 || (c
>= 0xE0 && c
<= max_first_byte_of_2_byte_code
))
4534 if (c
< 0x40 || c
== 0x7F || c
> 0xFC)
4536 found
= CATEGORY_MASK_SJIS
;
4538 else if (c
>= 0xA0 && c
< 0xE0)
4539 found
= CATEGORY_MASK_SJIS
;
4543 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4547 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4549 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4552 detect_info
->found
|= found
;
4556 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4557 Return true if a text is encoded in BIG5. */
4560 detect_coding_big5 (struct coding_system
*coding
,
4561 struct coding_detection_info
*detect_info
)
4563 const unsigned char *src
= coding
->source
, *src_base
;
4564 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4565 bool multibytep
= coding
->src_multibyte
;
4566 ptrdiff_t consumed_chars
= 0;
4570 detect_info
->checked
|= CATEGORY_MASK_BIG5
;
4571 /* A coding system of this category is always ASCII compatible. */
4572 src
+= coding
->head_ascii
;
4583 if (c
< 0x40 || (c
>= 0x7F && c
<= 0xA0))
4585 found
= CATEGORY_MASK_BIG5
;
4590 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4594 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4596 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4599 detect_info
->found
|= found
;
4603 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
4606 decode_coding_sjis (struct coding_system
*coding
)
4608 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4609 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4610 const unsigned char *src_base
;
4611 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4612 /* We may produce one charset annotation in one loop and one more at
4615 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4616 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
4617 bool multibytep
= coding
->src_multibyte
;
4618 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
4619 struct charset
*charset_kanji2
;
4620 Lisp_Object attrs
, charset_list
, val
;
4621 ptrdiff_t char_offset
= coding
->produced_char
;
4622 ptrdiff_t last_offset
= char_offset
;
4623 int last_id
= charset_ascii
;
4625 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4626 int byte_after_cr
= -1;
4628 CODING_GET_INFO (coding
, attrs
, charset_list
);
4631 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4632 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4633 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4634 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4639 struct charset
*charset
;
4642 consumed_chars_base
= consumed_chars
;
4644 if (charbuf
>= charbuf_end
)
4646 if (byte_after_cr
>= 0)
4651 if (byte_after_cr
>= 0)
4652 c
= byte_after_cr
, byte_after_cr
= -1;
4659 if (eol_dos
&& c
== '\r')
4660 ONE_MORE_BYTE (byte_after_cr
);
4661 charset
= charset_roman
;
4663 else if (c
== 0x80 || c
== 0xA0)
4665 else if (c
>= 0xA1 && c
<= 0xDF)
4667 /* SJIS -> JISX0201-Kana */
4669 charset
= charset_kana
;
4673 /* SJIS -> JISX0208 */
4675 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4679 charset
= charset_kanji
;
4681 else if (c
<= 0xFC && charset_kanji2
)
4683 /* SJIS -> JISX0213-2 */
4685 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4689 charset
= charset_kanji2
;
4693 if (charset
->id
!= charset_ascii
4694 && last_id
!= charset
->id
)
4696 if (last_id
!= charset_ascii
)
4697 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4698 last_id
= charset
->id
;
4699 last_offset
= char_offset
;
4701 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4708 consumed_chars
= consumed_chars_base
;
4710 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4716 if (last_id
!= charset_ascii
)
4717 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4718 coding
->consumed_char
+= consumed_chars_base
;
4719 coding
->consumed
= src_base
- coding
->source
;
4720 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4724 decode_coding_big5 (struct coding_system
*coding
)
4726 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4727 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4728 const unsigned char *src_base
;
4729 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4730 /* We may produce one charset annotation in one loop and one more at
4733 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4734 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
4735 bool multibytep
= coding
->src_multibyte
;
4736 struct charset
*charset_roman
, *charset_big5
;
4737 Lisp_Object attrs
, charset_list
, val
;
4738 ptrdiff_t char_offset
= coding
->produced_char
;
4739 ptrdiff_t last_offset
= char_offset
;
4740 int last_id
= charset_ascii
;
4742 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4743 int byte_after_cr
= -1;
4745 CODING_GET_INFO (coding
, attrs
, charset_list
);
4747 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4748 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
4753 struct charset
*charset
;
4756 consumed_chars_base
= consumed_chars
;
4758 if (charbuf
>= charbuf_end
)
4760 if (byte_after_cr
>= 0)
4765 if (byte_after_cr
>= 0)
4766 c
= byte_after_cr
, byte_after_cr
= -1;
4774 if (eol_dos
&& c
== '\r')
4775 ONE_MORE_BYTE (byte_after_cr
);
4776 charset
= charset_roman
;
4781 if (c
< 0xA1 || c
> 0xFE)
4784 if (c1
< 0x40 || (c1
> 0x7E && c1
< 0xA1) || c1
> 0xFE)
4787 charset
= charset_big5
;
4789 if (charset
->id
!= charset_ascii
4790 && last_id
!= charset
->id
)
4792 if (last_id
!= charset_ascii
)
4793 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4794 last_id
= charset
->id
;
4795 last_offset
= char_offset
;
4797 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4804 consumed_chars
= consumed_chars_base
;
4806 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4812 if (last_id
!= charset_ascii
)
4813 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4814 coding
->consumed_char
+= consumed_chars_base
;
4815 coding
->consumed
= src_base
- coding
->source
;
4816 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4819 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
4820 This function can encode charsets `ascii', `katakana-jisx0201',
4821 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
4822 are sure that all these charsets are registered as official charset
4823 (i.e. do not have extended leading-codes). Characters of other
4824 charsets are produced without any encoding. */
4827 encode_coding_sjis (struct coding_system
*coding
)
4829 bool multibytep
= coding
->dst_multibyte
;
4830 int *charbuf
= coding
->charbuf
;
4831 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4832 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4833 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4835 ptrdiff_t produced_chars
= 0;
4836 Lisp_Object attrs
, charset_list
, val
;
4837 bool ascii_compatible
;
4838 struct charset
*charset_kanji
, *charset_kana
;
4839 struct charset
*charset_kanji2
;
4842 CODING_GET_INFO (coding
, attrs
, charset_list
);
4843 val
= XCDR (charset_list
);
4844 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4845 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4846 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4848 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
4850 while (charbuf
< charbuf_end
)
4852 ASSURE_DESTINATION (safe_room
);
4854 /* Now encode the character C. */
4855 if (ASCII_CHAR_P (c
) && ascii_compatible
)
4856 EMIT_ONE_ASCII_BYTE (c
);
4857 else if (CHAR_BYTE8_P (c
))
4859 c
= CHAR_TO_BYTE8 (c
);
4865 struct charset
*charset
;
4866 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4871 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4873 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4874 charset
= CHARSET_FROM_ID (charset_ascii
);
4878 c
= coding
->default_char
;
4879 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4880 charset_list
, &code
, charset
);
4883 if (code
== CHARSET_INVALID_CODE (charset
))
4885 if (charset
== charset_kanji
)
4889 c1
= code
>> 8, c2
= code
& 0xFF;
4890 EMIT_TWO_BYTES (c1
, c2
);
4892 else if (charset
== charset_kana
)
4893 EMIT_ONE_BYTE (code
| 0x80);
4894 else if (charset_kanji2
&& charset
== charset_kanji2
)
4899 if (c1
== 0x21 || (c1
>= 0x23 && c1
<= 0x25)
4901 || (c1
>= 0x2C && c1
<= 0x2F) || c1
>= 0x6E)
4903 JIS_TO_SJIS2 (code
);
4904 c1
= code
>> 8, c2
= code
& 0xFF;
4905 EMIT_TWO_BYTES (c1
, c2
);
4908 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
4911 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
4914 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4915 coding
->produced_char
+= produced_chars
;
4916 coding
->produced
= dst
- coding
->destination
;
4921 encode_coding_big5 (struct coding_system
*coding
)
4923 bool multibytep
= coding
->dst_multibyte
;
4924 int *charbuf
= coding
->charbuf
;
4925 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4926 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4927 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4929 ptrdiff_t produced_chars
= 0;
4930 Lisp_Object attrs
, charset_list
, val
;
4931 bool ascii_compatible
;
4932 struct charset
*charset_big5
;
4935 CODING_GET_INFO (coding
, attrs
, charset_list
);
4936 val
= XCDR (charset_list
);
4937 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
4938 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
4940 while (charbuf
< charbuf_end
)
4942 ASSURE_DESTINATION (safe_room
);
4944 /* Now encode the character C. */
4945 if (ASCII_CHAR_P (c
) && ascii_compatible
)
4946 EMIT_ONE_ASCII_BYTE (c
);
4947 else if (CHAR_BYTE8_P (c
))
4949 c
= CHAR_TO_BYTE8 (c
);
4955 struct charset
*charset
;
4956 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
4961 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4963 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4964 charset
= CHARSET_FROM_ID (charset_ascii
);
4968 c
= coding
->default_char
;
4969 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
,
4970 charset_list
, &code
, charset
);
4973 if (code
== CHARSET_INVALID_CODE (charset
))
4975 if (charset
== charset_big5
)
4979 c1
= code
>> 8, c2
= code
& 0xFF;
4980 EMIT_TWO_BYTES (c1
, c2
);
4983 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
4986 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4987 coding
->produced_char
+= produced_chars
;
4988 coding
->produced
= dst
- coding
->destination
;
4993 /*** 10. CCL handlers ***/
4995 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4996 Return true if a text is encoded in a coding system of which
4997 encoder/decoder are written in CCL program. */
5000 detect_coding_ccl (struct coding_system
*coding
,
5001 struct coding_detection_info
*detect_info
)
5003 const unsigned char *src
= coding
->source
, *src_base
;
5004 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5005 bool multibytep
= coding
->src_multibyte
;
5006 ptrdiff_t consumed_chars
= 0;
5008 unsigned char *valids
;
5009 ptrdiff_t head_ascii
= coding
->head_ascii
;
5012 detect_info
->checked
|= CATEGORY_MASK_CCL
;
5014 coding
= &coding_categories
[coding_category_ccl
];
5015 valids
= CODING_CCL_VALIDS (coding
);
5016 attrs
= CODING_ID_ATTRS (coding
->id
);
5017 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5026 if (c
< 0 || ! valids
[c
])
5028 if ((valids
[c
] > 1))
5029 found
= CATEGORY_MASK_CCL
;
5031 detect_info
->rejected
|= CATEGORY_MASK_CCL
;
5035 detect_info
->found
|= found
;
5040 decode_coding_ccl (struct coding_system
*coding
)
5042 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5043 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5044 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5045 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
5046 ptrdiff_t consumed_chars
= 0;
5047 bool multibytep
= coding
->src_multibyte
;
5048 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5049 int source_charbuf
[1024];
5050 int source_byteidx
[1025];
5051 Lisp_Object attrs
, charset_list
;
5053 CODING_GET_INFO (coding
, attrs
, charset_list
);
5057 const unsigned char *p
= src
;
5063 while (i
< 1024 && p
< src_end
)
5065 source_byteidx
[i
] = p
- src
;
5066 source_charbuf
[i
++] = STRING_CHAR_ADVANCE (p
);
5068 source_byteidx
[i
] = p
- src
;
5071 while (i
< 1024 && p
< src_end
)
5072 source_charbuf
[i
++] = *p
++;
5074 if (p
== src_end
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
5075 ccl
->last_block
= 1;
5076 /* As ccl_driver calls DECODE_CHAR, buffer may be relocated. */
5077 charset_map_loaded
= 0;
5078 ccl_driver (ccl
, source_charbuf
, charbuf
, i
, charbuf_end
- charbuf
,
5080 if (charset_map_loaded
5081 && (offset
= coding_change_source (coding
)))
5087 charbuf
+= ccl
->produced
;
5089 src
+= source_byteidx
[ccl
->consumed
];
5091 src
+= ccl
->consumed
;
5092 consumed_chars
+= ccl
->consumed
;
5093 if (p
== src_end
|| ccl
->status
!= CCL_STAT_SUSPEND_BY_SRC
)
5097 switch (ccl
->status
)
5099 case CCL_STAT_SUSPEND_BY_SRC
:
5100 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5102 case CCL_STAT_SUSPEND_BY_DST
:
5103 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5106 case CCL_STAT_INVALID_CMD
:
5107 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5110 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5113 coding
->consumed_char
+= consumed_chars
;
5114 coding
->consumed
= src
- coding
->source
;
5115 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5119 encode_coding_ccl (struct coding_system
*coding
)
5121 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5122 bool multibytep
= coding
->dst_multibyte
;
5123 int *charbuf
= coding
->charbuf
;
5124 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5125 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5126 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5127 int destination_charbuf
[1024];
5128 ptrdiff_t produced_chars
= 0;
5130 Lisp_Object attrs
, charset_list
;
5132 CODING_GET_INFO (coding
, attrs
, charset_list
);
5133 if (coding
->consumed_char
== coding
->src_chars
5134 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
5135 ccl
->last_block
= 1;
5141 /* As ccl_driver calls DECODE_CHAR, buffer may be relocated. */
5142 charset_map_loaded
= 0;
5143 ccl_driver (ccl
, charbuf
, destination_charbuf
,
5144 charbuf_end
- charbuf
, 1024, charset_list
);
5145 if (charset_map_loaded
5146 && (offset
= coding_change_destination (coding
)))
5150 ASSURE_DESTINATION (ccl
->produced
* 2);
5151 for (i
= 0; i
< ccl
->produced
; i
++)
5152 EMIT_ONE_BYTE (destination_charbuf
[i
] & 0xFF);
5156 ASSURE_DESTINATION (ccl
->produced
);
5157 for (i
= 0; i
< ccl
->produced
; i
++)
5158 *dst
++ = destination_charbuf
[i
] & 0xFF;
5159 produced_chars
+= ccl
->produced
;
5161 charbuf
+= ccl
->consumed
;
5162 if (ccl
->status
== CCL_STAT_QUIT
5163 || ccl
->status
== CCL_STAT_INVALID_CMD
)
5166 while (charbuf
< charbuf_end
);
5168 switch (ccl
->status
)
5170 case CCL_STAT_SUSPEND_BY_SRC
:
5171 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5173 case CCL_STAT_SUSPEND_BY_DST
:
5174 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5177 case CCL_STAT_INVALID_CMD
:
5178 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5181 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5185 coding
->produced_char
+= produced_chars
;
5186 coding
->produced
= dst
- coding
->destination
;
5191 /*** 10, 11. no-conversion handlers ***/
5193 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
5196 decode_coding_raw_text (struct coding_system
*coding
)
5199 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5201 coding
->chars_at_source
= 1;
5202 coding
->consumed_char
= coding
->src_chars
;
5203 coding
->consumed
= coding
->src_bytes
;
5204 if (eol_dos
&& coding
->source
[coding
->src_bytes
- 1] == '\r')
5206 coding
->consumed_char
--;
5208 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5211 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5215 encode_coding_raw_text (struct coding_system
*coding
)
5217 bool multibytep
= coding
->dst_multibyte
;
5218 int *charbuf
= coding
->charbuf
;
5219 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_used
;
5220 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5221 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5222 ptrdiff_t produced_chars
= 0;
5227 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
5229 if (coding
->src_multibyte
)
5230 while (charbuf
< charbuf_end
)
5232 ASSURE_DESTINATION (safe_room
);
5234 if (ASCII_CHAR_P (c
))
5235 EMIT_ONE_ASCII_BYTE (c
);
5236 else if (CHAR_BYTE8_P (c
))
5238 c
= CHAR_TO_BYTE8 (c
);
5243 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p0
= str
, *p1
= str
;
5245 CHAR_STRING_ADVANCE (c
, p1
);
5248 EMIT_ONE_BYTE (*p0
);
5255 while (charbuf
< charbuf_end
)
5257 ASSURE_DESTINATION (safe_room
);
5264 if (coding
->src_multibyte
)
5266 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5268 while (charbuf
< charbuf_end
)
5270 ASSURE_DESTINATION (safe_room
);
5272 if (ASCII_CHAR_P (c
))
5274 else if (CHAR_BYTE8_P (c
))
5275 *dst
++ = CHAR_TO_BYTE8 (c
);
5277 CHAR_STRING_ADVANCE (c
, dst
);
5282 ASSURE_DESTINATION (charbuf_end
- charbuf
);
5283 while (charbuf
< charbuf_end
&& dst
< dst_end
)
5284 *dst
++ = *charbuf
++;
5286 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
5288 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5289 coding
->produced_char
+= produced_chars
;
5290 coding
->produced
= dst
- coding
->destination
;
5294 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5295 Return true if a text is encoded in a charset-based coding system. */
5298 detect_coding_charset (struct coding_system
*coding
,
5299 struct coding_detection_info
*detect_info
)
5301 const unsigned char *src
= coding
->source
, *src_base
;
5302 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5303 bool multibytep
= coding
->src_multibyte
;
5304 ptrdiff_t consumed_chars
= 0;
5305 Lisp_Object attrs
, valids
, name
;
5307 ptrdiff_t head_ascii
= coding
->head_ascii
;
5308 bool check_latin_extra
= 0;
5310 detect_info
->checked
|= CATEGORY_MASK_CHARSET
;
5312 coding
= &coding_categories
[coding_category_charset
];
5313 attrs
= CODING_ID_ATTRS (coding
->id
);
5314 valids
= AREF (attrs
, coding_attr_charset_valids
);
5315 name
= CODING_ID_NAME (coding
->id
);
5316 if (strncmp (SSDATA (SYMBOL_NAME (name
)),
5317 "iso-8859-", sizeof ("iso-8859-") - 1) == 0
5318 || strncmp (SSDATA (SYMBOL_NAME (name
)),
5319 "iso-latin-", sizeof ("iso-latin-") - 1) == 0)
5320 check_latin_extra
= 1;
5322 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5329 struct charset
*charset
;
5336 val
= AREF (valids
, c
);
5342 && check_latin_extra
5343 && (!VECTORP (Vlatin_extra_code_table
)
5344 || NILP (AREF (Vlatin_extra_code_table
, c
))))
5346 found
= CATEGORY_MASK_CHARSET
;
5350 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5351 dim
= CHARSET_DIMENSION (charset
);
5352 for (idx
= 1; idx
< dim
; idx
++)
5357 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5358 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5367 for (; CONSP (val
); val
= XCDR (val
))
5369 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5370 dim
= CHARSET_DIMENSION (charset
);
5376 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5377 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5392 detect_info
->rejected
|= CATEGORY_MASK_CHARSET
;
5396 detect_info
->found
|= found
;
5401 decode_coding_charset (struct coding_system
*coding
)
5403 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5404 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5405 const unsigned char *src_base
;
5406 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5407 /* We may produce one charset annotation in one loop and one more at
5410 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
5411 ptrdiff_t consumed_chars
= 0, consumed_chars_base
;
5412 bool multibytep
= coding
->src_multibyte
;
5413 Lisp_Object attrs
= CODING_ID_ATTRS (coding
->id
);
5415 ptrdiff_t char_offset
= coding
->produced_char
;
5416 ptrdiff_t last_offset
= char_offset
;
5417 int last_id
= charset_ascii
;
5419 = !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5420 int byte_after_cr
= -1;
5422 valids
= AREF (attrs
, coding_attr_charset_valids
);
5428 struct charset
*charset
;
5434 consumed_chars_base
= consumed_chars
;
5436 if (charbuf
>= charbuf_end
)
5438 if (byte_after_cr
>= 0)
5443 if (byte_after_cr
>= 0)
5451 if (eol_dos
&& c
== '\r')
5452 ONE_MORE_BYTE (byte_after_cr
);
5458 val
= AREF (valids
, c
);
5459 if (! INTEGERP (val
) && ! CONSP (val
))
5463 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5464 dim
= CHARSET_DIMENSION (charset
);
5468 code
= (code
<< 8) | c
;
5471 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
5476 /* VAL is a list of charset IDs. It is assured that the
5477 list is sorted by charset dimensions (smaller one
5481 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5482 dim
= CHARSET_DIMENSION (charset
);
5486 code
= (code
<< 8) | c
;
5489 CODING_DECODE_CHAR (coding
, src
, src_base
,
5490 src_end
, charset
, code
, c
);
5498 if (charset
->id
!= charset_ascii
5499 && last_id
!= charset
->id
)
5501 if (last_id
!= charset_ascii
)
5502 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5503 last_id
= charset
->id
;
5504 last_offset
= char_offset
;
5513 consumed_chars
= consumed_chars_base
;
5515 *charbuf
++ = c
< 0 ? -c
: ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
5521 if (last_id
!= charset_ascii
)
5522 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5523 coding
->consumed_char
+= consumed_chars_base
;
5524 coding
->consumed
= src_base
- coding
->source
;
5525 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5529 encode_coding_charset (struct coding_system
*coding
)
5531 bool multibytep
= coding
->dst_multibyte
;
5532 int *charbuf
= coding
->charbuf
;
5533 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5534 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5535 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5536 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5537 ptrdiff_t produced_chars
= 0;
5538 Lisp_Object attrs
, charset_list
;
5539 bool ascii_compatible
;
5542 CODING_GET_INFO (coding
, attrs
, charset_list
);
5543 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5545 while (charbuf
< charbuf_end
)
5547 struct charset
*charset
;
5550 ASSURE_DESTINATION (safe_room
);
5552 if (ascii_compatible
&& ASCII_CHAR_P (c
))
5553 EMIT_ONE_ASCII_BYTE (c
);
5554 else if (CHAR_BYTE8_P (c
))
5556 c
= CHAR_TO_BYTE8 (c
);
5561 CODING_CHAR_CHARSET (coding
, dst
, dst_end
, c
, charset_list
,
5566 if (CHARSET_DIMENSION (charset
) == 1)
5567 EMIT_ONE_BYTE (code
);
5568 else if (CHARSET_DIMENSION (charset
) == 2)
5569 EMIT_TWO_BYTES (code
>> 8, code
& 0xFF);
5570 else if (CHARSET_DIMENSION (charset
) == 3)
5571 EMIT_THREE_BYTES (code
>> 16, (code
>> 8) & 0xFF, code
& 0xFF);
5573 EMIT_FOUR_BYTES (code
>> 24, (code
>> 16) & 0xFF,
5574 (code
>> 8) & 0xFF, code
& 0xFF);
5578 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5579 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5581 c
= coding
->default_char
;
5587 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5588 coding
->produced_char
+= produced_chars
;
5589 coding
->produced
= dst
- coding
->destination
;
5594 /*** 7. C library functions ***/
5596 /* Setup coding context CODING from information about CODING_SYSTEM.
5597 If CODING_SYSTEM is nil, `no-conversion' is assumed. If
5598 CODING_SYSTEM is invalid, signal an error. */
5601 setup_coding_system (Lisp_Object coding_system
, struct coding_system
*coding
)
5604 Lisp_Object eol_type
;
5605 Lisp_Object coding_type
;
5608 if (NILP (coding_system
))
5609 coding_system
= Qundecided
;
5611 CHECK_CODING_SYSTEM_GET_ID (coding_system
, coding
->id
);
5613 attrs
= CODING_ID_ATTRS (coding
->id
);
5614 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
5617 coding
->head_ascii
= -1;
5618 if (VECTORP (eol_type
))
5619 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5620 | CODING_REQUIRE_DETECTION_MASK
);
5621 else if (! EQ (eol_type
, Qunix
))
5622 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5623 | CODING_REQUIRE_ENCODING_MASK
);
5625 coding
->common_flags
= 0;
5626 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
5627 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5628 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
5629 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5630 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs
)))
5631 coding
->common_flags
|= CODING_FOR_UNIBYTE_MASK
;
5633 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5634 coding
->max_charset_id
= SCHARS (val
) - 1;
5635 coding
->safe_charsets
= SDATA (val
);
5636 coding
->default_char
= XINT (CODING_ATTR_DEFAULT_CHAR (attrs
));
5637 coding
->carryover_bytes
= 0;
5639 coding_type
= CODING_ATTR_TYPE (attrs
);
5640 if (EQ (coding_type
, Qundecided
))
5642 coding
->detector
= NULL
;
5643 coding
->decoder
= decode_coding_raw_text
;
5644 coding
->encoder
= encode_coding_raw_text
;
5645 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5647 else if (EQ (coding_type
, Qiso_2022
))
5650 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5652 /* Invoke graphic register 0 to plane 0. */
5653 CODING_ISO_INVOCATION (coding
, 0) = 0;
5654 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */
5655 CODING_ISO_INVOCATION (coding
, 1)
5656 = (flags
& CODING_ISO_FLAG_SEVEN_BITS
? -1 : 1);
5657 /* Setup the initial status of designation. */
5658 for (i
= 0; i
< 4; i
++)
5659 CODING_ISO_DESIGNATION (coding
, i
) = CODING_ISO_INITIAL (coding
, i
);
5660 /* Not single shifting initially. */
5661 CODING_ISO_SINGLE_SHIFTING (coding
) = 0;
5662 /* Beginning of buffer should also be regarded as bol. */
5663 CODING_ISO_BOL (coding
) = 1;
5664 coding
->detector
= detect_coding_iso_2022
;
5665 coding
->decoder
= decode_coding_iso_2022
;
5666 coding
->encoder
= encode_coding_iso_2022
;
5667 if (flags
& CODING_ISO_FLAG_SAFE
)
5668 coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
5669 coding
->common_flags
5670 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5671 | CODING_REQUIRE_FLUSHING_MASK
);
5672 if (flags
& CODING_ISO_FLAG_COMPOSITION
)
5673 coding
->common_flags
|= CODING_ANNOTATE_COMPOSITION_MASK
;
5674 if (flags
& CODING_ISO_FLAG_DESIGNATION
)
5675 coding
->common_flags
|= CODING_ANNOTATE_CHARSET_MASK
;
5676 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5678 setup_iso_safe_charsets (attrs
);
5679 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5680 coding
->max_charset_id
= SCHARS (val
) - 1;
5681 coding
->safe_charsets
= SDATA (val
);
5683 CODING_ISO_FLAGS (coding
) = flags
;
5684 CODING_ISO_CMP_STATUS (coding
)->state
= COMPOSING_NO
;
5685 CODING_ISO_CMP_STATUS (coding
)->method
= COMPOSITION_NO
;
5686 CODING_ISO_EXTSEGMENT_LEN (coding
) = 0;
5687 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
5689 else if (EQ (coding_type
, Qcharset
))
5691 coding
->detector
= detect_coding_charset
;
5692 coding
->decoder
= decode_coding_charset
;
5693 coding
->encoder
= encode_coding_charset
;
5694 coding
->common_flags
5695 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5697 else if (EQ (coding_type
, Qutf_8
))
5699 val
= AREF (attrs
, coding_attr_utf_bom
);
5700 CODING_UTF_8_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5701 : EQ (val
, Qt
) ? utf_with_bom
5703 coding
->detector
= detect_coding_utf_8
;
5704 coding
->decoder
= decode_coding_utf_8
;
5705 coding
->encoder
= encode_coding_utf_8
;
5706 coding
->common_flags
5707 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5708 if (CODING_UTF_8_BOM (coding
) == utf_detect_bom
)
5709 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5711 else if (EQ (coding_type
, Qutf_16
))
5713 val
= AREF (attrs
, coding_attr_utf_bom
);
5714 CODING_UTF_16_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5715 : EQ (val
, Qt
) ? utf_with_bom
5717 val
= AREF (attrs
, coding_attr_utf_16_endian
);
5718 CODING_UTF_16_ENDIAN (coding
) = (EQ (val
, Qbig
) ? utf_16_big_endian
5719 : utf_16_little_endian
);
5720 CODING_UTF_16_SURROGATE (coding
) = 0;
5721 coding
->detector
= detect_coding_utf_16
;
5722 coding
->decoder
= decode_coding_utf_16
;
5723 coding
->encoder
= encode_coding_utf_16
;
5724 coding
->common_flags
5725 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5726 if (CODING_UTF_16_BOM (coding
) == utf_detect_bom
)
5727 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5729 else if (EQ (coding_type
, Qccl
))
5731 coding
->detector
= detect_coding_ccl
;
5732 coding
->decoder
= decode_coding_ccl
;
5733 coding
->encoder
= encode_coding_ccl
;
5734 coding
->common_flags
5735 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5736 | CODING_REQUIRE_FLUSHING_MASK
);
5738 else if (EQ (coding_type
, Qemacs_mule
))
5740 coding
->detector
= detect_coding_emacs_mule
;
5741 coding
->decoder
= decode_coding_emacs_mule
;
5742 coding
->encoder
= encode_coding_emacs_mule
;
5743 coding
->common_flags
5744 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5745 if (! NILP (AREF (attrs
, coding_attr_emacs_mule_full
))
5746 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Vemacs_mule_charset_list
))
5748 Lisp_Object tail
, safe_charsets
;
5749 int max_charset_id
= 0;
5751 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5753 if (max_charset_id
< XFASTINT (XCAR (tail
)))
5754 max_charset_id
= XFASTINT (XCAR (tail
));
5755 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
5756 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
5757 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5759 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
5760 coding
->max_charset_id
= max_charset_id
;
5761 coding
->safe_charsets
= SDATA (safe_charsets
);
5763 coding
->spec
.emacs_mule
.cmp_status
.state
= COMPOSING_NO
;
5764 coding
->spec
.emacs_mule
.cmp_status
.method
= COMPOSITION_NO
;
5766 else if (EQ (coding_type
, Qshift_jis
))
5768 coding
->detector
= detect_coding_sjis
;
5769 coding
->decoder
= decode_coding_sjis
;
5770 coding
->encoder
= encode_coding_sjis
;
5771 coding
->common_flags
5772 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5774 else if (EQ (coding_type
, Qbig5
))
5776 coding
->detector
= detect_coding_big5
;
5777 coding
->decoder
= decode_coding_big5
;
5778 coding
->encoder
= encode_coding_big5
;
5779 coding
->common_flags
5780 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5782 else /* EQ (coding_type, Qraw_text) */
5784 coding
->detector
= NULL
;
5785 coding
->decoder
= decode_coding_raw_text
;
5786 coding
->encoder
= encode_coding_raw_text
;
5787 if (! EQ (eol_type
, Qunix
))
5789 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5790 if (! VECTORP (eol_type
))
5791 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5799 /* Return a list of charsets supported by CODING. */
5802 coding_charset_list (struct coding_system
*coding
)
5804 Lisp_Object attrs
, charset_list
;
5806 CODING_GET_INFO (coding
, attrs
, charset_list
);
5807 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5809 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5811 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5812 charset_list
= Viso_2022_charset_list
;
5814 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5816 charset_list
= Vemacs_mule_charset_list
;
5818 return charset_list
;
5822 /* Return a list of charsets supported by CODING-SYSTEM. */
5825 coding_system_charset_list (Lisp_Object coding_system
)
5828 Lisp_Object attrs
, charset_list
;
5830 CHECK_CODING_SYSTEM_GET_ID (coding_system
, id
);
5831 attrs
= CODING_ID_ATTRS (id
);
5833 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5835 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5837 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5838 charset_list
= Viso_2022_charset_list
;
5840 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5842 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5844 charset_list
= Vemacs_mule_charset_list
;
5848 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5850 return charset_list
;
5854 /* Return raw-text or one of its subsidiaries that has the same
5855 eol_type as CODING-SYSTEM. */
5858 raw_text_coding_system (Lisp_Object coding_system
)
5860 Lisp_Object spec
, attrs
;
5861 Lisp_Object eol_type
, raw_text_eol_type
;
5863 if (NILP (coding_system
))
5865 spec
= CODING_SYSTEM_SPEC (coding_system
);
5866 attrs
= AREF (spec
, 0);
5868 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
5869 return coding_system
;
5871 eol_type
= AREF (spec
, 2);
5872 if (VECTORP (eol_type
))
5874 spec
= CODING_SYSTEM_SPEC (Qraw_text
);
5875 raw_text_eol_type
= AREF (spec
, 2);
5876 return (EQ (eol_type
, Qunix
) ? AREF (raw_text_eol_type
, 0)
5877 : EQ (eol_type
, Qdos
) ? AREF (raw_text_eol_type
, 1)
5878 : AREF (raw_text_eol_type
, 2));
5882 /* If CODING_SYSTEM doesn't specify end-of-line format, return one of
5883 the subsidiary that has the same eol-spec as PARENT (if it is not
5884 nil and specifies end-of-line format) or the system's setting
5885 (system_eol_type). */
5888 coding_inherit_eol_type (Lisp_Object coding_system
, Lisp_Object parent
)
5890 Lisp_Object spec
, eol_type
;
5892 if (NILP (coding_system
))
5893 coding_system
= Qraw_text
;
5894 spec
= CODING_SYSTEM_SPEC (coding_system
);
5895 eol_type
= AREF (spec
, 2);
5896 if (VECTORP (eol_type
))
5898 Lisp_Object parent_eol_type
;
5900 if (! NILP (parent
))
5902 Lisp_Object parent_spec
;
5904 parent_spec
= CODING_SYSTEM_SPEC (parent
);
5905 parent_eol_type
= AREF (parent_spec
, 2);
5906 if (VECTORP (parent_eol_type
))
5907 parent_eol_type
= system_eol_type
;
5910 parent_eol_type
= system_eol_type
;
5911 if (EQ (parent_eol_type
, Qunix
))
5912 coding_system
= AREF (eol_type
, 0);
5913 else if (EQ (parent_eol_type
, Qdos
))
5914 coding_system
= AREF (eol_type
, 1);
5915 else if (EQ (parent_eol_type
, Qmac
))
5916 coding_system
= AREF (eol_type
, 2);
5918 return coding_system
;
5922 /* Check if text-conversion and eol-conversion of CODING_SYSTEM are
5923 decided for writing to a process. If not, complement them, and
5924 return a new coding system. */
5927 complement_process_encoding_system (Lisp_Object coding_system
)
5929 Lisp_Object coding_base
= Qnil
, eol_base
= Qnil
;
5930 Lisp_Object spec
, attrs
;
5933 for (i
= 0; i
< 3; i
++)
5936 coding_system
= CDR_SAFE (Vdefault_process_coding_system
);
5938 coding_system
= preferred_coding_system ();
5939 spec
= CODING_SYSTEM_SPEC (coding_system
);
5942 attrs
= AREF (spec
, 0);
5943 if (NILP (coding_base
) && ! EQ (CODING_ATTR_TYPE (attrs
), Qundecided
))
5944 coding_base
= CODING_ATTR_BASE_NAME (attrs
);
5945 if (NILP (eol_base
) && ! VECTORP (AREF (spec
, 2)))
5946 eol_base
= coding_system
;
5947 if (! NILP (coding_base
) && ! NILP (eol_base
))
5952 /* The original CODING_SYSTEM didn't specify text-conversion or
5953 eol-conversion. Be sure that we return a fully complemented
5955 coding_system
= coding_inherit_eol_type (coding_base
, eol_base
);
5956 return coding_system
;
5960 /* Emacs has a mechanism to automatically detect a coding system if it
5961 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
5962 it's impossible to distinguish some coding systems accurately
5963 because they use the same range of codes. So, at first, coding
5964 systems are categorized into 7, those are:
5966 o coding-category-emacs-mule
5968 The category for a coding system which has the same code range
5969 as Emacs' internal format. Assigned the coding-system (Lisp
5970 symbol) `emacs-mule' by default.
5972 o coding-category-sjis
5974 The category for a coding system which has the same code range
5975 as SJIS. Assigned the coding-system (Lisp
5976 symbol) `japanese-shift-jis' by default.
5978 o coding-category-iso-7
5980 The category for a coding system which has the same code range
5981 as ISO2022 of 7-bit environment. This doesn't use any locking
5982 shift and single shift functions. This can encode/decode all
5983 charsets. Assigned the coding-system (Lisp symbol)
5984 `iso-2022-7bit' by default.
5986 o coding-category-iso-7-tight
5988 Same as coding-category-iso-7 except that this can
5989 encode/decode only the specified charsets.
5991 o coding-category-iso-8-1
5993 The category for a coding system which has the same code range
5994 as ISO2022 of 8-bit environment and graphic plane 1 used only
5995 for DIMENSION1 charset. This doesn't use any locking shift
5996 and single shift functions. Assigned the coding-system (Lisp
5997 symbol) `iso-latin-1' by default.
5999 o coding-category-iso-8-2
6001 The category for a coding system which has the same code range
6002 as ISO2022 of 8-bit environment and graphic plane 1 used only
6003 for DIMENSION2 charset. This doesn't use any locking shift
6004 and single shift functions. Assigned the coding-system (Lisp
6005 symbol) `japanese-iso-8bit' by default.
6007 o coding-category-iso-7-else
6009 The category for a coding system which has the same code range
6010 as ISO2022 of 7-bit environment but uses locking shift or
6011 single shift functions. Assigned the coding-system (Lisp
6012 symbol) `iso-2022-7bit-lock' by default.
6014 o coding-category-iso-8-else
6016 The category for a coding system which has the same code range
6017 as ISO2022 of 8-bit environment but uses locking shift or
6018 single shift functions. Assigned the coding-system (Lisp
6019 symbol) `iso-2022-8bit-ss2' by default.
6021 o coding-category-big5
6023 The category for a coding system which has the same code range
6024 as BIG5. Assigned the coding-system (Lisp symbol)
6025 `cn-big5' by default.
6027 o coding-category-utf-8
6029 The category for a coding system which has the same code range
6030 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp
6031 symbol) `utf-8' by default.
6033 o coding-category-utf-16-be
6035 The category for a coding system in which a text has an
6036 Unicode signature (cf. Unicode Standard) in the order of BIG
6037 endian at the head. Assigned the coding-system (Lisp symbol)
6038 `utf-16-be' by default.
6040 o coding-category-utf-16-le
6042 The category for a coding system in which a text has an
6043 Unicode signature (cf. Unicode Standard) in the order of
6044 LITTLE endian at the head. Assigned the coding-system (Lisp
6045 symbol) `utf-16-le' by default.
6047 o coding-category-ccl
6049 The category for a coding system of which encoder/decoder is
6050 written in CCL programs. The default value is nil, i.e., no
6051 coding system is assigned.
6053 o coding-category-binary
6055 The category for a coding system not categorized in any of the
6056 above. Assigned the coding-system (Lisp symbol)
6057 `no-conversion' by default.
6059 Each of them is a Lisp symbol and the value is an actual
6060 `coding-system's (this is also a Lisp symbol) assigned by a user.
6061 What Emacs does actually is to detect a category of coding system.
6062 Then, it uses a `coding-system' assigned to it. If Emacs can't
6063 decide only one possible category, it selects a category of the
6064 highest priority. Priorities of categories are also specified by a
6065 user in a Lisp variable `coding-category-list'.
6069 #define EOL_SEEN_NONE 0
6070 #define EOL_SEEN_LF 1
6071 #define EOL_SEEN_CR 2
6072 #define EOL_SEEN_CRLF 4
6074 /* Detect how end-of-line of a text of length SRC_BYTES pointed by
6075 SOURCE is encoded. If CATEGORY is one of
6076 coding_category_utf_16_XXXX, assume that CR and LF are encoded by
6077 two-byte, else they are encoded by one-byte.
6079 Return one of EOL_SEEN_XXX. */
6081 #define MAX_EOL_CHECK_COUNT 3
6084 detect_eol (const unsigned char *source
, ptrdiff_t src_bytes
,
6085 enum coding_category category
)
6087 const unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
6090 int eol_seen
= EOL_SEEN_NONE
;
6092 if ((1 << category
) & CATEGORY_MASK_UTF_16
)
6094 bool msb
= category
== (coding_category_utf_16_le
6095 | coding_category_utf_16_le_nosig
);
6098 while (src
+ 1 < src_end
)
6101 if (src
[msb
] == 0 && (c
== '\n' || c
== '\r'))
6106 this_eol
= EOL_SEEN_LF
;
6107 else if (src
+ 3 >= src_end
6108 || src
[msb
+ 2] != 0
6109 || src
[lsb
+ 2] != '\n')
6110 this_eol
= EOL_SEEN_CR
;
6113 this_eol
= EOL_SEEN_CRLF
;
6117 if (eol_seen
== EOL_SEEN_NONE
)
6118 /* This is the first end-of-line. */
6119 eol_seen
= this_eol
;
6120 else if (eol_seen
!= this_eol
)
6122 /* The found type is different from what found before.
6123 Allow for stray ^M characters in DOS EOL files. */
6124 if ((eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
)
6125 || (eol_seen
== EOL_SEEN_CRLF
6126 && this_eol
== EOL_SEEN_CR
))
6127 eol_seen
= EOL_SEEN_CRLF
;
6130 eol_seen
= EOL_SEEN_LF
;
6134 if (++total
== MAX_EOL_CHECK_COUNT
)
6141 while (src
< src_end
)
6144 if (c
== '\n' || c
== '\r')
6149 this_eol
= EOL_SEEN_LF
;
6150 else if (src
>= src_end
|| *src
!= '\n')
6151 this_eol
= EOL_SEEN_CR
;
6153 this_eol
= EOL_SEEN_CRLF
, src
++;
6155 if (eol_seen
== EOL_SEEN_NONE
)
6156 /* This is the first end-of-line. */
6157 eol_seen
= this_eol
;
6158 else if (eol_seen
!= this_eol
)
6160 /* The found type is different from what found before.
6161 Allow for stray ^M characters in DOS EOL files. */
6162 if ((eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
)
6163 || (eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
))
6164 eol_seen
= EOL_SEEN_CRLF
;
6167 eol_seen
= EOL_SEEN_LF
;
6171 if (++total
== MAX_EOL_CHECK_COUNT
)
6180 adjust_coding_eol_type (struct coding_system
*coding
, int eol_seen
)
6182 Lisp_Object eol_type
;
6184 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6185 if (eol_seen
& EOL_SEEN_LF
)
6187 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 0));
6190 else if (eol_seen
& EOL_SEEN_CRLF
)
6192 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 1));
6195 else if (eol_seen
& EOL_SEEN_CR
)
6197 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 2));
6203 /* Detect how a text specified in CODING is encoded. If a coding
6204 system is detected, update fields of CODING by the detected coding
6208 detect_coding (struct coding_system
*coding
)
6210 const unsigned char *src
, *src_end
;
6211 unsigned int saved_mode
= coding
->mode
;
6213 coding
->consumed
= coding
->consumed_char
= 0;
6214 coding
->produced
= coding
->produced_char
= 0;
6215 coding_set_source (coding
);
6217 src_end
= coding
->source
+ coding
->src_bytes
;
6218 coding
->head_ascii
= 0;
6220 /* If we have not yet decided the text encoding type, detect it
6222 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding
->id
)), Qundecided
))
6225 struct coding_detection_info detect_info
;
6226 bool null_byte_found
= 0, eight_bit_found
= 0;
6228 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
6229 for (src
= coding
->source
; src
< src_end
; src
++)
6234 eight_bit_found
= 1;
6235 if (null_byte_found
)
6240 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
6241 && ! inhibit_iso_escape_detection
6242 && ! detect_info
.checked
)
6244 if (detect_coding_iso_2022 (coding
, &detect_info
))
6246 /* We have scanned the whole data. */
6247 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
6249 /* We didn't find an 8-bit code. We may
6250 have found a null-byte, but it's very
6251 rare that a binary file conforms to
6254 coding
->head_ascii
= src
- coding
->source
;
6256 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
6260 else if (! c
&& !inhibit_null_byte_detection
)
6262 null_byte_found
= 1;
6263 if (eight_bit_found
)
6266 if (! eight_bit_found
)
6267 coding
->head_ascii
++;
6269 else if (! eight_bit_found
)
6270 coding
->head_ascii
++;
6273 if (null_byte_found
|| eight_bit_found
6274 || coding
->head_ascii
< coding
->src_bytes
6275 || detect_info
.found
)
6277 enum coding_category category
;
6278 struct coding_system
*this;
6280 if (coding
->head_ascii
== coding
->src_bytes
)
6281 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
6282 for (i
= 0; i
< coding_category_raw_text
; i
++)
6284 category
= coding_priorities
[i
];
6285 this = coding_categories
+ category
;
6286 if (detect_info
.found
& (1 << category
))
6291 if (null_byte_found
)
6293 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
6294 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
6296 for (i
= 0; i
< coding_category_raw_text
; i
++)
6298 category
= coding_priorities
[i
];
6299 this = coding_categories
+ category
;
6300 /* Some of this->detector (e.g. detect_coding_sjis)
6301 require this information. */
6302 coding
->id
= this->id
;
6305 /* No coding system of this category is defined. */
6306 detect_info
.rejected
|= (1 << category
);
6308 else if (category
>= coding_category_raw_text
)
6310 else if (detect_info
.checked
& (1 << category
))
6312 if (detect_info
.found
& (1 << category
))
6315 else if ((*(this->detector
)) (coding
, &detect_info
)
6316 && detect_info
.found
& (1 << category
))
6318 if (category
== coding_category_utf_16_auto
)
6320 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6321 category
= coding_category_utf_16_le
;
6323 category
= coding_category_utf_16_be
;
6330 if (i
< coding_category_raw_text
)
6331 setup_coding_system (CODING_ID_NAME (this->id
), coding
);
6332 else if (null_byte_found
)
6333 setup_coding_system (Qno_conversion
, coding
);
6334 else if ((detect_info
.rejected
& CATEGORY_MASK_ANY
)
6335 == CATEGORY_MASK_ANY
)
6336 setup_coding_system (Qraw_text
, coding
);
6337 else if (detect_info
.rejected
)
6338 for (i
= 0; i
< coding_category_raw_text
; i
++)
6339 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
6341 this = coding_categories
+ coding_priorities
[i
];
6342 setup_coding_system (CODING_ID_NAME (this->id
), coding
);
6347 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6348 == coding_category_utf_8_auto
)
6350 Lisp_Object coding_systems
;
6351 struct coding_detection_info detect_info
;
6354 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6355 detect_info
.found
= detect_info
.rejected
= 0;
6356 for (src
= coding
->source
; src
< src_end
; src
++)
6361 coding
->head_ascii
= src
- coding
->source
;
6362 if (CONSP (coding_systems
)
6363 && detect_coding_utf_8 (coding
, &detect_info
))
6365 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6366 setup_coding_system (XCAR (coding_systems
), coding
);
6368 setup_coding_system (XCDR (coding_systems
), coding
);
6371 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6372 == coding_category_utf_16_auto
)
6374 Lisp_Object coding_systems
;
6375 struct coding_detection_info detect_info
;
6378 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6379 detect_info
.found
= detect_info
.rejected
= 0;
6380 coding
->head_ascii
= 0;
6381 if (CONSP (coding_systems
)
6382 && detect_coding_utf_16 (coding
, &detect_info
))
6384 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6385 setup_coding_system (XCAR (coding_systems
), coding
);
6386 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6387 setup_coding_system (XCDR (coding_systems
), coding
);
6390 coding
->mode
= saved_mode
;
6395 decode_eol (struct coding_system
*coding
)
6397 Lisp_Object eol_type
;
6398 unsigned char *p
, *pbeg
, *pend
;
6400 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6401 if (EQ (eol_type
, Qunix
) || inhibit_eol_conversion
)
6404 if (NILP (coding
->dst_object
))
6405 pbeg
= coding
->destination
;
6407 pbeg
= BYTE_POS_ADDR (coding
->dst_pos_byte
);
6408 pend
= pbeg
+ coding
->produced
;
6410 if (VECTORP (eol_type
))
6412 int eol_seen
= EOL_SEEN_NONE
;
6414 for (p
= pbeg
; p
< pend
; p
++)
6417 eol_seen
|= EOL_SEEN_LF
;
6418 else if (*p
== '\r')
6420 if (p
+ 1 < pend
&& *(p
+ 1) == '\n')
6422 eol_seen
|= EOL_SEEN_CRLF
;
6426 eol_seen
|= EOL_SEEN_CR
;
6429 /* Handle DOS-style EOLs in a file with stray ^M characters. */
6430 if ((eol_seen
& EOL_SEEN_CRLF
) != 0
6431 && (eol_seen
& EOL_SEEN_CR
) != 0
6432 && (eol_seen
& EOL_SEEN_LF
) == 0)
6433 eol_seen
= EOL_SEEN_CRLF
;
6434 else if (eol_seen
!= EOL_SEEN_NONE
6435 && eol_seen
!= EOL_SEEN_LF
6436 && eol_seen
!= EOL_SEEN_CRLF
6437 && eol_seen
!= EOL_SEEN_CR
)
6438 eol_seen
= EOL_SEEN_LF
;
6439 if (eol_seen
!= EOL_SEEN_NONE
)
6440 eol_type
= adjust_coding_eol_type (coding
, eol_seen
);
6443 if (EQ (eol_type
, Qmac
))
6445 for (p
= pbeg
; p
< pend
; p
++)
6449 else if (EQ (eol_type
, Qdos
))
6453 if (NILP (coding
->dst_object
))
6455 /* Start deleting '\r' from the tail to minimize the memory
6457 for (p
= pend
- 2; p
>= pbeg
; p
--)
6460 memmove (p
, p
+ 1, pend
-- - p
- 1);
6466 ptrdiff_t pos_byte
= coding
->dst_pos_byte
;
6467 ptrdiff_t pos
= coding
->dst_pos
;
6468 ptrdiff_t pos_end
= pos
+ coding
->produced_char
- 1;
6470 while (pos
< pos_end
)
6472 p
= BYTE_POS_ADDR (pos_byte
);
6473 if (*p
== '\r' && p
[1] == '\n')
6475 del_range_2 (pos
, pos_byte
, pos
+ 1, pos_byte
+ 1, 0);
6480 if (coding
->dst_multibyte
)
6481 pos_byte
+= BYTES_BY_CHAR_HEAD (*p
);
6486 coding
->produced
-= n
;
6487 coding
->produced_char
-= n
;
6492 /* Return a translation table (or list of them) from coding system
6493 attribute vector ATTRS for encoding (if ENCODEP) or decoding (if
6497 get_translation_table (Lisp_Object attrs
, bool encodep
, int *max_lookup
)
6499 Lisp_Object standard
, translation_table
;
6502 if (NILP (Venable_character_translation
))
6509 translation_table
= CODING_ATTR_ENCODE_TBL (attrs
),
6510 standard
= Vstandard_translation_table_for_encode
;
6512 translation_table
= CODING_ATTR_DECODE_TBL (attrs
),
6513 standard
= Vstandard_translation_table_for_decode
;
6514 if (NILP (translation_table
))
6515 translation_table
= standard
;
6518 if (SYMBOLP (translation_table
))
6519 translation_table
= Fget (translation_table
, Qtranslation_table
);
6520 else if (CONSP (translation_table
))
6522 translation_table
= Fcopy_sequence (translation_table
);
6523 for (val
= translation_table
; CONSP (val
); val
= XCDR (val
))
6524 if (SYMBOLP (XCAR (val
)))
6525 XSETCAR (val
, Fget (XCAR (val
), Qtranslation_table
));
6527 if (CHAR_TABLE_P (standard
))
6529 if (CONSP (translation_table
))
6530 translation_table
= nconc2 (translation_table
,
6531 Fcons (standard
, Qnil
));
6533 translation_table
= Fcons (translation_table
,
6534 Fcons (standard
, Qnil
));
6541 if (CHAR_TABLE_P (translation_table
)
6542 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table
)) > 1)
6544 val
= XCHAR_TABLE (translation_table
)->extras
[1];
6545 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6546 *max_lookup
= XFASTINT (val
);
6548 else if (CONSP (translation_table
))
6552 for (tail
= translation_table
; CONSP (tail
); tail
= XCDR (tail
))
6553 if (CHAR_TABLE_P (XCAR (tail
))
6554 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail
))) > 1)
6556 Lisp_Object tailval
= XCHAR_TABLE (XCAR (tail
))->extras
[1];
6557 if (NATNUMP (tailval
) && *max_lookup
< XFASTINT (tailval
))
6558 *max_lookup
= XFASTINT (tailval
);
6562 return translation_table
;
6565 #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \
6568 if (CHAR_TABLE_P (table)) \
6570 trans = CHAR_TABLE_REF (table, c); \
6571 if (CHARACTERP (trans)) \
6572 c = XFASTINT (trans), trans = Qnil; \
6574 else if (CONSP (table)) \
6578 for (tail = table; CONSP (tail); tail = XCDR (tail)) \
6579 if (CHAR_TABLE_P (XCAR (tail))) \
6581 trans = CHAR_TABLE_REF (XCAR (tail), c); \
6582 if (CHARACTERP (trans)) \
6583 c = XFASTINT (trans), trans = Qnil; \
6584 else if (! NILP (trans)) \
6591 /* Return a translation of character(s) at BUF according to TRANS.
6592 TRANS is TO-CHAR or ((FROM . TO) ...) where
6593 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...].
6594 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a
6595 translation is found, and Qnil if not found..
6596 If BUF is too short to lookup characters in FROM, return Qt. */
6599 get_translation (Lisp_Object trans
, int *buf
, int *buf_end
)
6602 if (INTEGERP (trans
))
6604 for (; CONSP (trans
); trans
= XCDR (trans
))
6606 Lisp_Object val
= XCAR (trans
);
6607 Lisp_Object from
= XCAR (val
);
6608 ptrdiff_t len
= ASIZE (from
);
6611 for (i
= 0; i
< len
; i
++)
6613 if (buf
+ i
== buf_end
)
6615 if (XINT (AREF (from
, i
)) != buf
[i
])
6626 produce_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
6629 unsigned char *dst
= coding
->destination
+ coding
->produced
;
6630 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
6632 ptrdiff_t produced_chars
= 0;
6635 if (! coding
->chars_at_source
)
6637 /* Source characters are in coding->charbuf. */
6638 int *buf
= coding
->charbuf
;
6639 int *buf_end
= buf
+ coding
->charbuf_used
;
6641 if (EQ (coding
->src_object
, coding
->dst_object
))
6643 coding_set_source (coding
);
6644 dst_end
= ((unsigned char *) coding
->source
) + coding
->consumed
;
6647 while (buf
< buf_end
)
6654 ptrdiff_t from_nchars
= 1, to_nchars
= 1;
6655 Lisp_Object trans
= Qnil
;
6657 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
6660 trans
= get_translation (trans
, buf
, buf_end
);
6661 if (INTEGERP (trans
))
6663 else if (CONSP (trans
))
6665 from_nchars
= ASIZE (XCAR (trans
));
6666 trans
= XCDR (trans
);
6667 if (INTEGERP (trans
))
6671 to_nchars
= ASIZE (trans
);
6672 c
= XINT (AREF (trans
, 0));
6675 else if (EQ (trans
, Qt
) && ! last_block
)
6679 if ((dst_end
- dst
) / MAX_MULTIBYTE_LENGTH
< to_nchars
)
6681 if (((min (PTRDIFF_MAX
, SIZE_MAX
) - (buf_end
- buf
))
6682 / MAX_MULTIBYTE_LENGTH
)
6684 memory_full (SIZE_MAX
);
6685 dst
= alloc_destination (coding
,
6687 + MAX_MULTIBYTE_LENGTH
* to_nchars
,
6689 if (EQ (coding
->src_object
, coding
->dst_object
))
6691 coding_set_source (coding
);
6692 dst_end
= (((unsigned char *) coding
->source
)
6693 + coding
->consumed
);
6696 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6699 for (i
= 0; i
< to_nchars
; i
++)
6702 c
= XINT (AREF (trans
, i
));
6703 if (coding
->dst_multibyte
6704 || ! CHAR_BYTE8_P (c
))
6705 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
6707 *dst
++ = CHAR_TO_BYTE8 (c
);
6709 produced_chars
+= to_nchars
;
6713 /* This is an annotation datum. (-C) is the length. */
6716 carryover
= buf_end
- buf
;
6720 /* Source characters are at coding->source. */
6721 const unsigned char *src
= coding
->source
;
6722 const unsigned char *src_end
= src
+ coding
->consumed
;
6724 if (EQ (coding
->dst_object
, coding
->src_object
))
6725 dst_end
= (unsigned char *) src
;
6726 if (coding
->src_multibyte
!= coding
->dst_multibyte
)
6728 if (coding
->src_multibyte
)
6730 bool multibytep
= 1;
6731 ptrdiff_t consumed_chars
= 0;
6735 const unsigned char *src_base
= src
;
6741 if (EQ (coding
->src_object
, coding
->dst_object
))
6742 dst_end
= (unsigned char *) src
;
6745 ptrdiff_t offset
= src
- coding
->source
;
6747 dst
= alloc_destination (coding
, src_end
- src
+ 1,
6749 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6750 coding_set_source (coding
);
6751 src
= coding
->source
+ offset
;
6752 src_end
= coding
->source
+ coding
->consumed
;
6753 if (EQ (coding
->src_object
, coding
->dst_object
))
6754 dst_end
= (unsigned char *) src
;
6764 while (src
< src_end
)
6766 bool multibytep
= 1;
6769 if (dst
>= dst_end
- 1)
6771 if (EQ (coding
->src_object
, coding
->dst_object
))
6772 dst_end
= (unsigned char *) src
;
6773 if (dst
>= dst_end
- 1)
6775 ptrdiff_t offset
= src
- coding
->source
;
6776 ptrdiff_t more_bytes
;
6778 if (EQ (coding
->src_object
, coding
->dst_object
))
6779 more_bytes
= ((src_end
- src
) / 2) + 2;
6781 more_bytes
= src_end
- src
+ 2;
6782 dst
= alloc_destination (coding
, more_bytes
, dst
);
6783 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6784 coding_set_source (coding
);
6785 src
= coding
->source
+ offset
;
6786 src_end
= coding
->source
+ coding
->consumed
;
6787 if (EQ (coding
->src_object
, coding
->dst_object
))
6788 dst_end
= (unsigned char *) src
;
6796 if (!EQ (coding
->src_object
, coding
->dst_object
))
6798 ptrdiff_t require
= coding
->src_bytes
- coding
->dst_bytes
;
6802 ptrdiff_t offset
= src
- coding
->source
;
6804 dst
= alloc_destination (coding
, require
, dst
);
6805 coding_set_source (coding
);
6806 src
= coding
->source
+ offset
;
6807 src_end
= coding
->source
+ coding
->consumed
;
6810 produced_chars
= coding
->consumed_char
;
6811 while (src
< src_end
)
6816 produced
= dst
- (coding
->destination
+ coding
->produced
);
6817 if (BUFFERP (coding
->dst_object
) && produced_chars
> 0)
6818 insert_from_gap (produced_chars
, produced
);
6819 coding
->produced
+= produced
;
6820 coding
->produced_char
+= produced_chars
;
6824 /* Compose text in CODING->object according to the annotation data at
6825 CHARBUF. CHARBUF is an array:
6826 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ]
6830 produce_composition (struct coding_system
*coding
, int *charbuf
, ptrdiff_t pos
)
6834 enum composition_method method
;
6835 Lisp_Object components
;
6837 len
= -charbuf
[0] - MAX_ANNOTATION_LENGTH
;
6838 to
= pos
+ charbuf
[2];
6839 method
= (enum composition_method
) (charbuf
[4]);
6841 if (method
== COMPOSITION_RELATIVE
)
6845 Lisp_Object args
[MAX_COMPOSITION_COMPONENTS
* 2 - 1];
6848 if (method
== COMPOSITION_WITH_RULE
)
6849 len
= charbuf
[2] * 3 - 2;
6850 charbuf
+= MAX_ANNOTATION_LENGTH
;
6851 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */
6852 for (i
= j
= 0; i
< len
&& charbuf
[i
] != -1; i
++, j
++)
6854 if (charbuf
[i
] >= 0)
6855 args
[j
] = make_number (charbuf
[i
]);
6859 args
[j
] = make_number (charbuf
[i
] % 0x100);
6862 components
= (i
== j
? Fstring (j
, args
) : Fvector (j
, args
));
6864 compose_text (pos
, to
, components
, Qnil
, coding
->dst_object
);
6868 /* Put `charset' property on text in CODING->object according to
6869 the annotation data at CHARBUF. CHARBUF is an array:
6870 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ]
6874 produce_charset (struct coding_system
*coding
, int *charbuf
, ptrdiff_t pos
)
6876 ptrdiff_t from
= pos
- charbuf
[2];
6877 struct charset
*charset
= CHARSET_FROM_ID (charbuf
[3]);
6879 Fput_text_property (make_number (from
), make_number (pos
),
6880 Qcharset
, CHARSET_NAME (charset
),
6881 coding
->dst_object
);
6885 #define CHARBUF_SIZE 0x4000
6887 #define ALLOC_CONVERSION_WORK_AREA(coding) \
6889 coding->charbuf = SAFE_ALLOCA (CHARBUF_SIZE * sizeof (int)); \
6890 coding->charbuf_size = CHARBUF_SIZE; \
6895 produce_annotation (struct coding_system
*coding
, ptrdiff_t pos
)
6897 int *charbuf
= coding
->charbuf
;
6898 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
6900 if (NILP (coding
->dst_object
))
6903 while (charbuf
< charbuf_end
)
6909 int len
= -*charbuf
;
6914 case CODING_ANNOTATE_COMPOSITION_MASK
:
6915 produce_composition (coding
, charbuf
, pos
);
6917 case CODING_ANNOTATE_CHARSET_MASK
:
6918 produce_charset (coding
, charbuf
, pos
);
6926 /* Decode the data at CODING->src_object into CODING->dst_object.
6927 CODING->src_object is a buffer, a string, or nil.
6928 CODING->dst_object is a buffer.
6930 If CODING->src_object is a buffer, it must be the current buffer.
6931 In this case, if CODING->src_pos is positive, it is a position of
6932 the source text in the buffer, otherwise, the source text is in the
6933 gap area of the buffer, and CODING->src_pos specifies the offset of
6934 the text from GPT (which must be the same as PT). If this is the
6935 same buffer as CODING->dst_object, CODING->src_pos must be
6938 If CODING->src_object is a string, CODING->src_pos is an index to
6941 If CODING->src_object is nil, CODING->source must already point to
6942 the non-relocatable memory area. In this case, CODING->src_pos is
6943 an offset from CODING->source.
6945 The decoded data is inserted at the current point of the buffer
6950 decode_coding (struct coding_system
*coding
)
6953 Lisp_Object undo_list
;
6954 Lisp_Object translation_table
;
6955 struct ccl_spec cclspec
;
6961 if (BUFFERP (coding
->src_object
)
6962 && coding
->src_pos
> 0
6963 && coding
->src_pos
< GPT
6964 && coding
->src_pos
+ coding
->src_chars
> GPT
)
6965 move_gap_both (coding
->src_pos
, coding
->src_pos_byte
);
6968 if (BUFFERP (coding
->dst_object
))
6970 set_buffer_internal (XBUFFER (coding
->dst_object
));
6972 move_gap_both (PT
, PT_BYTE
);
6974 /* We must disable undo_list in order to record the whole insert
6975 transaction via record_insert at the end. But doing so also
6976 disables the recording of the first change to the undo_list.
6977 Therefore we check for first change here and record it via
6978 record_first_change if needed. */
6979 if (MODIFF
<= SAVE_MODIFF
)
6980 record_first_change ();
6982 undo_list
= BVAR (current_buffer
, undo_list
);
6983 bset_undo_list (current_buffer
, Qt
);
6986 coding
->consumed
= coding
->consumed_char
= 0;
6987 coding
->produced
= coding
->produced_char
= 0;
6988 coding
->chars_at_source
= 0;
6989 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
6992 ALLOC_CONVERSION_WORK_AREA (coding
);
6994 attrs
= CODING_ID_ATTRS (coding
->id
);
6995 translation_table
= get_translation_table (attrs
, 0, NULL
);
6998 if (coding
->decoder
== decode_coding_ccl
)
7000 coding
->spec
.ccl
= &cclspec
;
7001 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_DECODER (coding
));
7005 ptrdiff_t pos
= coding
->dst_pos
+ coding
->produced_char
;
7007 coding_set_source (coding
);
7008 coding
->annotated
= 0;
7009 coding
->charbuf_used
= carryover
;
7010 (*(coding
->decoder
)) (coding
);
7011 coding_set_destination (coding
);
7012 carryover
= produce_chars (coding
, translation_table
, 0);
7013 if (coding
->annotated
)
7014 produce_annotation (coding
, pos
);
7015 for (i
= 0; i
< carryover
; i
++)
7017 = coding
->charbuf
[coding
->charbuf_used
- carryover
+ i
];
7019 while (coding
->result
== CODING_RESULT_INSUFFICIENT_DST
7020 || (coding
->consumed
< coding
->src_bytes
7021 && (coding
->result
== CODING_RESULT_SUCCESS
7022 || coding
->result
== CODING_RESULT_INVALID_SRC
)));
7026 coding_set_destination (coding
);
7027 coding
->charbuf_used
= carryover
;
7028 produce_chars (coding
, translation_table
, 1);
7031 coding
->carryover_bytes
= 0;
7032 if (coding
->consumed
< coding
->src_bytes
)
7034 int nbytes
= coding
->src_bytes
- coding
->consumed
;
7035 const unsigned char *src
;
7037 coding_set_source (coding
);
7038 coding_set_destination (coding
);
7039 src
= coding
->source
+ coding
->consumed
;
7041 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
7043 /* Flush out unprocessed data as binary chars. We are sure
7044 that the number of data is less than the size of
7046 coding
->charbuf_used
= 0;
7047 coding
->chars_at_source
= 0;
7049 while (nbytes
-- > 0)
7054 c
= BYTE8_TO_CHAR (c
);
7055 coding
->charbuf
[coding
->charbuf_used
++] = c
;
7057 produce_chars (coding
, Qnil
, 1);
7061 /* Record unprocessed bytes in coding->carryover. We are
7062 sure that the number of data is less than the size of
7063 coding->carryover. */
7064 unsigned char *p
= coding
->carryover
;
7066 if (nbytes
> sizeof coding
->carryover
)
7067 nbytes
= sizeof coding
->carryover
;
7068 coding
->carryover_bytes
= nbytes
;
7069 while (nbytes
-- > 0)
7072 coding
->consumed
= coding
->src_bytes
;
7075 if (! EQ (CODING_ID_EOL_TYPE (coding
->id
), Qunix
)
7076 && !inhibit_eol_conversion
)
7077 decode_eol (coding
);
7078 if (BUFFERP (coding
->dst_object
))
7080 bset_undo_list (current_buffer
, undo_list
);
7081 record_insert (coding
->dst_pos
, coding
->produced_char
);
7088 /* Extract an annotation datum from a composition starting at POS and
7089 ending before LIMIT of CODING->src_object (buffer or string), store
7090 the data in BUF, set *STOP to a starting position of the next
7091 composition (if any) or to LIMIT, and return the address of the
7092 next element of BUF.
7094 If such an annotation is not found, set *STOP to a starting
7095 position of a composition after POS (if any) or to LIMIT, and
7099 handle_composition_annotation (ptrdiff_t pos
, ptrdiff_t limit
,
7100 struct coding_system
*coding
, int *buf
,
7103 ptrdiff_t start
, end
;
7106 if (! find_composition (pos
, limit
, &start
, &end
, &prop
, coding
->src_object
)
7109 else if (start
> pos
)
7115 /* We found a composition. Store the corresponding
7116 annotation data in BUF. */
7118 enum composition_method method
= COMPOSITION_METHOD (prop
);
7119 int nchars
= COMPOSITION_LENGTH (prop
);
7121 ADD_COMPOSITION_DATA (buf
, nchars
, 0, method
);
7122 if (method
!= COMPOSITION_RELATIVE
)
7124 Lisp_Object components
;
7125 ptrdiff_t i
, len
, i_byte
;
7127 components
= COMPOSITION_COMPONENTS (prop
);
7128 if (VECTORP (components
))
7130 len
= ASIZE (components
);
7131 for (i
= 0; i
< len
; i
++)
7132 *buf
++ = XINT (AREF (components
, i
));
7134 else if (STRINGP (components
))
7136 len
= SCHARS (components
);
7140 FETCH_STRING_CHAR_ADVANCE (*buf
, components
, i
, i_byte
);
7144 else if (INTEGERP (components
))
7147 *buf
++ = XINT (components
);
7149 else if (CONSP (components
))
7151 for (len
= 0; CONSP (components
);
7152 len
++, components
= XCDR (components
))
7153 *buf
++ = XINT (XCAR (components
));
7161 if (find_composition (end
, limit
, &start
, &end
, &prop
,
7172 /* Extract an annotation datum from a text property `charset' at POS of
7173 CODING->src_object (buffer of string), store the data in BUF, set
7174 *STOP to the position where the value of `charset' property changes
7175 (limiting by LIMIT), and return the address of the next element of
7178 If the property value is nil, set *STOP to the position where the
7179 property value is non-nil (limiting by LIMIT), and return BUF. */
7182 handle_charset_annotation (ptrdiff_t pos
, ptrdiff_t limit
,
7183 struct coding_system
*coding
, int *buf
,
7186 Lisp_Object val
, next
;
7189 val
= Fget_text_property (make_number (pos
), Qcharset
, coding
->src_object
);
7190 if (! NILP (val
) && CHARSETP (val
))
7191 id
= XINT (CHARSET_SYMBOL_ID (val
));
7194 ADD_CHARSET_DATA (buf
, 0, id
);
7195 next
= Fnext_single_property_change (make_number (pos
), Qcharset
,
7197 make_number (limit
));
7198 *stop
= XINT (next
);
7204 consume_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
7207 int *buf
= coding
->charbuf
;
7208 int *buf_end
= coding
->charbuf
+ coding
->charbuf_size
;
7209 const unsigned char *src
= coding
->source
+ coding
->consumed
;
7210 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
7211 ptrdiff_t pos
= coding
->src_pos
+ coding
->consumed_char
;
7212 ptrdiff_t end_pos
= coding
->src_pos
+ coding
->src_chars
;
7213 bool multibytep
= coding
->src_multibyte
;
7214 Lisp_Object eol_type
;
7216 ptrdiff_t stop
, stop_composition
, stop_charset
;
7217 int *lookup_buf
= NULL
;
7219 if (! NILP (translation_table
))
7220 lookup_buf
= alloca (sizeof (int) * max_lookup
);
7222 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
7223 if (VECTORP (eol_type
))
7226 /* Note: composition handling is not yet implemented. */
7227 coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
7229 if (NILP (coding
->src_object
))
7230 stop
= stop_composition
= stop_charset
= end_pos
;
7233 if (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
)
7234 stop
= stop_composition
= pos
;
7236 stop
= stop_composition
= end_pos
;
7237 if (coding
->common_flags
& CODING_ANNOTATE_CHARSET_MASK
)
7238 stop
= stop_charset
= pos
;
7240 stop_charset
= end_pos
;
7243 /* Compensate for CRLF and conversion. */
7244 buf_end
-= 1 + MAX_ANNOTATION_LENGTH
;
7245 while (buf
< buf_end
)
7253 if (pos
== stop_composition
)
7254 buf
= handle_composition_annotation (pos
, end_pos
, coding
,
7255 buf
, &stop_composition
);
7256 if (pos
== stop_charset
)
7257 buf
= handle_charset_annotation (pos
, end_pos
, coding
,
7258 buf
, &stop_charset
);
7259 stop
= (stop_composition
< stop_charset
7260 ? stop_composition
: stop_charset
);
7267 if (coding
->encoder
== encode_coding_raw_text
7268 || coding
->encoder
== encode_coding_ccl
)
7270 else if ((bytes
= MULTIBYTE_LENGTH (src
, src_end
)) > 0)
7271 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
+= bytes
;
7273 c
= BYTE8_TO_CHAR (*src
), src
++, pos
++;
7276 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
++;
7277 if ((c
== '\r') && (coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
))
7279 if (! EQ (eol_type
, Qunix
))
7283 if (EQ (eol_type
, Qdos
))
7291 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7296 ptrdiff_t from_nchars
= 1, to_nchars
= 1;
7297 int *lookup_buf_end
;
7298 const unsigned char *p
= src
;
7302 for (i
= 1; i
< max_lookup
&& p
< src_end
; i
++)
7303 lookup_buf
[i
] = STRING_CHAR_ADVANCE (p
);
7304 lookup_buf_end
= lookup_buf
+ i
;
7305 trans
= get_translation (trans
, lookup_buf
, lookup_buf_end
);
7306 if (INTEGERP (trans
))
7308 else if (CONSP (trans
))
7310 from_nchars
= ASIZE (XCAR (trans
));
7311 trans
= XCDR (trans
);
7312 if (INTEGERP (trans
))
7316 to_nchars
= ASIZE (trans
);
7317 if (buf_end
- buf
< to_nchars
)
7319 c
= XINT (AREF (trans
, 0));
7325 for (i
= 1; i
< to_nchars
; i
++)
7326 *buf
++ = XINT (AREF (trans
, i
));
7327 for (i
= 1; i
< from_nchars
; i
++, pos
++)
7328 src
+= MULTIBYTE_LENGTH_NO_CHECK (src
);
7332 coding
->consumed
= src
- coding
->source
;
7333 coding
->consumed_char
= pos
- coding
->src_pos
;
7334 coding
->charbuf_used
= buf
- coding
->charbuf
;
7335 coding
->chars_at_source
= 0;
7339 /* Encode the text at CODING->src_object into CODING->dst_object.
7340 CODING->src_object is a buffer or a string.
7341 CODING->dst_object is a buffer or nil.
7343 If CODING->src_object is a buffer, it must be the current buffer.
7344 In this case, if CODING->src_pos is positive, it is a position of
7345 the source text in the buffer, otherwise. the source text is in the
7346 gap area of the buffer, and coding->src_pos specifies the offset of
7347 the text from GPT (which must be the same as PT). If this is the
7348 same buffer as CODING->dst_object, CODING->src_pos must be
7349 negative and CODING should not have `pre-write-conversion'.
7351 If CODING->src_object is a string, CODING should not have
7352 `pre-write-conversion'.
7354 If CODING->dst_object is a buffer, the encoded data is inserted at
7355 the current point of that buffer.
7357 If CODING->dst_object is nil, the encoded data is placed at the
7358 memory area specified by CODING->destination. */
7361 encode_coding (struct coding_system
*coding
)
7364 Lisp_Object translation_table
;
7366 struct ccl_spec cclspec
;
7370 attrs
= CODING_ID_ATTRS (coding
->id
);
7371 if (coding
->encoder
== encode_coding_raw_text
)
7372 translation_table
= Qnil
, max_lookup
= 0;
7374 translation_table
= get_translation_table (attrs
, 1, &max_lookup
);
7376 if (BUFFERP (coding
->dst_object
))
7378 set_buffer_internal (XBUFFER (coding
->dst_object
));
7379 coding
->dst_multibyte
7380 = ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
7383 coding
->consumed
= coding
->consumed_char
= 0;
7384 coding
->produced
= coding
->produced_char
= 0;
7385 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7388 ALLOC_CONVERSION_WORK_AREA (coding
);
7390 if (coding
->encoder
== encode_coding_ccl
)
7392 coding
->spec
.ccl
= &cclspec
;
7393 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_ENCODER (coding
));
7396 coding_set_source (coding
);
7397 consume_chars (coding
, translation_table
, max_lookup
);
7398 coding_set_destination (coding
);
7399 (*(coding
->encoder
)) (coding
);
7400 } while (coding
->consumed_char
< coding
->src_chars
);
7402 if (BUFFERP (coding
->dst_object
) && coding
->produced_char
> 0)
7403 insert_from_gap (coding
->produced_char
, coding
->produced
);
7409 /* Name (or base name) of work buffer for code conversion. */
7410 static Lisp_Object Vcode_conversion_workbuf_name
;
7412 /* A working buffer used by the top level conversion. Once it is
7413 created, it is never destroyed. It has the name
7414 Vcode_conversion_workbuf_name. The other working buffers are
7415 destroyed after the use is finished, and their names are modified
7416 versions of Vcode_conversion_workbuf_name. */
7417 static Lisp_Object Vcode_conversion_reused_workbuf
;
7419 /* True iff Vcode_conversion_reused_workbuf is already in use. */
7420 static bool reused_workbuf_in_use
;
7423 /* Return a working buffer of code conversion. MULTIBYTE specifies the
7424 multibyteness of returning buffer. */
7427 make_conversion_work_buffer (bool multibyte
)
7429 Lisp_Object name
, workbuf
;
7430 struct buffer
*current
;
7432 if (reused_workbuf_in_use
)
7434 name
= Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name
, Qnil
);
7435 workbuf
= Fget_buffer_create (name
);
7439 reused_workbuf_in_use
= 1;
7440 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf
)))
7441 Vcode_conversion_reused_workbuf
7442 = Fget_buffer_create (Vcode_conversion_workbuf_name
);
7443 workbuf
= Vcode_conversion_reused_workbuf
;
7445 current
= current_buffer
;
7446 set_buffer_internal (XBUFFER (workbuf
));
7447 /* We can't allow modification hooks to run in the work buffer. For
7448 instance, directory_files_internal assumes that file decoding
7449 doesn't compile new regexps. */
7450 Fset (Fmake_local_variable (Qinhibit_modification_hooks
), Qt
);
7452 bset_undo_list (current_buffer
, Qt
);
7453 bset_enable_multibyte_characters (current_buffer
, multibyte
? Qt
: Qnil
);
7454 set_buffer_internal (current
);
7460 code_conversion_restore (Lisp_Object arg
)
7462 Lisp_Object current
, workbuf
;
7463 struct gcpro gcpro1
;
7466 current
= XCAR (arg
);
7467 workbuf
= XCDR (arg
);
7468 if (! NILP (workbuf
))
7470 if (EQ (workbuf
, Vcode_conversion_reused_workbuf
))
7471 reused_workbuf_in_use
= 0;
7473 Fkill_buffer (workbuf
);
7475 set_buffer_internal (XBUFFER (current
));
7481 code_conversion_save (bool with_work_buf
, bool multibyte
)
7483 Lisp_Object workbuf
= Qnil
;
7486 workbuf
= make_conversion_work_buffer (multibyte
);
7487 record_unwind_protect (code_conversion_restore
,
7488 Fcons (Fcurrent_buffer (), workbuf
));
7493 decode_coding_gap (struct coding_system
*coding
,
7494 ptrdiff_t chars
, ptrdiff_t bytes
)
7496 ptrdiff_t count
= SPECPDL_INDEX ();
7499 coding
->src_object
= Fcurrent_buffer ();
7500 coding
->src_chars
= chars
;
7501 coding
->src_bytes
= bytes
;
7502 coding
->src_pos
= -chars
;
7503 coding
->src_pos_byte
= -bytes
;
7504 coding
->src_multibyte
= chars
< bytes
;
7505 coding
->dst_object
= coding
->src_object
;
7506 coding
->dst_pos
= PT
;
7507 coding
->dst_pos_byte
= PT_BYTE
;
7508 coding
->dst_multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
7510 if (CODING_REQUIRE_DETECTION (coding
))
7511 detect_coding (coding
);
7512 attrs
= CODING_ID_ATTRS (coding
->id
);
7513 #ifndef CODING_DISABLE_ASCII_OPTIMIZATION
7514 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
))
7515 && NILP (CODING_ATTR_POST_READ (attrs
))
7516 && NILP (get_translation_table (attrs
, 0, NULL
))
7517 && (inhibit_eol_conversion
7518 || EQ (CODING_ID_EOL_TYPE (coding
->id
), Qunix
)))
7520 /* We can skip the conversion if all source bytes are ASCII. */
7521 if (coding
->head_ascii
< 0)
7523 /* We have not yet counted the number of ASCII bytes at the
7524 head of the source. Do it now. */
7525 const unsigned char *src
, *src_end
;
7527 coding_set_source (coding
);
7528 src_end
= coding
->source
+ coding
->src_bytes
;
7529 for (src
= coding
->source
; src
< src_end
; src
++)
7534 coding
->head_ascii
= src
- coding
->source
;
7536 if (coding
->src_bytes
== coding
->head_ascii
)
7538 /* No need of conversion. Use the data in the gap as is. */
7539 coding
->produced_char
= chars
;
7540 coding
->produced
= bytes
;
7541 adjust_after_replace (PT
, PT_BYTE
, Qnil
, chars
, bytes
, 1);
7545 #endif /* not CODING_DISABLE_ASCII_OPTIMIZATION */
7546 code_conversion_save (0, 0);
7548 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
7549 current_buffer
->text
->inhibit_shrinking
= 1;
7550 decode_coding (coding
);
7551 current_buffer
->text
->inhibit_shrinking
= 0;
7553 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7555 ptrdiff_t prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7558 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7559 val
= call1 (CODING_ATTR_POST_READ (attrs
),
7560 make_number (coding
->produced_char
));
7562 coding
->produced_char
+= Z
- prev_Z
;
7563 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7566 unbind_to (count
, Qnil
);
7570 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in
7571 SRC_OBJECT into DST_OBJECT by coding context CODING.
7573 SRC_OBJECT is a buffer, a string, or Qnil.
7575 If it is a buffer, the text is at point of the buffer. FROM and TO
7576 are positions in the buffer.
7578 If it is a string, the text is at the beginning of the string.
7579 FROM and TO are indices to the string.
7581 If it is nil, the text is at coding->source. FROM and TO are
7582 indices to coding->source.
7584 DST_OBJECT is a buffer, Qt, or Qnil.
7586 If it is a buffer, the decoded text is inserted at point of the
7587 buffer. If the buffer is the same as SRC_OBJECT, the source text
7590 If it is Qt, a string is made from the decoded text, and
7591 set in CODING->dst_object.
7593 If it is Qnil, the decoded text is stored at CODING->destination.
7594 The caller must allocate CODING->dst_bytes bytes at
7595 CODING->destination by xmalloc. If the decoded text is longer than
7596 CODING->dst_bytes, CODING->destination is relocated by xrealloc.
7600 decode_coding_object (struct coding_system
*coding
,
7601 Lisp_Object src_object
,
7602 ptrdiff_t from
, ptrdiff_t from_byte
,
7603 ptrdiff_t to
, ptrdiff_t to_byte
,
7604 Lisp_Object dst_object
)
7606 ptrdiff_t count
= SPECPDL_INDEX ();
7607 unsigned char *destination
IF_LINT (= NULL
);
7608 ptrdiff_t dst_bytes
IF_LINT (= 0);
7609 ptrdiff_t chars
= to
- from
;
7610 ptrdiff_t bytes
= to_byte
- from_byte
;
7612 ptrdiff_t saved_pt
= -1, saved_pt_byte
IF_LINT (= 0);
7613 bool need_marker_adjustment
= 0;
7614 Lisp_Object old_deactivate_mark
;
7616 old_deactivate_mark
= Vdeactivate_mark
;
7618 if (NILP (dst_object
))
7620 destination
= coding
->destination
;
7621 dst_bytes
= coding
->dst_bytes
;
7624 coding
->src_object
= src_object
;
7625 coding
->src_chars
= chars
;
7626 coding
->src_bytes
= bytes
;
7627 coding
->src_multibyte
= chars
< bytes
;
7629 if (STRINGP (src_object
))
7631 coding
->src_pos
= from
;
7632 coding
->src_pos_byte
= from_byte
;
7634 else if (BUFFERP (src_object
))
7636 set_buffer_internal (XBUFFER (src_object
));
7638 move_gap_both (from
, from_byte
);
7639 if (EQ (src_object
, dst_object
))
7641 struct Lisp_Marker
*tail
;
7643 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7645 tail
->need_adjustment
7646 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
7647 need_marker_adjustment
|= tail
->need_adjustment
;
7649 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7650 TEMP_SET_PT_BOTH (from
, from_byte
);
7651 current_buffer
->text
->inhibit_shrinking
= 1;
7652 del_range_both (from
, from_byte
, to
, to_byte
, 1);
7653 coding
->src_pos
= -chars
;
7654 coding
->src_pos_byte
= -bytes
;
7658 coding
->src_pos
= from
;
7659 coding
->src_pos_byte
= from_byte
;
7663 if (CODING_REQUIRE_DETECTION (coding
))
7664 detect_coding (coding
);
7665 attrs
= CODING_ID_ATTRS (coding
->id
);
7667 if (EQ (dst_object
, Qt
)
7668 || (! NILP (CODING_ATTR_POST_READ (attrs
))
7669 && NILP (dst_object
)))
7671 coding
->dst_multibyte
= !CODING_FOR_UNIBYTE (coding
);
7672 coding
->dst_object
= code_conversion_save (1, coding
->dst_multibyte
);
7673 coding
->dst_pos
= BEG
;
7674 coding
->dst_pos_byte
= BEG_BYTE
;
7676 else if (BUFFERP (dst_object
))
7678 code_conversion_save (0, 0);
7679 coding
->dst_object
= dst_object
;
7680 coding
->dst_pos
= BUF_PT (XBUFFER (dst_object
));
7681 coding
->dst_pos_byte
= BUF_PT_BYTE (XBUFFER (dst_object
));
7682 coding
->dst_multibyte
7683 = ! NILP (BVAR (XBUFFER (dst_object
), enable_multibyte_characters
));
7687 code_conversion_save (0, 0);
7688 coding
->dst_object
= Qnil
;
7689 /* Most callers presume this will return a multibyte result, and they
7690 won't use `binary' or `raw-text' anyway, so let's not worry about
7691 CODING_FOR_UNIBYTE. */
7692 coding
->dst_multibyte
= 1;
7695 decode_coding (coding
);
7697 if (BUFFERP (coding
->dst_object
))
7698 set_buffer_internal (XBUFFER (coding
->dst_object
));
7700 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7702 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
7703 ptrdiff_t prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7706 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7707 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
7708 old_deactivate_mark
);
7709 val
= safe_call1 (CODING_ATTR_POST_READ (attrs
),
7710 make_number (coding
->produced_char
));
7713 coding
->produced_char
+= Z
- prev_Z
;
7714 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7717 if (EQ (dst_object
, Qt
))
7719 coding
->dst_object
= Fbuffer_string ();
7721 else if (NILP (dst_object
) && BUFFERP (coding
->dst_object
))
7723 set_buffer_internal (XBUFFER (coding
->dst_object
));
7724 if (dst_bytes
< coding
->produced
)
7726 eassert (coding
->produced
> 0);
7727 destination
= xrealloc (destination
, coding
->produced
);
7728 if (BEGV
< GPT
&& GPT
< BEGV
+ coding
->produced_char
)
7729 move_gap_both (BEGV
, BEGV_BYTE
);
7730 memcpy (destination
, BEGV_ADDR
, coding
->produced
);
7731 coding
->destination
= destination
;
7737 /* This is the case of:
7738 (BUFFERP (src_object) && EQ (src_object, dst_object))
7739 As we have moved PT while replacing the original buffer
7740 contents, we must recover it now. */
7741 set_buffer_internal (XBUFFER (src_object
));
7742 current_buffer
->text
->inhibit_shrinking
= 0;
7743 if (saved_pt
< from
)
7744 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
7745 else if (saved_pt
< from
+ chars
)
7746 TEMP_SET_PT_BOTH (from
, from_byte
);
7747 else if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
7748 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
7749 saved_pt_byte
+ (coding
->produced
- bytes
));
7751 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
7752 saved_pt_byte
+ (coding
->produced
- bytes
));
7754 if (need_marker_adjustment
)
7756 struct Lisp_Marker
*tail
;
7758 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7759 if (tail
->need_adjustment
)
7761 tail
->need_adjustment
= 0;
7762 if (tail
->insertion_type
)
7764 tail
->bytepos
= from_byte
;
7765 tail
->charpos
= from
;
7769 tail
->bytepos
= from_byte
+ coding
->produced
;
7771 = (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
7772 ? tail
->bytepos
: from
+ coding
->produced_char
);
7778 Vdeactivate_mark
= old_deactivate_mark
;
7779 unbind_to (count
, coding
->dst_object
);
7784 encode_coding_object (struct coding_system
*coding
,
7785 Lisp_Object src_object
,
7786 ptrdiff_t from
, ptrdiff_t from_byte
,
7787 ptrdiff_t to
, ptrdiff_t to_byte
,
7788 Lisp_Object dst_object
)
7790 ptrdiff_t count
= SPECPDL_INDEX ();
7791 ptrdiff_t chars
= to
- from
;
7792 ptrdiff_t bytes
= to_byte
- from_byte
;
7794 ptrdiff_t saved_pt
= -1, saved_pt_byte
IF_LINT (= 0);
7795 bool need_marker_adjustment
= 0;
7796 bool kill_src_buffer
= 0;
7797 Lisp_Object old_deactivate_mark
;
7799 old_deactivate_mark
= Vdeactivate_mark
;
7801 coding
->src_object
= src_object
;
7802 coding
->src_chars
= chars
;
7803 coding
->src_bytes
= bytes
;
7804 coding
->src_multibyte
= chars
< bytes
;
7806 attrs
= CODING_ID_ATTRS (coding
->id
);
7808 if (EQ (src_object
, dst_object
))
7810 struct Lisp_Marker
*tail
;
7812 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7814 tail
->need_adjustment
7815 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
7816 need_marker_adjustment
|= tail
->need_adjustment
;
7820 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
7822 coding
->src_object
= code_conversion_save (1, coding
->src_multibyte
);
7823 set_buffer_internal (XBUFFER (coding
->src_object
));
7824 if (STRINGP (src_object
))
7825 insert_from_string (src_object
, from
, from_byte
, chars
, bytes
, 0);
7826 else if (BUFFERP (src_object
))
7827 insert_from_buffer (XBUFFER (src_object
), from
, chars
, 0);
7829 insert_1_both ((char *) coding
->source
+ from
, chars
, bytes
, 0, 0, 0);
7831 if (EQ (src_object
, dst_object
))
7833 set_buffer_internal (XBUFFER (src_object
));
7834 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7835 del_range_both (from
, from_byte
, to
, to_byte
, 1);
7836 set_buffer_internal (XBUFFER (coding
->src_object
));
7840 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
7842 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
7843 old_deactivate_mark
);
7844 safe_call2 (CODING_ATTR_PRE_WRITE (attrs
),
7845 make_number (BEG
), make_number (Z
));
7848 if (XBUFFER (coding
->src_object
) != current_buffer
)
7849 kill_src_buffer
= 1;
7850 coding
->src_object
= Fcurrent_buffer ();
7852 move_gap_both (BEG
, BEG_BYTE
);
7853 coding
->src_chars
= Z
- BEG
;
7854 coding
->src_bytes
= Z_BYTE
- BEG_BYTE
;
7855 coding
->src_pos
= BEG
;
7856 coding
->src_pos_byte
= BEG_BYTE
;
7857 coding
->src_multibyte
= Z
< Z_BYTE
;
7859 else if (STRINGP (src_object
))
7861 code_conversion_save (0, 0);
7862 coding
->src_pos
= from
;
7863 coding
->src_pos_byte
= from_byte
;
7865 else if (BUFFERP (src_object
))
7867 code_conversion_save (0, 0);
7868 set_buffer_internal (XBUFFER (src_object
));
7869 if (EQ (src_object
, dst_object
))
7871 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7872 coding
->src_object
= del_range_1 (from
, to
, 1, 1);
7873 coding
->src_pos
= 0;
7874 coding
->src_pos_byte
= 0;
7878 if (from
< GPT
&& to
>= GPT
)
7879 move_gap_both (from
, from_byte
);
7880 coding
->src_pos
= from
;
7881 coding
->src_pos_byte
= from_byte
;
7885 code_conversion_save (0, 0);
7887 if (BUFFERP (dst_object
))
7889 coding
->dst_object
= dst_object
;
7890 if (EQ (src_object
, dst_object
))
7892 coding
->dst_pos
= from
;
7893 coding
->dst_pos_byte
= from_byte
;
7897 struct buffer
*current
= current_buffer
;
7899 set_buffer_temp (XBUFFER (dst_object
));
7900 coding
->dst_pos
= PT
;
7901 coding
->dst_pos_byte
= PT_BYTE
;
7902 move_gap_both (coding
->dst_pos
, coding
->dst_pos_byte
);
7903 set_buffer_temp (current
);
7905 coding
->dst_multibyte
7906 = ! NILP (BVAR (XBUFFER (dst_object
), enable_multibyte_characters
));
7908 else if (EQ (dst_object
, Qt
))
7910 ptrdiff_t dst_bytes
= max (1, coding
->src_chars
);
7911 coding
->dst_object
= Qnil
;
7912 coding
->destination
= xmalloc (dst_bytes
);
7913 coding
->dst_bytes
= dst_bytes
;
7914 coding
->dst_multibyte
= 0;
7918 coding
->dst_object
= Qnil
;
7919 coding
->dst_multibyte
= 0;
7922 encode_coding (coding
);
7924 if (EQ (dst_object
, Qt
))
7926 if (BUFFERP (coding
->dst_object
))
7927 coding
->dst_object
= Fbuffer_string ();
7931 = make_unibyte_string ((char *) coding
->destination
,
7933 xfree (coding
->destination
);
7939 /* This is the case of:
7940 (BUFFERP (src_object) && EQ (src_object, dst_object))
7941 As we have moved PT while replacing the original buffer
7942 contents, we must recover it now. */
7943 set_buffer_internal (XBUFFER (src_object
));
7944 if (saved_pt
< from
)
7945 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
7946 else if (saved_pt
< from
+ chars
)
7947 TEMP_SET_PT_BOTH (from
, from_byte
);
7948 else if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
7949 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
7950 saved_pt_byte
+ (coding
->produced
- bytes
));
7952 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
7953 saved_pt_byte
+ (coding
->produced
- bytes
));
7955 if (need_marker_adjustment
)
7957 struct Lisp_Marker
*tail
;
7959 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7960 if (tail
->need_adjustment
)
7962 tail
->need_adjustment
= 0;
7963 if (tail
->insertion_type
)
7965 tail
->bytepos
= from_byte
;
7966 tail
->charpos
= from
;
7970 tail
->bytepos
= from_byte
+ coding
->produced
;
7972 = (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
7973 ? tail
->bytepos
: from
+ coding
->produced_char
);
7979 if (kill_src_buffer
)
7980 Fkill_buffer (coding
->src_object
);
7982 Vdeactivate_mark
= old_deactivate_mark
;
7983 unbind_to (count
, Qnil
);
7988 preferred_coding_system (void)
7990 int id
= coding_categories
[coding_priorities
[0]].id
;
7992 return CODING_ID_NAME (id
);
7995 #if defined (WINDOWSNT) || defined (CYGWIN)
7998 from_unicode (Lisp_Object str
)
8001 if (!STRING_MULTIBYTE (str
) &&
8004 str
= Fsubstring (str
, make_number (0), make_number (-1));
8007 return code_convert_string_norecord (str
, Qutf_16le
, 0);
8011 from_unicode_buffer (const wchar_t* wstr
)
8013 return from_unicode (
8014 make_unibyte_string (
8016 /* we get one of the two final 0 bytes for free. */
8017 1 + sizeof (wchar_t) * wcslen (wstr
)));
8021 to_unicode (Lisp_Object str
, Lisp_Object
*buf
)
8023 *buf
= code_convert_string_norecord (str
, Qutf_16le
, 1);
8024 /* We need to make another copy (in addition to the one made by
8025 code_convert_string_norecord) to ensure that the final string is
8026 _doubly_ zero terminated --- that is, that the string is
8027 terminated by two zero bytes and one utf-16le null character.
8028 Because strings are already terminated with a single zero byte,
8029 we just add one additional zero. */
8030 str
= make_uninit_string (SBYTES (*buf
) + 1);
8031 memcpy (SDATA (str
), SDATA (*buf
), SBYTES (*buf
));
8032 SDATA (str
) [SBYTES (*buf
)] = '\0';
8034 return WCSDATA (*buf
);
8037 #endif /* WINDOWSNT || CYGWIN */
8041 /*** 8. Emacs Lisp library functions ***/
8043 DEFUN ("coding-system-p", Fcoding_system_p
, Scoding_system_p
, 1, 1, 0,
8044 doc
: /* Return t if OBJECT is nil or a coding-system.
8045 See the documentation of `define-coding-system' for information
8046 about coding-system objects. */)
8047 (Lisp_Object object
)
8050 || CODING_SYSTEM_ID (object
) >= 0)
8052 if (! SYMBOLP (object
)
8053 || NILP (Fget (object
, Qcoding_system_define_form
)))
8058 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system
,
8059 Sread_non_nil_coding_system
, 1, 1, 0,
8060 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
8061 (Lisp_Object prompt
)
8066 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8067 Qt
, Qnil
, Qcoding_system_history
, Qnil
, Qnil
);
8069 while (SCHARS (val
) == 0);
8070 return (Fintern (val
, Qnil
));
8073 DEFUN ("read-coding-system", Fread_coding_system
, Sread_coding_system
, 1, 2, 0,
8074 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8075 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8076 Ignores case when completing coding systems (all Emacs coding systems
8077 are lower-case). */)
8078 (Lisp_Object prompt
, Lisp_Object default_coding_system
)
8081 ptrdiff_t count
= SPECPDL_INDEX ();
8083 if (SYMBOLP (default_coding_system
))
8084 default_coding_system
= SYMBOL_NAME (default_coding_system
);
8085 specbind (Qcompletion_ignore_case
, Qt
);
8086 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8087 Qt
, Qnil
, Qcoding_system_history
,
8088 default_coding_system
, Qnil
);
8089 unbind_to (count
, Qnil
);
8090 return (SCHARS (val
) == 0 ? Qnil
: Fintern (val
, Qnil
));
8093 DEFUN ("check-coding-system", Fcheck_coding_system
, Scheck_coding_system
,
8095 doc
: /* Check validity of CODING-SYSTEM.
8096 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
8097 It is valid if it is nil or a symbol defined as a coding system by the
8098 function `define-coding-system'. */)
8099 (Lisp_Object coding_system
)
8101 Lisp_Object define_form
;
8103 define_form
= Fget (coding_system
, Qcoding_system_define_form
);
8104 if (! NILP (define_form
))
8106 Fput (coding_system
, Qcoding_system_define_form
, Qnil
);
8107 safe_eval (define_form
);
8109 if (!NILP (Fcoding_system_p (coding_system
)))
8110 return coding_system
;
8111 xsignal1 (Qcoding_system_error
, coding_system
);
8115 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If
8116 HIGHEST, return the coding system of the highest
8117 priority among the detected coding systems. Otherwise return a
8118 list of detected coding systems sorted by their priorities. If
8119 MULTIBYTEP, it is assumed that the bytes are in correct
8120 multibyte form but contains only ASCII and eight-bit chars.
8121 Otherwise, the bytes are raw bytes.
8123 CODING-SYSTEM controls the detection as below:
8125 If it is nil, detect both text-format and eol-format. If the
8126 text-format part of CODING-SYSTEM is already specified
8127 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format
8128 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'),
8129 detect only text-format. */
8132 detect_coding_system (const unsigned char *src
,
8133 ptrdiff_t src_chars
, ptrdiff_t src_bytes
,
8134 bool highest
, bool multibytep
,
8135 Lisp_Object coding_system
)
8137 const unsigned char *src_end
= src
+ src_bytes
;
8138 Lisp_Object attrs
, eol_type
;
8139 Lisp_Object val
= Qnil
;
8140 struct coding_system coding
;
8142 struct coding_detection_info detect_info
;
8143 enum coding_category base_category
;
8144 bool null_byte_found
= 0, eight_bit_found
= 0;
8146 if (NILP (coding_system
))
8147 coding_system
= Qundecided
;
8148 setup_coding_system (coding_system
, &coding
);
8149 attrs
= CODING_ID_ATTRS (coding
.id
);
8150 eol_type
= CODING_ID_EOL_TYPE (coding
.id
);
8151 coding_system
= CODING_ATTR_BASE_NAME (attrs
);
8153 coding
.source
= src
;
8154 coding
.src_chars
= src_chars
;
8155 coding
.src_bytes
= src_bytes
;
8156 coding
.src_multibyte
= multibytep
;
8157 coding
.consumed
= 0;
8158 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8159 coding
.head_ascii
= 0;
8161 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
8163 /* At first, detect text-format if necessary. */
8164 base_category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8165 if (base_category
== coding_category_undecided
)
8167 enum coding_category category
IF_LINT (= 0);
8168 struct coding_system
*this IF_LINT (= NULL
);
8171 /* Skip all ASCII bytes except for a few ISO2022 controls. */
8172 for (; src
< src_end
; src
++)
8177 eight_bit_found
= 1;
8178 if (null_byte_found
)
8183 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
8184 && ! inhibit_iso_escape_detection
8185 && ! detect_info
.checked
)
8187 if (detect_coding_iso_2022 (&coding
, &detect_info
))
8189 /* We have scanned the whole data. */
8190 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
8192 /* We didn't find an 8-bit code. We may
8193 have found a null-byte, but it's very
8194 rare that a binary file confirm to
8197 coding
.head_ascii
= src
- coding
.source
;
8199 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
8203 else if (! c
&& !inhibit_null_byte_detection
)
8205 null_byte_found
= 1;
8206 if (eight_bit_found
)
8209 if (! eight_bit_found
)
8210 coding
.head_ascii
++;
8212 else if (! eight_bit_found
)
8213 coding
.head_ascii
++;
8216 if (null_byte_found
|| eight_bit_found
8217 || coding
.head_ascii
< coding
.src_bytes
8218 || detect_info
.found
)
8220 if (coding
.head_ascii
== coding
.src_bytes
)
8221 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
8222 for (i
= 0; i
< coding_category_raw_text
; i
++)
8224 category
= coding_priorities
[i
];
8225 this = coding_categories
+ category
;
8226 if (detect_info
.found
& (1 << category
))
8231 if (null_byte_found
)
8233 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
8234 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
8236 for (i
= 0; i
< coding_category_raw_text
; i
++)
8238 category
= coding_priorities
[i
];
8239 this = coding_categories
+ category
;
8243 /* No coding system of this category is defined. */
8244 detect_info
.rejected
|= (1 << category
);
8246 else if (category
>= coding_category_raw_text
)
8248 else if (detect_info
.checked
& (1 << category
))
8251 && (detect_info
.found
& (1 << category
)))
8254 else if ((*(this->detector
)) (&coding
, &detect_info
)
8256 && (detect_info
.found
& (1 << category
)))
8258 if (category
== coding_category_utf_16_auto
)
8260 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8261 category
= coding_category_utf_16_le
;
8263 category
= coding_category_utf_16_be
;
8271 if ((detect_info
.rejected
& CATEGORY_MASK_ANY
) == CATEGORY_MASK_ANY
8274 detect_info
.found
= CATEGORY_MASK_RAW_TEXT
;
8275 id
= CODING_SYSTEM_ID (Qno_conversion
);
8276 val
= Fcons (make_number (id
), Qnil
);
8278 else if (! detect_info
.rejected
&& ! detect_info
.found
)
8280 detect_info
.found
= CATEGORY_MASK_ANY
;
8281 id
= coding_categories
[coding_category_undecided
].id
;
8282 val
= Fcons (make_number (id
), Qnil
);
8286 if (detect_info
.found
)
8288 detect_info
.found
= 1 << category
;
8289 val
= Fcons (make_number (this->id
), Qnil
);
8292 for (i
= 0; i
< coding_category_raw_text
; i
++)
8293 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
8295 detect_info
.found
= 1 << coding_priorities
[i
];
8296 id
= coding_categories
[coding_priorities
[i
]].id
;
8297 val
= Fcons (make_number (id
), Qnil
);
8303 int mask
= detect_info
.rejected
| detect_info
.found
;
8306 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8308 category
= coding_priorities
[i
];
8309 if (! (mask
& (1 << category
)))
8311 found
|= 1 << category
;
8312 id
= coding_categories
[category
].id
;
8314 val
= Fcons (make_number (id
), val
);
8317 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8319 category
= coding_priorities
[i
];
8320 if (detect_info
.found
& (1 << category
))
8322 id
= coding_categories
[category
].id
;
8323 val
= Fcons (make_number (id
), val
);
8326 detect_info
.found
|= found
;
8329 else if (base_category
== coding_category_utf_8_auto
)
8331 if (detect_coding_utf_8 (&coding
, &detect_info
))
8333 struct coding_system
*this;
8335 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
8336 this = coding_categories
+ coding_category_utf_8_sig
;
8338 this = coding_categories
+ coding_category_utf_8_nosig
;
8339 val
= Fcons (make_number (this->id
), Qnil
);
8342 else if (base_category
== coding_category_utf_16_auto
)
8344 if (detect_coding_utf_16 (&coding
, &detect_info
))
8346 struct coding_system
*this;
8348 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8349 this = coding_categories
+ coding_category_utf_16_le
;
8350 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
8351 this = coding_categories
+ coding_category_utf_16_be
;
8352 else if (detect_info
.rejected
& CATEGORY_MASK_UTF_16_LE_NOSIG
)
8353 this = coding_categories
+ coding_category_utf_16_be_nosig
;
8355 this = coding_categories
+ coding_category_utf_16_le_nosig
;
8356 val
= Fcons (make_number (this->id
), Qnil
);
8361 detect_info
.found
= 1 << XINT (CODING_ATTR_CATEGORY (attrs
));
8362 val
= Fcons (make_number (coding
.id
), Qnil
);
8365 /* Then, detect eol-format if necessary. */
8367 int normal_eol
= -1, utf_16_be_eol
= -1, utf_16_le_eol
= -1;
8370 if (VECTORP (eol_type
))
8372 if (detect_info
.found
& ~CATEGORY_MASK_UTF_16
)
8374 if (null_byte_found
)
8375 normal_eol
= EOL_SEEN_LF
;
8377 normal_eol
= detect_eol (coding
.source
, src_bytes
,
8378 coding_category_raw_text
);
8380 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_BE
8381 | CATEGORY_MASK_UTF_16_BE_NOSIG
))
8382 utf_16_be_eol
= detect_eol (coding
.source
, src_bytes
,
8383 coding_category_utf_16_be
);
8384 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_LE
8385 | CATEGORY_MASK_UTF_16_LE_NOSIG
))
8386 utf_16_le_eol
= detect_eol (coding
.source
, src_bytes
,
8387 coding_category_utf_16_le
);
8391 if (EQ (eol_type
, Qunix
))
8392 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_LF
;
8393 else if (EQ (eol_type
, Qdos
))
8394 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CRLF
;
8396 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CR
;
8399 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
8401 enum coding_category category
;
8404 id
= XINT (XCAR (tail
));
8405 attrs
= CODING_ID_ATTRS (id
);
8406 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8407 eol_type
= CODING_ID_EOL_TYPE (id
);
8408 if (VECTORP (eol_type
))
8410 if (category
== coding_category_utf_16_be
8411 || category
== coding_category_utf_16_be_nosig
)
8412 this_eol
= utf_16_be_eol
;
8413 else if (category
== coding_category_utf_16_le
8414 || category
== coding_category_utf_16_le_nosig
)
8415 this_eol
= utf_16_le_eol
;
8417 this_eol
= normal_eol
;
8419 if (this_eol
== EOL_SEEN_LF
)
8420 XSETCAR (tail
, AREF (eol_type
, 0));
8421 else if (this_eol
== EOL_SEEN_CRLF
)
8422 XSETCAR (tail
, AREF (eol_type
, 1));
8423 else if (this_eol
== EOL_SEEN_CR
)
8424 XSETCAR (tail
, AREF (eol_type
, 2));
8426 XSETCAR (tail
, CODING_ID_NAME (id
));
8429 XSETCAR (tail
, CODING_ID_NAME (id
));
8433 return (highest
? (CONSP (val
) ? XCAR (val
) : Qnil
) : val
);
8437 DEFUN ("detect-coding-region", Fdetect_coding_region
, Sdetect_coding_region
,
8439 doc
: /* Detect coding system of the text in the region between START and END.
8440 Return a list of possible coding systems ordered by priority.
8441 The coding systems to try and their priorities follows what
8442 the function `coding-system-priority-list' (which see) returns.
8444 If only ASCII characters are found (except for such ISO-2022 control
8445 characters as ESC), it returns a list of single element `undecided'
8446 or its subsidiary coding system according to a detected end-of-line
8449 If optional argument HIGHEST is non-nil, return the coding system of
8450 highest priority. */)
8451 (Lisp_Object start
, Lisp_Object end
, Lisp_Object highest
)
8454 ptrdiff_t from_byte
, to_byte
;
8456 validate_region (&start
, &end
);
8457 from
= XINT (start
), to
= XINT (end
);
8458 from_byte
= CHAR_TO_BYTE (from
);
8459 to_byte
= CHAR_TO_BYTE (to
);
8461 if (from
< GPT
&& to
>= GPT
)
8462 move_gap_both (to
, to_byte
);
8464 return detect_coding_system (BYTE_POS_ADDR (from_byte
),
8465 to
- from
, to_byte
- from_byte
,
8467 !NILP (BVAR (current_buffer
8468 , enable_multibyte_characters
)),
8472 DEFUN ("detect-coding-string", Fdetect_coding_string
, Sdetect_coding_string
,
8474 doc
: /* Detect coding system of the text in STRING.
8475 Return a list of possible coding systems ordered by priority.
8476 The coding systems to try and their priorities follows what
8477 the function `coding-system-priority-list' (which see) returns.
8479 If only ASCII characters are found (except for such ISO-2022 control
8480 characters as ESC), it returns a list of single element `undecided'
8481 or its subsidiary coding system according to a detected end-of-line
8484 If optional argument HIGHEST is non-nil, return the coding system of
8485 highest priority. */)
8486 (Lisp_Object string
, Lisp_Object highest
)
8488 CHECK_STRING (string
);
8490 return detect_coding_system (SDATA (string
),
8491 SCHARS (string
), SBYTES (string
),
8492 !NILP (highest
), STRING_MULTIBYTE (string
),
8498 char_encodable_p (int c
, Lisp_Object attrs
)
8501 struct charset
*charset
;
8502 Lisp_Object translation_table
;
8504 translation_table
= CODING_ATTR_TRANS_TBL (attrs
);
8505 if (! NILP (translation_table
))
8506 c
= translate_char (translation_table
, c
);
8507 for (tail
= CODING_ATTR_CHARSET_LIST (attrs
);
8508 CONSP (tail
); tail
= XCDR (tail
))
8510 charset
= CHARSET_FROM_ID (XINT (XCAR (tail
)));
8511 if (CHAR_CHARSET_P (c
, charset
))
8514 return (! NILP (tail
));
8518 /* Return a list of coding systems that safely encode the text between
8519 START and END. If EXCLUDE is non-nil, it is a list of coding
8520 systems not to check. The returned list doesn't contain any such
8521 coding systems. In any case, if the text contains only ASCII or is
8522 unibyte, return t. */
8524 DEFUN ("find-coding-systems-region-internal",
8525 Ffind_coding_systems_region_internal
,
8526 Sfind_coding_systems_region_internal
, 2, 3, 0,
8527 doc
: /* Internal use only. */)
8528 (Lisp_Object start
, Lisp_Object end
, Lisp_Object exclude
)
8530 Lisp_Object coding_attrs_list
, safe_codings
;
8531 ptrdiff_t start_byte
, end_byte
;
8532 const unsigned char *p
, *pbeg
, *pend
;
8534 Lisp_Object tail
, elt
, work_table
;
8536 if (STRINGP (start
))
8538 if (!STRING_MULTIBYTE (start
)
8539 || SCHARS (start
) == SBYTES (start
))
8542 end_byte
= SBYTES (start
);
8546 CHECK_NUMBER_COERCE_MARKER (start
);
8547 CHECK_NUMBER_COERCE_MARKER (end
);
8548 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8549 args_out_of_range (start
, end
);
8550 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8552 start_byte
= CHAR_TO_BYTE (XINT (start
));
8553 end_byte
= CHAR_TO_BYTE (XINT (end
));
8554 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8557 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8559 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8560 move_gap_both (XINT (start
), start_byte
);
8562 move_gap_both (XINT (end
), end_byte
);
8566 coding_attrs_list
= Qnil
;
8567 for (tail
= Vcoding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8569 || NILP (Fmemq (XCAR (tail
), exclude
)))
8573 attrs
= AREF (CODING_SYSTEM_SPEC (XCAR (tail
)), 0);
8574 if (EQ (XCAR (tail
), CODING_ATTR_BASE_NAME (attrs
))
8575 && ! EQ (CODING_ATTR_TYPE (attrs
), Qundecided
))
8577 ASET (attrs
, coding_attr_trans_tbl
,
8578 get_translation_table (attrs
, 1, NULL
));
8579 coding_attrs_list
= Fcons (attrs
, coding_attrs_list
);
8583 if (STRINGP (start
))
8584 p
= pbeg
= SDATA (start
);
8586 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
8587 pend
= p
+ (end_byte
- start_byte
);
8589 while (p
< pend
&& ASCII_BYTE_P (*p
)) p
++;
8590 while (p
< pend
&& ASCII_BYTE_P (*(pend
- 1))) pend
--;
8592 work_table
= Fmake_char_table (Qnil
, Qnil
);
8595 if (ASCII_BYTE_P (*p
))
8599 c
= STRING_CHAR_ADVANCE (p
);
8600 if (!NILP (char_table_ref (work_table
, c
)))
8601 /* This character was already checked. Ignore it. */
8604 charset_map_loaded
= 0;
8605 for (tail
= coding_attrs_list
; CONSP (tail
);)
8610 else if (char_encodable_p (c
, elt
))
8612 else if (CONSP (XCDR (tail
)))
8614 XSETCAR (tail
, XCAR (XCDR (tail
)));
8615 XSETCDR (tail
, XCDR (XCDR (tail
)));
8619 XSETCAR (tail
, Qnil
);
8623 if (charset_map_loaded
)
8625 ptrdiff_t p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
8627 if (STRINGP (start
))
8628 pbeg
= SDATA (start
);
8630 pbeg
= BYTE_POS_ADDR (start_byte
);
8631 p
= pbeg
+ p_offset
;
8632 pend
= pbeg
+ pend_offset
;
8634 char_table_set (work_table
, c
, Qt
);
8638 safe_codings
= list2 (Qraw_text
, Qno_conversion
);
8639 for (tail
= coding_attrs_list
; CONSP (tail
); tail
= XCDR (tail
))
8640 if (! NILP (XCAR (tail
)))
8641 safe_codings
= Fcons (CODING_ATTR_BASE_NAME (XCAR (tail
)), safe_codings
);
8643 return safe_codings
;
8647 DEFUN ("unencodable-char-position", Funencodable_char_position
,
8648 Sunencodable_char_position
, 3, 5, 0,
8650 Return position of first un-encodable character in a region.
8651 START and END specify the region and CODING-SYSTEM specifies the
8652 encoding to check. Return nil if CODING-SYSTEM does encode the region.
8654 If optional 4th argument COUNT is non-nil, it specifies at most how
8655 many un-encodable characters to search. In this case, the value is a
8658 If optional 5th argument STRING is non-nil, it is a string to search
8659 for un-encodable characters. In that case, START and END are indexes
8661 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object count
, Lisp_Object string
)
8664 struct coding_system coding
;
8665 Lisp_Object attrs
, charset_list
, translation_table
;
8666 Lisp_Object positions
;
8668 const unsigned char *p
, *stop
, *pend
;
8669 bool ascii_compatible
;
8671 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
8672 attrs
= CODING_ID_ATTRS (coding
.id
);
8673 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
8675 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
8676 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
8677 translation_table
= get_translation_table (attrs
, 1, NULL
);
8681 validate_region (&start
, &end
);
8682 from
= XINT (start
);
8684 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
8685 || (ascii_compatible
8686 && (to
- from
) == (CHAR_TO_BYTE (to
) - (CHAR_TO_BYTE (from
)))))
8688 p
= CHAR_POS_ADDR (from
);
8689 pend
= CHAR_POS_ADDR (to
);
8690 if (from
< GPT
&& to
>= GPT
)
8697 CHECK_STRING (string
);
8698 CHECK_NATNUM (start
);
8700 if (! (XINT (start
) <= XINT (end
) && XINT (end
) <= SCHARS (string
)))
8701 args_out_of_range_3 (string
, start
, end
);
8702 from
= XINT (start
);
8704 if (! STRING_MULTIBYTE (string
))
8706 p
= SDATA (string
) + string_char_to_byte (string
, from
);
8707 stop
= pend
= SDATA (string
) + string_char_to_byte (string
, to
);
8708 if (ascii_compatible
&& (to
- from
) == (pend
- p
))
8716 CHECK_NATNUM (count
);
8721 charset_map_loaded
= 0;
8726 if (ascii_compatible
)
8727 while (p
< stop
&& ASCII_BYTE_P (*p
))
8737 c
= STRING_CHAR_ADVANCE (p
);
8738 if (! (ASCII_CHAR_P (c
) && ascii_compatible
)
8739 && ! char_charset (translate_char (translation_table
, c
),
8740 charset_list
, NULL
))
8742 positions
= Fcons (make_number (from
), positions
);
8749 if (charset_map_loaded
&& NILP (string
))
8751 p
= CHAR_POS_ADDR (from
);
8752 pend
= CHAR_POS_ADDR (to
);
8753 if (from
< GPT
&& to
>= GPT
)
8757 charset_map_loaded
= 0;
8761 return (NILP (count
) ? Fcar (positions
) : Fnreverse (positions
));
8765 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region
,
8766 Scheck_coding_systems_region
, 3, 3, 0,
8767 doc
: /* Check if the region is encodable by coding systems.
8769 START and END are buffer positions specifying the region.
8770 CODING-SYSTEM-LIST is a list of coding systems to check.
8772 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where
8773 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the
8774 whole region, POS0, POS1, ... are buffer positions where non-encodable
8775 characters are found.
8777 If all coding systems in CODING-SYSTEM-LIST can encode the region, the
8780 START may be a string. In that case, check if the string is
8781 encodable, and the value contains indices to the string instead of
8782 buffer positions. END is ignored.
8784 If the current buffer (or START if it is a string) is unibyte, the value
8786 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system_list
)
8789 ptrdiff_t start_byte
, end_byte
;
8791 const unsigned char *p
, *pbeg
, *pend
;
8793 Lisp_Object tail
, elt
, attrs
;
8795 if (STRINGP (start
))
8797 if (!STRING_MULTIBYTE (start
)
8798 || SCHARS (start
) == SBYTES (start
))
8801 end_byte
= SBYTES (start
);
8806 CHECK_NUMBER_COERCE_MARKER (start
);
8807 CHECK_NUMBER_COERCE_MARKER (end
);
8808 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8809 args_out_of_range (start
, end
);
8810 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8812 start_byte
= CHAR_TO_BYTE (XINT (start
));
8813 end_byte
= CHAR_TO_BYTE (XINT (end
));
8814 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8817 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8819 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8820 move_gap_both (XINT (start
), start_byte
);
8822 move_gap_both (XINT (end
), end_byte
);
8828 for (tail
= coding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8831 attrs
= AREF (CODING_SYSTEM_SPEC (elt
), 0);
8832 ASET (attrs
, coding_attr_trans_tbl
,
8833 get_translation_table (attrs
, 1, NULL
));
8834 list
= Fcons (Fcons (elt
, Fcons (attrs
, Qnil
)), list
);
8837 if (STRINGP (start
))
8838 p
= pbeg
= SDATA (start
);
8840 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
8841 pend
= p
+ (end_byte
- start_byte
);
8843 while (p
< pend
&& ASCII_BYTE_P (*p
)) p
++, pos
++;
8844 while (p
< pend
&& ASCII_BYTE_P (*(pend
- 1))) pend
--;
8848 if (ASCII_BYTE_P (*p
))
8852 c
= STRING_CHAR_ADVANCE (p
);
8854 charset_map_loaded
= 0;
8855 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
8857 elt
= XCDR (XCAR (tail
));
8858 if (! char_encodable_p (c
, XCAR (elt
)))
8859 XSETCDR (elt
, Fcons (make_number (pos
), XCDR (elt
)));
8861 if (charset_map_loaded
)
8863 ptrdiff_t p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
8865 if (STRINGP (start
))
8866 pbeg
= SDATA (start
);
8868 pbeg
= BYTE_POS_ADDR (start_byte
);
8869 p
= pbeg
+ p_offset
;
8870 pend
= pbeg
+ pend_offset
;
8878 for (; CONSP (tail
); tail
= XCDR (tail
))
8881 if (CONSP (XCDR (XCDR (elt
))))
8882 list
= Fcons (Fcons (XCAR (elt
), Fnreverse (XCDR (XCDR (elt
)))),
8891 code_convert_region (Lisp_Object start
, Lisp_Object end
,
8892 Lisp_Object coding_system
, Lisp_Object dst_object
,
8893 bool encodep
, bool norecord
)
8895 struct coding_system coding
;
8896 ptrdiff_t from
, from_byte
, to
, to_byte
;
8897 Lisp_Object src_object
;
8899 if (NILP (coding_system
))
8900 coding_system
= Qno_conversion
;
8902 CHECK_CODING_SYSTEM (coding_system
);
8903 src_object
= Fcurrent_buffer ();
8904 if (NILP (dst_object
))
8905 dst_object
= src_object
;
8906 else if (! EQ (dst_object
, Qt
))
8907 CHECK_BUFFER (dst_object
);
8909 validate_region (&start
, &end
);
8910 from
= XFASTINT (start
);
8911 from_byte
= CHAR_TO_BYTE (from
);
8912 to
= XFASTINT (end
);
8913 to_byte
= CHAR_TO_BYTE (to
);
8915 setup_coding_system (coding_system
, &coding
);
8916 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8919 encode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
8922 decode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
8925 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
8927 return (BUFFERP (dst_object
)
8928 ? make_number (coding
.produced_char
)
8929 : coding
.dst_object
);
8933 DEFUN ("decode-coding-region", Fdecode_coding_region
, Sdecode_coding_region
,
8934 3, 4, "r\nzCoding system: ",
8935 doc
: /* Decode the current region from the specified coding system.
8936 When called from a program, takes four arguments:
8937 START, END, CODING-SYSTEM, and DESTINATION.
8938 START and END are buffer positions.
8940 Optional 4th arguments DESTINATION specifies where the decoded text goes.
8941 If nil, the region between START and END is replaced by the decoded text.
8942 If buffer, the decoded text is inserted in that buffer after point (point
8944 In those cases, the length of the decoded text is returned.
8945 If DESTINATION is t, the decoded text is returned.
8947 This function sets `last-coding-system-used' to the precise coding system
8948 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
8949 not fully specified.) */)
8950 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
8952 return code_convert_region (start
, end
, coding_system
, destination
, 0, 0);
8955 DEFUN ("encode-coding-region", Fencode_coding_region
, Sencode_coding_region
,
8956 3, 4, "r\nzCoding system: ",
8957 doc
: /* Encode the current region by specified coding system.
8958 When called from a program, takes four arguments:
8959 START, END, CODING-SYSTEM and DESTINATION.
8960 START and END are buffer positions.
8962 Optional 4th arguments DESTINATION specifies where the encoded text goes.
8963 If nil, the region between START and END is replace by the encoded text.
8964 If buffer, the encoded text is inserted in that buffer after point (point
8966 In those cases, the length of the encoded text is returned.
8967 If DESTINATION is t, the encoded text is returned.
8969 This function sets `last-coding-system-used' to the precise coding system
8970 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
8971 not fully specified.) */)
8972 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
8974 return code_convert_region (start
, end
, coding_system
, destination
, 1, 0);
8978 code_convert_string (Lisp_Object string
, Lisp_Object coding_system
,
8979 Lisp_Object dst_object
, bool encodep
, bool nocopy
,
8982 struct coding_system coding
;
8983 ptrdiff_t chars
, bytes
;
8985 CHECK_STRING (string
);
8986 if (NILP (coding_system
))
8989 Vlast_coding_system_used
= Qno_conversion
;
8990 if (NILP (dst_object
))
8991 return (nocopy
? Fcopy_sequence (string
) : string
);
8994 if (NILP (coding_system
))
8995 coding_system
= Qno_conversion
;
8997 CHECK_CODING_SYSTEM (coding_system
);
8998 if (NILP (dst_object
))
9000 else if (! EQ (dst_object
, Qt
))
9001 CHECK_BUFFER (dst_object
);
9003 setup_coding_system (coding_system
, &coding
);
9004 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9005 chars
= SCHARS (string
);
9006 bytes
= SBYTES (string
);
9008 encode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9010 decode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9012 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9014 return (BUFFERP (dst_object
)
9015 ? make_number (coding
.produced_char
)
9016 : coding
.dst_object
);
9020 /* Encode or decode STRING according to CODING_SYSTEM.
9021 Do not set Vlast_coding_system_used.
9023 This function is called only from macros DECODE_FILE and
9024 ENCODE_FILE, thus we ignore character composition. */
9027 code_convert_string_norecord (Lisp_Object string
, Lisp_Object coding_system
,
9030 return code_convert_string (string
, coding_system
, Qt
, encodep
, 0, 1);
9034 DEFUN ("decode-coding-string", Fdecode_coding_string
, Sdecode_coding_string
,
9036 doc
: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
9038 Optional third arg NOCOPY non-nil means it is OK to return STRING itself
9039 if the decoding operation is trivial.
9041 Optional fourth arg BUFFER non-nil means that the decoded text is
9042 inserted in that buffer after point (point does not move). In this
9043 case, the return value is the length of the decoded text.
9045 This function sets `last-coding-system-used' to the precise coding system
9046 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9047 not fully specified.) */)
9048 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9050 return code_convert_string (string
, coding_system
, buffer
,
9051 0, ! NILP (nocopy
), 0);
9054 DEFUN ("encode-coding-string", Fencode_coding_string
, Sencode_coding_string
,
9056 doc
: /* Encode STRING to CODING-SYSTEM, and return the result.
9058 Optional third arg NOCOPY non-nil means it is OK to return STRING
9059 itself if the encoding operation is trivial.
9061 Optional fourth arg BUFFER non-nil means that the encoded text is
9062 inserted in that buffer after point (point does not move). In this
9063 case, the return value is the length of the encoded text.
9065 This function sets `last-coding-system-used' to the precise coding system
9066 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9067 not fully specified.) */)
9068 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9070 return code_convert_string (string
, coding_system
, buffer
,
9071 1, ! NILP (nocopy
), 0);
9075 DEFUN ("decode-sjis-char", Fdecode_sjis_char
, Sdecode_sjis_char
, 1, 1, 0,
9076 doc
: /* Decode a Japanese character which has CODE in shift_jis encoding.
9077 Return the corresponding character. */)
9080 Lisp_Object spec
, attrs
, val
;
9081 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
, *charset
;
9085 CHECK_NATNUM (code
);
9086 ch
= XFASTINT (code
);
9087 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9088 attrs
= AREF (spec
, 0);
9090 if (ASCII_BYTE_P (ch
)
9091 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9094 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9095 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9096 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9097 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9102 charset
= charset_roman
;
9104 else if (ch
>= 0xA0 && ch
< 0xDF)
9107 charset
= charset_kana
;
9111 EMACS_INT c1
= ch
>> 8;
9114 if (c1
< 0x81 || (c1
> 0x9F && c1
< 0xE0) || c1
> 0xEF
9115 || c2
< 0x40 || c2
== 0x7F || c2
> 0xFC)
9116 error ("Invalid code: %"pI
"d", ch
);
9119 charset
= charset_kanji
;
9121 c
= DECODE_CHAR (charset
, c
);
9123 error ("Invalid code: %"pI
"d", ch
);
9124 return make_number (c
);
9128 DEFUN ("encode-sjis-char", Fencode_sjis_char
, Sencode_sjis_char
, 1, 1, 0,
9129 doc
: /* Encode a Japanese character CH to shift_jis encoding.
9130 Return the corresponding code in SJIS. */)
9133 Lisp_Object spec
, attrs
, charset_list
;
9135 struct charset
*charset
;
9138 CHECK_CHARACTER (ch
);
9140 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9141 attrs
= AREF (spec
, 0);
9143 if (ASCII_CHAR_P (c
)
9144 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9147 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9148 charset
= char_charset (c
, charset_list
, &code
);
9149 if (code
== CHARSET_INVALID_CODE (charset
))
9150 error ("Can't encode by shift_jis encoding: %c", c
);
9153 return make_number (code
);
9156 DEFUN ("decode-big5-char", Fdecode_big5_char
, Sdecode_big5_char
, 1, 1, 0,
9157 doc
: /* Decode a Big5 character which has CODE in BIG5 coding system.
9158 Return the corresponding character. */)
9161 Lisp_Object spec
, attrs
, val
;
9162 struct charset
*charset_roman
, *charset_big5
, *charset
;
9166 CHECK_NATNUM (code
);
9167 ch
= XFASTINT (code
);
9168 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9169 attrs
= AREF (spec
, 0);
9171 if (ASCII_BYTE_P (ch
)
9172 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9175 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9176 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9177 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9182 charset
= charset_roman
;
9186 EMACS_INT b1
= ch
>> 8;
9188 if (b1
< 0xA1 || b1
> 0xFE
9189 || b2
< 0x40 || (b2
> 0x7E && b2
< 0xA1) || b2
> 0xFE)
9190 error ("Invalid code: %"pI
"d", ch
);
9192 charset
= charset_big5
;
9194 c
= DECODE_CHAR (charset
, c
);
9196 error ("Invalid code: %"pI
"d", ch
);
9197 return make_number (c
);
9200 DEFUN ("encode-big5-char", Fencode_big5_char
, Sencode_big5_char
, 1, 1, 0,
9201 doc
: /* Encode the Big5 character CH to BIG5 coding system.
9202 Return the corresponding character code in Big5. */)
9205 Lisp_Object spec
, attrs
, charset_list
;
9206 struct charset
*charset
;
9210 CHECK_CHARACTER (ch
);
9212 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9213 attrs
= AREF (spec
, 0);
9214 if (ASCII_CHAR_P (c
)
9215 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9218 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9219 charset
= char_charset (c
, charset_list
, &code
);
9220 if (code
== CHARSET_INVALID_CODE (charset
))
9221 error ("Can't encode by Big5 encoding: %c", c
);
9223 return make_number (code
);
9227 DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal
,
9228 Sset_terminal_coding_system_internal
, 1, 2, 0,
9229 doc
: /* Internal use only. */)
9230 (Lisp_Object coding_system
, Lisp_Object terminal
)
9232 struct terminal
*term
= get_terminal (terminal
, 1);
9233 struct coding_system
*terminal_coding
= TERMINAL_TERMINAL_CODING (term
);
9234 CHECK_SYMBOL (coding_system
);
9235 setup_coding_system (Fcheck_coding_system (coding_system
), terminal_coding
);
9236 /* We had better not send unsafe characters to terminal. */
9237 terminal_coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
9238 /* Character composition should be disabled. */
9239 terminal_coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9240 terminal_coding
->src_multibyte
= 1;
9241 terminal_coding
->dst_multibyte
= 0;
9243 (term
, (terminal_coding
->common_flags
& CODING_REQUIRE_ENCODING_MASK
9244 ? coding_charset_list (terminal_coding
)
9245 : Fcons (make_number (charset_ascii
), Qnil
)));
9249 DEFUN ("set-safe-terminal-coding-system-internal",
9250 Fset_safe_terminal_coding_system_internal
,
9251 Sset_safe_terminal_coding_system_internal
, 1, 1, 0,
9252 doc
: /* Internal use only. */)
9253 (Lisp_Object coding_system
)
9255 CHECK_SYMBOL (coding_system
);
9256 setup_coding_system (Fcheck_coding_system (coding_system
),
9257 &safe_terminal_coding
);
9258 /* Character composition should be disabled. */
9259 safe_terminal_coding
.common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9260 safe_terminal_coding
.src_multibyte
= 1;
9261 safe_terminal_coding
.dst_multibyte
= 0;
9265 DEFUN ("terminal-coding-system", Fterminal_coding_system
,
9266 Sterminal_coding_system
, 0, 1, 0,
9267 doc
: /* Return coding system specified for terminal output on the given terminal.
9268 TERMINAL may be a terminal object, a frame, or nil for the selected
9269 frame's terminal device. */)
9270 (Lisp_Object terminal
)
9272 struct coding_system
*terminal_coding
9273 = TERMINAL_TERMINAL_CODING (get_terminal (terminal
, 1));
9274 Lisp_Object coding_system
= CODING_ID_NAME (terminal_coding
->id
);
9276 /* For backward compatibility, return nil if it is `undecided'. */
9277 return (! EQ (coding_system
, Qundecided
) ? coding_system
: Qnil
);
9280 DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal
,
9281 Sset_keyboard_coding_system_internal
, 1, 2, 0,
9282 doc
: /* Internal use only. */)
9283 (Lisp_Object coding_system
, Lisp_Object terminal
)
9285 struct terminal
*t
= get_terminal (terminal
, 1);
9286 CHECK_SYMBOL (coding_system
);
9287 if (NILP (coding_system
))
9288 coding_system
= Qno_conversion
;
9290 Fcheck_coding_system (coding_system
);
9291 setup_coding_system (coding_system
, TERMINAL_KEYBOARD_CODING (t
));
9292 /* Character composition should be disabled. */
9293 TERMINAL_KEYBOARD_CODING (t
)->common_flags
9294 &= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9298 DEFUN ("keyboard-coding-system",
9299 Fkeyboard_coding_system
, Skeyboard_coding_system
, 0, 1, 0,
9300 doc
: /* Return coding system specified for decoding keyboard input. */)
9301 (Lisp_Object terminal
)
9303 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING
9304 (get_terminal (terminal
, 1))->id
);
9308 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system
,
9309 Sfind_operation_coding_system
, 1, MANY
, 0,
9310 doc
: /* Choose a coding system for an operation based on the target name.
9311 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9312 DECODING-SYSTEM is the coding system to use for decoding
9313 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9314 for encoding (in case OPERATION does encoding).
9316 The first argument OPERATION specifies an I/O primitive:
9317 For file I/O, `insert-file-contents' or `write-region'.
9318 For process I/O, `call-process', `call-process-region', or `start-process'.
9319 For network I/O, `open-network-stream'.
9321 The remaining arguments should be the same arguments that were passed
9322 to the primitive. Depending on which primitive, one of those arguments
9323 is selected as the TARGET. For example, if OPERATION does file I/O,
9324 whichever argument specifies the file name is TARGET.
9326 TARGET has a meaning which depends on OPERATION:
9327 For file I/O, TARGET is a file name (except for the special case below).
9328 For process I/O, TARGET is a process name.
9329 For network I/O, TARGET is a service name or a port number.
9331 This function looks up what is specified for TARGET in
9332 `file-coding-system-alist', `process-coding-system-alist',
9333 or `network-coding-system-alist' depending on OPERATION.
9334 They may specify a coding system, a cons of coding systems,
9335 or a function symbol to call.
9336 In the last case, we call the function with one argument,
9337 which is a list of all the arguments given to this function.
9338 If the function can't decide a coding system, it can return
9339 `undecided' so that the normal code-detection is performed.
9341 If OPERATION is `insert-file-contents', the argument corresponding to
9342 TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
9343 file name to look up, and BUFFER is a buffer that contains the file's
9344 contents (not yet decoded). If `file-coding-system-alist' specifies a
9345 function to call for FILENAME, that function should examine the
9346 contents of BUFFER instead of reading the file.
9348 usage: (find-operation-coding-system OPERATION ARGUMENTS...) */)
9349 (ptrdiff_t nargs
, Lisp_Object
*args
)
9351 Lisp_Object operation
, target_idx
, target
, val
;
9352 register Lisp_Object chain
;
9355 error ("Too few arguments");
9356 operation
= args
[0];
9357 if (!SYMBOLP (operation
)
9358 || (target_idx
= Fget (operation
, Qtarget_idx
), !NATNUMP (target_idx
)))
9359 error ("Invalid first argument");
9360 if (nargs
<= 1 + XFASTINT (target_idx
))
9361 error ("Too few arguments for operation `%s'",
9362 SDATA (SYMBOL_NAME (operation
)));
9363 target
= args
[XFASTINT (target_idx
) + 1];
9364 if (!(STRINGP (target
)
9365 || (EQ (operation
, Qinsert_file_contents
) && CONSP (target
)
9366 && STRINGP (XCAR (target
)) && BUFFERP (XCDR (target
)))
9367 || (EQ (operation
, Qopen_network_stream
) && INTEGERP (target
))))
9368 error ("Invalid argument %"pI
"d of operation `%s'",
9369 XFASTINT (target_idx
) + 1, SDATA (SYMBOL_NAME (operation
)));
9371 target
= XCAR (target
);
9373 chain
= ((EQ (operation
, Qinsert_file_contents
)
9374 || EQ (operation
, Qwrite_region
))
9375 ? Vfile_coding_system_alist
9376 : (EQ (operation
, Qopen_network_stream
)
9377 ? Vnetwork_coding_system_alist
9378 : Vprocess_coding_system_alist
));
9382 for (; CONSP (chain
); chain
= XCDR (chain
))
9388 && ((STRINGP (target
)
9389 && STRINGP (XCAR (elt
))
9390 && fast_string_match (XCAR (elt
), target
) >= 0)
9391 || (INTEGERP (target
) && EQ (target
, XCAR (elt
)))))
9394 /* Here, if VAL is both a valid coding system and a valid
9395 function symbol, we return VAL as a coding system. */
9398 if (! SYMBOLP (val
))
9400 if (! NILP (Fcoding_system_p (val
)))
9401 return Fcons (val
, val
);
9402 if (! NILP (Ffboundp (val
)))
9404 /* We use call1 rather than safe_call1
9405 so as to get bug reports about functions called here
9406 which don't handle the current interface. */
9407 val
= call1 (val
, Flist (nargs
, args
));
9410 if (SYMBOLP (val
) && ! NILP (Fcoding_system_p (val
)))
9411 return Fcons (val
, val
);
9419 DEFUN ("set-coding-system-priority", Fset_coding_system_priority
,
9420 Sset_coding_system_priority
, 0, MANY
, 0,
9421 doc
: /* Assign higher priority to the coding systems given as arguments.
9422 If multiple coding systems belong to the same category,
9423 all but the first one are ignored.
9425 usage: (set-coding-system-priority &rest coding-systems) */)
9426 (ptrdiff_t nargs
, Lisp_Object
*args
)
9429 bool changed
[coding_category_max
];
9430 enum coding_category priorities
[coding_category_max
];
9432 memset (changed
, 0, sizeof changed
);
9434 for (i
= j
= 0; i
< nargs
; i
++)
9436 enum coding_category category
;
9437 Lisp_Object spec
, attrs
;
9439 CHECK_CODING_SYSTEM_GET_SPEC (args
[i
], spec
);
9440 attrs
= AREF (spec
, 0);
9441 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
9442 if (changed
[category
])
9443 /* Ignore this coding system because a coding system of the
9444 same category already had a higher priority. */
9446 changed
[category
] = 1;
9447 priorities
[j
++] = category
;
9448 if (coding_categories
[category
].id
>= 0
9449 && ! EQ (args
[i
], CODING_ID_NAME (coding_categories
[category
].id
)))
9450 setup_coding_system (args
[i
], &coding_categories
[category
]);
9451 Fset (AREF (Vcoding_category_table
, category
), args
[i
]);
9454 /* Now we have decided top J priorities. Reflect the order of the
9455 original priorities to the remaining priorities. */
9457 for (i
= j
, j
= 0; i
< coding_category_max
; i
++, j
++)
9459 while (j
< coding_category_max
9460 && changed
[coding_priorities
[j
]])
9462 if (j
== coding_category_max
)
9464 priorities
[i
] = coding_priorities
[j
];
9467 memcpy (coding_priorities
, priorities
, sizeof priorities
);
9469 /* Update `coding-category-list'. */
9470 Vcoding_category_list
= Qnil
;
9471 for (i
= coding_category_max
; i
-- > 0; )
9472 Vcoding_category_list
9473 = Fcons (AREF (Vcoding_category_table
, priorities
[i
]),
9474 Vcoding_category_list
);
9479 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list
,
9480 Scoding_system_priority_list
, 0, 1, 0,
9481 doc
: /* Return a list of coding systems ordered by their priorities.
9482 The list contains a subset of coding systems; i.e. coding systems
9483 assigned to each coding category (see `coding-category-list').
9485 HIGHESTP non-nil means just return the highest priority one. */)
9486 (Lisp_Object highestp
)
9491 for (i
= 0, val
= Qnil
; i
< coding_category_max
; i
++)
9493 enum coding_category category
= coding_priorities
[i
];
9494 int id
= coding_categories
[category
].id
;
9499 attrs
= CODING_ID_ATTRS (id
);
9500 if (! NILP (highestp
))
9501 return CODING_ATTR_BASE_NAME (attrs
);
9502 val
= Fcons (CODING_ATTR_BASE_NAME (attrs
), val
);
9504 return Fnreverse (val
);
9507 static const char *const suffixes
[] = { "-unix", "-dos", "-mac" };
9510 make_subsidiaries (Lisp_Object base
)
9512 Lisp_Object subsidiaries
;
9513 ptrdiff_t base_name_len
= SBYTES (SYMBOL_NAME (base
));
9514 char *buf
= alloca (base_name_len
+ 6);
9517 memcpy (buf
, SDATA (SYMBOL_NAME (base
)), base_name_len
);
9518 subsidiaries
= make_uninit_vector (3);
9519 for (i
= 0; i
< 3; i
++)
9521 strcpy (buf
+ base_name_len
, suffixes
[i
]);
9522 ASET (subsidiaries
, i
, intern (buf
));
9524 return subsidiaries
;
9528 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal
,
9529 Sdefine_coding_system_internal
, coding_arg_max
, MANY
, 0,
9530 doc
: /* For internal use only.
9531 usage: (define-coding-system-internal ...) */)
9532 (ptrdiff_t nargs
, Lisp_Object
*args
)
9535 Lisp_Object spec_vec
; /* [ ATTRS ALIASE EOL_TYPE ] */
9536 Lisp_Object attrs
; /* Vector of attributes. */
9537 Lisp_Object eol_type
;
9538 Lisp_Object aliases
;
9539 Lisp_Object coding_type
, charset_list
, safe_charsets
;
9540 enum coding_category category
;
9541 Lisp_Object tail
, val
;
9542 int max_charset_id
= 0;
9545 if (nargs
< coding_arg_max
)
9548 attrs
= Fmake_vector (make_number (coding_attr_last_index
), Qnil
);
9550 name
= args
[coding_arg_name
];
9551 CHECK_SYMBOL (name
);
9552 ASET (attrs
, coding_attr_base_name
, name
);
9554 val
= args
[coding_arg_mnemonic
];
9555 if (! STRINGP (val
))
9556 CHECK_CHARACTER (val
);
9557 ASET (attrs
, coding_attr_mnemonic
, val
);
9559 coding_type
= args
[coding_arg_coding_type
];
9560 CHECK_SYMBOL (coding_type
);
9561 ASET (attrs
, coding_attr_type
, coding_type
);
9563 charset_list
= args
[coding_arg_charset_list
];
9564 if (SYMBOLP (charset_list
))
9566 if (EQ (charset_list
, Qiso_2022
))
9568 if (! EQ (coding_type
, Qiso_2022
))
9569 error ("Invalid charset-list");
9570 charset_list
= Viso_2022_charset_list
;
9572 else if (EQ (charset_list
, Qemacs_mule
))
9574 if (! EQ (coding_type
, Qemacs_mule
))
9575 error ("Invalid charset-list");
9576 charset_list
= Vemacs_mule_charset_list
;
9578 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9580 if (! RANGED_INTEGERP (0, XCAR (tail
), INT_MAX
- 1))
9581 error ("Invalid charset-list");
9582 if (max_charset_id
< XFASTINT (XCAR (tail
)))
9583 max_charset_id
= XFASTINT (XCAR (tail
));
9588 charset_list
= Fcopy_sequence (charset_list
);
9589 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9591 struct charset
*charset
;
9594 CHECK_CHARSET_GET_CHARSET (val
, charset
);
9595 if (EQ (coding_type
, Qiso_2022
)
9596 ? CHARSET_ISO_FINAL (charset
) < 0
9597 : EQ (coding_type
, Qemacs_mule
)
9598 ? CHARSET_EMACS_MULE_ID (charset
) < 0
9600 error ("Can't handle charset `%s'",
9601 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9603 XSETCAR (tail
, make_number (charset
->id
));
9604 if (max_charset_id
< charset
->id
)
9605 max_charset_id
= charset
->id
;
9608 ASET (attrs
, coding_attr_charset_list
, charset_list
);
9610 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
9611 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
9612 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9613 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
9614 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
9616 ASET (attrs
, coding_attr_ascii_compat
, args
[coding_arg_ascii_compatible_p
]);
9618 val
= args
[coding_arg_decode_translation_table
];
9619 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
9621 ASET (attrs
, coding_attr_decode_tbl
, val
);
9623 val
= args
[coding_arg_encode_translation_table
];
9624 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
9626 ASET (attrs
, coding_attr_encode_tbl
, val
);
9628 val
= args
[coding_arg_post_read_conversion
];
9630 ASET (attrs
, coding_attr_post_read
, val
);
9632 val
= args
[coding_arg_pre_write_conversion
];
9634 ASET (attrs
, coding_attr_pre_write
, val
);
9636 val
= args
[coding_arg_default_char
];
9638 ASET (attrs
, coding_attr_default_char
, make_number (' '));
9641 CHECK_CHARACTER (val
);
9642 ASET (attrs
, coding_attr_default_char
, val
);
9645 val
= args
[coding_arg_for_unibyte
];
9646 ASET (attrs
, coding_attr_for_unibyte
, NILP (val
) ? Qnil
: Qt
);
9648 val
= args
[coding_arg_plist
];
9650 ASET (attrs
, coding_attr_plist
, val
);
9652 if (EQ (coding_type
, Qcharset
))
9654 /* Generate a lisp vector of 256 elements. Each element is nil,
9655 integer, or a list of charset IDs.
9657 If Nth element is nil, the byte code N is invalid in this
9660 If Nth element is a number NUM, N is the first byte of a
9661 charset whose ID is NUM.
9663 If Nth element is a list of charset IDs, N is the first byte
9664 of one of them. The list is sorted by dimensions of the
9665 charsets. A charset of smaller dimension comes first. */
9666 val
= Fmake_vector (make_number (256), Qnil
);
9668 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9670 struct charset
*charset
= CHARSET_FROM_ID (XFASTINT (XCAR (tail
)));
9671 int dim
= CHARSET_DIMENSION (charset
);
9672 int idx
= (dim
- 1) * 4;
9674 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9675 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9677 for (i
= charset
->code_space
[idx
];
9678 i
<= charset
->code_space
[idx
+ 1]; i
++)
9680 Lisp_Object tmp
, tmp2
;
9683 tmp
= AREF (val
, i
);
9686 else if (NUMBERP (tmp
))
9688 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp
)));
9690 tmp
= Fcons (XCAR (tail
), Fcons (tmp
, Qnil
));
9692 tmp
= Fcons (tmp
, Fcons (XCAR (tail
), Qnil
));
9696 for (tmp2
= tmp
; CONSP (tmp2
); tmp2
= XCDR (tmp2
))
9698 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2
))));
9703 tmp
= nconc2 (tmp
, Fcons (XCAR (tail
), Qnil
));
9706 XSETCDR (tmp2
, Fcons (XCAR (tmp2
), XCDR (tmp2
)));
9707 XSETCAR (tmp2
, XCAR (tail
));
9713 ASET (attrs
, coding_attr_charset_valids
, val
);
9714 category
= coding_category_charset
;
9716 else if (EQ (coding_type
, Qccl
))
9720 if (nargs
< coding_arg_ccl_max
)
9723 val
= args
[coding_arg_ccl_decoder
];
9724 CHECK_CCL_PROGRAM (val
);
9726 val
= Fcopy_sequence (val
);
9727 ASET (attrs
, coding_attr_ccl_decoder
, val
);
9729 val
= args
[coding_arg_ccl_encoder
];
9730 CHECK_CCL_PROGRAM (val
);
9732 val
= Fcopy_sequence (val
);
9733 ASET (attrs
, coding_attr_ccl_encoder
, val
);
9735 val
= args
[coding_arg_ccl_valids
];
9736 valids
= Fmake_string (make_number (256), make_number (0));
9737 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
9744 if (! (0 <= XINT (val
) && XINT (val
) <= 255))
9745 args_out_of_range_3 (val
, make_number (0), make_number (255));
9746 from
= to
= XINT (val
);
9751 CHECK_NATNUM_CAR (val
);
9752 CHECK_NUMBER_CDR (val
);
9753 if (XINT (XCAR (val
)) > 255)
9754 args_out_of_range_3 (XCAR (val
),
9755 make_number (0), make_number (255));
9756 from
= XINT (XCAR (val
));
9757 if (! (from
<= XINT (XCDR (val
)) && XINT (XCDR (val
)) <= 255))
9758 args_out_of_range_3 (XCDR (val
),
9759 XCAR (val
), make_number (255));
9760 to
= XINT (XCDR (val
));
9762 for (i
= from
; i
<= to
; i
++)
9763 SSET (valids
, i
, 1);
9765 ASET (attrs
, coding_attr_ccl_valids
, valids
);
9767 category
= coding_category_ccl
;
9769 else if (EQ (coding_type
, Qutf_16
))
9771 Lisp_Object bom
, endian
;
9773 ASET (attrs
, coding_attr_ascii_compat
, Qnil
);
9775 if (nargs
< coding_arg_utf16_max
)
9778 bom
= args
[coding_arg_utf16_bom
];
9779 if (! NILP (bom
) && ! EQ (bom
, Qt
))
9783 CHECK_CODING_SYSTEM (val
);
9785 CHECK_CODING_SYSTEM (val
);
9787 ASET (attrs
, coding_attr_utf_bom
, bom
);
9789 endian
= args
[coding_arg_utf16_endian
];
9790 CHECK_SYMBOL (endian
);
9793 else if (! EQ (endian
, Qbig
) && ! EQ (endian
, Qlittle
))
9794 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian
)));
9795 ASET (attrs
, coding_attr_utf_16_endian
, endian
);
9797 category
= (CONSP (bom
)
9798 ? coding_category_utf_16_auto
9800 ? (EQ (endian
, Qbig
)
9801 ? coding_category_utf_16_be_nosig
9802 : coding_category_utf_16_le_nosig
)
9803 : (EQ (endian
, Qbig
)
9804 ? coding_category_utf_16_be
9805 : coding_category_utf_16_le
));
9807 else if (EQ (coding_type
, Qiso_2022
))
9809 Lisp_Object initial
, reg_usage
, request
, flags
;
9811 if (nargs
< coding_arg_iso2022_max
)
9814 initial
= Fcopy_sequence (args
[coding_arg_iso2022_initial
]);
9815 CHECK_VECTOR (initial
);
9816 for (i
= 0; i
< 4; i
++)
9818 val
= AREF (initial
, i
);
9821 struct charset
*charset
;
9823 CHECK_CHARSET_GET_CHARSET (val
, charset
);
9824 ASET (initial
, i
, make_number (CHARSET_ID (charset
)));
9825 if (i
== 0 && CHARSET_ASCII_COMPATIBLE_P (charset
))
9826 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9829 ASET (initial
, i
, make_number (-1));
9832 reg_usage
= args
[coding_arg_iso2022_reg_usage
];
9833 CHECK_CONS (reg_usage
);
9834 CHECK_NUMBER_CAR (reg_usage
);
9835 CHECK_NUMBER_CDR (reg_usage
);
9837 request
= Fcopy_sequence (args
[coding_arg_iso2022_request
]);
9838 for (tail
= request
; CONSP (tail
); tail
= XCDR (tail
))
9846 CHECK_CHARSET_GET_ID (tmp1
, id
);
9847 CHECK_NATNUM_CDR (val
);
9848 if (XINT (XCDR (val
)) >= 4)
9849 error ("Invalid graphic register number: %"pI
"d", XINT (XCDR (val
)));
9850 XSETCAR (val
, make_number (id
));
9853 flags
= args
[coding_arg_iso2022_flags
];
9854 CHECK_NATNUM (flags
);
9855 i
= XINT (flags
) & INT_MAX
;
9856 if (EQ (args
[coding_arg_charset_list
], Qiso_2022
))
9857 i
|= CODING_ISO_FLAG_FULL_SUPPORT
;
9858 flags
= make_number (i
);
9860 ASET (attrs
, coding_attr_iso_initial
, initial
);
9861 ASET (attrs
, coding_attr_iso_usage
, reg_usage
);
9862 ASET (attrs
, coding_attr_iso_request
, request
);
9863 ASET (attrs
, coding_attr_iso_flags
, flags
);
9864 setup_iso_safe_charsets (attrs
);
9866 if (i
& CODING_ISO_FLAG_SEVEN_BITS
)
9867 category
= ((i
& (CODING_ISO_FLAG_LOCKING_SHIFT
9868 | CODING_ISO_FLAG_SINGLE_SHIFT
))
9869 ? coding_category_iso_7_else
9870 : EQ (args
[coding_arg_charset_list
], Qiso_2022
)
9871 ? coding_category_iso_7
9872 : coding_category_iso_7_tight
);
9875 int id
= XINT (AREF (initial
, 1));
9877 category
= (((i
& CODING_ISO_FLAG_LOCKING_SHIFT
)
9878 || EQ (args
[coding_arg_charset_list
], Qiso_2022
)
9880 ? coding_category_iso_8_else
9881 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id
)) == 1)
9882 ? coding_category_iso_8_1
9883 : coding_category_iso_8_2
);
9885 if (category
!= coding_category_iso_8_1
9886 && category
!= coding_category_iso_8_2
)
9887 ASET (attrs
, coding_attr_ascii_compat
, Qnil
);
9889 else if (EQ (coding_type
, Qemacs_mule
))
9891 if (EQ (args
[coding_arg_charset_list
], Qemacs_mule
))
9892 ASET (attrs
, coding_attr_emacs_mule_full
, Qt
);
9893 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9894 category
= coding_category_emacs_mule
;
9896 else if (EQ (coding_type
, Qshift_jis
))
9899 struct charset
*charset
;
9901 if (XINT (Flength (charset_list
)) != 3
9902 && XINT (Flength (charset_list
)) != 4)
9903 error ("There should be three or four charsets");
9905 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9906 if (CHARSET_DIMENSION (charset
) != 1)
9907 error ("Dimension of charset %s is not one",
9908 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9909 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9910 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9912 charset_list
= XCDR (charset_list
);
9913 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9914 if (CHARSET_DIMENSION (charset
) != 1)
9915 error ("Dimension of charset %s is not one",
9916 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9918 charset_list
= XCDR (charset_list
);
9919 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9920 if (CHARSET_DIMENSION (charset
) != 2)
9921 error ("Dimension of charset %s is not two",
9922 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9924 charset_list
= XCDR (charset_list
);
9925 if (! NILP (charset_list
))
9927 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9928 if (CHARSET_DIMENSION (charset
) != 2)
9929 error ("Dimension of charset %s is not two",
9930 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9933 category
= coding_category_sjis
;
9934 Vsjis_coding_system
= name
;
9936 else if (EQ (coding_type
, Qbig5
))
9938 struct charset
*charset
;
9940 if (XINT (Flength (charset_list
)) != 2)
9941 error ("There should be just two charsets");
9943 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9944 if (CHARSET_DIMENSION (charset
) != 1)
9945 error ("Dimension of charset %s is not one",
9946 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9947 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9948 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9950 charset_list
= XCDR (charset_list
);
9951 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9952 if (CHARSET_DIMENSION (charset
) != 2)
9953 error ("Dimension of charset %s is not two",
9954 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9956 category
= coding_category_big5
;
9957 Vbig5_coding_system
= name
;
9959 else if (EQ (coding_type
, Qraw_text
))
9961 category
= coding_category_raw_text
;
9962 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9964 else if (EQ (coding_type
, Qutf_8
))
9968 if (nargs
< coding_arg_utf8_max
)
9971 bom
= args
[coding_arg_utf8_bom
];
9972 if (! NILP (bom
) && ! EQ (bom
, Qt
))
9976 CHECK_CODING_SYSTEM (val
);
9978 CHECK_CODING_SYSTEM (val
);
9980 ASET (attrs
, coding_attr_utf_bom
, bom
);
9982 ASET (attrs
, coding_attr_ascii_compat
, Qt
);
9984 category
= (CONSP (bom
) ? coding_category_utf_8_auto
9985 : NILP (bom
) ? coding_category_utf_8_nosig
9986 : coding_category_utf_8_sig
);
9988 else if (EQ (coding_type
, Qundecided
))
9989 category
= coding_category_undecided
;
9991 error ("Invalid coding system type: %s",
9992 SDATA (SYMBOL_NAME (coding_type
)));
9994 ASET (attrs
, coding_attr_category
, make_number (category
));
9995 ASET (attrs
, coding_attr_plist
,
9997 Fcons (AREF (Vcoding_category_table
, category
),
9998 CODING_ATTR_PLIST (attrs
))));
9999 ASET (attrs
, coding_attr_plist
,
10000 Fcons (QCascii_compatible_p
,
10001 Fcons (CODING_ATTR_ASCII_COMPAT (attrs
),
10002 CODING_ATTR_PLIST (attrs
))));
10004 eol_type
= args
[coding_arg_eol_type
];
10005 if (! NILP (eol_type
)
10006 && ! EQ (eol_type
, Qunix
)
10007 && ! EQ (eol_type
, Qdos
)
10008 && ! EQ (eol_type
, Qmac
))
10009 error ("Invalid eol-type");
10011 aliases
= Fcons (name
, Qnil
);
10013 if (NILP (eol_type
))
10015 eol_type
= make_subsidiaries (name
);
10016 for (i
= 0; i
< 3; i
++)
10018 Lisp_Object this_spec
, this_name
, this_aliases
, this_eol_type
;
10020 this_name
= AREF (eol_type
, i
);
10021 this_aliases
= Fcons (this_name
, Qnil
);
10022 this_eol_type
= (i
== 0 ? Qunix
: i
== 1 ? Qdos
: Qmac
);
10023 this_spec
= make_uninit_vector (3);
10024 ASET (this_spec
, 0, attrs
);
10025 ASET (this_spec
, 1, this_aliases
);
10026 ASET (this_spec
, 2, this_eol_type
);
10027 Fputhash (this_name
, this_spec
, Vcoding_system_hash_table
);
10028 Vcoding_system_list
= Fcons (this_name
, Vcoding_system_list
);
10029 val
= Fassoc (Fsymbol_name (this_name
), Vcoding_system_alist
);
10031 Vcoding_system_alist
10032 = Fcons (Fcons (Fsymbol_name (this_name
), Qnil
),
10033 Vcoding_system_alist
);
10037 spec_vec
= make_uninit_vector (3);
10038 ASET (spec_vec
, 0, attrs
);
10039 ASET (spec_vec
, 1, aliases
);
10040 ASET (spec_vec
, 2, eol_type
);
10042 Fputhash (name
, spec_vec
, Vcoding_system_hash_table
);
10043 Vcoding_system_list
= Fcons (name
, Vcoding_system_list
);
10044 val
= Fassoc (Fsymbol_name (name
), Vcoding_system_alist
);
10046 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (name
), Qnil
),
10047 Vcoding_system_alist
);
10050 int id
= coding_categories
[category
].id
;
10052 if (id
< 0 || EQ (name
, CODING_ID_NAME (id
)))
10053 setup_coding_system (name
, &coding_categories
[category
]);
10059 return Fsignal (Qwrong_number_of_arguments
,
10060 Fcons (intern ("define-coding-system-internal"),
10061 make_number (nargs
)));
10065 DEFUN ("coding-system-put", Fcoding_system_put
, Scoding_system_put
,
10067 doc
: /* Change value in CODING-SYSTEM's property list PROP to VAL. */)
10068 (Lisp_Object coding_system
, Lisp_Object prop
, Lisp_Object val
)
10070 Lisp_Object spec
, attrs
;
10072 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10073 attrs
= AREF (spec
, 0);
10074 if (EQ (prop
, QCmnemonic
))
10076 if (! STRINGP (val
))
10077 CHECK_CHARACTER (val
);
10078 ASET (attrs
, coding_attr_mnemonic
, val
);
10080 else if (EQ (prop
, QCdefault_char
))
10083 val
= make_number (' ');
10085 CHECK_CHARACTER (val
);
10086 ASET (attrs
, coding_attr_default_char
, val
);
10088 else if (EQ (prop
, QCdecode_translation_table
))
10090 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10091 CHECK_SYMBOL (val
);
10092 ASET (attrs
, coding_attr_decode_tbl
, val
);
10094 else if (EQ (prop
, QCencode_translation_table
))
10096 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10097 CHECK_SYMBOL (val
);
10098 ASET (attrs
, coding_attr_encode_tbl
, val
);
10100 else if (EQ (prop
, QCpost_read_conversion
))
10102 CHECK_SYMBOL (val
);
10103 ASET (attrs
, coding_attr_post_read
, val
);
10105 else if (EQ (prop
, QCpre_write_conversion
))
10107 CHECK_SYMBOL (val
);
10108 ASET (attrs
, coding_attr_pre_write
, val
);
10110 else if (EQ (prop
, QCascii_compatible_p
))
10112 ASET (attrs
, coding_attr_ascii_compat
, val
);
10115 ASET (attrs
, coding_attr_plist
,
10116 Fplist_put (CODING_ATTR_PLIST (attrs
), prop
, val
));
10121 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias
,
10122 Sdefine_coding_system_alias
, 2, 2, 0,
10123 doc
: /* Define ALIAS as an alias for CODING-SYSTEM. */)
10124 (Lisp_Object alias
, Lisp_Object coding_system
)
10126 Lisp_Object spec
, aliases
, eol_type
, val
;
10128 CHECK_SYMBOL (alias
);
10129 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10130 aliases
= AREF (spec
, 1);
10131 /* ALIASES should be a list of length more than zero, and the first
10132 element is a base coding system. Append ALIAS at the tail of the
10134 while (!NILP (XCDR (aliases
)))
10135 aliases
= XCDR (aliases
);
10136 XSETCDR (aliases
, Fcons (alias
, Qnil
));
10138 eol_type
= AREF (spec
, 2);
10139 if (VECTORP (eol_type
))
10141 Lisp_Object subsidiaries
;
10144 subsidiaries
= make_subsidiaries (alias
);
10145 for (i
= 0; i
< 3; i
++)
10146 Fdefine_coding_system_alias (AREF (subsidiaries
, i
),
10147 AREF (eol_type
, i
));
10150 Fputhash (alias
, spec
, Vcoding_system_hash_table
);
10151 Vcoding_system_list
= Fcons (alias
, Vcoding_system_list
);
10152 val
= Fassoc (Fsymbol_name (alias
), Vcoding_system_alist
);
10154 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (alias
), Qnil
),
10155 Vcoding_system_alist
);
10160 DEFUN ("coding-system-base", Fcoding_system_base
, Scoding_system_base
,
10162 doc
: /* Return the base of CODING-SYSTEM.
10163 Any alias or subsidiary coding system is not a base coding system. */)
10164 (Lisp_Object coding_system
)
10166 Lisp_Object spec
, attrs
;
10168 if (NILP (coding_system
))
10169 return (Qno_conversion
);
10170 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10171 attrs
= AREF (spec
, 0);
10172 return CODING_ATTR_BASE_NAME (attrs
);
10175 DEFUN ("coding-system-plist", Fcoding_system_plist
, Scoding_system_plist
,
10177 doc
: "Return the property list of CODING-SYSTEM.")
10178 (Lisp_Object coding_system
)
10180 Lisp_Object spec
, attrs
;
10182 if (NILP (coding_system
))
10183 coding_system
= Qno_conversion
;
10184 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10185 attrs
= AREF (spec
, 0);
10186 return CODING_ATTR_PLIST (attrs
);
10190 DEFUN ("coding-system-aliases", Fcoding_system_aliases
, Scoding_system_aliases
,
10192 doc
: /* Return the list of aliases of CODING-SYSTEM. */)
10193 (Lisp_Object coding_system
)
10197 if (NILP (coding_system
))
10198 coding_system
= Qno_conversion
;
10199 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10200 return AREF (spec
, 1);
10203 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type
,
10204 Scoding_system_eol_type
, 1, 1, 0,
10205 doc
: /* Return eol-type of CODING-SYSTEM.
10206 An eol-type is an integer 0, 1, 2, or a vector of coding systems.
10208 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF,
10209 and CR respectively.
10211 A vector value indicates that a format of end-of-line should be
10212 detected automatically. Nth element of the vector is the subsidiary
10213 coding system whose eol-type is N. */)
10214 (Lisp_Object coding_system
)
10216 Lisp_Object spec
, eol_type
;
10219 if (NILP (coding_system
))
10220 coding_system
= Qno_conversion
;
10221 if (! CODING_SYSTEM_P (coding_system
))
10223 spec
= CODING_SYSTEM_SPEC (coding_system
);
10224 eol_type
= AREF (spec
, 2);
10225 if (VECTORP (eol_type
))
10226 return Fcopy_sequence (eol_type
);
10227 n
= EQ (eol_type
, Qunix
) ? 0 : EQ (eol_type
, Qdos
) ? 1 : 2;
10228 return make_number (n
);
10234 /*** 9. Post-amble ***/
10237 init_coding_once (void)
10241 for (i
= 0; i
< coding_category_max
; i
++)
10243 coding_categories
[i
].id
= -1;
10244 coding_priorities
[i
] = i
;
10247 /* ISO2022 specific initialize routine. */
10248 for (i
= 0; i
< 0x20; i
++)
10249 iso_code_class
[i
] = ISO_control_0
;
10250 for (i
= 0x21; i
< 0x7F; i
++)
10251 iso_code_class
[i
] = ISO_graphic_plane_0
;
10252 for (i
= 0x80; i
< 0xA0; i
++)
10253 iso_code_class
[i
] = ISO_control_1
;
10254 for (i
= 0xA1; i
< 0xFF; i
++)
10255 iso_code_class
[i
] = ISO_graphic_plane_1
;
10256 iso_code_class
[0x20] = iso_code_class
[0x7F] = ISO_0x20_or_0x7F
;
10257 iso_code_class
[0xA0] = iso_code_class
[0xFF] = ISO_0xA0_or_0xFF
;
10258 iso_code_class
[ISO_CODE_SO
] = ISO_shift_out
;
10259 iso_code_class
[ISO_CODE_SI
] = ISO_shift_in
;
10260 iso_code_class
[ISO_CODE_SS2_7
] = ISO_single_shift_2_7
;
10261 iso_code_class
[ISO_CODE_ESC
] = ISO_escape
;
10262 iso_code_class
[ISO_CODE_SS2
] = ISO_single_shift_2
;
10263 iso_code_class
[ISO_CODE_SS3
] = ISO_single_shift_3
;
10264 iso_code_class
[ISO_CODE_CSI
] = ISO_control_sequence_introducer
;
10266 for (i
= 0; i
< 256; i
++)
10268 emacs_mule_bytes
[i
] = 1;
10270 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_11
] = 3;
10271 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_12
] = 3;
10272 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_21
] = 4;
10273 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_22
] = 4;
10279 syms_of_coding (void)
10281 staticpro (&Vcoding_system_hash_table
);
10283 Lisp_Object args
[2];
10286 Vcoding_system_hash_table
= Fmake_hash_table (2, args
);
10289 staticpro (&Vsjis_coding_system
);
10290 Vsjis_coding_system
= Qnil
;
10292 staticpro (&Vbig5_coding_system
);
10293 Vbig5_coding_system
= Qnil
;
10295 staticpro (&Vcode_conversion_reused_workbuf
);
10296 Vcode_conversion_reused_workbuf
= Qnil
;
10298 staticpro (&Vcode_conversion_workbuf_name
);
10299 Vcode_conversion_workbuf_name
= build_pure_c_string (" *code-conversion-work*");
10301 reused_workbuf_in_use
= 0;
10303 DEFSYM (Qcharset
, "charset");
10304 DEFSYM (Qtarget_idx
, "target-idx");
10305 DEFSYM (Qcoding_system_history
, "coding-system-history");
10306 Fset (Qcoding_system_history
, Qnil
);
10308 /* Target FILENAME is the first argument. */
10309 Fput (Qinsert_file_contents
, Qtarget_idx
, make_number (0));
10310 /* Target FILENAME is the third argument. */
10311 Fput (Qwrite_region
, Qtarget_idx
, make_number (2));
10313 DEFSYM (Qcall_process
, "call-process");
10314 /* Target PROGRAM is the first argument. */
10315 Fput (Qcall_process
, Qtarget_idx
, make_number (0));
10317 DEFSYM (Qcall_process_region
, "call-process-region");
10318 /* Target PROGRAM is the third argument. */
10319 Fput (Qcall_process_region
, Qtarget_idx
, make_number (2));
10321 DEFSYM (Qstart_process
, "start-process");
10322 /* Target PROGRAM is the third argument. */
10323 Fput (Qstart_process
, Qtarget_idx
, make_number (2));
10325 DEFSYM (Qopen_network_stream
, "open-network-stream");
10326 /* Target SERVICE is the fourth argument. */
10327 Fput (Qopen_network_stream
, Qtarget_idx
, make_number (3));
10329 DEFSYM (Qcoding_system
, "coding-system");
10330 DEFSYM (Qcoding_aliases
, "coding-aliases");
10332 DEFSYM (Qeol_type
, "eol-type");
10333 DEFSYM (Qunix
, "unix");
10334 DEFSYM (Qdos
, "dos");
10335 DEFSYM (Qmac
, "mac");
10337 DEFSYM (Qbuffer_file_coding_system
, "buffer-file-coding-system");
10338 DEFSYM (Qpost_read_conversion
, "post-read-conversion");
10339 DEFSYM (Qpre_write_conversion
, "pre-write-conversion");
10340 DEFSYM (Qdefault_char
, "default-char");
10341 DEFSYM (Qundecided
, "undecided");
10342 DEFSYM (Qno_conversion
, "no-conversion");
10343 DEFSYM (Qraw_text
, "raw-text");
10345 DEFSYM (Qiso_2022
, "iso-2022");
10347 DEFSYM (Qutf_8
, "utf-8");
10348 DEFSYM (Qutf_8_emacs
, "utf-8-emacs");
10350 #if defined (WINDOWSNT) || defined (CYGWIN)
10351 /* No, not utf-16-le: that one has a BOM. */
10352 DEFSYM (Qutf_16le
, "utf-16le");
10355 DEFSYM (Qutf_16
, "utf-16");
10356 DEFSYM (Qbig
, "big");
10357 DEFSYM (Qlittle
, "little");
10359 DEFSYM (Qshift_jis
, "shift-jis");
10360 DEFSYM (Qbig5
, "big5");
10362 DEFSYM (Qcoding_system_p
, "coding-system-p");
10364 DEFSYM (Qcoding_system_error
, "coding-system-error");
10365 Fput (Qcoding_system_error
, Qerror_conditions
,
10366 listn (CONSTYPE_PURE
, 2, Qcoding_system_error
, Qerror
));
10367 Fput (Qcoding_system_error
, Qerror_message
,
10368 build_pure_c_string ("Invalid coding system"));
10370 /* Intern this now in case it isn't already done.
10371 Setting this variable twice is harmless.
10372 But don't staticpro it here--that is done in alloc.c. */
10373 Qchar_table_extra_slots
= intern_c_string ("char-table-extra-slots");
10375 DEFSYM (Qtranslation_table
, "translation-table");
10376 Fput (Qtranslation_table
, Qchar_table_extra_slots
, make_number (2));
10377 DEFSYM (Qtranslation_table_id
, "translation-table-id");
10378 DEFSYM (Qtranslation_table_for_decode
, "translation-table-for-decode");
10379 DEFSYM (Qtranslation_table_for_encode
, "translation-table-for-encode");
10381 DEFSYM (Qvalid_codes
, "valid-codes");
10383 DEFSYM (Qemacs_mule
, "emacs-mule");
10385 DEFSYM (QCcategory
, ":category");
10386 DEFSYM (QCmnemonic
, ":mnemonic");
10387 DEFSYM (QCdefault_char
, ":default-char");
10388 DEFSYM (QCdecode_translation_table
, ":decode-translation-table");
10389 DEFSYM (QCencode_translation_table
, ":encode-translation-table");
10390 DEFSYM (QCpost_read_conversion
, ":post-read-conversion");
10391 DEFSYM (QCpre_write_conversion
, ":pre-write-conversion");
10392 DEFSYM (QCascii_compatible_p
, ":ascii-compatible-p");
10394 Vcoding_category_table
10395 = Fmake_vector (make_number (coding_category_max
), Qnil
);
10396 staticpro (&Vcoding_category_table
);
10397 /* Followings are target of code detection. */
10398 ASET (Vcoding_category_table
, coding_category_iso_7
,
10399 intern_c_string ("coding-category-iso-7"));
10400 ASET (Vcoding_category_table
, coding_category_iso_7_tight
,
10401 intern_c_string ("coding-category-iso-7-tight"));
10402 ASET (Vcoding_category_table
, coding_category_iso_8_1
,
10403 intern_c_string ("coding-category-iso-8-1"));
10404 ASET (Vcoding_category_table
, coding_category_iso_8_2
,
10405 intern_c_string ("coding-category-iso-8-2"));
10406 ASET (Vcoding_category_table
, coding_category_iso_7_else
,
10407 intern_c_string ("coding-category-iso-7-else"));
10408 ASET (Vcoding_category_table
, coding_category_iso_8_else
,
10409 intern_c_string ("coding-category-iso-8-else"));
10410 ASET (Vcoding_category_table
, coding_category_utf_8_auto
,
10411 intern_c_string ("coding-category-utf-8-auto"));
10412 ASET (Vcoding_category_table
, coding_category_utf_8_nosig
,
10413 intern_c_string ("coding-category-utf-8"));
10414 ASET (Vcoding_category_table
, coding_category_utf_8_sig
,
10415 intern_c_string ("coding-category-utf-8-sig"));
10416 ASET (Vcoding_category_table
, coding_category_utf_16_be
,
10417 intern_c_string ("coding-category-utf-16-be"));
10418 ASET (Vcoding_category_table
, coding_category_utf_16_auto
,
10419 intern_c_string ("coding-category-utf-16-auto"));
10420 ASET (Vcoding_category_table
, coding_category_utf_16_le
,
10421 intern_c_string ("coding-category-utf-16-le"));
10422 ASET (Vcoding_category_table
, coding_category_utf_16_be_nosig
,
10423 intern_c_string ("coding-category-utf-16-be-nosig"));
10424 ASET (Vcoding_category_table
, coding_category_utf_16_le_nosig
,
10425 intern_c_string ("coding-category-utf-16-le-nosig"));
10426 ASET (Vcoding_category_table
, coding_category_charset
,
10427 intern_c_string ("coding-category-charset"));
10428 ASET (Vcoding_category_table
, coding_category_sjis
,
10429 intern_c_string ("coding-category-sjis"));
10430 ASET (Vcoding_category_table
, coding_category_big5
,
10431 intern_c_string ("coding-category-big5"));
10432 ASET (Vcoding_category_table
, coding_category_ccl
,
10433 intern_c_string ("coding-category-ccl"));
10434 ASET (Vcoding_category_table
, coding_category_emacs_mule
,
10435 intern_c_string ("coding-category-emacs-mule"));
10436 /* Followings are NOT target of code detection. */
10437 ASET (Vcoding_category_table
, coding_category_raw_text
,
10438 intern_c_string ("coding-category-raw-text"));
10439 ASET (Vcoding_category_table
, coding_category_undecided
,
10440 intern_c_string ("coding-category-undecided"));
10442 DEFSYM (Qinsufficient_source
, "insufficient-source");
10443 DEFSYM (Qinvalid_source
, "invalid-source");
10444 DEFSYM (Qinterrupted
, "interrupted");
10445 DEFSYM (Qcoding_system_define_form
, "coding-system-define-form");
10447 defsubr (&Scoding_system_p
);
10448 defsubr (&Sread_coding_system
);
10449 defsubr (&Sread_non_nil_coding_system
);
10450 defsubr (&Scheck_coding_system
);
10451 defsubr (&Sdetect_coding_region
);
10452 defsubr (&Sdetect_coding_string
);
10453 defsubr (&Sfind_coding_systems_region_internal
);
10454 defsubr (&Sunencodable_char_position
);
10455 defsubr (&Scheck_coding_systems_region
);
10456 defsubr (&Sdecode_coding_region
);
10457 defsubr (&Sencode_coding_region
);
10458 defsubr (&Sdecode_coding_string
);
10459 defsubr (&Sencode_coding_string
);
10460 defsubr (&Sdecode_sjis_char
);
10461 defsubr (&Sencode_sjis_char
);
10462 defsubr (&Sdecode_big5_char
);
10463 defsubr (&Sencode_big5_char
);
10464 defsubr (&Sset_terminal_coding_system_internal
);
10465 defsubr (&Sset_safe_terminal_coding_system_internal
);
10466 defsubr (&Sterminal_coding_system
);
10467 defsubr (&Sset_keyboard_coding_system_internal
);
10468 defsubr (&Skeyboard_coding_system
);
10469 defsubr (&Sfind_operation_coding_system
);
10470 defsubr (&Sset_coding_system_priority
);
10471 defsubr (&Sdefine_coding_system_internal
);
10472 defsubr (&Sdefine_coding_system_alias
);
10473 defsubr (&Scoding_system_put
);
10474 defsubr (&Scoding_system_base
);
10475 defsubr (&Scoding_system_plist
);
10476 defsubr (&Scoding_system_aliases
);
10477 defsubr (&Scoding_system_eol_type
);
10478 defsubr (&Scoding_system_priority_list
);
10480 DEFVAR_LISP ("coding-system-list", Vcoding_system_list
,
10481 doc
: /* List of coding systems.
10483 Do not alter the value of this variable manually. This variable should be
10484 updated by the functions `define-coding-system' and
10485 `define-coding-system-alias'. */);
10486 Vcoding_system_list
= Qnil
;
10488 DEFVAR_LISP ("coding-system-alist", Vcoding_system_alist
,
10489 doc
: /* Alist of coding system names.
10490 Each element is one element list of coding system name.
10491 This variable is given to `completing-read' as COLLECTION argument.
10493 Do not alter the value of this variable manually. This variable should be
10494 updated by the functions `make-coding-system' and
10495 `define-coding-system-alias'. */);
10496 Vcoding_system_alist
= Qnil
;
10498 DEFVAR_LISP ("coding-category-list", Vcoding_category_list
,
10499 doc
: /* List of coding-categories (symbols) ordered by priority.
10501 On detecting a coding system, Emacs tries code detection algorithms
10502 associated with each coding-category one by one in this order. When
10503 one algorithm agrees with a byte sequence of source text, the coding
10504 system bound to the corresponding coding-category is selected.
10506 Don't modify this variable directly, but use `set-coding-system-priority'. */);
10510 Vcoding_category_list
= Qnil
;
10511 for (i
= coding_category_max
- 1; i
>= 0; i
--)
10512 Vcoding_category_list
10513 = Fcons (AREF (Vcoding_category_table
, i
),
10514 Vcoding_category_list
);
10517 DEFVAR_LISP ("coding-system-for-read", Vcoding_system_for_read
,
10518 doc
: /* Specify the coding system for read operations.
10519 It is useful to bind this variable with `let', but do not set it globally.
10520 If the value is a coding system, it is used for decoding on read operation.
10521 If not, an appropriate element is used from one of the coding system alists.
10522 There are three such tables: `file-coding-system-alist',
10523 `process-coding-system-alist', and `network-coding-system-alist'. */);
10524 Vcoding_system_for_read
= Qnil
;
10526 DEFVAR_LISP ("coding-system-for-write", Vcoding_system_for_write
,
10527 doc
: /* Specify the coding system for write operations.
10528 Programs bind this variable with `let', but you should not set it globally.
10529 If the value is a coding system, it is used for encoding of output,
10530 when writing it to a file and when sending it to a file or subprocess.
10532 If this does not specify a coding system, an appropriate element
10533 is used from one of the coding system alists.
10534 There are three such tables: `file-coding-system-alist',
10535 `process-coding-system-alist', and `network-coding-system-alist'.
10536 For output to files, if the above procedure does not specify a coding system,
10537 the value of `buffer-file-coding-system' is used. */);
10538 Vcoding_system_for_write
= Qnil
;
10540 DEFVAR_LISP ("last-coding-system-used", Vlast_coding_system_used
,
10542 Coding system used in the latest file or process I/O. */);
10543 Vlast_coding_system_used
= Qnil
;
10545 DEFVAR_LISP ("last-code-conversion-error", Vlast_code_conversion_error
,
10547 Error status of the last code conversion.
10549 When an error was detected in the last code conversion, this variable
10550 is set to one of the following symbols.
10551 `insufficient-source'
10555 `insufficient-memory'
10556 When no error was detected, the value doesn't change. So, to check
10557 the error status of a code conversion by this variable, you must
10558 explicitly set this variable to nil before performing code
10560 Vlast_code_conversion_error
= Qnil
;
10562 DEFVAR_BOOL ("inhibit-eol-conversion", inhibit_eol_conversion
,
10564 *Non-nil means always inhibit code conversion of end-of-line format.
10565 See info node `Coding Systems' and info node `Text and Binary' concerning
10566 such conversion. */);
10567 inhibit_eol_conversion
= 0;
10569 DEFVAR_BOOL ("inherit-process-coding-system", inherit_process_coding_system
,
10571 Non-nil means process buffer inherits coding system of process output.
10572 Bind it to t if the process output is to be treated as if it were a file
10573 read from some filesystem. */);
10574 inherit_process_coding_system
= 0;
10576 DEFVAR_LISP ("file-coding-system-alist", Vfile_coding_system_alist
,
10578 Alist to decide a coding system to use for a file I/O operation.
10579 The format is ((PATTERN . VAL) ...),
10580 where PATTERN is a regular expression matching a file name,
10581 VAL is a coding system, a cons of coding systems, or a function symbol.
10582 If VAL is a coding system, it is used for both decoding and encoding
10584 If VAL is a cons of coding systems, the car part is used for decoding,
10585 and the cdr part is used for encoding.
10586 If VAL is a function symbol, the function must return a coding system
10587 or a cons of coding systems which are used as above. The function is
10588 called with an argument that is a list of the arguments with which
10589 `find-operation-coding-system' was called. If the function can't decide
10590 a coding system, it can return `undecided' so that the normal
10591 code-detection is performed.
10593 See also the function `find-operation-coding-system'
10594 and the variable `auto-coding-alist'. */);
10595 Vfile_coding_system_alist
= Qnil
;
10597 DEFVAR_LISP ("process-coding-system-alist", Vprocess_coding_system_alist
,
10599 Alist to decide a coding system to use for a process I/O operation.
10600 The format is ((PATTERN . VAL) ...),
10601 where PATTERN is a regular expression matching a program name,
10602 VAL is a coding system, a cons of coding systems, or a function symbol.
10603 If VAL is a coding system, it is used for both decoding what received
10604 from the program and encoding what sent to the program.
10605 If VAL is a cons of coding systems, the car part is used for decoding,
10606 and the cdr part is used for encoding.
10607 If VAL is a function symbol, the function must return a coding system
10608 or a cons of coding systems which are used as above.
10610 See also the function `find-operation-coding-system'. */);
10611 Vprocess_coding_system_alist
= Qnil
;
10613 DEFVAR_LISP ("network-coding-system-alist", Vnetwork_coding_system_alist
,
10615 Alist to decide a coding system to use for a network I/O operation.
10616 The format is ((PATTERN . VAL) ...),
10617 where PATTERN is a regular expression matching a network service name
10618 or is a port number to connect to,
10619 VAL is a coding system, a cons of coding systems, or a function symbol.
10620 If VAL is a coding system, it is used for both decoding what received
10621 from the network stream and encoding what sent to the network stream.
10622 If VAL is a cons of coding systems, the car part is used for decoding,
10623 and the cdr part is used for encoding.
10624 If VAL is a function symbol, the function must return a coding system
10625 or a cons of coding systems which are used as above.
10627 See also the function `find-operation-coding-system'. */);
10628 Vnetwork_coding_system_alist
= Qnil
;
10630 DEFVAR_LISP ("locale-coding-system", Vlocale_coding_system
,
10631 doc
: /* Coding system to use with system messages.
10632 Also used for decoding keyboard input on X Window system. */);
10633 Vlocale_coding_system
= Qnil
;
10635 /* The eol mnemonics are reset in startup.el system-dependently. */
10636 DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix
,
10638 *String displayed in mode line for UNIX-like (LF) end-of-line format. */);
10639 eol_mnemonic_unix
= build_pure_c_string (":");
10641 DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos
,
10643 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
10644 eol_mnemonic_dos
= build_pure_c_string ("\\");
10646 DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac
,
10648 *String displayed in mode line for MAC-like (CR) end-of-line format. */);
10649 eol_mnemonic_mac
= build_pure_c_string ("/");
10651 DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided
,
10653 *String displayed in mode line when end-of-line format is not yet determined. */);
10654 eol_mnemonic_undecided
= build_pure_c_string (":");
10656 DEFVAR_LISP ("enable-character-translation", Venable_character_translation
,
10658 *Non-nil enables character translation while encoding and decoding. */);
10659 Venable_character_translation
= Qt
;
10661 DEFVAR_LISP ("standard-translation-table-for-decode",
10662 Vstandard_translation_table_for_decode
,
10663 doc
: /* Table for translating characters while decoding. */);
10664 Vstandard_translation_table_for_decode
= Qnil
;
10666 DEFVAR_LISP ("standard-translation-table-for-encode",
10667 Vstandard_translation_table_for_encode
,
10668 doc
: /* Table for translating characters while encoding. */);
10669 Vstandard_translation_table_for_encode
= Qnil
;
10671 DEFVAR_LISP ("charset-revision-table", Vcharset_revision_table
,
10672 doc
: /* Alist of charsets vs revision numbers.
10673 While encoding, if a charset (car part of an element) is found,
10674 designate it with the escape sequence identifying revision (cdr part
10675 of the element). */);
10676 Vcharset_revision_table
= Qnil
;
10678 DEFVAR_LISP ("default-process-coding-system",
10679 Vdefault_process_coding_system
,
10680 doc
: /* Cons of coding systems used for process I/O by default.
10681 The car part is used for decoding a process output,
10682 the cdr part is used for encoding a text to be sent to a process. */);
10683 Vdefault_process_coding_system
= Qnil
;
10685 DEFVAR_LISP ("latin-extra-code-table", Vlatin_extra_code_table
,
10687 Table of extra Latin codes in the range 128..159 (inclusive).
10688 This is a vector of length 256.
10689 If Nth element is non-nil, the existence of code N in a file
10690 \(or output of subprocess) doesn't prevent it to be detected as
10691 a coding system of ISO 2022 variant which has a flag
10692 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
10693 or reading output of a subprocess.
10694 Only 128th through 159th elements have a meaning. */);
10695 Vlatin_extra_code_table
= Fmake_vector (make_number (256), Qnil
);
10697 DEFVAR_LISP ("select-safe-coding-system-function",
10698 Vselect_safe_coding_system_function
,
10700 Function to call to select safe coding system for encoding a text.
10702 If set, this function is called to force a user to select a proper
10703 coding system which can encode the text in the case that a default
10704 coding system used in each operation can't encode the text. The
10705 function should take care that the buffer is not modified while
10706 the coding system is being selected.
10708 The default value is `select-safe-coding-system' (which see). */);
10709 Vselect_safe_coding_system_function
= Qnil
;
10711 DEFVAR_BOOL ("coding-system-require-warning",
10712 coding_system_require_warning
,
10713 doc
: /* Internal use only.
10714 If non-nil, on writing a file, `select-safe-coding-system-function' is
10715 called even if `coding-system-for-write' is non-nil. The command
10716 `universal-coding-system-argument' binds this variable to t temporarily. */);
10717 coding_system_require_warning
= 0;
10720 DEFVAR_BOOL ("inhibit-iso-escape-detection",
10721 inhibit_iso_escape_detection
,
10723 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection.
10725 When Emacs reads text, it tries to detect how the text is encoded.
10726 This code detection is sensitive to escape sequences. If Emacs sees
10727 a valid ISO-2022 escape sequence, it assumes the text is encoded in one
10728 of the ISO2022 encodings, and decodes text by the corresponding coding
10729 system (e.g. `iso-2022-7bit').
10731 However, there may be a case that you want to read escape sequences in
10732 a file as is. In such a case, you can set this variable to non-nil.
10733 Then the code detection will ignore any escape sequences, and no text is
10734 detected as encoded in some ISO-2022 encoding. The result is that all
10735 escape sequences become visible in a buffer.
10737 The default value is nil, and it is strongly recommended not to change
10738 it. That is because many Emacs Lisp source files that contain
10739 non-ASCII characters are encoded by the coding system `iso-2022-7bit'
10740 in Emacs's distribution, and they won't be decoded correctly on
10741 reading if you suppress escape sequence detection.
10743 The other way to read escape sequences in a file without decoding is
10744 to explicitly specify some coding system that doesn't use ISO-2022
10745 escape sequence (e.g., `latin-1') on reading by \\[universal-coding-system-argument]. */);
10746 inhibit_iso_escape_detection
= 0;
10748 DEFVAR_BOOL ("inhibit-null-byte-detection",
10749 inhibit_null_byte_detection
,
10750 doc
: /* If non-nil, Emacs ignores null bytes on code detection.
10751 By default, Emacs treats it as binary data, and does not attempt to
10752 decode it. The effect is as if you specified `no-conversion' for
10755 Set this to non-nil when a regular text happens to include null bytes.
10756 Examples are Index nodes of Info files and null-byte delimited output
10757 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and
10758 decode text as usual. */);
10759 inhibit_null_byte_detection
= 0;
10761 DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input
,
10762 doc
: /* Char table for translating self-inserting characters.
10763 This is applied to the result of input methods, not their input.
10764 See also `keyboard-translate-table'.
10766 Use of this variable for character code unification was rendered
10767 obsolete in Emacs 23.1 and later, since Unicode is now the basis of
10768 internal character representation. */);
10769 Vtranslation_table_for_input
= Qnil
;
10772 Lisp_Object args
[coding_arg_max
];
10773 Lisp_Object plist
[16];
10776 for (i
= 0; i
< coding_arg_max
; i
++)
10779 plist
[0] = intern_c_string (":name");
10780 plist
[1] = args
[coding_arg_name
] = Qno_conversion
;
10781 plist
[2] = intern_c_string (":mnemonic");
10782 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('=');
10783 plist
[4] = intern_c_string (":coding-type");
10784 plist
[5] = args
[coding_arg_coding_type
] = Qraw_text
;
10785 plist
[6] = intern_c_string (":ascii-compatible-p");
10786 plist
[7] = args
[coding_arg_ascii_compatible_p
] = Qt
;
10787 plist
[8] = intern_c_string (":default-char");
10788 plist
[9] = args
[coding_arg_default_char
] = make_number (0);
10789 plist
[10] = intern_c_string (":for-unibyte");
10790 plist
[11] = args
[coding_arg_for_unibyte
] = Qt
;
10791 plist
[12] = intern_c_string (":docstring");
10792 plist
[13] = build_pure_c_string ("Do no conversion.\n\
10794 When you visit a file with this coding, the file is read into a\n\
10795 unibyte buffer as is, thus each byte of a file is treated as a\n\
10797 plist
[14] = intern_c_string (":eol-type");
10798 plist
[15] = args
[coding_arg_eol_type
] = Qunix
;
10799 args
[coding_arg_plist
] = Flist (16, plist
);
10800 Fdefine_coding_system_internal (coding_arg_max
, args
);
10802 plist
[1] = args
[coding_arg_name
] = Qundecided
;
10803 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('-');
10804 plist
[5] = args
[coding_arg_coding_type
] = Qundecided
;
10805 /* This is already set.
10806 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */
10807 plist
[8] = intern_c_string (":charset-list");
10808 plist
[9] = args
[coding_arg_charset_list
] = Fcons (Qascii
, Qnil
);
10809 plist
[11] = args
[coding_arg_for_unibyte
] = Qnil
;
10810 plist
[13] = build_pure_c_string ("No conversion on encoding, automatic conversion on decoding.");
10811 plist
[15] = args
[coding_arg_eol_type
] = Qnil
;
10812 args
[coding_arg_plist
] = Flist (16, plist
);
10813 Fdefine_coding_system_internal (coding_arg_max
, args
);
10816 setup_coding_system (Qno_conversion
, &safe_terminal_coding
);
10821 for (i
= 0; i
< coding_category_max
; i
++)
10822 Fset (AREF (Vcoding_category_table
, i
), Qno_conversion
);
10824 #if defined (DOS_NT)
10825 system_eol_type
= Qdos
;
10827 system_eol_type
= Qunix
;
10829 staticpro (&system_eol_type
);
10833 emacs_strerror (int error_number
)
10837 synchronize_system_messages_locale ();
10838 str
= strerror (error_number
);
10840 if (! NILP (Vlocale_coding_system
))
10842 Lisp_Object dec
= code_convert_string_norecord (build_string (str
),
10843 Vlocale_coding_system
,
10845 str
= SSDATA (dec
);