1 /* Coding system handler (conversion, detection, etc).
2 Copyright (C) 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009, 2010
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
9 National Institute of Advanced Industrial Science and Technology (AIST)
10 Registration Number H13PRO009
12 This file is part of GNU Emacs.
14 GNU Emacs is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
19 GNU Emacs is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27 /*** TABLE OF CONTENTS ***
31 2. Emacs' internal format (emacs-utf-8) handlers
34 5. Charset-base coding systems handlers
35 6. emacs-mule (old Emacs' internal format) handlers
37 8. Shift-JIS and BIG5 handlers
39 10. C library functions
40 11. Emacs Lisp library functions
45 /*** 0. General comments ***
50 A coding system is an object for an encoding mechanism that contains
51 information about how to convert byte sequences to character
52 sequences and vice versa. When we say "decode", it means converting
53 a byte sequence of a specific coding system into a character
54 sequence that is represented by Emacs' internal coding system
55 `emacs-utf-8', and when we say "encode", it means converting a
56 character sequence of emacs-utf-8 to a byte sequence of a specific
59 In Emacs Lisp, a coding system is represented by a Lisp symbol. In
60 C level, a coding system is represented by a vector of attributes
61 stored in the hash table Vcharset_hash_table. The conversion from
62 coding system symbol to attributes vector is done by looking up
63 Vcharset_hash_table by the symbol.
65 Coding systems are classified into the following types depending on
66 the encoding mechanism. Here's a brief description of the types.
72 o Charset-base coding system
74 A coding system defined by one or more (coded) character sets.
75 Decoding and encoding are done by a code converter defined for each
78 o Old Emacs internal format (emacs-mule)
80 The coding system adopted by old versions of Emacs (20 and 21).
82 o ISO2022-base coding system
84 The most famous coding system for multiple character sets. X's
85 Compound Text, various EUCs (Extended Unix Code), and coding systems
86 used in the Internet communication such as ISO-2022-JP are all
89 o SJIS (or Shift-JIS or MS-Kanji-Code)
91 A coding system to encode character sets: ASCII, JISX0201, and
92 JISX0208. Widely used for PC's in Japan. Details are described in
97 A coding system to encode character sets: ASCII and Big5. Widely
98 used for Chinese (mainly in Taiwan and Hong Kong). Details are
99 described in section 8. In this file, when we write "big5" (all
100 lowercase), we mean the coding system, and when we write "Big5"
101 (capitalized), we mean the character set.
105 If a user wants to decode/encode text encoded in a coding system
106 not listed above, he can supply a decoder and an encoder for it in
107 CCL (Code Conversion Language) programs. Emacs executes the CCL
108 program while decoding/encoding.
112 A coding system for text containing raw eight-bit data. Emacs
113 treats each byte of source text as a character (except for
114 end-of-line conversion).
118 Like raw text, but don't do end-of-line conversion.
123 How text end-of-line is encoded depends on operating system. For
124 instance, Unix's format is just one byte of LF (line-feed) code,
125 whereas DOS's format is two-byte sequence of `carriage-return' and
126 `line-feed' codes. MacOS's format is usually one byte of
129 Since text character encoding and end-of-line encoding are
130 independent, any coding system described above can take any format
131 of end-of-line (except for no-conversion).
135 Before using a coding system for code conversion (i.e. decoding and
136 encoding), we setup a structure of type `struct coding_system'.
137 This structure keeps various information about a specific code
138 conversion (e.g. the location of source and destination data).
145 /*** GENERAL NOTES on `detect_coding_XXX ()' functions ***
147 These functions check if a byte sequence specified as a source in
148 CODING conforms to the format of XXX, and update the members of
151 Return 1 if the byte sequence conforms to XXX, otherwise return 0.
153 Below is the template of these functions. */
157 detect_coding_XXX (coding
, detect_info
)
158 struct coding_system
*coding
;
159 struct coding_detection_info
*detect_info
;
161 const unsigned char *src
= coding
->source
;
162 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
163 int multibytep
= coding
->src_multibyte
;
164 int consumed_chars
= 0;
170 /* Get one byte from the source. If the souce is exausted, jump
171 to no_more_source:. */
174 if (! __C_conforms_to_XXX___ (c
))
176 if (! __C_strongly_suggests_XXX__ (c
))
177 found
= CATEGORY_MASK_XXX
;
179 /* The byte sequence is invalid for XXX. */
180 detect_info
->rejected
|= CATEGORY_MASK_XXX
;
184 /* The source exausted successfully. */
185 detect_info
->found
|= found
;
190 /*** GENERAL NOTES on `decode_coding_XXX ()' functions ***
192 These functions decode a byte sequence specified as a source by
193 CODING. The resulting multibyte text goes to a place pointed to by
194 CODING->charbuf, the length of which should not exceed
195 CODING->charbuf_size;
197 These functions set the information of original and decoded texts in
198 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used.
199 They also set CODING->result to one of CODING_RESULT_XXX indicating
200 how the decoding is finished.
202 Below is the template of these functions. */
206 decode_coding_XXXX (coding
)
207 struct coding_system
*coding
;
209 const unsigned char *src
= coding
->source
+ coding
->consumed
;
210 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
211 /* SRC_BASE remembers the start position in source in each loop.
212 The loop will be exited when there's not enough source code, or
213 when there's no room in CHARBUF for a decoded character. */
214 const unsigned char *src_base
;
215 /* A buffer to produce decoded characters. */
216 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
217 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
218 int multibytep
= coding
->src_multibyte
;
223 if (charbuf
< charbuf_end
)
224 /* No more room to produce a decoded character. */
231 if (src_base
< src_end
232 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
233 /* If the source ends by partial bytes to construct a character,
234 treat them as eight-bit raw data. */
235 while (src_base
< src_end
&& charbuf
< charbuf_end
)
236 *charbuf
++ = *src_base
++;
237 /* Remember how many bytes and characters we consumed. If the
238 source is multibyte, the bytes and chars are not identical. */
239 coding
->consumed
= coding
->consumed_char
= src_base
- coding
->source
;
240 /* Remember how many characters we produced. */
241 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
245 /*** GENERAL NOTES on `encode_coding_XXX ()' functions ***
247 These functions encode SRC_BYTES length text at SOURCE of Emacs'
248 internal multibyte format by CODING. The resulting byte sequence
249 goes to a place pointed to by DESTINATION, the length of which
250 should not exceed DST_BYTES.
252 These functions set the information of original and encoded texts in
253 the members produced, produced_char, consumed, and consumed_char of
254 the structure *CODING. They also set the member result to one of
255 CODING_RESULT_XXX indicating how the encoding finished.
257 DST_BYTES zero means that source area and destination area are
258 overlapped, which means that we can produce a encoded text until it
259 reaches at the head of not-yet-encoded source text.
261 Below is a template of these functions. */
264 encode_coding_XXX (coding
)
265 struct coding_system
*coding
;
267 int multibytep
= coding
->dst_multibyte
;
268 int *charbuf
= coding
->charbuf
;
269 int *charbuf_end
= charbuf
->charbuf
+ coding
->charbuf_used
;
270 unsigned char *dst
= coding
->destination
+ coding
->produced
;
271 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
272 unsigned char *adjusted_dst_end
= dst_end
- _MAX_BYTES_PRODUCED_IN_LOOP_
;
273 int produced_chars
= 0;
275 for (; charbuf
< charbuf_end
&& dst
< adjusted_dst_end
; charbuf
++)
278 /* Encode C into DST, and increment DST. */
280 label_no_more_destination
:
281 /* How many chars and bytes we produced. */
282 coding
->produced_char
+= produced_chars
;
283 coding
->produced
= dst
- coding
->destination
;
288 /*** 1. Preamble ***/
296 #include "character.h"
299 #include "composite.h"
303 #include "termhooks.h"
305 Lisp_Object Vcoding_system_hash_table
;
307 Lisp_Object Qcoding_system
, Qcoding_aliases
, Qeol_type
;
308 Lisp_Object Qunix
, Qdos
;
309 extern Lisp_Object Qmac
; /* frame.c */
310 Lisp_Object Qbuffer_file_coding_system
;
311 Lisp_Object Qpost_read_conversion
, Qpre_write_conversion
;
312 Lisp_Object Qdefault_char
;
313 Lisp_Object Qno_conversion
, Qundecided
;
314 Lisp_Object Qcharset
, Qiso_2022
, Qutf_8
, Qutf_16
, Qshift_jis
, Qbig5
;
315 Lisp_Object Qbig
, Qlittle
;
316 Lisp_Object Qcoding_system_history
;
317 Lisp_Object Qvalid_codes
;
318 Lisp_Object QCcategory
, QCmnemonic
, QCdefault_char
;
319 Lisp_Object QCdecode_translation_table
, QCencode_translation_table
;
320 Lisp_Object QCpost_read_conversion
, QCpre_write_conversion
;
321 Lisp_Object QCascii_compatible_p
;
323 extern Lisp_Object Qinsert_file_contents
, Qwrite_region
;
324 Lisp_Object Qcall_process
, Qcall_process_region
;
325 Lisp_Object Qstart_process
, Qopen_network_stream
;
326 Lisp_Object Qtarget_idx
;
328 Lisp_Object Qinsufficient_source
, Qinconsistent_eol
, Qinvalid_source
;
329 Lisp_Object Qinterrupted
, Qinsufficient_memory
;
331 extern Lisp_Object Qcompletion_ignore_case
;
333 /* If a symbol has this property, evaluate the value to define the
334 symbol as a coding system. */
335 static Lisp_Object Qcoding_system_define_form
;
337 int coding_system_require_warning
;
339 Lisp_Object Vselect_safe_coding_system_function
;
341 /* Mnemonic string for each format of end-of-line. */
342 Lisp_Object eol_mnemonic_unix
, eol_mnemonic_dos
, eol_mnemonic_mac
;
343 /* Mnemonic string to indicate format of end-of-line is not yet
345 Lisp_Object eol_mnemonic_undecided
;
347 /* Format of end-of-line decided by system. This is Qunix on
348 Unix and Mac, Qdos on DOS/Windows.
349 This has an effect only for external encoding (i.e. for output to
350 file and process), not for in-buffer or Lisp string encoding. */
351 static Lisp_Object system_eol_type
;
355 Lisp_Object Vcoding_system_list
, Vcoding_system_alist
;
357 Lisp_Object Qcoding_system_p
, Qcoding_system_error
;
359 /* Coding system emacs-mule and raw-text are for converting only
360 end-of-line format. */
361 Lisp_Object Qemacs_mule
, Qraw_text
;
362 Lisp_Object Qutf_8_emacs
;
364 /* Coding-systems are handed between Emacs Lisp programs and C internal
365 routines by the following three variables. */
366 /* Coding-system for reading files and receiving data from process. */
367 Lisp_Object Vcoding_system_for_read
;
368 /* Coding-system for writing files and sending data to process. */
369 Lisp_Object Vcoding_system_for_write
;
370 /* Coding-system actually used in the latest I/O. */
371 Lisp_Object Vlast_coding_system_used
;
372 /* Set to non-nil when an error is detected while code conversion. */
373 Lisp_Object Vlast_code_conversion_error
;
374 /* A vector of length 256 which contains information about special
375 Latin codes (especially for dealing with Microsoft codes). */
376 Lisp_Object Vlatin_extra_code_table
;
378 /* Flag to inhibit code conversion of end-of-line format. */
379 int inhibit_eol_conversion
;
381 /* Flag to inhibit ISO2022 escape sequence detection. */
382 int inhibit_iso_escape_detection
;
384 /* Flag to inhibit detection of binary files through null bytes. */
385 int inhibit_null_byte_detection
;
387 /* Flag to make buffer-file-coding-system inherit from process-coding. */
388 int inherit_process_coding_system
;
390 /* Coding system to be used to encode text for terminal display when
391 terminal coding system is nil. */
392 struct coding_system safe_terminal_coding
;
394 Lisp_Object Vfile_coding_system_alist
;
395 Lisp_Object Vprocess_coding_system_alist
;
396 Lisp_Object Vnetwork_coding_system_alist
;
398 Lisp_Object Vlocale_coding_system
;
402 /* Flag to tell if we look up translation table on character code
404 Lisp_Object Venable_character_translation
;
405 /* Standard translation table to look up on decoding (reading). */
406 Lisp_Object Vstandard_translation_table_for_decode
;
407 /* Standard translation table to look up on encoding (writing). */
408 Lisp_Object Vstandard_translation_table_for_encode
;
410 Lisp_Object Qtranslation_table
;
411 Lisp_Object Qtranslation_table_id
;
412 Lisp_Object Qtranslation_table_for_decode
;
413 Lisp_Object Qtranslation_table_for_encode
;
415 /* Alist of charsets vs revision number. */
416 static Lisp_Object Vcharset_revision_table
;
418 /* Default coding systems used for process I/O. */
419 Lisp_Object Vdefault_process_coding_system
;
421 /* Char table for translating Quail and self-inserting input. */
422 Lisp_Object Vtranslation_table_for_input
;
424 /* Two special coding systems. */
425 Lisp_Object Vsjis_coding_system
;
426 Lisp_Object Vbig5_coding_system
;
428 /* ISO2022 section */
430 #define CODING_ISO_INITIAL(coding, reg) \
431 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \
432 coding_attr_iso_initial), \
436 #define CODING_ISO_REQUEST(coding, charset_id) \
437 (((charset_id) <= (coding)->max_charset_id \
438 ? ((coding)->safe_charsets[charset_id] != 255 \
439 ? (coding)->safe_charsets[charset_id] \
444 #define CODING_ISO_FLAGS(coding) \
445 ((coding)->spec.iso_2022.flags)
446 #define CODING_ISO_DESIGNATION(coding, reg) \
447 ((coding)->spec.iso_2022.current_designation[reg])
448 #define CODING_ISO_INVOCATION(coding, plane) \
449 ((coding)->spec.iso_2022.current_invocation[plane])
450 #define CODING_ISO_SINGLE_SHIFTING(coding) \
451 ((coding)->spec.iso_2022.single_shifting)
452 #define CODING_ISO_BOL(coding) \
453 ((coding)->spec.iso_2022.bol)
454 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \
455 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane)))
456 #define CODING_ISO_CMP_STATUS(coding) \
457 (&(coding)->spec.iso_2022.cmp_status)
458 #define CODING_ISO_EXTSEGMENT_LEN(coding) \
459 ((coding)->spec.iso_2022.ctext_extended_segment_len)
460 #define CODING_ISO_EMBEDDED_UTF_8(coding) \
461 ((coding)->spec.iso_2022.embedded_utf_8)
463 /* Control characters of ISO2022. */
464 /* code */ /* function */
465 #define ISO_CODE_LF 0x0A /* line-feed */
466 #define ISO_CODE_CR 0x0D /* carriage-return */
467 #define ISO_CODE_SO 0x0E /* shift-out */
468 #define ISO_CODE_SI 0x0F /* shift-in */
469 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
470 #define ISO_CODE_ESC 0x1B /* escape */
471 #define ISO_CODE_SS2 0x8E /* single-shift-2 */
472 #define ISO_CODE_SS3 0x8F /* single-shift-3 */
473 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */
475 /* All code (1-byte) of ISO2022 is classified into one of the
477 enum iso_code_class_type
479 ISO_control_0
, /* Control codes in the range
480 0x00..0x1F and 0x7F, except for the
481 following 5 codes. */
482 ISO_shift_out
, /* ISO_CODE_SO (0x0E) */
483 ISO_shift_in
, /* ISO_CODE_SI (0x0F) */
484 ISO_single_shift_2_7
, /* ISO_CODE_SS2_7 (0x19) */
485 ISO_escape
, /* ISO_CODE_SO (0x1B) */
486 ISO_control_1
, /* Control codes in the range
487 0x80..0x9F, except for the
488 following 3 codes. */
489 ISO_single_shift_2
, /* ISO_CODE_SS2 (0x8E) */
490 ISO_single_shift_3
, /* ISO_CODE_SS3 (0x8F) */
491 ISO_control_sequence_introducer
, /* ISO_CODE_CSI (0x9B) */
492 ISO_0x20_or_0x7F
, /* Codes of the values 0x20 or 0x7F. */
493 ISO_graphic_plane_0
, /* Graphic codes in the range 0x21..0x7E. */
494 ISO_0xA0_or_0xFF
, /* Codes of the values 0xA0 or 0xFF. */
495 ISO_graphic_plane_1
/* Graphic codes in the range 0xA1..0xFE. */
498 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the
499 `iso-flags' attribute of an iso2022 coding system. */
501 /* If set, produce long-form designation sequence (e.g. ESC $ ( A)
502 instead of the correct short-form sequence (e.g. ESC $ A). */
503 #define CODING_ISO_FLAG_LONG_FORM 0x0001
505 /* If set, reset graphic planes and registers at end-of-line to the
507 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002
509 /* If set, reset graphic planes and registers before any control
510 characters to the initial state. */
511 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004
513 /* If set, encode by 7-bit environment. */
514 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008
516 /* If set, use locking-shift function. */
517 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010
519 /* If set, use single-shift function. Overwrite
520 CODING_ISO_FLAG_LOCKING_SHIFT. */
521 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020
523 /* If set, use designation escape sequence. */
524 #define CODING_ISO_FLAG_DESIGNATION 0x0040
526 /* If set, produce revision number sequence. */
527 #define CODING_ISO_FLAG_REVISION 0x0080
529 /* If set, produce ISO6429's direction specifying sequence. */
530 #define CODING_ISO_FLAG_DIRECTION 0x0100
532 /* If set, assume designation states are reset at beginning of line on
534 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200
536 /* If set, designation sequence should be placed at beginning of line
538 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400
540 /* If set, do not encode unsafe charactes on output. */
541 #define CODING_ISO_FLAG_SAFE 0x0800
543 /* If set, extra latin codes (128..159) are accepted as a valid code
545 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000
547 #define CODING_ISO_FLAG_COMPOSITION 0x2000
549 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000
551 #define CODING_ISO_FLAG_USE_ROMAN 0x8000
553 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000
555 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000
557 /* A character to be produced on output if encoding of the original
558 character is prohibited by CODING_ISO_FLAG_SAFE. */
559 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?'
562 #define CODING_UTF_8_BOM(coding) \
563 ((coding)->spec.utf_8_bom)
566 #define CODING_UTF_16_BOM(coding) \
567 ((coding)->spec.utf_16.bom)
569 #define CODING_UTF_16_ENDIAN(coding) \
570 ((coding)->spec.utf_16.endian)
572 #define CODING_UTF_16_SURROGATE(coding) \
573 ((coding)->spec.utf_16.surrogate)
577 #define CODING_CCL_DECODER(coding) \
578 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder)
579 #define CODING_CCL_ENCODER(coding) \
580 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder)
581 #define CODING_CCL_VALIDS(coding) \
582 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)))
584 /* Index for each coding category in `coding_categories' */
588 coding_category_iso_7
,
589 coding_category_iso_7_tight
,
590 coding_category_iso_8_1
,
591 coding_category_iso_8_2
,
592 coding_category_iso_7_else
,
593 coding_category_iso_8_else
,
594 coding_category_utf_8_auto
,
595 coding_category_utf_8_nosig
,
596 coding_category_utf_8_sig
,
597 coding_category_utf_16_auto
,
598 coding_category_utf_16_be
,
599 coding_category_utf_16_le
,
600 coding_category_utf_16_be_nosig
,
601 coding_category_utf_16_le_nosig
,
602 coding_category_charset
,
603 coding_category_sjis
,
604 coding_category_big5
,
606 coding_category_emacs_mule
,
607 /* All above are targets of code detection. */
608 coding_category_raw_text
,
609 coding_category_undecided
,
613 /* Definitions of flag bits used in detect_coding_XXXX. */
614 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7)
615 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight)
616 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1)
617 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2)
618 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else)
619 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else)
620 #define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto)
621 #define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig)
622 #define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig)
623 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto)
624 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be)
625 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le)
626 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig)
627 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig)
628 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset)
629 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis)
630 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5)
631 #define CATEGORY_MASK_CCL (1 << coding_category_ccl)
632 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule)
633 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text)
635 /* This value is returned if detect_coding_mask () find nothing other
636 than ASCII characters. */
637 #define CATEGORY_MASK_ANY \
638 (CATEGORY_MASK_ISO_7 \
639 | CATEGORY_MASK_ISO_7_TIGHT \
640 | CATEGORY_MASK_ISO_8_1 \
641 | CATEGORY_MASK_ISO_8_2 \
642 | CATEGORY_MASK_ISO_7_ELSE \
643 | CATEGORY_MASK_ISO_8_ELSE \
644 | CATEGORY_MASK_UTF_8_AUTO \
645 | CATEGORY_MASK_UTF_8_NOSIG \
646 | CATEGORY_MASK_UTF_8_SIG \
647 | CATEGORY_MASK_UTF_16_AUTO \
648 | CATEGORY_MASK_UTF_16_BE \
649 | CATEGORY_MASK_UTF_16_LE \
650 | CATEGORY_MASK_UTF_16_BE_NOSIG \
651 | CATEGORY_MASK_UTF_16_LE_NOSIG \
652 | CATEGORY_MASK_CHARSET \
653 | CATEGORY_MASK_SJIS \
654 | CATEGORY_MASK_BIG5 \
655 | CATEGORY_MASK_CCL \
656 | CATEGORY_MASK_EMACS_MULE)
659 #define CATEGORY_MASK_ISO_7BIT \
660 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT)
662 #define CATEGORY_MASK_ISO_8BIT \
663 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2)
665 #define CATEGORY_MASK_ISO_ELSE \
666 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE)
668 #define CATEGORY_MASK_ISO_ESCAPE \
669 (CATEGORY_MASK_ISO_7 \
670 | CATEGORY_MASK_ISO_7_TIGHT \
671 | CATEGORY_MASK_ISO_7_ELSE \
672 | CATEGORY_MASK_ISO_8_ELSE)
674 #define CATEGORY_MASK_ISO \
675 ( CATEGORY_MASK_ISO_7BIT \
676 | CATEGORY_MASK_ISO_8BIT \
677 | CATEGORY_MASK_ISO_ELSE)
679 #define CATEGORY_MASK_UTF_16 \
680 (CATEGORY_MASK_UTF_16_AUTO \
681 | CATEGORY_MASK_UTF_16_BE \
682 | CATEGORY_MASK_UTF_16_LE \
683 | CATEGORY_MASK_UTF_16_BE_NOSIG \
684 | CATEGORY_MASK_UTF_16_LE_NOSIG)
686 #define CATEGORY_MASK_UTF_8 \
687 (CATEGORY_MASK_UTF_8_AUTO \
688 | CATEGORY_MASK_UTF_8_NOSIG \
689 | CATEGORY_MASK_UTF_8_SIG)
691 /* List of symbols `coding-category-xxx' ordered by priority. This
692 variable is exposed to Emacs Lisp. */
693 static Lisp_Object Vcoding_category_list
;
695 /* Table of coding categories (Lisp symbols). This variable is for
697 static Lisp_Object Vcoding_category_table
;
699 /* Table of coding-categories ordered by priority. */
700 static enum coding_category coding_priorities
[coding_category_max
];
702 /* Nth element is a coding context for the coding system bound to the
703 Nth coding category. */
704 static struct coding_system coding_categories
[coding_category_max
];
706 /*** Commonly used macros and functions ***/
709 #define min(a, b) ((a) < (b) ? (a) : (b))
712 #define max(a, b) ((a) > (b) ? (a) : (b))
715 #define CODING_GET_INFO(coding, attrs, charset_list) \
717 (attrs) = CODING_ID_ATTRS ((coding)->id); \
718 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \
722 /* Safely get one byte from the source text pointed by SRC which ends
723 at SRC_END, and set C to that byte. If there are not enough bytes
724 in the source, it jumps to `no_more_source'. If multibytep is
725 nonzero, and a multibyte character is found at SRC, set C to the
726 negative value of the character code. The caller should declare
727 and set these variables appropriately in advance:
728 src, src_end, multibytep */
730 #define ONE_MORE_BYTE(c) \
732 if (src == src_end) \
734 if (src_base < src) \
735 record_conversion_result \
736 (coding, CODING_RESULT_INSUFFICIENT_SRC); \
737 goto no_more_source; \
740 if (multibytep && (c & 0x80)) \
742 if ((c & 0xFE) == 0xC0) \
743 c = ((c & 1) << 6) | *src++; \
747 c = - string_char (src, &src, NULL); \
748 record_conversion_result \
749 (coding, CODING_RESULT_INVALID_SRC); \
755 /* Safely get two bytes from the source text pointed by SRC which ends
756 at SRC_END, and set C1 and C2 to those bytes while skipping the
757 heading multibyte characters. If there are not enough bytes in the
758 source, it jumps to `no_more_source'. If multibytep is nonzero and
759 a multibyte character is found for C2, set C2 to the negative value
760 of the character code. The caller should declare and set these
761 variables appropriately in advance:
762 src, src_end, multibytep
763 It is intended that this macro is used in detect_coding_utf_16. */
765 #define TWO_MORE_BYTES(c1, c2) \
768 if (src == src_end) \
769 goto no_more_source; \
771 if (multibytep && (c1 & 0x80)) \
773 if ((c1 & 0xFE) == 0xC0) \
774 c1 = ((c1 & 1) << 6) | *src++; \
777 src += BYTES_BY_CHAR_HEAD (c1) - 1; \
782 if (src == src_end) \
783 goto no_more_source; \
785 if (multibytep && (c2 & 0x80)) \
787 if ((c2 & 0xFE) == 0xC0) \
788 c2 = ((c2 & 1) << 6) | *src++; \
795 #define ONE_MORE_BYTE_NO_CHECK(c) \
798 if (multibytep && (c & 0x80)) \
800 if ((c & 0xFE) == 0xC0) \
801 c = ((c & 1) << 6) | *src++; \
805 c = - string_char (src, &src, NULL); \
806 record_conversion_result \
807 (coding, CODING_RESULT_INVALID_SRC); \
814 /* Store a byte C in the place pointed by DST and increment DST to the
815 next free point, and increment PRODUCED_CHARS. The caller should
816 assure that C is 0..127, and declare and set the variable `dst'
817 appropriately in advance.
821 #define EMIT_ONE_ASCII_BYTE(c) \
828 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */
830 #define EMIT_TWO_ASCII_BYTES(c1, c2) \
832 produced_chars += 2; \
833 *dst++ = (c1), *dst++ = (c2); \
837 /* Store a byte C in the place pointed by DST and increment DST to the
838 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is
839 nonzero, store in an appropriate multibyte from. The caller should
840 declare and set the variables `dst' and `multibytep' appropriately
843 #define EMIT_ONE_BYTE(c) \
850 ch = BYTE8_TO_CHAR (ch); \
851 CHAR_STRING_ADVANCE (ch, dst); \
858 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */
860 #define EMIT_TWO_BYTES(c1, c2) \
862 produced_chars += 2; \
869 ch = BYTE8_TO_CHAR (ch); \
870 CHAR_STRING_ADVANCE (ch, dst); \
873 ch = BYTE8_TO_CHAR (ch); \
874 CHAR_STRING_ADVANCE (ch, dst); \
884 #define EMIT_THREE_BYTES(c1, c2, c3) \
886 EMIT_ONE_BYTE (c1); \
887 EMIT_TWO_BYTES (c2, c3); \
891 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \
893 EMIT_TWO_BYTES (c1, c2); \
894 EMIT_TWO_BYTES (c3, c4); \
898 /* Prototypes for static functions. */
899 static void record_conversion_result
P_ ((struct coding_system
*coding
,
900 enum coding_result_code result
));
901 static int detect_coding_utf_8
P_ ((struct coding_system
*,
902 struct coding_detection_info
*info
));
903 static void decode_coding_utf_8
P_ ((struct coding_system
*));
904 static int encode_coding_utf_8
P_ ((struct coding_system
*));
906 static int detect_coding_utf_16
P_ ((struct coding_system
*,
907 struct coding_detection_info
*info
));
908 static void decode_coding_utf_16
P_ ((struct coding_system
*));
909 static int encode_coding_utf_16
P_ ((struct coding_system
*));
911 static int detect_coding_iso_2022
P_ ((struct coding_system
*,
912 struct coding_detection_info
*info
));
913 static void decode_coding_iso_2022
P_ ((struct coding_system
*));
914 static int encode_coding_iso_2022
P_ ((struct coding_system
*));
916 static int detect_coding_emacs_mule
P_ ((struct coding_system
*,
917 struct coding_detection_info
*info
));
918 static void decode_coding_emacs_mule
P_ ((struct coding_system
*));
919 static int encode_coding_emacs_mule
P_ ((struct coding_system
*));
921 static int detect_coding_sjis
P_ ((struct coding_system
*,
922 struct coding_detection_info
*info
));
923 static void decode_coding_sjis
P_ ((struct coding_system
*));
924 static int encode_coding_sjis
P_ ((struct coding_system
*));
926 static int detect_coding_big5
P_ ((struct coding_system
*,
927 struct coding_detection_info
*info
));
928 static void decode_coding_big5
P_ ((struct coding_system
*));
929 static int encode_coding_big5
P_ ((struct coding_system
*));
931 static int detect_coding_ccl
P_ ((struct coding_system
*,
932 struct coding_detection_info
*info
));
933 static void decode_coding_ccl
P_ ((struct coding_system
*));
934 static int encode_coding_ccl
P_ ((struct coding_system
*));
936 static void decode_coding_raw_text
P_ ((struct coding_system
*));
937 static int encode_coding_raw_text
P_ ((struct coding_system
*));
939 static void coding_set_source
P_ ((struct coding_system
*));
940 static void coding_set_destination
P_ ((struct coding_system
*));
941 static void coding_alloc_by_realloc
P_ ((struct coding_system
*, EMACS_INT
));
942 static void coding_alloc_by_making_gap
P_ ((struct coding_system
*,
943 EMACS_INT
, EMACS_INT
));
944 static unsigned char *alloc_destination
P_ ((struct coding_system
*,
945 EMACS_INT
, unsigned char *));
946 static void setup_iso_safe_charsets
P_ ((Lisp_Object
));
947 static unsigned char *encode_designation_at_bol
P_ ((struct coding_system
*,
950 static int detect_eol
P_ ((const unsigned char *,
951 EMACS_INT
, enum coding_category
));
952 static Lisp_Object adjust_coding_eol_type
P_ ((struct coding_system
*, int));
953 static void decode_eol
P_ ((struct coding_system
*));
954 static Lisp_Object get_translation_table
P_ ((Lisp_Object
, int, int *));
955 static Lisp_Object get_translation
P_ ((Lisp_Object
, int *, int *));
956 static int produce_chars
P_ ((struct coding_system
*, Lisp_Object
, int));
957 static INLINE
void produce_charset
P_ ((struct coding_system
*, int *,
959 static void produce_annotation
P_ ((struct coding_system
*, EMACS_INT
));
960 static int decode_coding
P_ ((struct coding_system
*));
961 static INLINE
int *handle_composition_annotation
P_ ((EMACS_INT
, EMACS_INT
,
962 struct coding_system
*,
963 int *, EMACS_INT
*));
964 static INLINE
int *handle_charset_annotation
P_ ((EMACS_INT
, EMACS_INT
,
965 struct coding_system
*,
966 int *, EMACS_INT
*));
967 static void consume_chars
P_ ((struct coding_system
*, Lisp_Object
, int));
968 static int encode_coding
P_ ((struct coding_system
*));
969 static Lisp_Object make_conversion_work_buffer
P_ ((int));
970 static Lisp_Object code_conversion_restore
P_ ((Lisp_Object
));
971 static INLINE
int char_encodable_p
P_ ((int, Lisp_Object
));
972 static Lisp_Object make_subsidiaries
P_ ((Lisp_Object
));
975 record_conversion_result (struct coding_system
*coding
,
976 enum coding_result_code result
)
978 coding
->result
= result
;
981 case CODING_RESULT_INSUFFICIENT_SRC
:
982 Vlast_code_conversion_error
= Qinsufficient_source
;
984 case CODING_RESULT_INCONSISTENT_EOL
:
985 Vlast_code_conversion_error
= Qinconsistent_eol
;
987 case CODING_RESULT_INVALID_SRC
:
988 Vlast_code_conversion_error
= Qinvalid_source
;
990 case CODING_RESULT_INTERRUPT
:
991 Vlast_code_conversion_error
= Qinterrupted
;
993 case CODING_RESULT_INSUFFICIENT_MEM
:
994 Vlast_code_conversion_error
= Qinsufficient_memory
;
996 case CODING_RESULT_INSUFFICIENT_DST
:
997 /* Don't record this error in Vlast_code_conversion_error
998 because it happens just temporarily and is resolved when the
999 whole conversion is finished. */
1001 case CODING_RESULT_SUCCESS
:
1004 Vlast_code_conversion_error
= intern ("Unknown error");
1008 /* This wrapper macro is used to preserve validity of pointers into
1009 buffer text across calls to decode_char, which could cause
1010 relocation of buffers if it loads a charset map, because loading a
1011 charset map allocates large structures. */
1012 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \
1014 charset_map_loaded = 0; \
1015 c = DECODE_CHAR (charset, code); \
1016 if (charset_map_loaded) \
1018 const unsigned char *orig = coding->source; \
1021 coding_set_source (coding); \
1022 offset = coding->source - orig; \
1024 src_base += offset; \
1025 src_end += offset; \
1030 /* If there are at least BYTES length of room at dst, allocate memory
1031 for coding->destination and update dst and dst_end. We don't have
1032 to take care of coding->source which will be relocated. It is
1033 handled by calling coding_set_source in encode_coding. */
1035 #define ASSURE_DESTINATION(bytes) \
1037 if (dst + (bytes) >= dst_end) \
1039 int more_bytes = charbuf_end - charbuf + (bytes); \
1041 dst = alloc_destination (coding, more_bytes, dst); \
1042 dst_end = coding->destination + coding->dst_bytes; \
1047 /* Store multibyte form of the character C in P, and advance P to the
1048 end of the multibyte form. This is like CHAR_STRING_ADVANCE but it
1049 never calls MAYBE_UNIFY_CHAR. */
1051 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) \
1053 if ((c) <= MAX_1_BYTE_CHAR) \
1055 else if ((c) <= MAX_2_BYTE_CHAR) \
1056 *(p)++ = (0xC0 | ((c) >> 6)), \
1057 *(p)++ = (0x80 | ((c) & 0x3F)); \
1058 else if ((c) <= MAX_3_BYTE_CHAR) \
1059 *(p)++ = (0xE0 | ((c) >> 12)), \
1060 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \
1061 *(p)++ = (0x80 | ((c) & 0x3F)); \
1062 else if ((c) <= MAX_4_BYTE_CHAR) \
1063 *(p)++ = (0xF0 | (c >> 18)), \
1064 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \
1065 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \
1066 *(p)++ = (0x80 | (c & 0x3F)); \
1067 else if ((c) <= MAX_5_BYTE_CHAR) \
1069 *(p)++ = (0x80 | ((c >> 18) & 0x0F)), \
1070 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \
1071 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \
1072 *(p)++ = (0x80 | (c & 0x3F)); \
1074 (p) += BYTE8_STRING ((c) - 0x3FFF80, p); \
1078 /* Return the character code of character whose multibyte form is at
1079 P, and advance P to the end of the multibyte form. This is like
1080 STRING_CHAR_ADVANCE, but it never calls MAYBE_UNIFY_CHAR. */
1082 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) \
1085 : ! ((p)[0] & 0x20) \
1087 ((((p)[-2] & 0x1F) << 6) \
1088 | ((p)[-1] & 0x3F) \
1089 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \
1090 : ! ((p)[0] & 0x10) \
1092 ((((p)[-3] & 0x0F) << 12) \
1093 | (((p)[-2] & 0x3F) << 6) \
1094 | ((p)[-1] & 0x3F))) \
1095 : ! ((p)[0] & 0x08) \
1097 ((((p)[-4] & 0xF) << 18) \
1098 | (((p)[-3] & 0x3F) << 12) \
1099 | (((p)[-2] & 0x3F) << 6) \
1100 | ((p)[-1] & 0x3F))) \
1102 ((((p)[-4] & 0x3F) << 18) \
1103 | (((p)[-3] & 0x3F) << 12) \
1104 | (((p)[-2] & 0x3F) << 6) \
1105 | ((p)[-1] & 0x3F))))
1109 coding_set_source (coding
)
1110 struct coding_system
*coding
;
1112 if (BUFFERP (coding
->src_object
))
1114 struct buffer
*buf
= XBUFFER (coding
->src_object
);
1116 if (coding
->src_pos
< 0)
1117 coding
->source
= BUF_GAP_END_ADDR (buf
) + coding
->src_pos_byte
;
1119 coding
->source
= BUF_BYTE_ADDRESS (buf
, coding
->src_pos_byte
);
1121 else if (STRINGP (coding
->src_object
))
1123 coding
->source
= SDATA (coding
->src_object
) + coding
->src_pos_byte
;
1126 /* Otherwise, the source is C string and is never relocated
1127 automatically. Thus we don't have to update anything. */
1132 coding_set_destination (coding
)
1133 struct coding_system
*coding
;
1135 if (BUFFERP (coding
->dst_object
))
1137 if (coding
->src_pos
< 0)
1139 coding
->destination
= BEG_ADDR
+ coding
->dst_pos_byte
- BEG_BYTE
;
1140 coding
->dst_bytes
= (GAP_END_ADDR
1141 - (coding
->src_bytes
- coding
->consumed
)
1142 - coding
->destination
);
1146 /* We are sure that coding->dst_pos_byte is before the gap
1148 coding
->destination
= (BUF_BEG_ADDR (XBUFFER (coding
->dst_object
))
1149 + coding
->dst_pos_byte
- BEG_BYTE
);
1150 coding
->dst_bytes
= (BUF_GAP_END_ADDR (XBUFFER (coding
->dst_object
))
1151 - coding
->destination
);
1155 /* Otherwise, the destination is C string and is never relocated
1156 automatically. Thus we don't have to update anything. */
1162 coding_alloc_by_realloc (coding
, bytes
)
1163 struct coding_system
*coding
;
1166 coding
->destination
= (unsigned char *) xrealloc (coding
->destination
,
1167 coding
->dst_bytes
+ bytes
);
1168 coding
->dst_bytes
+= bytes
;
1172 coding_alloc_by_making_gap (coding
, gap_head_used
, bytes
)
1173 struct coding_system
*coding
;
1174 EMACS_INT gap_head_used
, bytes
;
1176 if (EQ (coding
->src_object
, coding
->dst_object
))
1178 /* The gap may contain the produced data at the head and not-yet
1179 consumed data at the tail. To preserve those data, we at
1180 first make the gap size to zero, then increase the gap
1182 EMACS_INT add
= GAP_SIZE
;
1184 GPT
+= gap_head_used
, GPT_BYTE
+= gap_head_used
;
1185 GAP_SIZE
= 0; ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
1187 GAP_SIZE
+= add
; ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
1188 GPT
-= gap_head_used
, GPT_BYTE
-= gap_head_used
;
1192 Lisp_Object this_buffer
;
1194 this_buffer
= Fcurrent_buffer ();
1195 set_buffer_internal (XBUFFER (coding
->dst_object
));
1197 set_buffer_internal (XBUFFER (this_buffer
));
1202 static unsigned char *
1203 alloc_destination (coding
, nbytes
, dst
)
1204 struct coding_system
*coding
;
1208 EMACS_INT offset
= dst
- coding
->destination
;
1210 if (BUFFERP (coding
->dst_object
))
1212 struct buffer
*buf
= XBUFFER (coding
->dst_object
);
1214 coding_alloc_by_making_gap (coding
, dst
- BUF_GPT_ADDR (buf
), nbytes
);
1217 coding_alloc_by_realloc (coding
, nbytes
);
1218 coding_set_destination (coding
);
1219 dst
= coding
->destination
+ offset
;
1223 /** Macros for annotations. */
1225 /* An annotation data is stored in the array coding->charbuf in this
1227 [ -LENGTH ANNOTATION_MASK NCHARS ... ]
1228 LENGTH is the number of elements in the annotation.
1229 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK.
1230 NCHARS is the number of characters in the text annotated.
1232 The format of the following elements depend on ANNOTATION_MASK.
1234 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements
1236 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ]
1238 NBYTES is the number of bytes specified in the header part of
1239 old-style emacs-mule encoding, or 0 for the other kind of
1242 METHOD is one of enum composition_method.
1244 Optionnal COMPOSITION-COMPONENTS are characters and composition
1247 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID
1250 If ANNOTATION_MASK is 0, this annotation is just a space holder to
1251 recover from an invalid annotation, and should be skipped by
1252 produce_annotation. */
1254 /* Maximum length of the header of annotation data. */
1255 #define MAX_ANNOTATION_LENGTH 5
1257 #define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \
1259 *(buf)++ = -(len); \
1260 *(buf)++ = (mask); \
1261 *(buf)++ = (nchars); \
1262 coding->annotated = 1; \
1265 #define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \
1267 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \
1273 #define ADD_CHARSET_DATA(buf, nchars, id) \
1275 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \
1280 /*** 2. Emacs' internal format (emacs-utf-8) ***/
1287 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1288 Check if a text is encoded in UTF-8. If it is, return 1, else
1291 #define UTF_8_1_OCTET_P(c) ((c) < 0x80)
1292 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
1293 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
1294 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
1295 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
1296 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
1298 #define UTF_BOM 0xFEFF
1299 #define UTF_8_BOM_1 0xEF
1300 #define UTF_8_BOM_2 0xBB
1301 #define UTF_8_BOM_3 0xBF
1304 detect_coding_utf_8 (coding
, detect_info
)
1305 struct coding_system
*coding
;
1306 struct coding_detection_info
*detect_info
;
1308 const unsigned char *src
= coding
->source
, *src_base
;
1309 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1310 int multibytep
= coding
->src_multibyte
;
1311 int consumed_chars
= 0;
1315 detect_info
->checked
|= CATEGORY_MASK_UTF_8
;
1316 /* A coding system of this category is always ASCII compatible. */
1317 src
+= coding
->head_ascii
;
1321 int c
, c1
, c2
, c3
, c4
;
1325 if (c
< 0 || UTF_8_1_OCTET_P (c
))
1328 if (c1
< 0 || ! UTF_8_EXTRA_OCTET_P (c1
))
1330 if (UTF_8_2_OCTET_LEADING_P (c
))
1336 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1338 if (UTF_8_3_OCTET_LEADING_P (c
))
1341 if (src_base
== coding
->source
1342 && c
== UTF_8_BOM_1
&& c1
== UTF_8_BOM_2
&& c2
== UTF_8_BOM_3
)
1347 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1349 if (UTF_8_4_OCTET_LEADING_P (c
))
1355 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1357 if (UTF_8_5_OCTET_LEADING_P (c
))
1364 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1368 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1370 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1375 /* The first character 0xFFFE doesn't necessarily mean a BOM. */
1376 detect_info
->found
|= CATEGORY_MASK_UTF_8_SIG
| CATEGORY_MASK_UTF_8_NOSIG
;
1380 detect_info
->rejected
|= CATEGORY_MASK_UTF_8_SIG
;
1382 detect_info
->found
|= CATEGORY_MASK_UTF_8_NOSIG
;
1389 decode_coding_utf_8 (coding
)
1390 struct coding_system
*coding
;
1392 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1393 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1394 const unsigned char *src_base
;
1395 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1396 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
1397 int consumed_chars
= 0, consumed_chars_base
= 0;
1398 int multibytep
= coding
->src_multibyte
;
1399 enum utf_bom_type bom
= CODING_UTF_8_BOM (coding
);
1400 Lisp_Object attr
, charset_list
;
1402 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1403 int byte_after_cr
= -1;
1405 CODING_GET_INFO (coding
, attr
, charset_list
);
1407 if (bom
!= utf_without_bom
)
1413 if (! UTF_8_3_OCTET_LEADING_P (c1
))
1418 if (! UTF_8_EXTRA_OCTET_P (c2
))
1423 if (! UTF_8_EXTRA_OCTET_P (c3
))
1427 if ((c1
!= UTF_8_BOM_1
)
1428 || (c2
!= UTF_8_BOM_2
) || (c3
!= UTF_8_BOM_3
))
1431 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1436 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1442 int c
, c1
, c2
, c3
, c4
, c5
;
1445 consumed_chars_base
= consumed_chars
;
1447 if (charbuf
>= charbuf_end
)
1449 if (byte_after_cr
>= 0)
1454 if (byte_after_cr
>= 0)
1455 c1
= byte_after_cr
, byte_after_cr
= -1;
1462 else if (UTF_8_1_OCTET_P(c1
))
1464 if (eol_crlf
&& c1
== '\r')
1465 ONE_MORE_BYTE (byte_after_cr
);
1471 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1473 if (UTF_8_2_OCTET_LEADING_P (c1
))
1475 c
= ((c1
& 0x1F) << 6) | (c2
& 0x3F);
1476 /* Reject overlong sequences here and below. Encoders
1477 producing them are incorrect, they can be misleading,
1478 and they mess up read/write invariance. */
1485 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1487 if (UTF_8_3_OCTET_LEADING_P (c1
))
1489 c
= (((c1
& 0xF) << 12)
1490 | ((c2
& 0x3F) << 6) | (c3
& 0x3F));
1492 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
1498 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1500 if (UTF_8_4_OCTET_LEADING_P (c1
))
1502 c
= (((c1
& 0x7) << 18) | ((c2
& 0x3F) << 12)
1503 | ((c3
& 0x3F) << 6) | (c4
& 0x3F));
1510 if (c5
< 0 || ! UTF_8_EXTRA_OCTET_P (c5
))
1512 if (UTF_8_5_OCTET_LEADING_P (c1
))
1514 c
= (((c1
& 0x3) << 24) | ((c2
& 0x3F) << 18)
1515 | ((c3
& 0x3F) << 12) | ((c4
& 0x3F) << 6)
1517 if ((c
> MAX_CHAR
) || (c
< 0x200000))
1532 consumed_chars
= consumed_chars_base
;
1534 *charbuf
++ = ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
1539 coding
->consumed_char
+= consumed_chars_base
;
1540 coding
->consumed
= src_base
- coding
->source
;
1541 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1546 encode_coding_utf_8 (coding
)
1547 struct coding_system
*coding
;
1549 int multibytep
= coding
->dst_multibyte
;
1550 int *charbuf
= coding
->charbuf
;
1551 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1552 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1553 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1554 int produced_chars
= 0;
1557 if (CODING_UTF_8_BOM (coding
) == utf_with_bom
)
1559 ASSURE_DESTINATION (3);
1560 EMIT_THREE_BYTES (UTF_8_BOM_1
, UTF_8_BOM_2
, UTF_8_BOM_3
);
1561 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1566 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
1568 while (charbuf
< charbuf_end
)
1570 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p
, *pend
= str
;
1572 ASSURE_DESTINATION (safe_room
);
1574 if (CHAR_BYTE8_P (c
))
1576 c
= CHAR_TO_BYTE8 (c
);
1581 CHAR_STRING_ADVANCE_NO_UNIFY (c
, pend
);
1582 for (p
= str
; p
< pend
; p
++)
1589 int safe_room
= MAX_MULTIBYTE_LENGTH
;
1591 while (charbuf
< charbuf_end
)
1593 ASSURE_DESTINATION (safe_room
);
1595 if (CHAR_BYTE8_P (c
))
1596 *dst
++ = CHAR_TO_BYTE8 (c
);
1598 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
1602 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1603 coding
->produced_char
+= produced_chars
;
1604 coding
->produced
= dst
- coding
->destination
;
1609 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1610 Check if a text is encoded in one of UTF-16 based coding systems.
1611 If it is, return 1, else return 0. */
1613 #define UTF_16_HIGH_SURROGATE_P(val) \
1614 (((val) & 0xFC00) == 0xD800)
1616 #define UTF_16_LOW_SURROGATE_P(val) \
1617 (((val) & 0xFC00) == 0xDC00)
1619 #define UTF_16_INVALID_P(val) \
1620 (((val) == 0xFFFE) \
1621 || ((val) == 0xFFFF) \
1622 || UTF_16_LOW_SURROGATE_P (val))
1626 detect_coding_utf_16 (coding
, detect_info
)
1627 struct coding_system
*coding
;
1628 struct coding_detection_info
*detect_info
;
1630 const unsigned char *src
= coding
->source
, *src_base
= src
;
1631 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1632 int multibytep
= coding
->src_multibyte
;
1633 int consumed_chars
= 0;
1636 detect_info
->checked
|= CATEGORY_MASK_UTF_16
;
1637 if (coding
->mode
& CODING_MODE_LAST_BLOCK
1638 && (coding
->src_chars
& 1))
1640 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1644 TWO_MORE_BYTES (c1
, c2
);
1645 if ((c1
== 0xFF) && (c2
== 0xFE))
1647 detect_info
->found
|= (CATEGORY_MASK_UTF_16_LE
1648 | CATEGORY_MASK_UTF_16_AUTO
);
1649 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_BE
1650 | CATEGORY_MASK_UTF_16_BE_NOSIG
1651 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1653 else if ((c1
== 0xFE) && (c2
== 0xFF))
1655 detect_info
->found
|= (CATEGORY_MASK_UTF_16_BE
1656 | CATEGORY_MASK_UTF_16_AUTO
);
1657 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_LE
1658 | CATEGORY_MASK_UTF_16_BE_NOSIG
1659 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1663 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1668 /* We check the dispersion of Eth and Oth bytes where E is even and
1669 O is odd. If both are high, we assume binary data.*/
1670 unsigned char e
[256], o
[256];
1671 unsigned e_num
= 1, o_num
= 1;
1678 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_AUTO
1679 |CATEGORY_MASK_UTF_16_BE
1680 | CATEGORY_MASK_UTF_16_LE
);
1682 while ((detect_info
->rejected
& CATEGORY_MASK_UTF_16
)
1683 != CATEGORY_MASK_UTF_16
)
1685 TWO_MORE_BYTES (c1
, c2
);
1693 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_BE_NOSIG
;
1700 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_LE_NOSIG
;
1711 decode_coding_utf_16 (coding
)
1712 struct coding_system
*coding
;
1714 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1715 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1716 const unsigned char *src_base
;
1717 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1718 /* We may produces at most 3 chars in one loop. */
1719 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
- 2;
1720 int consumed_chars
= 0, consumed_chars_base
= 0;
1721 int multibytep
= coding
->src_multibyte
;
1722 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1723 enum utf_16_endian_type endian
= CODING_UTF_16_ENDIAN (coding
);
1724 int surrogate
= CODING_UTF_16_SURROGATE (coding
);
1725 Lisp_Object attr
, charset_list
;
1727 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1728 int byte_after_cr1
= -1, byte_after_cr2
= -1;
1730 CODING_GET_INFO (coding
, attr
, charset_list
);
1732 if (bom
== utf_with_bom
)
1741 if (endian
== utf_16_big_endian
1742 ? c
!= 0xFEFF : c
!= 0xFFFE)
1744 /* The first two bytes are not BOM. Treat them as bytes
1745 for a normal character. */
1749 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1751 else if (bom
== utf_detect_bom
)
1753 /* We have already tried to detect BOM and failed in
1755 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1763 consumed_chars_base
= consumed_chars
;
1765 if (charbuf
>= charbuf_end
)
1767 if (byte_after_cr1
>= 0)
1772 if (byte_after_cr1
>= 0)
1773 c1
= byte_after_cr1
, byte_after_cr1
= -1;
1781 if (byte_after_cr2
>= 0)
1782 c2
= byte_after_cr2
, byte_after_cr2
= -1;
1787 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
1791 c
= (endian
== utf_16_big_endian
1792 ? ((c1
<< 8) | c2
) : ((c2
<< 8) | c1
));
1796 if (! UTF_16_LOW_SURROGATE_P (c
))
1798 if (endian
== utf_16_big_endian
)
1799 c1
= surrogate
>> 8, c2
= surrogate
& 0xFF;
1801 c1
= surrogate
& 0xFF, c2
= surrogate
>> 8;
1805 if (UTF_16_HIGH_SURROGATE_P (c
))
1806 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1812 c
= ((surrogate
- 0xD800) << 10) | (c
- 0xDC00);
1813 CODING_UTF_16_SURROGATE (coding
) = surrogate
= 0;
1814 *charbuf
++ = 0x10000 + c
;
1819 if (UTF_16_HIGH_SURROGATE_P (c
))
1820 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1823 if (eol_crlf
&& c
== '\r')
1825 ONE_MORE_BYTE (byte_after_cr1
);
1826 ONE_MORE_BYTE (byte_after_cr2
);
1834 coding
->consumed_char
+= consumed_chars_base
;
1835 coding
->consumed
= src_base
- coding
->source
;
1836 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1840 encode_coding_utf_16 (coding
)
1841 struct coding_system
*coding
;
1843 int multibytep
= coding
->dst_multibyte
;
1844 int *charbuf
= coding
->charbuf
;
1845 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1846 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1847 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1849 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1850 int big_endian
= CODING_UTF_16_ENDIAN (coding
) == utf_16_big_endian
;
1851 int produced_chars
= 0;
1852 Lisp_Object attrs
, charset_list
;
1855 CODING_GET_INFO (coding
, attrs
, charset_list
);
1857 if (bom
!= utf_without_bom
)
1859 ASSURE_DESTINATION (safe_room
);
1861 EMIT_TWO_BYTES (0xFE, 0xFF);
1863 EMIT_TWO_BYTES (0xFF, 0xFE);
1864 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1867 while (charbuf
< charbuf_end
)
1869 ASSURE_DESTINATION (safe_room
);
1871 if (c
> MAX_UNICODE_CHAR
)
1872 c
= coding
->default_char
;
1877 EMIT_TWO_BYTES (c
>> 8, c
& 0xFF);
1879 EMIT_TWO_BYTES (c
& 0xFF, c
>> 8);
1886 c1
= (c
>> 10) + 0xD800;
1887 c2
= (c
& 0x3FF) + 0xDC00;
1889 EMIT_FOUR_BYTES (c1
>> 8, c1
& 0xFF, c2
>> 8, c2
& 0xFF);
1891 EMIT_FOUR_BYTES (c1
& 0xFF, c1
>> 8, c2
& 0xFF, c2
>> 8);
1894 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1895 coding
->produced
= dst
- coding
->destination
;
1896 coding
->produced_char
+= produced_chars
;
1901 /*** 6. Old Emacs' internal format (emacs-mule) ***/
1903 /* Emacs' internal format for representation of multiple character
1904 sets is a kind of multi-byte encoding, i.e. characters are
1905 represented by variable-length sequences of one-byte codes.
1907 ASCII characters and control characters (e.g. `tab', `newline') are
1908 represented by one-byte sequences which are their ASCII codes, in
1909 the range 0x00 through 0x7F.
1911 8-bit characters of the range 0x80..0x9F are represented by
1912 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
1915 8-bit characters of the range 0xA0..0xFF are represented by
1916 one-byte sequences which are their 8-bit code.
1918 The other characters are represented by a sequence of `base
1919 leading-code', optional `extended leading-code', and one or two
1920 `position-code's. The length of the sequence is determined by the
1921 base leading-code. Leading-code takes the range 0x81 through 0x9D,
1922 whereas extended leading-code and position-code take the range 0xA0
1923 through 0xFF. See `charset.h' for more details about leading-code
1926 --- CODE RANGE of Emacs' internal format ---
1930 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
1931 eight-bit-graphic 0xA0..0xBF
1932 ELSE 0x81..0x9D + [0xA0..0xFF]+
1933 ---------------------------------------------
1935 As this is the internal character representation, the format is
1936 usually not used externally (i.e. in a file or in a data sent to a
1937 process). But, it is possible to have a text externally in this
1938 format (i.e. by encoding by the coding system `emacs-mule').
1940 In that case, a sequence of one-byte codes has a slightly different
1943 At first, all characters in eight-bit-control are represented by
1944 one-byte sequences which are their 8-bit code.
1946 Next, character composition data are represented by the byte
1947 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
1949 METHOD is 0xF2 plus one of composition method (enum
1950 composition_method),
1952 BYTES is 0xA0 plus a byte length of this composition data,
1954 CHARS is 0xA0 plus a number of characters composed by this
1957 COMPONENTs are characters of multibye form or composition
1958 rules encoded by two-byte of ASCII codes.
1960 In addition, for backward compatibility, the following formats are
1961 also recognized as composition data on decoding.
1964 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
1967 MSEQ is a multibyte form but in these special format:
1968 ASCII: 0xA0 ASCII_CODE+0x80,
1969 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
1970 RULE is a one byte code of the range 0xA0..0xF0 that
1971 represents a composition rule.
1974 char emacs_mule_bytes
[256];
1977 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1978 Check if a text is encoded in `emacs-mule'. If it is, return 1,
1982 detect_coding_emacs_mule (coding
, detect_info
)
1983 struct coding_system
*coding
;
1984 struct coding_detection_info
*detect_info
;
1986 const unsigned char *src
= coding
->source
, *src_base
;
1987 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1988 int multibytep
= coding
->src_multibyte
;
1989 int consumed_chars
= 0;
1993 detect_info
->checked
|= CATEGORY_MASK_EMACS_MULE
;
1994 /* A coding system of this category is always ASCII compatible. */
1995 src
+= coding
->head_ascii
;
2005 /* Perhaps the start of composite character. We simply skip
2006 it because analyzing it is too heavy for detecting. But,
2007 at least, we check that the composite character
2008 constitutes of more than 4 bytes. */
2009 const unsigned char *src_base
;
2019 if (src
- src_base
<= 4)
2021 found
= CATEGORY_MASK_EMACS_MULE
;
2029 && (c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
))
2034 int more_bytes
= emacs_mule_bytes
[*src_base
] - 1;
2036 while (more_bytes
> 0)
2041 src
--; /* Unread the last byte. */
2046 if (more_bytes
!= 0)
2048 found
= CATEGORY_MASK_EMACS_MULE
;
2051 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
2055 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
2057 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
2060 detect_info
->found
|= found
;
2065 /* Parse emacs-mule multibyte sequence at SRC and return the decoded
2066 character. If CMP_STATUS indicates that we must expect MSEQ or
2067 RULE described above, decode it and return the negative value of
2068 the decoded character or rule. If an invalid byte is found, return
2069 -1. If SRC is too short, return -2. */
2072 emacs_mule_char (coding
, src
, nbytes
, nchars
, id
, cmp_status
)
2073 struct coding_system
*coding
;
2074 const unsigned char *src
;
2075 int *nbytes
, *nchars
, *id
;
2076 struct composition_status
*cmp_status
;
2078 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2079 const unsigned char *src_base
= src
;
2080 int multibytep
= coding
->src_multibyte
;
2081 struct charset
*charset
;
2084 int consumed_chars
= 0;
2091 charset
= emacs_mule_charset
[0];
2097 if (cmp_status
->state
!= COMPOSING_NO
2098 && cmp_status
->old_form
)
2100 if (cmp_status
->state
== COMPOSING_CHAR
)
2115 *nbytes
= src
- src_base
;
2116 *nchars
= consumed_chars
;
2124 switch (emacs_mule_bytes
[c
])
2127 if (! (charset
= emacs_mule_charset
[c
]))
2136 if (c
== EMACS_MULE_LEADING_CODE_PRIVATE_11
2137 || c
== EMACS_MULE_LEADING_CODE_PRIVATE_12
)
2140 if (c
< 0xA0 || ! (charset
= emacs_mule_charset
[c
]))
2149 if (! (charset
= emacs_mule_charset
[c
]))
2154 code
= (c
& 0x7F) << 8;
2164 if (c
< 0 || ! (charset
= emacs_mule_charset
[c
]))
2169 code
= (c
& 0x7F) << 8;
2178 charset
= CHARSET_FROM_ID (ASCII_BYTE_P (code
)
2179 ? charset_ascii
: charset_eight_bit
);
2185 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, code
, c
);
2189 *nbytes
= src
- src_base
;
2190 *nchars
= consumed_chars
;
2193 return (mseq_found
? -c
: c
);
2203 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
2205 /* Handle these composition sequence ('|': the end of header elements,
2206 BYTES and CHARS >= 0xA0):
2208 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ...
2209 (2) altchar composition: 0x80 0xF4 BYTES CHARS | ALT ... ALT CHAR ...
2210 (3) alt&rule composition: 0x80 0xF5 BYTES CHARS | ALT RULE ... ALT CHAR ...
2214 (4) relative composition: 0x80 | MSEQ ... MSEQ
2215 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ
2217 When the starter 0x80 and the following header elements are found,
2218 this annotation header is produced.
2220 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ]
2222 NCHARS is CHARS - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2223 NBYTES is BYTES - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2225 Then, upon reading the following elements, these codes are produced
2226 until the composition end is found:
2229 (2) ALT ... ALT CHAR ... CHAR
2230 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR
2232 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
2234 When the composition end is found, LENGTH and NCHARS in the
2235 annotation header is updated as below:
2237 (1) LENGTH: unchanged, NCHARS: unchanged
2238 (2) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2239 (3) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2240 (4) LENGTH: unchanged, NCHARS: number of CHARs
2241 (5) LENGTH: unchanged, NCHARS: number of CHARs
2243 If an error is found while composing, the annotation header is
2244 changed to the original composition header (plus filler -1s) as
2247 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ]
2248 (5) [ 0x80 0xFF -1 -1- -1 ]
2250 and the sequence [ -2 DECODED-RULE ] is changed to the original
2251 byte sequence as below:
2252 o the original byte sequence is B: [ B -1 ]
2253 o the original byte sequence is B1 B2: [ B1 B2 ]
2255 Most of the routines are implemented by macros because many
2256 variables and labels in the caller decode_coding_emacs_mule must be
2257 accessible, and they are usually called just once (thus doesn't
2258 increase the size of compiled object). */
2260 /* Decode a composition rule represented by C as a component of
2261 composition sequence of Emacs 20 style. Set RULE to the decoded
2264 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \
2269 if (c < 0 || c >= 81) \
2270 goto invalid_code; \
2271 gref = c / 9, nref = c % 9; \
2272 if (gref == 4) gref = 10; \
2273 if (nref == 4) nref = 10; \
2274 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2278 /* Decode a composition rule represented by C and the following byte
2279 at SRC as a component of composition sequence of Emacs 21 style.
2280 Set RULE to the decoded rule. */
2282 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \
2287 if (gref < 0 || gref >= 81) \
2288 goto invalid_code; \
2289 ONE_MORE_BYTE (c); \
2291 if (nref < 0 || nref >= 81) \
2292 goto invalid_code; \
2293 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2297 /* Start of Emacs 21 style format. The first three bytes at SRC are
2298 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is the
2299 byte length of this composition information, CHARS is the number of
2300 characters composed by this composition. */
2302 #define DECODE_EMACS_MULE_21_COMPOSITION() \
2304 enum composition_method method = c - 0xF2; \
2305 int *charbuf_base = charbuf; \
2306 int nbytes, nchars; \
2308 ONE_MORE_BYTE (c); \
2310 goto invalid_code; \
2311 nbytes = c - 0xA0; \
2312 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \
2313 goto invalid_code; \
2314 ONE_MORE_BYTE (c); \
2315 nchars = c - 0xA0; \
2316 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \
2317 goto invalid_code; \
2318 cmp_status->old_form = 0; \
2319 cmp_status->method = method; \
2320 if (method == COMPOSITION_RELATIVE) \
2321 cmp_status->state = COMPOSING_CHAR; \
2323 cmp_status->state = COMPOSING_COMPONENT_CHAR; \
2324 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2325 cmp_status->nchars = nchars; \
2326 cmp_status->ncomps = nbytes - 4; \
2327 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \
2331 /* Start of Emacs 20 style format for relative composition. */
2333 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \
2335 cmp_status->old_form = 1; \
2336 cmp_status->method = COMPOSITION_RELATIVE; \
2337 cmp_status->state = COMPOSING_CHAR; \
2338 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2339 cmp_status->nchars = cmp_status->ncomps = 0; \
2340 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2344 /* Start of Emacs 20 style format for rule-base composition. */
2346 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \
2348 cmp_status->old_form = 1; \
2349 cmp_status->method = COMPOSITION_WITH_RULE; \
2350 cmp_status->state = COMPOSING_CHAR; \
2351 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2352 cmp_status->nchars = cmp_status->ncomps = 0; \
2353 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2357 #define DECODE_EMACS_MULE_COMPOSITION_START() \
2359 const unsigned char *current_src = src; \
2361 ONE_MORE_BYTE (c); \
2363 goto invalid_code; \
2364 if (c - 0xF2 >= COMPOSITION_RELATIVE \
2365 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \
2366 DECODE_EMACS_MULE_21_COMPOSITION (); \
2367 else if (c < 0xA0) \
2368 goto invalid_code; \
2369 else if (c < 0xC0) \
2371 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \
2372 /* Re-read C as a composition component. */ \
2373 src = current_src; \
2375 else if (c == 0xFF) \
2376 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \
2378 goto invalid_code; \
2381 #define EMACS_MULE_COMPOSITION_END() \
2383 int idx = - cmp_status->length; \
2385 if (cmp_status->old_form) \
2386 charbuf[idx + 2] = cmp_status->nchars; \
2387 else if (cmp_status->method > COMPOSITION_RELATIVE) \
2388 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \
2389 cmp_status->state = COMPOSING_NO; \
2394 emacs_mule_finish_composition (charbuf
, cmp_status
)
2396 struct composition_status
*cmp_status
;
2398 int idx
= - cmp_status
->length
;
2401 if (cmp_status
->old_form
&& cmp_status
->nchars
> 0)
2403 charbuf
[idx
+ 2] = cmp_status
->nchars
;
2405 if (cmp_status
->method
== COMPOSITION_WITH_RULE
2406 && cmp_status
->state
== COMPOSING_CHAR
)
2408 /* The last rule was invalid. */
2409 int rule
= charbuf
[-1] + 0xA0;
2411 charbuf
[-2] = BYTE8_TO_CHAR (rule
);
2418 charbuf
[idx
++] = BYTE8_TO_CHAR (0x80);
2420 if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2422 charbuf
[idx
++] = BYTE8_TO_CHAR (0xFF);
2423 charbuf
[idx
++] = -3;
2429 int nchars
= charbuf
[idx
+ 1] + 0xA0;
2430 int nbytes
= charbuf
[idx
+ 2] + 0xA0;
2432 charbuf
[idx
++] = BYTE8_TO_CHAR (0xF2 + cmp_status
->method
);
2433 charbuf
[idx
++] = BYTE8_TO_CHAR (nbytes
);
2434 charbuf
[idx
++] = BYTE8_TO_CHAR (nchars
);
2435 charbuf
[idx
++] = -1;
2439 cmp_status
->state
= COMPOSING_NO
;
2443 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \
2445 if (cmp_status->state != COMPOSING_NO) \
2446 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \
2451 decode_coding_emacs_mule (coding
)
2452 struct coding_system
*coding
;
2454 const unsigned char *src
= coding
->source
+ coding
->consumed
;
2455 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2456 const unsigned char *src_base
;
2457 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
2458 /* We may produce two annocations (charset and composition) in one
2459 loop and one more charset annocation at the end. */
2461 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
2462 int consumed_chars
= 0, consumed_chars_base
;
2463 int multibytep
= coding
->src_multibyte
;
2464 Lisp_Object attrs
, charset_list
;
2465 int char_offset
= coding
->produced_char
;
2466 int last_offset
= char_offset
;
2467 int last_id
= charset_ascii
;
2469 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
2470 int byte_after_cr
= -1;
2471 struct composition_status
*cmp_status
= &coding
->spec
.emacs_mule
.cmp_status
;
2473 CODING_GET_INFO (coding
, attrs
, charset_list
);
2475 if (cmp_status
->state
!= COMPOSING_NO
)
2479 for (i
= 0; i
< cmp_status
->length
; i
++)
2480 *charbuf
++ = cmp_status
->carryover
[i
];
2481 coding
->annotated
= 1;
2489 consumed_chars_base
= consumed_chars
;
2491 if (charbuf
>= charbuf_end
)
2493 if (byte_after_cr
>= 0)
2498 if (byte_after_cr
>= 0)
2499 c
= byte_after_cr
, byte_after_cr
= -1;
2503 if (c
< 0 || c
== 0x80)
2505 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2512 DECODE_EMACS_MULE_COMPOSITION_START ();
2518 if (eol_crlf
&& c
== '\r')
2519 ONE_MORE_BYTE (byte_after_cr
);
2521 if (cmp_status
->state
!= COMPOSING_NO
)
2523 if (cmp_status
->old_form
)
2524 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2525 else if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2526 cmp_status
->ncomps
--;
2532 /* emacs_mule_char can load a charset map from a file, which
2533 allocates a large structure and might cause buffer text
2534 to be relocated as result. Thus, we need to remember the
2535 original pointer to buffer text, and fixup all related
2536 pointers after the call. */
2537 const unsigned char *orig
= coding
->source
;
2540 c
= emacs_mule_char (coding
, src_base
, &nbytes
, &nchars
, &id
,
2542 offset
= coding
->source
- orig
;
2556 src
= src_base
+ nbytes
;
2557 consumed_chars
= consumed_chars_base
+ nchars
;
2558 if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2559 cmp_status
->ncomps
-= nchars
;
2562 /* Now if C >= 0, we found a normally encoded characer, if C <
2563 0, we found an old-style composition component character or
2566 if (cmp_status
->state
== COMPOSING_NO
)
2570 if (last_id
!= charset_ascii
)
2571 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
,
2574 last_offset
= char_offset
;
2579 else if (cmp_status
->state
== COMPOSING_CHAR
)
2581 if (cmp_status
->old_form
)
2585 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2592 cmp_status
->nchars
++;
2593 cmp_status
->length
++;
2594 if (cmp_status
->nchars
== MAX_COMPOSITION_COMPONENTS
)
2595 EMACS_MULE_COMPOSITION_END ();
2596 else if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2597 cmp_status
->state
= COMPOSING_RULE
;
2603 cmp_status
->length
++;
2604 cmp_status
->nchars
--;
2605 if (cmp_status
->nchars
== 0)
2606 EMACS_MULE_COMPOSITION_END ();
2609 else if (cmp_status
->state
== COMPOSING_RULE
)
2615 EMACS_MULE_COMPOSITION_END ();
2622 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c
, rule
);
2627 cmp_status
->length
+= 2;
2628 cmp_status
->state
= COMPOSING_CHAR
;
2631 else if (cmp_status
->state
== COMPOSING_COMPONENT_CHAR
)
2634 cmp_status
->length
++;
2635 if (cmp_status
->ncomps
== 0)
2636 cmp_status
->state
= COMPOSING_CHAR
;
2637 else if (cmp_status
->ncomps
> 0)
2639 if (cmp_status
->method
== COMPOSITION_WITH_RULE_ALTCHARS
)
2640 cmp_status
->state
= COMPOSING_COMPONENT_RULE
;
2643 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2645 else /* COMPOSING_COMPONENT_RULE */
2649 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c
, rule
);
2654 cmp_status
->length
+= 2;
2655 cmp_status
->ncomps
--;
2656 if (cmp_status
->ncomps
> 0)
2657 cmp_status
->state
= COMPOSING_COMPONENT_CHAR
;
2659 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2665 consumed_chars
= consumed_chars_base
;
2669 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2671 consumed_chars
= consumed_chars_base
;
2673 *charbuf
++ = ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
2679 if (cmp_status
->state
!= COMPOSING_NO
)
2681 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
2682 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2687 charbuf
-= cmp_status
->length
;
2688 for (i
= 0; i
< cmp_status
->length
; i
++)
2689 cmp_status
->carryover
[i
] = charbuf
[i
];
2692 if (last_id
!= charset_ascii
)
2693 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
2694 coding
->consumed_char
+= consumed_chars_base
;
2695 coding
->consumed
= src_base
- coding
->source
;
2696 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
2700 #define EMACS_MULE_LEADING_CODES(id, codes) \
2703 codes[0] = id, codes[1] = 0; \
2704 else if (id < 0xE0) \
2705 codes[0] = 0x9A, codes[1] = id; \
2706 else if (id < 0xF0) \
2707 codes[0] = 0x9B, codes[1] = id; \
2708 else if (id < 0xF5) \
2709 codes[0] = 0x9C, codes[1] = id; \
2711 codes[0] = 0x9D, codes[1] = id; \
2716 encode_coding_emacs_mule (coding
)
2717 struct coding_system
*coding
;
2719 int multibytep
= coding
->dst_multibyte
;
2720 int *charbuf
= coding
->charbuf
;
2721 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
2722 unsigned char *dst
= coding
->destination
+ coding
->produced
;
2723 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
2725 int produced_chars
= 0;
2726 Lisp_Object attrs
, charset_list
;
2728 int preferred_charset_id
= -1;
2730 CODING_GET_INFO (coding
, attrs
, charset_list
);
2731 if (! EQ (charset_list
, Vemacs_mule_charset_list
))
2733 CODING_ATTR_CHARSET_LIST (attrs
)
2734 = charset_list
= Vemacs_mule_charset_list
;
2737 while (charbuf
< charbuf_end
)
2739 ASSURE_DESTINATION (safe_room
);
2744 /* Handle an annotation. */
2747 case CODING_ANNOTATE_COMPOSITION_MASK
:
2748 /* Not yet implemented. */
2750 case CODING_ANNOTATE_CHARSET_MASK
:
2751 preferred_charset_id
= charbuf
[3];
2752 if (preferred_charset_id
>= 0
2753 && NILP (Fmemq (make_number (preferred_charset_id
),
2755 preferred_charset_id
= -1;
2764 if (ASCII_CHAR_P (c
))
2765 EMIT_ONE_ASCII_BYTE (c
);
2766 else if (CHAR_BYTE8_P (c
))
2768 c
= CHAR_TO_BYTE8 (c
);
2773 struct charset
*charset
;
2777 unsigned char leading_codes
[2];
2779 if (preferred_charset_id
>= 0)
2781 charset
= CHARSET_FROM_ID (preferred_charset_id
);
2782 if (CHAR_CHARSET_P (c
, charset
))
2783 code
= ENCODE_CHAR (charset
, c
);
2785 charset
= char_charset (c
, charset_list
, &code
);
2788 charset
= char_charset (c
, charset_list
, &code
);
2791 c
= coding
->default_char
;
2792 if (ASCII_CHAR_P (c
))
2794 EMIT_ONE_ASCII_BYTE (c
);
2797 charset
= char_charset (c
, charset_list
, &code
);
2799 dimension
= CHARSET_DIMENSION (charset
);
2800 emacs_mule_id
= CHARSET_EMACS_MULE_ID (charset
);
2801 EMACS_MULE_LEADING_CODES (emacs_mule_id
, leading_codes
);
2802 EMIT_ONE_BYTE (leading_codes
[0]);
2803 if (leading_codes
[1])
2804 EMIT_ONE_BYTE (leading_codes
[1]);
2806 EMIT_ONE_BYTE (code
| 0x80);
2810 EMIT_ONE_BYTE (code
>> 8);
2811 EMIT_ONE_BYTE (code
& 0xFF);
2815 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
2816 coding
->produced_char
+= produced_chars
;
2817 coding
->produced
= dst
- coding
->destination
;
2822 /*** 7. ISO2022 handlers ***/
2824 /* The following note describes the coding system ISO2022 briefly.
2825 Since the intention of this note is to help understand the
2826 functions in this file, some parts are NOT ACCURATE or are OVERLY
2827 SIMPLIFIED. For thorough understanding, please refer to the
2828 original document of ISO2022. This is equivalent to the standard
2829 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
2831 ISO2022 provides many mechanisms to encode several character sets
2832 in 7-bit and 8-bit environments. For 7-bit environments, all text
2833 is encoded using bytes less than 128. This may make the encoded
2834 text a little bit longer, but the text passes more easily through
2835 several types of gateway, some of which strip off the MSB (Most
2838 There are two kinds of character sets: control character sets and
2839 graphic character sets. The former contain control characters such
2840 as `newline' and `escape' to provide control functions (control
2841 functions are also provided by escape sequences). The latter
2842 contain graphic characters such as 'A' and '-'. Emacs recognizes
2843 two control character sets and many graphic character sets.
2845 Graphic character sets are classified into one of the following
2846 four classes, according to the number of bytes (DIMENSION) and
2847 number of characters in one dimension (CHARS) of the set:
2848 - DIMENSION1_CHARS94
2849 - DIMENSION1_CHARS96
2850 - DIMENSION2_CHARS94
2851 - DIMENSION2_CHARS96
2853 In addition, each character set is assigned an identification tag,
2854 unique for each set, called the "final character" (denoted as <F>
2855 hereafter). The <F> of each character set is decided by ECMA(*)
2856 when it is registered in ISO. The code range of <F> is 0x30..0x7F
2857 (0x30..0x3F are for private use only).
2859 Note (*): ECMA = European Computer Manufacturers Association
2861 Here are examples of graphic character sets [NAME(<F>)]:
2862 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
2863 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
2864 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
2865 o DIMENSION2_CHARS96 -- none for the moment
2867 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
2868 C0 [0x00..0x1F] -- control character plane 0
2869 GL [0x20..0x7F] -- graphic character plane 0
2870 C1 [0x80..0x9F] -- control character plane 1
2871 GR [0xA0..0xFF] -- graphic character plane 1
2873 A control character set is directly designated and invoked to C0 or
2874 C1 by an escape sequence. The most common case is that:
2875 - ISO646's control character set is designated/invoked to C0, and
2876 - ISO6429's control character set is designated/invoked to C1,
2877 and usually these designations/invocations are omitted in encoded
2878 text. In a 7-bit environment, only C0 can be used, and a control
2879 character for C1 is encoded by an appropriate escape sequence to
2880 fit into the environment. All control characters for C1 are
2881 defined to have corresponding escape sequences.
2883 A graphic character set is at first designated to one of four
2884 graphic registers (G0 through G3), then these graphic registers are
2885 invoked to GL or GR. These designations and invocations can be
2886 done independently. The most common case is that G0 is invoked to
2887 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
2888 these invocations and designations are omitted in encoded text.
2889 In a 7-bit environment, only GL can be used.
2891 When a graphic character set of CHARS94 is invoked to GL, codes
2892 0x20 and 0x7F of the GL area work as control characters SPACE and
2893 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
2896 There are two ways of invocation: locking-shift and single-shift.
2897 With locking-shift, the invocation lasts until the next different
2898 invocation, whereas with single-shift, the invocation affects the
2899 following character only and doesn't affect the locking-shift
2900 state. Invocations are done by the following control characters or
2903 ----------------------------------------------------------------------
2904 abbrev function cntrl escape seq description
2905 ----------------------------------------------------------------------
2906 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
2907 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
2908 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
2909 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
2910 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
2911 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
2912 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
2913 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
2914 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
2915 ----------------------------------------------------------------------
2916 (*) These are not used by any known coding system.
2918 Control characters for these functions are defined by macros
2919 ISO_CODE_XXX in `coding.h'.
2921 Designations are done by the following escape sequences:
2922 ----------------------------------------------------------------------
2923 escape sequence description
2924 ----------------------------------------------------------------------
2925 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
2926 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
2927 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
2928 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
2929 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
2930 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
2931 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
2932 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
2933 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
2934 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
2935 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
2936 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
2937 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
2938 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
2939 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
2940 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
2941 ----------------------------------------------------------------------
2943 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
2944 of dimension 1, chars 94, and final character <F>, etc...
2946 Note (*): Although these designations are not allowed in ISO2022,
2947 Emacs accepts them on decoding, and produces them on encoding
2948 CHARS96 character sets in a coding system which is characterized as
2949 7-bit environment, non-locking-shift, and non-single-shift.
2951 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
2952 '(' must be omitted. We refer to this as "short-form" hereafter.
2954 Now you may notice that there are a lot of ways of encoding the
2955 same multilingual text in ISO2022. Actually, there exist many
2956 coding systems such as Compound Text (used in X11's inter client
2957 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
2958 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
2959 localized platforms), and all of these are variants of ISO2022.
2961 In addition to the above, Emacs handles two more kinds of escape
2962 sequences: ISO6429's direction specification and Emacs' private
2963 sequence for specifying character composition.
2965 ISO6429's direction specification takes the following form:
2966 o CSI ']' -- end of the current direction
2967 o CSI '0' ']' -- end of the current direction
2968 o CSI '1' ']' -- start of left-to-right text
2969 o CSI '2' ']' -- start of right-to-left text
2970 The control character CSI (0x9B: control sequence introducer) is
2971 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
2973 Character composition specification takes the following form:
2974 o ESC '0' -- start relative composition
2975 o ESC '1' -- end composition
2976 o ESC '2' -- start rule-base composition (*)
2977 o ESC '3' -- start relative composition with alternate chars (**)
2978 o ESC '4' -- start rule-base composition with alternate chars (**)
2979 Since these are not standard escape sequences of any ISO standard,
2980 the use of them with these meanings is restricted to Emacs only.
2982 (*) This form is used only in Emacs 20.7 and older versions,
2983 but newer versions can safely decode it.
2984 (**) This form is used only in Emacs 21.1 and newer versions,
2985 and older versions can't decode it.
2987 Here's a list of example usages of these composition escape
2988 sequences (categorized by `enum composition_method').
2990 COMPOSITION_RELATIVE:
2991 ESC 0 CHAR [ CHAR ] ESC 1
2992 COMPOSITION_WITH_RULE:
2993 ESC 2 CHAR [ RULE CHAR ] ESC 1
2994 COMPOSITION_WITH_ALTCHARS:
2995 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
2996 COMPOSITION_WITH_RULE_ALTCHARS:
2997 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
2999 enum iso_code_class_type iso_code_class
[256];
3001 #define SAFE_CHARSET_P(coding, id) \
3002 ((id) <= (coding)->max_charset_id \
3003 && (coding)->safe_charsets[id] != 255)
3006 #define SHIFT_OUT_OK(category) \
3007 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0)
3010 setup_iso_safe_charsets (attrs
)
3013 Lisp_Object charset_list
, safe_charsets
;
3014 Lisp_Object request
;
3015 Lisp_Object reg_usage
;
3018 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
3021 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
3022 if ((flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
3023 && ! EQ (charset_list
, Viso_2022_charset_list
))
3025 CODING_ATTR_CHARSET_LIST (attrs
)
3026 = charset_list
= Viso_2022_charset_list
;
3027 ASET (attrs
, coding_attr_safe_charsets
, Qnil
);
3030 if (STRINGP (AREF (attrs
, coding_attr_safe_charsets
)))
3034 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
3036 int id
= XINT (XCAR (tail
));
3037 if (max_charset_id
< id
)
3038 max_charset_id
= id
;
3041 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
3042 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
3043 request
= AREF (attrs
, coding_attr_iso_request
);
3044 reg_usage
= AREF (attrs
, coding_attr_iso_usage
);
3045 reg94
= XINT (XCAR (reg_usage
));
3046 reg96
= XINT (XCDR (reg_usage
));
3048 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
3052 struct charset
*charset
;
3055 charset
= CHARSET_FROM_ID (XINT (id
));
3056 reg
= Fcdr (Fassq (id
, request
));
3058 SSET (safe_charsets
, XINT (id
), XINT (reg
));
3059 else if (charset
->iso_chars_96
)
3062 SSET (safe_charsets
, XINT (id
), reg96
);
3067 SSET (safe_charsets
, XINT (id
), reg94
);
3070 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
3074 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
3075 Check if a text is encoded in one of ISO-2022 based codig systems.
3076 If it is, return 1, else return 0. */
3079 detect_coding_iso_2022 (coding
, detect_info
)
3080 struct coding_system
*coding
;
3081 struct coding_detection_info
*detect_info
;
3083 const unsigned char *src
= coding
->source
, *src_base
= src
;
3084 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3085 int multibytep
= coding
->src_multibyte
;
3086 int single_shifting
= 0;
3089 int consumed_chars
= 0;
3093 int composition_count
= -1;
3095 detect_info
->checked
|= CATEGORY_MASK_ISO
;
3097 for (i
= coding_category_iso_7
; i
<= coding_category_iso_8_else
; i
++)
3099 struct coding_system
*this = &(coding_categories
[i
]);
3100 Lisp_Object attrs
, val
;
3104 attrs
= CODING_ID_ATTRS (this->id
);
3105 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT
3106 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Viso_2022_charset_list
))
3107 setup_iso_safe_charsets (attrs
);
3108 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
3109 this->max_charset_id
= SCHARS (val
) - 1;
3110 this->safe_charsets
= SDATA (val
);
3113 /* A coding system of this category is always ASCII compatible. */
3114 src
+= coding
->head_ascii
;
3116 while (rejected
!= CATEGORY_MASK_ISO
)
3123 if (inhibit_iso_escape_detection
)
3125 single_shifting
= 0;
3127 if (c
>= '(' && c
<= '/')
3129 /* Designation sequence for a charset of dimension 1. */
3131 if (c1
< ' ' || c1
>= 0x80
3132 || (id
= iso_charset_table
[0][c
>= ','][c1
]) < 0)
3133 /* Invalid designation sequence. Just ignore. */
3138 /* Designation sequence for a charset of dimension 2. */
3140 if (c
>= '@' && c
<= 'B')
3141 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
3142 id
= iso_charset_table
[1][0][c
];
3143 else if (c
>= '(' && c
<= '/')
3146 if (c1
< ' ' || c1
>= 0x80
3147 || (id
= iso_charset_table
[1][c
>= ','][c1
]) < 0)
3148 /* Invalid designation sequence. Just ignore. */
3152 /* Invalid designation sequence. Just ignore it. */
3155 else if (c
== 'N' || c
== 'O')
3157 /* ESC <Fe> for SS2 or SS3. */
3158 single_shifting
= 1;
3159 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3164 /* End of composition. */
3165 if (composition_count
< 0
3166 || composition_count
> MAX_COMPOSITION_COMPONENTS
)
3169 composition_count
= -1;
3170 found
|= CATEGORY_MASK_ISO
;
3172 else if (c
>= '0' && c
<= '4')
3174 /* ESC <Fp> for start/end composition. */
3175 composition_count
= 0;
3180 /* Invalid escape sequence. Just ignore it. */
3184 /* We found a valid designation sequence for CHARSET. */
3185 rejected
|= CATEGORY_MASK_ISO_8BIT
;
3186 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7
],
3188 found
|= CATEGORY_MASK_ISO_7
;
3190 rejected
|= CATEGORY_MASK_ISO_7
;
3191 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_tight
],
3193 found
|= CATEGORY_MASK_ISO_7_TIGHT
;
3195 rejected
|= CATEGORY_MASK_ISO_7_TIGHT
;
3196 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_else
],
3198 found
|= CATEGORY_MASK_ISO_7_ELSE
;
3200 rejected
|= CATEGORY_MASK_ISO_7_ELSE
;
3201 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_8_else
],
3203 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3205 rejected
|= CATEGORY_MASK_ISO_8_ELSE
;
3210 /* Locking shift out/in. */
3211 if (inhibit_iso_escape_detection
)
3213 single_shifting
= 0;
3214 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3218 /* Control sequence introducer. */
3219 single_shifting
= 0;
3220 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3221 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3222 goto check_extra_latin
;
3227 if (inhibit_iso_escape_detection
)
3229 single_shifting
= 0;
3230 rejected
|= CATEGORY_MASK_ISO_7BIT
;
3231 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3232 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3233 found
|= CATEGORY_MASK_ISO_8_1
, single_shifting
= 1;
3234 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_2
])
3235 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3236 found
|= CATEGORY_MASK_ISO_8_2
, single_shifting
= 1;
3237 if (single_shifting
)
3239 goto check_extra_latin
;
3246 if (composition_count
>= 0)
3247 composition_count
++;
3248 single_shifting
= 0;
3253 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3254 found
|= CATEGORY_MASK_ISO_8_1
;
3255 /* Check the length of succeeding codes of the range
3256 0xA0..0FF. If the byte length is even, we include
3257 CATEGORY_MASK_ISO_8_2 in `found'. We can check this
3258 only when we are not single shifting. */
3259 if (! single_shifting
3260 && ! (rejected
& CATEGORY_MASK_ISO_8_2
))
3263 while (src
< src_end
)
3275 if (i
& 1 && src
< src_end
)
3277 rejected
|= CATEGORY_MASK_ISO_8_2
;
3278 if (composition_count
>= 0)
3279 composition_count
+= i
;
3283 found
|= CATEGORY_MASK_ISO_8_2
;
3284 if (composition_count
>= 0)
3285 composition_count
+= i
/ 2;
3291 single_shifting
= 0;
3292 if (! VECTORP (Vlatin_extra_code_table
)
3293 || NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
]))
3295 rejected
= CATEGORY_MASK_ISO
;
3298 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3299 & CODING_ISO_FLAG_LATIN_EXTRA
)
3300 found
|= CATEGORY_MASK_ISO_8_1
;
3302 rejected
|= CATEGORY_MASK_ISO_8_1
;
3303 rejected
|= CATEGORY_MASK_ISO_8_2
;
3306 detect_info
->rejected
|= CATEGORY_MASK_ISO
;
3310 detect_info
->rejected
|= rejected
;
3311 detect_info
->found
|= (found
& ~rejected
);
3316 /* Set designation state into CODING. Set CHARS_96 to -1 if the
3317 escape sequence should be kept. */
3318 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \
3322 if (final < '0' || final >= 128 \
3323 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \
3324 || !SAFE_CHARSET_P (coding, id)) \
3326 CODING_ISO_DESIGNATION (coding, reg) = -2; \
3330 prev = CODING_ISO_DESIGNATION (coding, reg); \
3331 if (id == charset_jisx0201_roman) \
3333 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
3334 id = charset_ascii; \
3336 else if (id == charset_jisx0208_1978) \
3338 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
3339 id = charset_jisx0208; \
3341 CODING_ISO_DESIGNATION (coding, reg) = id; \
3342 /* If there was an invalid designation to REG previously, and this \
3343 designation is ASCII to REG, we should keep this designation \
3345 if (prev == -2 && id == charset_ascii) \
3350 /* Handle these composition sequence (ALT: alternate char):
3352 (1) relative composition: ESC 0 CHAR ... ESC 1
3353 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3354 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1
3355 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1
3357 When the start sequence (ESC 0/2/3/4) is found, this annotation
3360 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ]
3362 Then, upon reading CHAR or RULE (one or two bytes), these codes are
3363 produced until the end sequence (ESC 1) is found:
3366 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
3367 (3) ALT ... ALT -1 -1 CHAR ... CHAR
3368 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR
3370 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the
3371 annotation header is updated as below:
3373 (1) LENGTH: unchanged, NCHARS: number of CHARs
3374 (2) LENGTH: unchanged, NCHARS: number of CHARs
3375 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs
3376 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs
3378 If an error is found while composing, the annotation header is
3381 [ ESC '0'/'2'/'3'/'4' -2 0 ]
3383 and the sequence [ -2 DECODED-RULE ] is changed to the original
3384 byte sequence as below:
3385 o the original byte sequence is B: [ B -1 ]
3386 o the original byte sequence is B1 B2: [ B1 B2 ]
3387 and the sequence [ -1 -1 ] is changed to the original byte
3392 /* Decode a composition rule C1 and maybe one more byte from the
3393 source, and set RULE to the encoded composition rule, NBYTES to the
3394 length of the composition rule. If the rule is invalid, set RULE
3395 to some negative value. */
3397 #define DECODE_COMPOSITION_RULE(rule, nbytes) \
3402 if (rule < 81) /* old format (before ver.21) */ \
3404 int gref = (rule) / 9; \
3405 int nref = (rule) % 9; \
3406 if (gref == 4) gref = 10; \
3407 if (nref == 4) nref = 10; \
3408 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
3411 else /* new format (after ver.21) */ \
3415 ONE_MORE_BYTE (c); \
3416 rule = COMPOSITION_ENCODE_RULE (rule - 81, c - 32); \
3418 rule += 0x100; /* to destinguish it from the old format */ \
3423 #define ENCODE_COMPOSITION_RULE(rule) \
3425 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \
3427 if (rule < 0x100) /* old format */ \
3429 if (gref == 10) gref = 4; \
3430 if (nref == 10) nref = 4; \
3431 charbuf[idx] = 32 + gref * 9 + nref; \
3432 charbuf[idx + 1] = -1; \
3435 else /* new format */ \
3437 charbuf[idx] = 32 + 81 + gref; \
3438 charbuf[idx + 1] = 32 + nref; \
3443 /* Finish the current composition as invalid. */
3445 static int finish_composition
P_ ((int *, struct composition_status
*));
3448 finish_composition (charbuf
, cmp_status
)
3450 struct composition_status
*cmp_status
;
3452 int idx
= - cmp_status
->length
;
3455 /* Recover the original ESC sequence */
3456 charbuf
[idx
++] = ISO_CODE_ESC
;
3457 charbuf
[idx
++] = (cmp_status
->method
== COMPOSITION_RELATIVE
? '0'
3458 : cmp_status
->method
== COMPOSITION_WITH_RULE
? '2'
3459 : cmp_status
->method
== COMPOSITION_WITH_ALTCHARS
? '3'
3460 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */
3462 charbuf
[idx
++] = -2;
3464 charbuf
[idx
++] = -1;
3465 new_chars
= cmp_status
->nchars
;
3466 if (cmp_status
->method
>= COMPOSITION_WITH_RULE
)
3467 for (; idx
< 0; idx
++)
3469 int elt
= charbuf
[idx
];
3473 ENCODE_COMPOSITION_RULE (charbuf
[idx
+ 1]);
3478 charbuf
[idx
++] = ISO_CODE_ESC
;
3483 cmp_status
->state
= COMPOSING_NO
;
3487 /* If characers are under composition, finish the composition. */
3488 #define MAYBE_FINISH_COMPOSITION() \
3490 if (cmp_status->state != COMPOSING_NO) \
3491 char_offset += finish_composition (charbuf, cmp_status); \
3494 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
3496 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
3497 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3498 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1
3499 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1
3501 Produce this annotation sequence now:
3503 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ]
3506 #define DECODE_COMPOSITION_START(c1) \
3509 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \
3510 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3511 || (cmp_status->state == COMPOSING_COMPONENT_RULE \
3512 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \
3516 cmp_status->state = COMPOSING_CHAR; \
3517 cmp_status->length += 2; \
3521 MAYBE_FINISH_COMPOSITION (); \
3522 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \
3523 : c1 == '2' ? COMPOSITION_WITH_RULE \
3524 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
3525 : COMPOSITION_WITH_RULE_ALTCHARS); \
3527 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \
3528 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
3529 cmp_status->length = MAX_ANNOTATION_LENGTH; \
3530 cmp_status->nchars = cmp_status->ncomps = 0; \
3531 coding->annotated = 1; \
3536 /* Handle composition end sequence ESC 1. */
3538 #define DECODE_COMPOSITION_END() \
3540 if (cmp_status->nchars == 0 \
3541 || ((cmp_status->state == COMPOSING_CHAR) \
3542 == (cmp_status->method == COMPOSITION_WITH_RULE))) \
3544 MAYBE_FINISH_COMPOSITION (); \
3545 goto invalid_code; \
3547 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3548 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \
3549 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \
3550 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \
3551 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \
3552 char_offset += cmp_status->nchars; \
3553 cmp_status->state = COMPOSING_NO; \
3556 /* Store a composition rule RULE in charbuf, and update cmp_status. */
3558 #define STORE_COMPOSITION_RULE(rule) \
3561 *charbuf++ = rule; \
3562 cmp_status->length += 2; \
3563 cmp_status->state--; \
3566 /* Store a composed char or a component char C in charbuf, and update
3569 #define STORE_COMPOSITION_CHAR(c) \
3572 cmp_status->length++; \
3573 if (cmp_status->state == COMPOSING_CHAR) \
3574 cmp_status->nchars++; \
3576 cmp_status->ncomps++; \
3577 if (cmp_status->method == COMPOSITION_WITH_RULE \
3578 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \
3579 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \
3580 cmp_status->state++; \
3584 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3587 decode_coding_iso_2022 (coding
)
3588 struct coding_system
*coding
;
3590 const unsigned char *src
= coding
->source
+ coding
->consumed
;
3591 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3592 const unsigned char *src_base
;
3593 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
3594 /* We may produce two annocations (charset and composition) in one
3595 loop and one more charset annocation at the end. */
3597 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
3598 int consumed_chars
= 0, consumed_chars_base
;
3599 int multibytep
= coding
->src_multibyte
;
3600 /* Charsets invoked to graphic plane 0 and 1 respectively. */
3601 int charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3602 int charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3603 int charset_id_2
, charset_id_3
;
3604 struct charset
*charset
;
3606 struct composition_status
*cmp_status
= CODING_ISO_CMP_STATUS (coding
);
3607 Lisp_Object attrs
, charset_list
;
3608 int char_offset
= coding
->produced_char
;
3609 int last_offset
= char_offset
;
3610 int last_id
= charset_ascii
;
3612 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
3613 int byte_after_cr
= -1;
3616 CODING_GET_INFO (coding
, attrs
, charset_list
);
3617 setup_iso_safe_charsets (attrs
);
3618 /* Charset list may have been changed. */
3619 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
3620 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
3622 if (cmp_status
->state
!= COMPOSING_NO
)
3624 for (i
= 0; i
< cmp_status
->length
; i
++)
3625 *charbuf
++ = cmp_status
->carryover
[i
];
3626 coding
->annotated
= 1;
3634 consumed_chars_base
= consumed_chars
;
3636 if (charbuf
>= charbuf_end
)
3638 if (byte_after_cr
>= 0)
3643 if (byte_after_cr
>= 0)
3644 c1
= byte_after_cr
, byte_after_cr
= -1;
3650 if (CODING_ISO_EXTSEGMENT_LEN (coding
) > 0)
3652 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3654 CODING_ISO_EXTSEGMENT_LEN (coding
)--;
3658 if (CODING_ISO_EMBEDDED_UTF_8 (coding
))
3660 if (c1
== ISO_CODE_ESC
)
3662 if (src
+ 1 >= src_end
)
3663 goto no_more_source
;
3664 *charbuf
++ = ISO_CODE_ESC
;
3666 if (src
[0] == '%' && src
[1] == '@')
3669 consumed_chars
+= 2;
3671 /* We are sure charbuf can contain two more chars. */
3674 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
3679 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3685 if ((cmp_status
->state
== COMPOSING_RULE
3686 || cmp_status
->state
== COMPOSING_COMPONENT_RULE
)
3687 && c1
!= ISO_CODE_ESC
)
3691 DECODE_COMPOSITION_RULE (rule
, nbytes
);
3694 STORE_COMPOSITION_RULE (rule
);
3698 /* We produce at most one character. */
3699 switch (iso_code_class
[c1
])
3701 case ISO_0x20_or_0x7F
:
3702 if (charset_id_0
< 0
3703 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0
)))
3704 /* This is SPACE or DEL. */
3705 charset
= CHARSET_FROM_ID (charset_ascii
);
3707 charset
= CHARSET_FROM_ID (charset_id_0
);
3710 case ISO_graphic_plane_0
:
3711 if (charset_id_0
< 0)
3712 charset
= CHARSET_FROM_ID (charset_ascii
);
3714 charset
= CHARSET_FROM_ID (charset_id_0
);
3717 case ISO_0xA0_or_0xFF
:
3718 if (charset_id_1
< 0
3719 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1
))
3720 || CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3722 /* This is a graphic character, we fall down ... */
3724 case ISO_graphic_plane_1
:
3725 if (charset_id_1
< 0)
3727 charset
= CHARSET_FROM_ID (charset_id_1
);
3731 if (eol_crlf
&& c1
== '\r')
3732 ONE_MORE_BYTE (byte_after_cr
);
3733 MAYBE_FINISH_COMPOSITION ();
3734 charset
= CHARSET_FROM_ID (charset_ascii
);
3741 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3742 || CODING_ISO_DESIGNATION (coding
, 1) < 0)
3744 CODING_ISO_INVOCATION (coding
, 0) = 1;
3745 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3749 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
))
3751 CODING_ISO_INVOCATION (coding
, 0) = 0;
3752 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3755 case ISO_single_shift_2_7
:
3756 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
))
3758 case ISO_single_shift_2
:
3759 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3761 /* SS2 is handled as an escape sequence of ESC 'N' */
3763 goto label_escape_sequence
;
3765 case ISO_single_shift_3
:
3766 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3768 /* SS2 is handled as an escape sequence of ESC 'O' */
3770 goto label_escape_sequence
;
3772 case ISO_control_sequence_introducer
:
3773 /* CSI is handled as an escape sequence of ESC '[' ... */
3775 goto label_escape_sequence
;
3779 label_escape_sequence
:
3780 /* Escape sequences handled here are invocation,
3781 designation, direction specification, and character
3782 composition specification. */
3785 case '&': /* revision of following character set */
3787 if (!(c1
>= '@' && c1
<= '~'))
3790 if (c1
!= ISO_CODE_ESC
)
3793 goto label_escape_sequence
;
3795 case '$': /* designation of 2-byte character set */
3796 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3802 if (c1
>= '@' && c1
<= 'B')
3803 { /* designation of JISX0208.1978, GB2312.1980,
3805 reg
= 0, chars96
= 0;
3807 else if (c1
>= 0x28 && c1
<= 0x2B)
3808 { /* designation of DIMENSION2_CHARS94 character set */
3809 reg
= c1
- 0x28, chars96
= 0;
3812 else if (c1
>= 0x2C && c1
<= 0x2F)
3813 { /* designation of DIMENSION2_CHARS96 character set */
3814 reg
= c1
- 0x2C, chars96
= 1;
3819 DECODE_DESIGNATION (reg
, 2, chars96
, c1
);
3820 /* We must update these variables now. */
3822 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3824 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3830 case 'n': /* invocation of locking-shift-2 */
3831 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3832 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3834 CODING_ISO_INVOCATION (coding
, 0) = 2;
3835 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3838 case 'o': /* invocation of locking-shift-3 */
3839 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3840 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3842 CODING_ISO_INVOCATION (coding
, 0) = 3;
3843 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3846 case 'N': /* invocation of single-shift-2 */
3847 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3848 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3850 charset_id_2
= CODING_ISO_DESIGNATION (coding
, 2);
3851 if (charset_id_2
< 0)
3852 charset
= CHARSET_FROM_ID (charset_ascii
);
3854 charset
= CHARSET_FROM_ID (charset_id_2
);
3856 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
3860 case 'O': /* invocation of single-shift-3 */
3861 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3862 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3864 charset_id_3
= CODING_ISO_DESIGNATION (coding
, 3);
3865 if (charset_id_3
< 0)
3866 charset
= CHARSET_FROM_ID (charset_ascii
);
3868 charset
= CHARSET_FROM_ID (charset_id_3
);
3870 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
3874 case '0': case '2': case '3': case '4': /* start composition */
3875 if (! (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
))
3877 if (last_id
!= charset_ascii
)
3879 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3880 last_id
= charset_ascii
;
3881 last_offset
= char_offset
;
3883 DECODE_COMPOSITION_START (c1
);
3886 case '1': /* end composition */
3887 if (cmp_status
->state
== COMPOSING_NO
)
3889 DECODE_COMPOSITION_END ();
3892 case '[': /* specification of direction */
3893 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DIRECTION
))
3895 /* For the moment, nested direction is not supported.
3896 So, `coding->mode & CODING_MODE_DIRECTION' zero means
3897 left-to-right, and nozero means right-to-left. */
3901 case ']': /* end of the current direction */
3902 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3904 case '0': /* end of the current direction */
3905 case '1': /* start of left-to-right direction */
3908 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3913 case '2': /* start of right-to-left direction */
3916 coding
->mode
|= CODING_MODE_DIRECTION
;
3930 /* CTEXT extended segment:
3931 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
3932 We keep these bytes as is for the moment.
3933 They may be decoded by post-read-conversion. */
3937 ONE_MORE_BYTE (dim
);
3938 if (dim
< 0 || dim
> 4)
3946 size
= ((M
- 128) * 128) + (L
- 128);
3947 if (charbuf
+ 6 > charbuf_end
)
3949 *charbuf
++ = ISO_CODE_ESC
;
3953 *charbuf
++ = BYTE8_TO_CHAR (M
);
3954 *charbuf
++ = BYTE8_TO_CHAR (L
);
3955 CODING_ISO_EXTSEGMENT_LEN (coding
) = size
;
3959 /* XFree86 extension for embedding UTF-8 in CTEXT:
3960 ESC % G --UTF-8-BYTES-- ESC % @
3961 We keep these bytes as is for the moment.
3962 They may be decoded by post-read-conversion. */
3963 if (charbuf
+ 3 > charbuf_end
)
3965 *charbuf
++ = ISO_CODE_ESC
;
3968 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 1;
3976 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3981 if (c1
>= 0x28 && c1
<= 0x2B)
3982 { /* designation of DIMENSION1_CHARS94 character set */
3983 reg
= c1
- 0x28, chars96
= 0;
3986 else if (c1
>= 0x2C && c1
<= 0x2F)
3987 { /* designation of DIMENSION1_CHARS96 character set */
3988 reg
= c1
- 0x2C, chars96
= 1;
3993 DECODE_DESIGNATION (reg
, 1, chars96
, c1
);
3994 /* We must update these variables now. */
3996 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3998 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
4006 if (cmp_status
->state
== COMPOSING_NO
4007 && charset
->id
!= charset_ascii
4008 && last_id
!= charset
->id
)
4010 if (last_id
!= charset_ascii
)
4011 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4012 last_id
= charset
->id
;
4013 last_offset
= char_offset
;
4016 /* Now we know CHARSET and 1st position code C1 of a character.
4017 Produce a decoded character while getting 2nd and 3rd
4018 position codes C2, C3 if necessary. */
4019 if (CHARSET_DIMENSION (charset
) > 1)
4022 if (c2
< 0x20 || (c2
>= 0x80 && c2
< 0xA0)
4023 || ((c1
& 0x80) != (c2
& 0x80)))
4024 /* C2 is not in a valid range. */
4026 if (CHARSET_DIMENSION (charset
) == 2)
4027 c1
= (c1
<< 8) | c2
;
4031 if (c3
< 0x20 || (c3
>= 0x80 && c3
< 0xA0)
4032 || ((c1
& 0x80) != (c3
& 0x80)))
4033 /* C3 is not in a valid range. */
4035 c1
= (c1
<< 16) | (c2
<< 8) | c2
;
4039 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c1
, c
);
4042 MAYBE_FINISH_COMPOSITION ();
4043 for (; src_base
< src
; src_base
++, char_offset
++)
4045 if (ASCII_BYTE_P (*src_base
))
4046 *charbuf
++ = *src_base
;
4048 *charbuf
++ = BYTE8_TO_CHAR (*src_base
);
4051 else if (cmp_status
->state
== COMPOSING_NO
)
4056 else if ((cmp_status
->state
== COMPOSING_CHAR
4057 ? cmp_status
->nchars
4058 : cmp_status
->ncomps
)
4059 >= MAX_COMPOSITION_COMPONENTS
)
4061 /* Too long composition. */
4062 MAYBE_FINISH_COMPOSITION ();
4067 STORE_COMPOSITION_CHAR (c
);
4071 MAYBE_FINISH_COMPOSITION ();
4073 consumed_chars
= consumed_chars_base
;
4075 *charbuf
++ = c
< 0 ? -c
: ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
4085 if (cmp_status
->state
!= COMPOSING_NO
)
4087 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
4088 MAYBE_FINISH_COMPOSITION ();
4091 charbuf
-= cmp_status
->length
;
4092 for (i
= 0; i
< cmp_status
->length
; i
++)
4093 cmp_status
->carryover
[i
] = charbuf
[i
];
4096 else if (last_id
!= charset_ascii
)
4097 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4098 coding
->consumed_char
+= consumed_chars_base
;
4099 coding
->consumed
= src_base
- coding
->source
;
4100 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4104 /* ISO2022 encoding stuff. */
4107 It is not enough to say just "ISO2022" on encoding, we have to
4108 specify more details. In Emacs, each coding system of ISO2022
4109 variant has the following specifications:
4110 1. Initial designation to G0 thru G3.
4111 2. Allows short-form designation?
4112 3. ASCII should be designated to G0 before control characters?
4113 4. ASCII should be designated to G0 at end of line?
4114 5. 7-bit environment or 8-bit environment?
4115 6. Use locking-shift?
4116 7. Use Single-shift?
4117 And the following two are only for Japanese:
4118 8. Use ASCII in place of JIS0201-1976-Roman?
4119 9. Use JISX0208-1983 in place of JISX0208-1978?
4120 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits
4121 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more
4125 /* Produce codes (escape sequence) for designating CHARSET to graphic
4126 register REG at DST, and increment DST. If <final-char> of CHARSET is
4127 '@', 'A', or 'B' and the coding system CODING allows, produce
4128 designation sequence of short-form. */
4130 #define ENCODE_DESIGNATION(charset, reg, coding) \
4132 unsigned char final_char = CHARSET_ISO_FINAL (charset); \
4133 char *intermediate_char_94 = "()*+"; \
4134 char *intermediate_char_96 = ",-./"; \
4135 int revision = -1; \
4138 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \
4139 revision = CHARSET_ISO_REVISION (charset); \
4141 if (revision >= 0) \
4143 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \
4144 EMIT_ONE_BYTE ('@' + revision); \
4146 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \
4147 if (CHARSET_DIMENSION (charset) == 1) \
4149 if (! CHARSET_ISO_CHARS_96 (charset)) \
4150 c = intermediate_char_94[reg]; \
4152 c = intermediate_char_96[reg]; \
4153 EMIT_ONE_ASCII_BYTE (c); \
4157 EMIT_ONE_ASCII_BYTE ('$'); \
4158 if (! CHARSET_ISO_CHARS_96 (charset)) \
4160 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \
4162 || final_char < '@' || final_char > 'B') \
4163 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \
4166 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \
4168 EMIT_ONE_ASCII_BYTE (final_char); \
4170 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \
4174 /* The following two macros produce codes (control character or escape
4175 sequence) for ISO2022 single-shift functions (single-shift-2 and
4178 #define ENCODE_SINGLE_SHIFT_2 \
4180 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4181 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \
4183 EMIT_ONE_BYTE (ISO_CODE_SS2); \
4184 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4188 #define ENCODE_SINGLE_SHIFT_3 \
4190 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4191 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \
4193 EMIT_ONE_BYTE (ISO_CODE_SS3); \
4194 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4198 /* The following four macros produce codes (control character or
4199 escape sequence) for ISO2022 locking-shift functions (shift-in,
4200 shift-out, locking-shift-2, and locking-shift-3). */
4202 #define ENCODE_SHIFT_IN \
4204 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \
4205 CODING_ISO_INVOCATION (coding, 0) = 0; \
4209 #define ENCODE_SHIFT_OUT \
4211 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \
4212 CODING_ISO_INVOCATION (coding, 0) = 1; \
4216 #define ENCODE_LOCKING_SHIFT_2 \
4218 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4219 CODING_ISO_INVOCATION (coding, 0) = 2; \
4223 #define ENCODE_LOCKING_SHIFT_3 \
4225 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4226 CODING_ISO_INVOCATION (coding, 0) = 3; \
4230 /* Produce codes for a DIMENSION1 character whose character set is
4231 CHARSET and whose position-code is C1. Designation and invocation
4232 sequences are also produced in advance if necessary. */
4234 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
4236 int id = CHARSET_ID (charset); \
4238 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
4239 && id == charset_ascii) \
4241 id = charset_jisx0201_roman; \
4242 charset = CHARSET_FROM_ID (id); \
4245 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4247 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4248 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4250 EMIT_ONE_BYTE (c1 | 0x80); \
4251 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4254 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4256 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4259 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4261 EMIT_ONE_BYTE (c1 | 0x80); \
4265 /* Since CHARSET is not yet invoked to any graphic planes, we \
4266 must invoke it, or, at first, designate it to some graphic \
4267 register. Then repeat the loop to actually produce the \
4269 dst = encode_invocation_designation (charset, coding, dst, \
4274 /* Produce codes for a DIMENSION2 character whose character set is
4275 CHARSET and whose position-codes are C1 and C2. Designation and
4276 invocation codes are also produced in advance if necessary. */
4278 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
4280 int id = CHARSET_ID (charset); \
4282 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
4283 && id == charset_jisx0208) \
4285 id = charset_jisx0208_1978; \
4286 charset = CHARSET_FROM_ID (id); \
4289 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4291 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4292 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4294 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4295 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4298 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4300 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4303 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4305 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4309 /* Since CHARSET is not yet invoked to any graphic planes, we \
4310 must invoke it, or, at first, designate it to some graphic \
4311 register. Then repeat the loop to actually produce the \
4313 dst = encode_invocation_designation (charset, coding, dst, \
4318 #define ENCODE_ISO_CHARACTER(charset, c) \
4320 int code = ENCODE_CHAR ((charset),(c)); \
4322 if (CHARSET_DIMENSION (charset) == 1) \
4323 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \
4325 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \
4329 /* Produce designation and invocation codes at a place pointed by DST
4330 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4334 encode_invocation_designation (charset
, coding
, dst
, p_nchars
)
4335 struct charset
*charset
;
4336 struct coding_system
*coding
;
4340 int multibytep
= coding
->dst_multibyte
;
4341 int produced_chars
= *p_nchars
;
4342 int reg
; /* graphic register number */
4343 int id
= CHARSET_ID (charset
);
4345 /* At first, check designations. */
4346 for (reg
= 0; reg
< 4; reg
++)
4347 if (id
== CODING_ISO_DESIGNATION (coding
, reg
))
4352 /* CHARSET is not yet designated to any graphic registers. */
4353 /* At first check the requested designation. */
4354 reg
= CODING_ISO_REQUEST (coding
, id
);
4356 /* Since CHARSET requests no special designation, designate it
4357 to graphic register 0. */
4360 ENCODE_DESIGNATION (charset
, reg
, coding
);
4363 if (CODING_ISO_INVOCATION (coding
, 0) != reg
4364 && CODING_ISO_INVOCATION (coding
, 1) != reg
)
4366 /* Since the graphic register REG is not invoked to any graphic
4367 planes, invoke it to graphic plane 0. */
4370 case 0: /* graphic register 0 */
4374 case 1: /* graphic register 1 */
4378 case 2: /* graphic register 2 */
4379 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4380 ENCODE_SINGLE_SHIFT_2
;
4382 ENCODE_LOCKING_SHIFT_2
;
4385 case 3: /* graphic register 3 */
4386 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4387 ENCODE_SINGLE_SHIFT_3
;
4389 ENCODE_LOCKING_SHIFT_3
;
4394 *p_nchars
= produced_chars
;
4398 /* The following three macros produce codes for indicating direction
4400 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \
4402 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \
4403 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \
4405 EMIT_ONE_BYTE (ISO_CODE_CSI); \
4409 #define ENCODE_DIRECTION_R2L() \
4411 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \
4412 EMIT_TWO_ASCII_BYTES ('2', ']'); \
4416 #define ENCODE_DIRECTION_L2R() \
4418 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \
4419 EMIT_TWO_ASCII_BYTES ('0', ']'); \
4423 /* Produce codes for designation and invocation to reset the graphic
4424 planes and registers to initial state. */
4425 #define ENCODE_RESET_PLANE_AND_REGISTER() \
4428 struct charset *charset; \
4430 if (CODING_ISO_INVOCATION (coding, 0) != 0) \
4432 for (reg = 0; reg < 4; reg++) \
4433 if (CODING_ISO_INITIAL (coding, reg) >= 0 \
4434 && (CODING_ISO_DESIGNATION (coding, reg) \
4435 != CODING_ISO_INITIAL (coding, reg))) \
4437 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \
4438 ENCODE_DESIGNATION (charset, reg, coding); \
4443 /* Produce designation sequences of charsets in the line started from
4444 SRC to a place pointed by DST, and return updated DST.
4446 If the current block ends before any end-of-line, we may fail to
4447 find all the necessary designations. */
4449 static unsigned char *
4450 encode_designation_at_bol (coding
, charbuf
, charbuf_end
, dst
)
4451 struct coding_system
*coding
;
4452 int *charbuf
, *charbuf_end
;
4455 struct charset
*charset
;
4456 /* Table of charsets to be designated to each graphic register. */
4458 int c
, found
= 0, reg
;
4459 int produced_chars
= 0;
4460 int multibytep
= coding
->dst_multibyte
;
4462 Lisp_Object charset_list
;
4464 attrs
= CODING_ID_ATTRS (coding
->id
);
4465 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4466 if (EQ (charset_list
, Qiso_2022
))
4467 charset_list
= Viso_2022_charset_list
;
4469 for (reg
= 0; reg
< 4; reg
++)
4479 charset
= char_charset (c
, charset_list
, NULL
);
4480 id
= CHARSET_ID (charset
);
4481 reg
= CODING_ISO_REQUEST (coding
, id
);
4482 if (reg
>= 0 && r
[reg
] < 0)
4491 for (reg
= 0; reg
< 4; reg
++)
4493 && CODING_ISO_DESIGNATION (coding
, reg
) != r
[reg
])
4494 ENCODE_DESIGNATION (CHARSET_FROM_ID (r
[reg
]), reg
, coding
);
4500 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
4503 encode_coding_iso_2022 (coding
)
4504 struct coding_system
*coding
;
4506 int multibytep
= coding
->dst_multibyte
;
4507 int *charbuf
= coding
->charbuf
;
4508 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4509 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4510 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4513 = (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
4514 && CODING_ISO_BOL (coding
));
4515 int produced_chars
= 0;
4516 Lisp_Object attrs
, eol_type
, charset_list
;
4517 int ascii_compatible
;
4519 int preferred_charset_id
= -1;
4521 CODING_GET_INFO (coding
, attrs
, charset_list
);
4522 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
4523 if (VECTORP (eol_type
))
4526 setup_iso_safe_charsets (attrs
);
4527 /* Charset list may have been changed. */
4528 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4529 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
4531 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
4533 while (charbuf
< charbuf_end
)
4535 ASSURE_DESTINATION (safe_room
);
4537 if (bol_designation
)
4539 unsigned char *dst_prev
= dst
;
4541 /* We have to produce designation sequences if any now. */
4542 dst
= encode_designation_at_bol (coding
, charbuf
, charbuf_end
, dst
);
4543 bol_designation
= 0;
4544 /* We are sure that designation sequences are all ASCII bytes. */
4545 produced_chars
+= dst
- dst_prev
;
4552 /* Handle an annotation. */
4555 case CODING_ANNOTATE_COMPOSITION_MASK
:
4556 /* Not yet implemented. */
4558 case CODING_ANNOTATE_CHARSET_MASK
:
4559 preferred_charset_id
= charbuf
[2];
4560 if (preferred_charset_id
>= 0
4561 && NILP (Fmemq (make_number (preferred_charset_id
),
4563 preferred_charset_id
= -1;
4572 /* Now encode the character C. */
4573 if (c
< 0x20 || c
== 0x7F)
4576 || (c
== '\r' && EQ (eol_type
, Qmac
)))
4578 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4579 ENCODE_RESET_PLANE_AND_REGISTER ();
4580 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_INIT_AT_BOL
)
4584 for (i
= 0; i
< 4; i
++)
4585 CODING_ISO_DESIGNATION (coding
, i
)
4586 = CODING_ISO_INITIAL (coding
, i
);
4589 = CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
;
4591 else if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_CNTL
)
4592 ENCODE_RESET_PLANE_AND_REGISTER ();
4593 EMIT_ONE_ASCII_BYTE (c
);
4595 else if (ASCII_CHAR_P (c
))
4597 if (ascii_compatible
)
4598 EMIT_ONE_ASCII_BYTE (c
);
4601 struct charset
*charset
= CHARSET_FROM_ID (charset_ascii
);
4602 ENCODE_ISO_CHARACTER (charset
, c
);
4605 else if (CHAR_BYTE8_P (c
))
4607 c
= CHAR_TO_BYTE8 (c
);
4612 struct charset
*charset
;
4614 if (preferred_charset_id
>= 0)
4616 charset
= CHARSET_FROM_ID (preferred_charset_id
);
4617 if (! CHAR_CHARSET_P (c
, charset
))
4618 charset
= char_charset (c
, charset_list
, NULL
);
4621 charset
= char_charset (c
, charset_list
, NULL
);
4624 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4626 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4627 charset
= CHARSET_FROM_ID (charset_ascii
);
4631 c
= coding
->default_char
;
4632 charset
= char_charset (c
, charset_list
, NULL
);
4635 ENCODE_ISO_CHARACTER (charset
, c
);
4639 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4640 && CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4642 ASSURE_DESTINATION (safe_room
);
4643 ENCODE_RESET_PLANE_AND_REGISTER ();
4645 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4646 CODING_ISO_BOL (coding
) = bol_designation
;
4647 coding
->produced_char
+= produced_chars
;
4648 coding
->produced
= dst
- coding
->destination
;
4653 /*** 8,9. SJIS and BIG5 handlers ***/
4655 /* Although SJIS and BIG5 are not ISO's coding system, they are used
4656 quite widely. So, for the moment, Emacs supports them in the bare
4657 C code. But, in the future, they may be supported only by CCL. */
4659 /* SJIS is a coding system encoding three character sets: ASCII, right
4660 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
4661 as is. A character of charset katakana-jisx0201 is encoded by
4662 "position-code + 0x80". A character of charset japanese-jisx0208
4663 is encoded in 2-byte but two position-codes are divided and shifted
4664 so that it fit in the range below.
4666 --- CODE RANGE of SJIS ---
4667 (character set) (range)
4669 KATAKANA-JISX0201 0xA0 .. 0xDF
4670 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
4671 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
4672 -------------------------------
4676 /* BIG5 is a coding system encoding two character sets: ASCII and
4677 Big5. An ASCII character is encoded as is. Big5 is a two-byte
4678 character set and is encoded in two-byte.
4680 --- CODE RANGE of BIG5 ---
4681 (character set) (range)
4683 Big5 (1st byte) 0xA1 .. 0xFE
4684 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
4685 --------------------------
4689 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4690 Check if a text is encoded in SJIS. If it is, return
4691 CATEGORY_MASK_SJIS, else return 0. */
4694 detect_coding_sjis (coding
, detect_info
)
4695 struct coding_system
*coding
;
4696 struct coding_detection_info
*detect_info
;
4698 const unsigned char *src
= coding
->source
, *src_base
;
4699 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4700 int multibytep
= coding
->src_multibyte
;
4701 int consumed_chars
= 0;
4704 Lisp_Object attrs
, charset_list
;
4705 int max_first_byte_of_2_byte_code
;
4707 CODING_GET_INFO (coding
, attrs
, charset_list
);
4708 max_first_byte_of_2_byte_code
4709 = (XINT (Flength (charset_list
)) > 3 ? 0xFC : 0xEF);
4711 detect_info
->checked
|= CATEGORY_MASK_SJIS
;
4712 /* A coding system of this category is always ASCII compatible. */
4713 src
+= coding
->head_ascii
;
4721 if ((c
>= 0x81 && c
<= 0x9F)
4722 || (c
>= 0xE0 && c
<= max_first_byte_of_2_byte_code
))
4725 if (c
< 0x40 || c
== 0x7F || c
> 0xFC)
4727 found
= CATEGORY_MASK_SJIS
;
4729 else if (c
>= 0xA0 && c
< 0xE0)
4730 found
= CATEGORY_MASK_SJIS
;
4734 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4738 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4740 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4743 detect_info
->found
|= found
;
4747 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4748 Check if a text is encoded in BIG5. If it is, return
4749 CATEGORY_MASK_BIG5, else return 0. */
4752 detect_coding_big5 (coding
, detect_info
)
4753 struct coding_system
*coding
;
4754 struct coding_detection_info
*detect_info
;
4756 const unsigned char *src
= coding
->source
, *src_base
;
4757 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4758 int multibytep
= coding
->src_multibyte
;
4759 int consumed_chars
= 0;
4763 detect_info
->checked
|= CATEGORY_MASK_BIG5
;
4764 /* A coding system of this category is always ASCII compatible. */
4765 src
+= coding
->head_ascii
;
4776 if (c
< 0x40 || (c
>= 0x7F && c
<= 0xA0))
4778 found
= CATEGORY_MASK_BIG5
;
4783 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4787 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4789 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4792 detect_info
->found
|= found
;
4796 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions".
4797 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */
4800 decode_coding_sjis (coding
)
4801 struct coding_system
*coding
;
4803 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4804 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4805 const unsigned char *src_base
;
4806 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4807 /* We may produce one charset annocation in one loop and one more at
4810 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4811 int consumed_chars
= 0, consumed_chars_base
;
4812 int multibytep
= coding
->src_multibyte
;
4813 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
4814 struct charset
*charset_kanji2
;
4815 Lisp_Object attrs
, charset_list
, val
;
4816 int char_offset
= coding
->produced_char
;
4817 int last_offset
= char_offset
;
4818 int last_id
= charset_ascii
;
4820 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4821 int byte_after_cr
= -1;
4823 CODING_GET_INFO (coding
, attrs
, charset_list
);
4826 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4827 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4828 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4829 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4834 struct charset
*charset
;
4837 consumed_chars_base
= consumed_chars
;
4839 if (charbuf
>= charbuf_end
)
4841 if (byte_after_cr
>= 0)
4846 if (byte_after_cr
>= 0)
4847 c
= byte_after_cr
, byte_after_cr
= -1;
4854 if (eol_crlf
&& c
== '\r')
4855 ONE_MORE_BYTE (byte_after_cr
);
4856 charset
= charset_roman
;
4858 else if (c
== 0x80 || c
== 0xA0)
4860 else if (c
>= 0xA1 && c
<= 0xDF)
4862 /* SJIS -> JISX0201-Kana */
4864 charset
= charset_kana
;
4868 /* SJIS -> JISX0208 */
4870 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4874 charset
= charset_kanji
;
4876 else if (c
<= 0xFC && charset_kanji2
)
4878 /* SJIS -> JISX0213-2 */
4880 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4884 charset
= charset_kanji2
;
4888 if (charset
->id
!= charset_ascii
4889 && last_id
!= charset
->id
)
4891 if (last_id
!= charset_ascii
)
4892 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4893 last_id
= charset
->id
;
4894 last_offset
= char_offset
;
4896 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4903 consumed_chars
= consumed_chars_base
;
4905 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4911 if (last_id
!= charset_ascii
)
4912 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4913 coding
->consumed_char
+= consumed_chars_base
;
4914 coding
->consumed
= src_base
- coding
->source
;
4915 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4919 decode_coding_big5 (coding
)
4920 struct coding_system
*coding
;
4922 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4923 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4924 const unsigned char *src_base
;
4925 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4926 /* We may produce one charset annocation in one loop and one more at
4929 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4930 int consumed_chars
= 0, consumed_chars_base
;
4931 int multibytep
= coding
->src_multibyte
;
4932 struct charset
*charset_roman
, *charset_big5
;
4933 Lisp_Object attrs
, charset_list
, val
;
4934 int char_offset
= coding
->produced_char
;
4935 int last_offset
= char_offset
;
4936 int last_id
= charset_ascii
;
4938 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4939 int byte_after_cr
= -1;
4941 CODING_GET_INFO (coding
, attrs
, charset_list
);
4943 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4944 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
4949 struct charset
*charset
;
4952 consumed_chars_base
= consumed_chars
;
4954 if (charbuf
>= charbuf_end
)
4956 if (byte_after_cr
>= 0)
4961 if (byte_after_cr
>= 0)
4962 c
= byte_after_cr
, byte_after_cr
= -1;
4970 if (eol_crlf
&& c
== '\r')
4971 ONE_MORE_BYTE (byte_after_cr
);
4972 charset
= charset_roman
;
4977 if (c
< 0xA1 || c
> 0xFE)
4980 if (c1
< 0x40 || (c1
> 0x7E && c1
< 0xA1) || c1
> 0xFE)
4983 charset
= charset_big5
;
4985 if (charset
->id
!= charset_ascii
4986 && last_id
!= charset
->id
)
4988 if (last_id
!= charset_ascii
)
4989 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4990 last_id
= charset
->id
;
4991 last_offset
= char_offset
;
4993 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
5000 consumed_chars
= consumed_chars_base
;
5002 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
5008 if (last_id
!= charset_ascii
)
5009 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5010 coding
->consumed_char
+= consumed_chars_base
;
5011 coding
->consumed
= src_base
- coding
->source
;
5012 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5015 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
5016 This function can encode charsets `ascii', `katakana-jisx0201',
5017 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
5018 are sure that all these charsets are registered as official charset
5019 (i.e. do not have extended leading-codes). Characters of other
5020 charsets are produced without any encoding. If SJIS_P is 1, encode
5021 SJIS text, else encode BIG5 text. */
5024 encode_coding_sjis (coding
)
5025 struct coding_system
*coding
;
5027 int multibytep
= coding
->dst_multibyte
;
5028 int *charbuf
= coding
->charbuf
;
5029 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5030 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5031 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5033 int produced_chars
= 0;
5034 Lisp_Object attrs
, charset_list
, val
;
5035 int ascii_compatible
;
5036 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
5037 struct charset
*charset_kanji2
;
5040 CODING_GET_INFO (coding
, attrs
, charset_list
);
5042 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5043 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5044 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5045 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
5047 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5049 while (charbuf
< charbuf_end
)
5051 ASSURE_DESTINATION (safe_room
);
5053 /* Now encode the character C. */
5054 if (ASCII_CHAR_P (c
) && ascii_compatible
)
5055 EMIT_ONE_ASCII_BYTE (c
);
5056 else if (CHAR_BYTE8_P (c
))
5058 c
= CHAR_TO_BYTE8 (c
);
5064 struct charset
*charset
= char_charset (c
, charset_list
, &code
);
5068 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5070 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5071 charset
= CHARSET_FROM_ID (charset_ascii
);
5075 c
= coding
->default_char
;
5076 charset
= char_charset (c
, charset_list
, &code
);
5079 if (code
== CHARSET_INVALID_CODE (charset
))
5081 if (charset
== charset_kanji
)
5085 c1
= code
>> 8, c2
= code
& 0xFF;
5086 EMIT_TWO_BYTES (c1
, c2
);
5088 else if (charset
== charset_kana
)
5089 EMIT_ONE_BYTE (code
| 0x80);
5090 else if (charset_kanji2
&& charset
== charset_kanji2
)
5095 if (c1
== 0x21 || (c1
>= 0x23 && c1
<= 0x25)
5097 || (c1
>= 0x2C && c1
<= 0x2F) || c1
>= 0x6E)
5099 JIS_TO_SJIS2 (code
);
5100 c1
= code
>> 8, c2
= code
& 0xFF;
5101 EMIT_TWO_BYTES (c1
, c2
);
5104 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5107 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5110 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5111 coding
->produced_char
+= produced_chars
;
5112 coding
->produced
= dst
- coding
->destination
;
5117 encode_coding_big5 (coding
)
5118 struct coding_system
*coding
;
5120 int multibytep
= coding
->dst_multibyte
;
5121 int *charbuf
= coding
->charbuf
;
5122 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5123 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5124 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5126 int produced_chars
= 0;
5127 Lisp_Object attrs
, charset_list
, val
;
5128 int ascii_compatible
;
5129 struct charset
*charset_roman
, *charset_big5
;
5132 CODING_GET_INFO (coding
, attrs
, charset_list
);
5134 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5135 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
5136 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5138 while (charbuf
< charbuf_end
)
5140 ASSURE_DESTINATION (safe_room
);
5142 /* Now encode the character C. */
5143 if (ASCII_CHAR_P (c
) && ascii_compatible
)
5144 EMIT_ONE_ASCII_BYTE (c
);
5145 else if (CHAR_BYTE8_P (c
))
5147 c
= CHAR_TO_BYTE8 (c
);
5153 struct charset
*charset
= char_charset (c
, charset_list
, &code
);
5157 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5159 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5160 charset
= CHARSET_FROM_ID (charset_ascii
);
5164 c
= coding
->default_char
;
5165 charset
= char_charset (c
, charset_list
, &code
);
5168 if (code
== CHARSET_INVALID_CODE (charset
))
5170 if (charset
== charset_big5
)
5174 c1
= code
>> 8, c2
= code
& 0xFF;
5175 EMIT_TWO_BYTES (c1
, c2
);
5178 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5181 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5182 coding
->produced_char
+= produced_chars
;
5183 coding
->produced
= dst
- coding
->destination
;
5188 /*** 10. CCL handlers ***/
5190 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5191 Check if a text is encoded in a coding system of which
5192 encoder/decoder are written in CCL program. If it is, return
5193 CATEGORY_MASK_CCL, else return 0. */
5196 detect_coding_ccl (coding
, detect_info
)
5197 struct coding_system
*coding
;
5198 struct coding_detection_info
*detect_info
;
5200 const unsigned char *src
= coding
->source
, *src_base
;
5201 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5202 int multibytep
= coding
->src_multibyte
;
5203 int consumed_chars
= 0;
5205 unsigned char *valids
;
5206 int head_ascii
= coding
->head_ascii
;
5209 detect_info
->checked
|= CATEGORY_MASK_CCL
;
5211 coding
= &coding_categories
[coding_category_ccl
];
5212 valids
= CODING_CCL_VALIDS (coding
);
5213 attrs
= CODING_ID_ATTRS (coding
->id
);
5214 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5223 if (c
< 0 || ! valids
[c
])
5225 if ((valids
[c
] > 1))
5226 found
= CATEGORY_MASK_CCL
;
5228 detect_info
->rejected
|= CATEGORY_MASK_CCL
;
5232 detect_info
->found
|= found
;
5237 decode_coding_ccl (coding
)
5238 struct coding_system
*coding
;
5240 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5241 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5242 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5243 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
5244 int consumed_chars
= 0;
5245 int multibytep
= coding
->src_multibyte
;
5246 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5247 int source_charbuf
[1024];
5248 int source_byteidx
[1024];
5249 Lisp_Object attrs
, charset_list
;
5251 CODING_GET_INFO (coding
, attrs
, charset_list
);
5255 const unsigned char *p
= src
;
5259 while (i
< 1024 && p
< src_end
)
5261 source_byteidx
[i
] = p
- src
;
5262 source_charbuf
[i
++] = STRING_CHAR_ADVANCE (p
);
5265 while (i
< 1024 && p
< src_end
)
5266 source_charbuf
[i
++] = *p
++;
5268 if (p
== src_end
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
5269 ccl
->last_block
= 1;
5270 ccl_driver (ccl
, source_charbuf
, charbuf
, i
, charbuf_end
- charbuf
,
5272 charbuf
+= ccl
->produced
;
5273 if (multibytep
&& ccl
->consumed
< i
)
5274 src
+= source_byteidx
[ccl
->consumed
];
5276 src
+= ccl
->consumed
;
5277 consumed_chars
+= ccl
->consumed
;
5278 if (p
== src_end
|| ccl
->status
!= CCL_STAT_SUSPEND_BY_SRC
)
5282 switch (ccl
->status
)
5284 case CCL_STAT_SUSPEND_BY_SRC
:
5285 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5287 case CCL_STAT_SUSPEND_BY_DST
:
5288 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5291 case CCL_STAT_INVALID_CMD
:
5292 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5295 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5298 coding
->consumed_char
+= consumed_chars
;
5299 coding
->consumed
= src
- coding
->source
;
5300 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5304 encode_coding_ccl (coding
)
5305 struct coding_system
*coding
;
5307 struct ccl_program ccl
;
5308 int multibytep
= coding
->dst_multibyte
;
5309 int *charbuf
= coding
->charbuf
;
5310 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5311 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5312 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5313 int destination_charbuf
[1024];
5314 int i
, produced_chars
= 0;
5315 Lisp_Object attrs
, charset_list
;
5317 CODING_GET_INFO (coding
, attrs
, charset_list
);
5318 setup_ccl_program (&ccl
, CODING_CCL_ENCODER (coding
));
5320 ccl
.last_block
= coding
->mode
& CODING_MODE_LAST_BLOCK
;
5321 ccl
.dst_multibyte
= coding
->dst_multibyte
;
5323 while (charbuf
< charbuf_end
)
5325 ccl_driver (&ccl
, charbuf
, destination_charbuf
,
5326 charbuf_end
- charbuf
, 1024, charset_list
);
5329 ASSURE_DESTINATION (ccl
.produced
* 2);
5330 for (i
= 0; i
< ccl
.produced
; i
++)
5331 EMIT_ONE_BYTE (destination_charbuf
[i
] & 0xFF);
5335 ASSURE_DESTINATION (ccl
.produced
);
5336 for (i
= 0; i
< ccl
.produced
; i
++)
5337 *dst
++ = destination_charbuf
[i
] & 0xFF;
5338 produced_chars
+= ccl
.produced
;
5340 charbuf
+= ccl
.consumed
;
5341 if (ccl
.status
== CCL_STAT_QUIT
5342 || ccl
.status
== CCL_STAT_INVALID_CMD
)
5348 case CCL_STAT_SUSPEND_BY_SRC
:
5349 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5351 case CCL_STAT_SUSPEND_BY_DST
:
5352 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5355 case CCL_STAT_INVALID_CMD
:
5356 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5359 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5363 coding
->produced_char
+= produced_chars
;
5364 coding
->produced
= dst
- coding
->destination
;
5370 /*** 10, 11. no-conversion handlers ***/
5372 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
5375 decode_coding_raw_text (coding
)
5376 struct coding_system
*coding
;
5379 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5381 coding
->chars_at_source
= 1;
5382 coding
->consumed_char
= coding
->src_chars
;
5383 coding
->consumed
= coding
->src_bytes
;
5384 if (eol_crlf
&& coding
->source
[coding
->src_bytes
- 1] == '\r')
5386 coding
->consumed_char
--;
5388 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5391 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5395 encode_coding_raw_text (coding
)
5396 struct coding_system
*coding
;
5398 int multibytep
= coding
->dst_multibyte
;
5399 int *charbuf
= coding
->charbuf
;
5400 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_used
;
5401 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5402 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5403 int produced_chars
= 0;
5408 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
5410 if (coding
->src_multibyte
)
5411 while (charbuf
< charbuf_end
)
5413 ASSURE_DESTINATION (safe_room
);
5415 if (ASCII_CHAR_P (c
))
5416 EMIT_ONE_ASCII_BYTE (c
);
5417 else if (CHAR_BYTE8_P (c
))
5419 c
= CHAR_TO_BYTE8 (c
);
5424 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p0
= str
, *p1
= str
;
5426 CHAR_STRING_ADVANCE (c
, p1
);
5429 EMIT_ONE_BYTE (*p0
);
5435 while (charbuf
< charbuf_end
)
5437 ASSURE_DESTINATION (safe_room
);
5444 if (coding
->src_multibyte
)
5446 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5448 while (charbuf
< charbuf_end
)
5450 ASSURE_DESTINATION (safe_room
);
5452 if (ASCII_CHAR_P (c
))
5454 else if (CHAR_BYTE8_P (c
))
5455 *dst
++ = CHAR_TO_BYTE8 (c
);
5457 CHAR_STRING_ADVANCE (c
, dst
);
5462 ASSURE_DESTINATION (charbuf_end
- charbuf
);
5463 while (charbuf
< charbuf_end
&& dst
< dst_end
)
5464 *dst
++ = *charbuf
++;
5466 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
5468 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5469 coding
->produced_char
+= produced_chars
;
5470 coding
->produced
= dst
- coding
->destination
;
5474 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5475 Check if a text is encoded in a charset-based coding system. If it
5476 is, return 1, else return 0. */
5479 detect_coding_charset (coding
, detect_info
)
5480 struct coding_system
*coding
;
5481 struct coding_detection_info
*detect_info
;
5483 const unsigned char *src
= coding
->source
, *src_base
;
5484 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5485 int multibytep
= coding
->src_multibyte
;
5486 int consumed_chars
= 0;
5487 Lisp_Object attrs
, valids
, name
;
5489 int head_ascii
= coding
->head_ascii
;
5490 int check_latin_extra
= 0;
5492 detect_info
->checked
|= CATEGORY_MASK_CHARSET
;
5494 coding
= &coding_categories
[coding_category_charset
];
5495 attrs
= CODING_ID_ATTRS (coding
->id
);
5496 valids
= AREF (attrs
, coding_attr_charset_valids
);
5497 name
= CODING_ID_NAME (coding
->id
);
5498 if (strncmp ((char *) SDATA (SYMBOL_NAME (name
)),
5499 "iso-8859-", sizeof ("iso-8859-") - 1) == 0
5500 || strncmp ((char *) SDATA (SYMBOL_NAME (name
)),
5501 "iso-latin-", sizeof ("iso-latin-") - 1) == 0)
5502 check_latin_extra
= 1;
5504 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5511 struct charset
*charset
;
5518 val
= AREF (valids
, c
);
5524 && check_latin_extra
5525 && (!VECTORP (Vlatin_extra_code_table
)
5526 || NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
])))
5528 found
= CATEGORY_MASK_CHARSET
;
5532 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5533 dim
= CHARSET_DIMENSION (charset
);
5534 for (idx
= 1; idx
< dim
; idx
++)
5539 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 2]
5540 || c
> charset
->code_space
[(dim
- 1 - idx
) * 2 + 1])
5549 for (; CONSP (val
); val
= XCDR (val
))
5551 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5552 dim
= CHARSET_DIMENSION (charset
);
5558 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5559 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5574 detect_info
->rejected
|= CATEGORY_MASK_CHARSET
;
5578 detect_info
->found
|= found
;
5583 decode_coding_charset (coding
)
5584 struct coding_system
*coding
;
5586 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5587 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5588 const unsigned char *src_base
;
5589 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5590 /* We may produce one charset annocation in one loop and one more at
5593 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
5594 int consumed_chars
= 0, consumed_chars_base
;
5595 int multibytep
= coding
->src_multibyte
;
5596 Lisp_Object attrs
, charset_list
, valids
;
5597 int char_offset
= coding
->produced_char
;
5598 int last_offset
= char_offset
;
5599 int last_id
= charset_ascii
;
5601 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5602 int byte_after_cr
= -1;
5604 CODING_GET_INFO (coding
, attrs
, charset_list
);
5605 valids
= AREF (attrs
, coding_attr_charset_valids
);
5611 struct charset
*charset
;
5617 consumed_chars_base
= consumed_chars
;
5619 if (charbuf
>= charbuf_end
)
5621 if (byte_after_cr
>= 0)
5626 if (byte_after_cr
>= 0)
5634 if (eol_crlf
&& c
== '\r')
5635 ONE_MORE_BYTE (byte_after_cr
);
5641 val
= AREF (valids
, c
);
5642 if (! INTEGERP (val
) && ! CONSP (val
))
5646 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5647 dim
= CHARSET_DIMENSION (charset
);
5651 code
= (code
<< 8) | c
;
5654 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
5659 /* VAL is a list of charset IDs. It is assured that the
5660 list is sorted by charset dimensions (smaller one
5664 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5665 dim
= CHARSET_DIMENSION (charset
);
5669 code
= (code
<< 8) | c
;
5672 CODING_DECODE_CHAR (coding
, src
, src_base
,
5673 src_end
, charset
, code
, c
);
5681 if (charset
->id
!= charset_ascii
5682 && last_id
!= charset
->id
)
5684 if (last_id
!= charset_ascii
)
5685 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5686 last_id
= charset
->id
;
5687 last_offset
= char_offset
;
5696 consumed_chars
= consumed_chars_base
;
5698 *charbuf
++ = c
< 0 ? -c
: ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
5704 if (last_id
!= charset_ascii
)
5705 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5706 coding
->consumed_char
+= consumed_chars_base
;
5707 coding
->consumed
= src_base
- coding
->source
;
5708 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5712 encode_coding_charset (coding
)
5713 struct coding_system
*coding
;
5715 int multibytep
= coding
->dst_multibyte
;
5716 int *charbuf
= coding
->charbuf
;
5717 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5718 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5719 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5720 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5721 int produced_chars
= 0;
5722 Lisp_Object attrs
, charset_list
;
5723 int ascii_compatible
;
5726 CODING_GET_INFO (coding
, attrs
, charset_list
);
5727 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5729 while (charbuf
< charbuf_end
)
5731 struct charset
*charset
;
5734 ASSURE_DESTINATION (safe_room
);
5736 if (ascii_compatible
&& ASCII_CHAR_P (c
))
5737 EMIT_ONE_ASCII_BYTE (c
);
5738 else if (CHAR_BYTE8_P (c
))
5740 c
= CHAR_TO_BYTE8 (c
);
5745 charset
= char_charset (c
, charset_list
, &code
);
5748 if (CHARSET_DIMENSION (charset
) == 1)
5749 EMIT_ONE_BYTE (code
);
5750 else if (CHARSET_DIMENSION (charset
) == 2)
5751 EMIT_TWO_BYTES (code
>> 8, code
& 0xFF);
5752 else if (CHARSET_DIMENSION (charset
) == 3)
5753 EMIT_THREE_BYTES (code
>> 16, (code
>> 8) & 0xFF, code
& 0xFF);
5755 EMIT_FOUR_BYTES (code
>> 24, (code
>> 16) & 0xFF,
5756 (code
>> 8) & 0xFF, code
& 0xFF);
5760 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5761 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5763 c
= coding
->default_char
;
5769 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5770 coding
->produced_char
+= produced_chars
;
5771 coding
->produced
= dst
- coding
->destination
;
5776 /*** 7. C library functions ***/
5778 /* Setup coding context CODING from information about CODING_SYSTEM.
5779 If CODING_SYSTEM is nil, `no-conversion' is assumed. If
5780 CODING_SYSTEM is invalid, signal an error. */
5783 setup_coding_system (coding_system
, coding
)
5784 Lisp_Object coding_system
;
5785 struct coding_system
*coding
;
5788 Lisp_Object eol_type
;
5789 Lisp_Object coding_type
;
5792 if (NILP (coding_system
))
5793 coding_system
= Qundecided
;
5795 CHECK_CODING_SYSTEM_GET_ID (coding_system
, coding
->id
);
5797 attrs
= CODING_ID_ATTRS (coding
->id
);
5798 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
5801 coding
->head_ascii
= -1;
5802 if (VECTORP (eol_type
))
5803 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5804 | CODING_REQUIRE_DETECTION_MASK
);
5805 else if (! EQ (eol_type
, Qunix
))
5806 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5807 | CODING_REQUIRE_ENCODING_MASK
);
5809 coding
->common_flags
= 0;
5810 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
5811 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5812 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
5813 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5814 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs
)))
5815 coding
->common_flags
|= CODING_FOR_UNIBYTE_MASK
;
5817 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5818 coding
->max_charset_id
= SCHARS (val
) - 1;
5819 coding
->safe_charsets
= SDATA (val
);
5820 coding
->default_char
= XINT (CODING_ATTR_DEFAULT_CHAR (attrs
));
5821 coding
->carryover_bytes
= 0;
5823 coding_type
= CODING_ATTR_TYPE (attrs
);
5824 if (EQ (coding_type
, Qundecided
))
5826 coding
->detector
= NULL
;
5827 coding
->decoder
= decode_coding_raw_text
;
5828 coding
->encoder
= encode_coding_raw_text
;
5829 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5831 else if (EQ (coding_type
, Qiso_2022
))
5834 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5836 /* Invoke graphic register 0 to plane 0. */
5837 CODING_ISO_INVOCATION (coding
, 0) = 0;
5838 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */
5839 CODING_ISO_INVOCATION (coding
, 1)
5840 = (flags
& CODING_ISO_FLAG_SEVEN_BITS
? -1 : 1);
5841 /* Setup the initial status of designation. */
5842 for (i
= 0; i
< 4; i
++)
5843 CODING_ISO_DESIGNATION (coding
, i
) = CODING_ISO_INITIAL (coding
, i
);
5844 /* Not single shifting initially. */
5845 CODING_ISO_SINGLE_SHIFTING (coding
) = 0;
5846 /* Beginning of buffer should also be regarded as bol. */
5847 CODING_ISO_BOL (coding
) = 1;
5848 coding
->detector
= detect_coding_iso_2022
;
5849 coding
->decoder
= decode_coding_iso_2022
;
5850 coding
->encoder
= encode_coding_iso_2022
;
5851 if (flags
& CODING_ISO_FLAG_SAFE
)
5852 coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
5853 coding
->common_flags
5854 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5855 | CODING_REQUIRE_FLUSHING_MASK
);
5856 if (flags
& CODING_ISO_FLAG_COMPOSITION
)
5857 coding
->common_flags
|= CODING_ANNOTATE_COMPOSITION_MASK
;
5858 if (flags
& CODING_ISO_FLAG_DESIGNATION
)
5859 coding
->common_flags
|= CODING_ANNOTATE_CHARSET_MASK
;
5860 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5862 setup_iso_safe_charsets (attrs
);
5863 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5864 coding
->max_charset_id
= SCHARS (val
) - 1;
5865 coding
->safe_charsets
= SDATA (val
);
5867 CODING_ISO_FLAGS (coding
) = flags
;
5868 CODING_ISO_CMP_STATUS (coding
)->state
= COMPOSING_NO
;
5869 CODING_ISO_CMP_STATUS (coding
)->method
= COMPOSITION_NO
;
5870 CODING_ISO_EXTSEGMENT_LEN (coding
) = 0;
5871 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
5873 else if (EQ (coding_type
, Qcharset
))
5875 coding
->detector
= detect_coding_charset
;
5876 coding
->decoder
= decode_coding_charset
;
5877 coding
->encoder
= encode_coding_charset
;
5878 coding
->common_flags
5879 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5881 else if (EQ (coding_type
, Qutf_8
))
5883 val
= AREF (attrs
, coding_attr_utf_bom
);
5884 CODING_UTF_8_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5885 : EQ (val
, Qt
) ? utf_with_bom
5887 coding
->detector
= detect_coding_utf_8
;
5888 coding
->decoder
= decode_coding_utf_8
;
5889 coding
->encoder
= encode_coding_utf_8
;
5890 coding
->common_flags
5891 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5892 if (CODING_UTF_8_BOM (coding
) == utf_detect_bom
)
5893 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5895 else if (EQ (coding_type
, Qutf_16
))
5897 val
= AREF (attrs
, coding_attr_utf_bom
);
5898 CODING_UTF_16_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5899 : EQ (val
, Qt
) ? utf_with_bom
5901 val
= AREF (attrs
, coding_attr_utf_16_endian
);
5902 CODING_UTF_16_ENDIAN (coding
) = (EQ (val
, Qbig
) ? utf_16_big_endian
5903 : utf_16_little_endian
);
5904 CODING_UTF_16_SURROGATE (coding
) = 0;
5905 coding
->detector
= detect_coding_utf_16
;
5906 coding
->decoder
= decode_coding_utf_16
;
5907 coding
->encoder
= encode_coding_utf_16
;
5908 coding
->common_flags
5909 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5910 if (CODING_UTF_16_BOM (coding
) == utf_detect_bom
)
5911 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5913 else if (EQ (coding_type
, Qccl
))
5915 coding
->detector
= detect_coding_ccl
;
5916 coding
->decoder
= decode_coding_ccl
;
5917 coding
->encoder
= encode_coding_ccl
;
5918 coding
->common_flags
5919 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5920 | CODING_REQUIRE_FLUSHING_MASK
);
5922 else if (EQ (coding_type
, Qemacs_mule
))
5924 coding
->detector
= detect_coding_emacs_mule
;
5925 coding
->decoder
= decode_coding_emacs_mule
;
5926 coding
->encoder
= encode_coding_emacs_mule
;
5927 coding
->common_flags
5928 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5929 coding
->spec
.emacs_mule
.full_support
= 1;
5930 if (! NILP (AREF (attrs
, coding_attr_emacs_mule_full
))
5931 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Vemacs_mule_charset_list
))
5933 Lisp_Object tail
, safe_charsets
;
5934 int max_charset_id
= 0;
5936 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5938 if (max_charset_id
< XFASTINT (XCAR (tail
)))
5939 max_charset_id
= XFASTINT (XCAR (tail
));
5940 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
5941 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
5942 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5944 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
5945 coding
->max_charset_id
= max_charset_id
;
5946 coding
->safe_charsets
= SDATA (safe_charsets
);
5947 coding
->spec
.emacs_mule
.full_support
= 1;
5949 coding
->spec
.emacs_mule
.cmp_status
.state
= COMPOSING_NO
;
5950 coding
->spec
.emacs_mule
.cmp_status
.method
= COMPOSITION_NO
;
5952 else if (EQ (coding_type
, Qshift_jis
))
5954 coding
->detector
= detect_coding_sjis
;
5955 coding
->decoder
= decode_coding_sjis
;
5956 coding
->encoder
= encode_coding_sjis
;
5957 coding
->common_flags
5958 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5960 else if (EQ (coding_type
, Qbig5
))
5962 coding
->detector
= detect_coding_big5
;
5963 coding
->decoder
= decode_coding_big5
;
5964 coding
->encoder
= encode_coding_big5
;
5965 coding
->common_flags
5966 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5968 else /* EQ (coding_type, Qraw_text) */
5970 coding
->detector
= NULL
;
5971 coding
->decoder
= decode_coding_raw_text
;
5972 coding
->encoder
= encode_coding_raw_text
;
5973 if (! EQ (eol_type
, Qunix
))
5975 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5976 if (! VECTORP (eol_type
))
5977 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5985 /* Return a list of charsets supported by CODING. */
5988 coding_charset_list (coding
)
5989 struct coding_system
*coding
;
5991 Lisp_Object attrs
, charset_list
;
5993 CODING_GET_INFO (coding
, attrs
, charset_list
);
5994 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5996 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5998 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5999 charset_list
= Viso_2022_charset_list
;
6001 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
6003 charset_list
= Vemacs_mule_charset_list
;
6005 return charset_list
;
6009 /* Return a list of charsets supported by CODING-SYSTEM. */
6012 coding_system_charset_list (coding_system
)
6013 Lisp_Object coding_system
;
6016 Lisp_Object attrs
, charset_list
;
6018 CHECK_CODING_SYSTEM_GET_ID (coding_system
, id
);
6019 attrs
= CODING_ID_ATTRS (id
);
6021 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
6023 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
6025 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
6026 charset_list
= Viso_2022_charset_list
;
6028 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
6030 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
6032 charset_list
= Vemacs_mule_charset_list
;
6036 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
6038 return charset_list
;
6042 /* Return raw-text or one of its subsidiaries that has the same
6043 eol_type as CODING-SYSTEM. */
6046 raw_text_coding_system (coding_system
)
6047 Lisp_Object coding_system
;
6049 Lisp_Object spec
, attrs
;
6050 Lisp_Object eol_type
, raw_text_eol_type
;
6052 if (NILP (coding_system
))
6054 spec
= CODING_SYSTEM_SPEC (coding_system
);
6055 attrs
= AREF (spec
, 0);
6057 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
6058 return coding_system
;
6060 eol_type
= AREF (spec
, 2);
6061 if (VECTORP (eol_type
))
6063 spec
= CODING_SYSTEM_SPEC (Qraw_text
);
6064 raw_text_eol_type
= AREF (spec
, 2);
6065 return (EQ (eol_type
, Qunix
) ? AREF (raw_text_eol_type
, 0)
6066 : EQ (eol_type
, Qdos
) ? AREF (raw_text_eol_type
, 1)
6067 : AREF (raw_text_eol_type
, 2));
6071 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT
6072 does, return one of the subsidiary that has the same eol-spec as
6073 PARENT. Otherwise, return CODING_SYSTEM. If PARENT is nil,
6074 inherit end-of-line format from the system's setting
6075 (system_eol_type). */
6078 coding_inherit_eol_type (coding_system
, parent
)
6079 Lisp_Object coding_system
, parent
;
6081 Lisp_Object spec
, eol_type
;
6083 if (NILP (coding_system
))
6084 coding_system
= Qraw_text
;
6085 spec
= CODING_SYSTEM_SPEC (coding_system
);
6086 eol_type
= AREF (spec
, 2);
6087 if (VECTORP (eol_type
))
6089 Lisp_Object parent_eol_type
;
6091 if (! NILP (parent
))
6093 Lisp_Object parent_spec
;
6095 parent_spec
= CODING_SYSTEM_SPEC (parent
);
6096 parent_eol_type
= AREF (parent_spec
, 2);
6099 parent_eol_type
= system_eol_type
;
6100 if (EQ (parent_eol_type
, Qunix
))
6101 coding_system
= AREF (eol_type
, 0);
6102 else if (EQ (parent_eol_type
, Qdos
))
6103 coding_system
= AREF (eol_type
, 1);
6104 else if (EQ (parent_eol_type
, Qmac
))
6105 coding_system
= AREF (eol_type
, 2);
6107 return coding_system
;
6110 /* Emacs has a mechanism to automatically detect a coding system if it
6111 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
6112 it's impossible to distinguish some coding systems accurately
6113 because they use the same range of codes. So, at first, coding
6114 systems are categorized into 7, those are:
6116 o coding-category-emacs-mule
6118 The category for a coding system which has the same code range
6119 as Emacs' internal format. Assigned the coding-system (Lisp
6120 symbol) `emacs-mule' by default.
6122 o coding-category-sjis
6124 The category for a coding system which has the same code range
6125 as SJIS. Assigned the coding-system (Lisp
6126 symbol) `japanese-shift-jis' by default.
6128 o coding-category-iso-7
6130 The category for a coding system which has the same code range
6131 as ISO2022 of 7-bit environment. This doesn't use any locking
6132 shift and single shift functions. This can encode/decode all
6133 charsets. Assigned the coding-system (Lisp symbol)
6134 `iso-2022-7bit' by default.
6136 o coding-category-iso-7-tight
6138 Same as coding-category-iso-7 except that this can
6139 encode/decode only the specified charsets.
6141 o coding-category-iso-8-1
6143 The category for a coding system which has the same code range
6144 as ISO2022 of 8-bit environment and graphic plane 1 used only
6145 for DIMENSION1 charset. This doesn't use any locking shift
6146 and single shift functions. Assigned the coding-system (Lisp
6147 symbol) `iso-latin-1' by default.
6149 o coding-category-iso-8-2
6151 The category for a coding system which has the same code range
6152 as ISO2022 of 8-bit environment and graphic plane 1 used only
6153 for DIMENSION2 charset. This doesn't use any locking shift
6154 and single shift functions. Assigned the coding-system (Lisp
6155 symbol) `japanese-iso-8bit' by default.
6157 o coding-category-iso-7-else
6159 The category for a coding system which has the same code range
6160 as ISO2022 of 7-bit environemnt but uses locking shift or
6161 single shift functions. Assigned the coding-system (Lisp
6162 symbol) `iso-2022-7bit-lock' by default.
6164 o coding-category-iso-8-else
6166 The category for a coding system which has the same code range
6167 as ISO2022 of 8-bit environemnt but uses locking shift or
6168 single shift functions. Assigned the coding-system (Lisp
6169 symbol) `iso-2022-8bit-ss2' by default.
6171 o coding-category-big5
6173 The category for a coding system which has the same code range
6174 as BIG5. Assigned the coding-system (Lisp symbol)
6175 `cn-big5' by default.
6177 o coding-category-utf-8
6179 The category for a coding system which has the same code range
6180 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp
6181 symbol) `utf-8' by default.
6183 o coding-category-utf-16-be
6185 The category for a coding system in which a text has an
6186 Unicode signature (cf. Unicode Standard) in the order of BIG
6187 endian at the head. Assigned the coding-system (Lisp symbol)
6188 `utf-16-be' by default.
6190 o coding-category-utf-16-le
6192 The category for a coding system in which a text has an
6193 Unicode signature (cf. Unicode Standard) in the order of
6194 LITTLE endian at the head. Assigned the coding-system (Lisp
6195 symbol) `utf-16-le' by default.
6197 o coding-category-ccl
6199 The category for a coding system of which encoder/decoder is
6200 written in CCL programs. The default value is nil, i.e., no
6201 coding system is assigned.
6203 o coding-category-binary
6205 The category for a coding system not categorized in any of the
6206 above. Assigned the coding-system (Lisp symbol)
6207 `no-conversion' by default.
6209 Each of them is a Lisp symbol and the value is an actual
6210 `coding-system's (this is also a Lisp symbol) assigned by a user.
6211 What Emacs does actually is to detect a category of coding system.
6212 Then, it uses a `coding-system' assigned to it. If Emacs can't
6213 decide only one possible category, it selects a category of the
6214 highest priority. Priorities of categories are also specified by a
6215 user in a Lisp variable `coding-category-list'.
6219 #define EOL_SEEN_NONE 0
6220 #define EOL_SEEN_LF 1
6221 #define EOL_SEEN_CR 2
6222 #define EOL_SEEN_CRLF 4
6224 /* Detect how end-of-line of a text of length SRC_BYTES pointed by
6225 SOURCE is encoded. If CATEGORY is one of
6226 coding_category_utf_16_XXXX, assume that CR and LF are encoded by
6227 two-byte, else they are encoded by one-byte.
6229 Return one of EOL_SEEN_XXX. */
6231 #define MAX_EOL_CHECK_COUNT 3
6234 detect_eol (source
, src_bytes
, category
)
6235 const unsigned char *source
;
6236 EMACS_INT src_bytes
;
6237 enum coding_category category
;
6239 const unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
6242 int eol_seen
= EOL_SEEN_NONE
;
6244 if ((1 << category
) & CATEGORY_MASK_UTF_16
)
6248 msb
= category
== (coding_category_utf_16_le
6249 | coding_category_utf_16_le_nosig
);
6252 while (src
+ 1 < src_end
)
6255 if (src
[msb
] == 0 && (c
== '\n' || c
== '\r'))
6260 this_eol
= EOL_SEEN_LF
;
6261 else if (src
+ 3 >= src_end
6262 || src
[msb
+ 2] != 0
6263 || src
[lsb
+ 2] != '\n')
6264 this_eol
= EOL_SEEN_CR
;
6267 this_eol
= EOL_SEEN_CRLF
;
6271 if (eol_seen
== EOL_SEEN_NONE
)
6272 /* This is the first end-of-line. */
6273 eol_seen
= this_eol
;
6274 else if (eol_seen
!= this_eol
)
6276 /* The found type is different from what found before.
6277 Allow for stray ^M characters in DOS EOL files. */
6278 if (eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
6279 || eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
)
6280 eol_seen
= EOL_SEEN_CRLF
;
6283 eol_seen
= EOL_SEEN_LF
;
6287 if (++total
== MAX_EOL_CHECK_COUNT
)
6295 while (src
< src_end
)
6298 if (c
== '\n' || c
== '\r')
6303 this_eol
= EOL_SEEN_LF
;
6304 else if (src
>= src_end
|| *src
!= '\n')
6305 this_eol
= EOL_SEEN_CR
;
6307 this_eol
= EOL_SEEN_CRLF
, src
++;
6309 if (eol_seen
== EOL_SEEN_NONE
)
6310 /* This is the first end-of-line. */
6311 eol_seen
= this_eol
;
6312 else if (eol_seen
!= this_eol
)
6314 /* The found type is different from what found before.
6315 Allow for stray ^M characters in DOS EOL files. */
6316 if (eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
6317 || eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
)
6318 eol_seen
= EOL_SEEN_CRLF
;
6321 eol_seen
= EOL_SEEN_LF
;
6325 if (++total
== MAX_EOL_CHECK_COUNT
)
6335 adjust_coding_eol_type (coding
, eol_seen
)
6336 struct coding_system
*coding
;
6339 Lisp_Object eol_type
;
6341 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6342 if (eol_seen
& EOL_SEEN_LF
)
6344 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 0));
6347 else if (eol_seen
& EOL_SEEN_CRLF
)
6349 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 1));
6352 else if (eol_seen
& EOL_SEEN_CR
)
6354 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 2));
6360 /* Detect how a text specified in CODING is encoded. If a coding
6361 system is detected, update fields of CODING by the detected coding
6365 detect_coding (coding
)
6366 struct coding_system
*coding
;
6368 const unsigned char *src
, *src_end
;
6369 int saved_mode
= coding
->mode
;
6371 coding
->consumed
= coding
->consumed_char
= 0;
6372 coding
->produced
= coding
->produced_char
= 0;
6373 coding_set_source (coding
);
6375 src_end
= coding
->source
+ coding
->src_bytes
;
6376 coding
->head_ascii
= 0;
6378 /* If we have not yet decided the text encoding type, detect it
6380 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding
->id
)), Qundecided
))
6383 struct coding_detection_info detect_info
;
6384 int null_byte_found
= 0, eight_bit_found
= 0;
6386 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
6387 for (src
= coding
->source
; src
< src_end
; src
++)
6392 eight_bit_found
= 1;
6393 if (null_byte_found
)
6398 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
6399 && ! inhibit_iso_escape_detection
6400 && ! detect_info
.checked
)
6402 if (detect_coding_iso_2022 (coding
, &detect_info
))
6404 /* We have scanned the whole data. */
6405 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
6407 /* We didn't find an 8-bit code. We may
6408 have found a null-byte, but it's very
6409 rare that a binary file confirm to
6412 coding
->head_ascii
= src
- coding
->source
;
6414 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
6418 else if (! c
&& !inhibit_null_byte_detection
)
6420 null_byte_found
= 1;
6421 if (eight_bit_found
)
6424 if (! eight_bit_found
)
6425 coding
->head_ascii
++;
6427 else if (! eight_bit_found
)
6428 coding
->head_ascii
++;
6431 if (null_byte_found
|| eight_bit_found
6432 || coding
->head_ascii
< coding
->src_bytes
6433 || detect_info
.found
)
6435 enum coding_category category
;
6436 struct coding_system
*this;
6438 if (coding
->head_ascii
== coding
->src_bytes
)
6439 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
6440 for (i
= 0; i
< coding_category_raw_text
; i
++)
6442 category
= coding_priorities
[i
];
6443 this = coding_categories
+ category
;
6444 if (detect_info
.found
& (1 << category
))
6449 if (null_byte_found
)
6451 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
6452 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
6454 for (i
= 0; i
< coding_category_raw_text
; i
++)
6456 category
= coding_priorities
[i
];
6457 this = coding_categories
+ category
;
6460 /* No coding system of this category is defined. */
6461 detect_info
.rejected
|= (1 << category
);
6463 else if (category
>= coding_category_raw_text
)
6465 else if (detect_info
.checked
& (1 << category
))
6467 if (detect_info
.found
& (1 << category
))
6470 else if ((*(this->detector
)) (coding
, &detect_info
)
6471 && detect_info
.found
& (1 << category
))
6473 if (category
== coding_category_utf_16_auto
)
6475 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6476 category
= coding_category_utf_16_le
;
6478 category
= coding_category_utf_16_be
;
6485 if (i
< coding_category_raw_text
)
6486 setup_coding_system (CODING_ID_NAME (this->id
), coding
);
6487 else if (null_byte_found
)
6488 setup_coding_system (Qno_conversion
, coding
);
6489 else if ((detect_info
.rejected
& CATEGORY_MASK_ANY
)
6490 == CATEGORY_MASK_ANY
)
6491 setup_coding_system (Qraw_text
, coding
);
6492 else if (detect_info
.rejected
)
6493 for (i
= 0; i
< coding_category_raw_text
; i
++)
6494 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
6496 this = coding_categories
+ coding_priorities
[i
];
6497 setup_coding_system (CODING_ID_NAME (this->id
), coding
);
6502 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6503 == coding_category_utf_8_auto
)
6505 Lisp_Object coding_systems
;
6506 struct coding_detection_info detect_info
;
6509 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6510 detect_info
.found
= detect_info
.rejected
= 0;
6511 coding
->head_ascii
= 0;
6512 if (CONSP (coding_systems
)
6513 && detect_coding_utf_8 (coding
, &detect_info
))
6515 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6516 setup_coding_system (XCAR (coding_systems
), coding
);
6518 setup_coding_system (XCDR (coding_systems
), coding
);
6521 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6522 == coding_category_utf_16_auto
)
6524 Lisp_Object coding_systems
;
6525 struct coding_detection_info detect_info
;
6528 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6529 detect_info
.found
= detect_info
.rejected
= 0;
6530 coding
->head_ascii
= 0;
6531 if (CONSP (coding_systems
)
6532 && detect_coding_utf_16 (coding
, &detect_info
))
6534 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6535 setup_coding_system (XCAR (coding_systems
), coding
);
6536 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6537 setup_coding_system (XCDR (coding_systems
), coding
);
6540 coding
->mode
= saved_mode
;
6546 struct coding_system
*coding
;
6548 Lisp_Object eol_type
;
6549 unsigned char *p
, *pbeg
, *pend
;
6551 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6552 if (EQ (eol_type
, Qunix
) || inhibit_eol_conversion
)
6555 if (NILP (coding
->dst_object
))
6556 pbeg
= coding
->destination
;
6558 pbeg
= BYTE_POS_ADDR (coding
->dst_pos_byte
);
6559 pend
= pbeg
+ coding
->produced
;
6561 if (VECTORP (eol_type
))
6563 int eol_seen
= EOL_SEEN_NONE
;
6565 for (p
= pbeg
; p
< pend
; p
++)
6568 eol_seen
|= EOL_SEEN_LF
;
6569 else if (*p
== '\r')
6571 if (p
+ 1 < pend
&& *(p
+ 1) == '\n')
6573 eol_seen
|= EOL_SEEN_CRLF
;
6577 eol_seen
|= EOL_SEEN_CR
;
6580 /* Handle DOS-style EOLs in a file with stray ^M characters. */
6581 if ((eol_seen
& EOL_SEEN_CRLF
) != 0
6582 && (eol_seen
& EOL_SEEN_CR
) != 0
6583 && (eol_seen
& EOL_SEEN_LF
) == 0)
6584 eol_seen
= EOL_SEEN_CRLF
;
6585 else if (eol_seen
!= EOL_SEEN_NONE
6586 && eol_seen
!= EOL_SEEN_LF
6587 && eol_seen
!= EOL_SEEN_CRLF
6588 && eol_seen
!= EOL_SEEN_CR
)
6589 eol_seen
= EOL_SEEN_LF
;
6590 if (eol_seen
!= EOL_SEEN_NONE
)
6591 eol_type
= adjust_coding_eol_type (coding
, eol_seen
);
6594 if (EQ (eol_type
, Qmac
))
6596 for (p
= pbeg
; p
< pend
; p
++)
6600 else if (EQ (eol_type
, Qdos
))
6604 if (NILP (coding
->dst_object
))
6606 /* Start deleting '\r' from the tail to minimize the memory
6608 for (p
= pend
- 2; p
>= pbeg
; p
--)
6611 safe_bcopy ((char *) (p
+ 1), (char *) p
, pend
-- - p
- 1);
6617 int pos_byte
= coding
->dst_pos_byte
;
6618 int pos
= coding
->dst_pos
;
6619 int pos_end
= pos
+ coding
->produced_char
- 1;
6621 while (pos
< pos_end
)
6623 p
= BYTE_POS_ADDR (pos_byte
);
6624 if (*p
== '\r' && p
[1] == '\n')
6626 del_range_2 (pos
, pos_byte
, pos
+ 1, pos_byte
+ 1, 0);
6631 if (coding
->dst_multibyte
)
6632 pos_byte
+= BYTES_BY_CHAR_HEAD (*p
);
6637 coding
->produced
-= n
;
6638 coding
->produced_char
-= n
;
6643 /* Return a translation table (or list of them) from coding system
6644 attribute vector ATTRS for encoding (ENCODEP is nonzero) or
6645 decoding (ENCODEP is zero). */
6648 get_translation_table (attrs
, encodep
, max_lookup
)
6650 int encodep
, *max_lookup
;
6652 Lisp_Object standard
, translation_table
;
6655 if (NILP (Venable_character_translation
))
6662 translation_table
= CODING_ATTR_ENCODE_TBL (attrs
),
6663 standard
= Vstandard_translation_table_for_encode
;
6665 translation_table
= CODING_ATTR_DECODE_TBL (attrs
),
6666 standard
= Vstandard_translation_table_for_decode
;
6667 if (NILP (translation_table
))
6668 translation_table
= standard
;
6671 if (SYMBOLP (translation_table
))
6672 translation_table
= Fget (translation_table
, Qtranslation_table
);
6673 else if (CONSP (translation_table
))
6675 translation_table
= Fcopy_sequence (translation_table
);
6676 for (val
= translation_table
; CONSP (val
); val
= XCDR (val
))
6677 if (SYMBOLP (XCAR (val
)))
6678 XSETCAR (val
, Fget (XCAR (val
), Qtranslation_table
));
6680 if (CHAR_TABLE_P (standard
))
6682 if (CONSP (translation_table
))
6683 translation_table
= nconc2 (translation_table
,
6684 Fcons (standard
, Qnil
));
6686 translation_table
= Fcons (translation_table
,
6687 Fcons (standard
, Qnil
));
6694 if (CHAR_TABLE_P (translation_table
)
6695 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table
)) > 1)
6697 val
= XCHAR_TABLE (translation_table
)->extras
[1];
6698 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6699 *max_lookup
= XFASTINT (val
);
6701 else if (CONSP (translation_table
))
6703 Lisp_Object tail
, val
;
6705 for (tail
= translation_table
; CONSP (tail
); tail
= XCDR (tail
))
6706 if (CHAR_TABLE_P (XCAR (tail
))
6707 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail
))) > 1)
6709 val
= XCHAR_TABLE (XCAR (tail
))->extras
[1];
6710 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6711 *max_lookup
= XFASTINT (val
);
6715 return translation_table
;
6718 #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \
6721 if (CHAR_TABLE_P (table)) \
6723 trans = CHAR_TABLE_REF (table, c); \
6724 if (CHARACTERP (trans)) \
6725 c = XFASTINT (trans), trans = Qnil; \
6727 else if (CONSP (table)) \
6731 for (tail = table; CONSP (tail); tail = XCDR (tail)) \
6732 if (CHAR_TABLE_P (XCAR (tail))) \
6734 trans = CHAR_TABLE_REF (XCAR (tail), c); \
6735 if (CHARACTERP (trans)) \
6736 c = XFASTINT (trans), trans = Qnil; \
6737 else if (! NILP (trans)) \
6744 /* Return a translation of character(s) at BUF according to TRANS.
6745 TRANS is TO-CHAR or ((FROM . TO) ...) where
6746 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...].
6747 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a
6748 translation is found, and Qnil if not found..
6749 If BUF is too short to lookup characters in FROM, return Qt. */
6752 get_translation (trans
, buf
, buf_end
)
6757 if (INTEGERP (trans
))
6759 for (; CONSP (trans
); trans
= XCDR (trans
))
6761 Lisp_Object val
= XCAR (trans
);
6762 Lisp_Object from
= XCAR (val
);
6763 int len
= ASIZE (from
);
6766 for (i
= 0; i
< len
; i
++)
6768 if (buf
+ i
== buf_end
)
6770 if (XINT (AREF (from
, i
)) != buf
[i
])
6781 produce_chars (coding
, translation_table
, last_block
)
6782 struct coding_system
*coding
;
6783 Lisp_Object translation_table
;
6786 unsigned char *dst
= coding
->destination
+ coding
->produced
;
6787 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
6789 EMACS_INT produced_chars
= 0;
6792 if (! coding
->chars_at_source
)
6794 /* Source characters are in coding->charbuf. */
6795 int *buf
= coding
->charbuf
;
6796 int *buf_end
= buf
+ coding
->charbuf_used
;
6798 if (EQ (coding
->src_object
, coding
->dst_object
))
6800 coding_set_source (coding
);
6801 dst_end
= ((unsigned char *) coding
->source
) + coding
->consumed
;
6804 while (buf
< buf_end
)
6810 int from_nchars
= 1, to_nchars
= 1;
6811 Lisp_Object trans
= Qnil
;
6813 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
6816 trans
= get_translation (trans
, buf
, buf_end
);
6817 if (INTEGERP (trans
))
6819 else if (CONSP (trans
))
6821 from_nchars
= ASIZE (XCAR (trans
));
6822 trans
= XCDR (trans
);
6823 if (INTEGERP (trans
))
6827 to_nchars
= ASIZE (trans
);
6828 c
= XINT (AREF (trans
, 0));
6831 else if (EQ (trans
, Qt
) && ! last_block
)
6835 if (dst
+ MAX_MULTIBYTE_LENGTH
* to_nchars
> dst_end
)
6837 dst
= alloc_destination (coding
,
6839 + MAX_MULTIBYTE_LENGTH
* to_nchars
,
6841 if (EQ (coding
->src_object
, coding
->dst_object
))
6843 coding_set_source (coding
);
6844 dst_end
= (((unsigned char *) coding
->source
)
6845 + coding
->consumed
);
6848 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6851 for (i
= 0; i
< to_nchars
; i
++)
6854 c
= XINT (AREF (trans
, i
));
6855 if (coding
->dst_multibyte
6856 || ! CHAR_BYTE8_P (c
))
6857 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
6859 *dst
++ = CHAR_TO_BYTE8 (c
);
6861 produced_chars
+= to_nchars
;
6865 /* This is an annotation datum. (-C) is the length. */
6868 carryover
= buf_end
- buf
;
6872 /* Source characters are at coding->source. */
6873 const unsigned char *src
= coding
->source
;
6874 const unsigned char *src_end
= src
+ coding
->consumed
;
6876 if (EQ (coding
->dst_object
, coding
->src_object
))
6877 dst_end
= (unsigned char *) src
;
6878 if (coding
->src_multibyte
!= coding
->dst_multibyte
)
6880 if (coding
->src_multibyte
)
6883 EMACS_INT consumed_chars
= 0;
6887 const unsigned char *src_base
= src
;
6893 if (EQ (coding
->src_object
, coding
->dst_object
))
6894 dst_end
= (unsigned char *) src
;
6897 EMACS_INT offset
= src
- coding
->source
;
6899 dst
= alloc_destination (coding
, src_end
- src
+ 1,
6901 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6902 coding_set_source (coding
);
6903 src
= coding
->source
+ offset
;
6904 src_end
= coding
->source
+ coding
->src_bytes
;
6905 if (EQ (coding
->src_object
, coding
->dst_object
))
6906 dst_end
= (unsigned char *) src
;
6916 while (src
< src_end
)
6921 if (dst
>= dst_end
- 1)
6923 if (EQ (coding
->src_object
, coding
->dst_object
))
6924 dst_end
= (unsigned char *) src
;
6925 if (dst
>= dst_end
- 1)
6927 EMACS_INT offset
= src
- coding
->source
;
6928 EMACS_INT more_bytes
;
6930 if (EQ (coding
->src_object
, coding
->dst_object
))
6931 more_bytes
= ((src_end
- src
) / 2) + 2;
6933 more_bytes
= src_end
- src
+ 2;
6934 dst
= alloc_destination (coding
, more_bytes
, dst
);
6935 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6936 coding_set_source (coding
);
6937 src
= coding
->source
+ offset
;
6938 src_end
= coding
->source
+ coding
->src_bytes
;
6939 if (EQ (coding
->src_object
, coding
->dst_object
))
6940 dst_end
= (unsigned char *) src
;
6948 if (!EQ (coding
->src_object
, coding
->dst_object
))
6950 EMACS_INT require
= coding
->src_bytes
- coding
->dst_bytes
;
6954 EMACS_INT offset
= src
- coding
->source
;
6956 dst
= alloc_destination (coding
, require
, dst
);
6957 coding_set_source (coding
);
6958 src
= coding
->source
+ offset
;
6959 src_end
= coding
->source
+ coding
->src_bytes
;
6962 produced_chars
= coding
->consumed_char
;
6963 while (src
< src_end
)
6968 produced
= dst
- (coding
->destination
+ coding
->produced
);
6969 if (BUFFERP (coding
->dst_object
) && produced_chars
> 0)
6970 insert_from_gap (produced_chars
, produced
);
6971 coding
->produced
+= produced
;
6972 coding
->produced_char
+= produced_chars
;
6976 /* Compose text in CODING->object according to the annotation data at
6977 CHARBUF. CHARBUF is an array:
6978 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ]
6982 produce_composition (coding
, charbuf
, pos
)
6983 struct coding_system
*coding
;
6989 enum composition_method method
;
6990 Lisp_Object components
;
6992 len
= -charbuf
[0] - MAX_ANNOTATION_LENGTH
;
6993 to
= pos
+ charbuf
[2];
6994 method
= (enum composition_method
) (charbuf
[4]);
6996 if (method
== COMPOSITION_RELATIVE
)
7000 Lisp_Object args
[MAX_COMPOSITION_COMPONENTS
* 2 - 1];
7003 if (method
== COMPOSITION_WITH_RULE
)
7004 len
= charbuf
[2] * 3 - 2;
7005 charbuf
+= MAX_ANNOTATION_LENGTH
;
7006 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */
7007 for (i
= j
= 0; i
< len
&& charbuf
[i
] != -1; i
++, j
++)
7009 if (charbuf
[i
] >= 0)
7010 args
[j
] = make_number (charbuf
[i
]);
7014 args
[j
] = make_number (charbuf
[i
] % 0x100);
7017 components
= (i
== j
? Fstring (j
, args
) : Fvector (j
, args
));
7019 compose_text (pos
, to
, components
, Qnil
, coding
->dst_object
);
7023 /* Put `charset' property on text in CODING->object according to
7024 the annotation data at CHARBUF. CHARBUF is an array:
7025 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ]
7029 produce_charset (coding
, charbuf
, pos
)
7030 struct coding_system
*coding
;
7034 EMACS_INT from
= pos
- charbuf
[2];
7035 struct charset
*charset
= CHARSET_FROM_ID (charbuf
[3]);
7037 Fput_text_property (make_number (from
), make_number (pos
),
7038 Qcharset
, CHARSET_NAME (charset
),
7039 coding
->dst_object
);
7043 #define CHARBUF_SIZE 0x4000
7045 #define ALLOC_CONVERSION_WORK_AREA(coding) \
7047 int size = CHARBUF_SIZE; \
7049 coding->charbuf = NULL; \
7050 while (size > 1024) \
7052 coding->charbuf = (int *) alloca (sizeof (int) * size); \
7053 if (coding->charbuf) \
7057 if (! coding->charbuf) \
7059 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_MEM); \
7060 return coding->result; \
7062 coding->charbuf_size = size; \
7067 produce_annotation (coding
, pos
)
7068 struct coding_system
*coding
;
7071 int *charbuf
= coding
->charbuf
;
7072 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
7074 if (NILP (coding
->dst_object
))
7077 while (charbuf
< charbuf_end
)
7083 int len
= -*charbuf
;
7088 case CODING_ANNOTATE_COMPOSITION_MASK
:
7089 produce_composition (coding
, charbuf
, pos
);
7091 case CODING_ANNOTATE_CHARSET_MASK
:
7092 produce_charset (coding
, charbuf
, pos
);
7100 /* Decode the data at CODING->src_object into CODING->dst_object.
7101 CODING->src_object is a buffer, a string, or nil.
7102 CODING->dst_object is a buffer.
7104 If CODING->src_object is a buffer, it must be the current buffer.
7105 In this case, if CODING->src_pos is positive, it is a position of
7106 the source text in the buffer, otherwise, the source text is in the
7107 gap area of the buffer, and CODING->src_pos specifies the offset of
7108 the text from GPT (which must be the same as PT). If this is the
7109 same buffer as CODING->dst_object, CODING->src_pos must be
7112 If CODING->src_object is a string, CODING->src_pos is an index to
7115 If CODING->src_object is nil, CODING->source must already point to
7116 the non-relocatable memory area. In this case, CODING->src_pos is
7117 an offset from CODING->source.
7119 The decoded data is inserted at the current point of the buffer
7124 decode_coding (coding
)
7125 struct coding_system
*coding
;
7128 Lisp_Object undo_list
;
7129 Lisp_Object translation_table
;
7130 struct ccl_spec cclspec
;
7134 if (BUFFERP (coding
->src_object
)
7135 && coding
->src_pos
> 0
7136 && coding
->src_pos
< GPT
7137 && coding
->src_pos
+ coding
->src_chars
> GPT
)
7138 move_gap_both (coding
->src_pos
, coding
->src_pos_byte
);
7141 if (BUFFERP (coding
->dst_object
))
7143 if (current_buffer
!= XBUFFER (coding
->dst_object
))
7144 set_buffer_internal (XBUFFER (coding
->dst_object
));
7146 move_gap_both (PT
, PT_BYTE
);
7147 undo_list
= current_buffer
->undo_list
;
7148 current_buffer
->undo_list
= Qt
;
7151 coding
->consumed
= coding
->consumed_char
= 0;
7152 coding
->produced
= coding
->produced_char
= 0;
7153 coding
->chars_at_source
= 0;
7154 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7157 ALLOC_CONVERSION_WORK_AREA (coding
);
7159 attrs
= CODING_ID_ATTRS (coding
->id
);
7160 translation_table
= get_translation_table (attrs
, 0, NULL
);
7163 if (coding
->decoder
== decode_coding_ccl
)
7165 coding
->spec
.ccl
= &cclspec
;
7166 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_DECODER (coding
));
7170 EMACS_INT pos
= coding
->dst_pos
+ coding
->produced_char
;
7172 coding_set_source (coding
);
7173 coding
->annotated
= 0;
7174 coding
->charbuf_used
= carryover
;
7175 (*(coding
->decoder
)) (coding
);
7176 coding_set_destination (coding
);
7177 carryover
= produce_chars (coding
, translation_table
, 0);
7178 if (coding
->annotated
)
7179 produce_annotation (coding
, pos
);
7180 for (i
= 0; i
< carryover
; i
++)
7182 = coding
->charbuf
[coding
->charbuf_used
- carryover
+ i
];
7184 while (coding
->result
== CODING_RESULT_INSUFFICIENT_DST
7185 || (coding
->consumed
< coding
->src_bytes
7186 && (coding
->result
== CODING_RESULT_SUCCESS
7187 || coding
->result
== CODING_RESULT_INVALID_SRC
)));
7191 coding_set_destination (coding
);
7192 coding
->charbuf_used
= carryover
;
7193 produce_chars (coding
, translation_table
, 1);
7196 coding
->carryover_bytes
= 0;
7197 if (coding
->consumed
< coding
->src_bytes
)
7199 int nbytes
= coding
->src_bytes
- coding
->consumed
;
7200 const unsigned char *src
;
7202 coding_set_source (coding
);
7203 coding_set_destination (coding
);
7204 src
= coding
->source
+ coding
->consumed
;
7206 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
7208 /* Flush out unprocessed data as binary chars. We are sure
7209 that the number of data is less than the size of
7211 coding
->charbuf_used
= 0;
7212 coding
->chars_at_source
= 0;
7214 while (nbytes
-- > 0)
7219 c
= BYTE8_TO_CHAR (c
);
7220 coding
->charbuf
[coding
->charbuf_used
++] = c
;
7222 produce_chars (coding
, Qnil
, 1);
7226 /* Record unprocessed bytes in coding->carryover. We are
7227 sure that the number of data is less than the size of
7228 coding->carryover. */
7229 unsigned char *p
= coding
->carryover
;
7231 if (nbytes
> sizeof coding
->carryover
)
7232 nbytes
= sizeof coding
->carryover
;
7233 coding
->carryover_bytes
= nbytes
;
7234 while (nbytes
-- > 0)
7237 coding
->consumed
= coding
->src_bytes
;
7240 if (! EQ (CODING_ID_EOL_TYPE (coding
->id
), Qunix
)
7241 && !inhibit_eol_conversion
)
7242 decode_eol (coding
);
7243 if (BUFFERP (coding
->dst_object
))
7245 current_buffer
->undo_list
= undo_list
;
7246 record_insert (coding
->dst_pos
, coding
->produced_char
);
7248 return coding
->result
;
7252 /* Extract an annotation datum from a composition starting at POS and
7253 ending before LIMIT of CODING->src_object (buffer or string), store
7254 the data in BUF, set *STOP to a starting position of the next
7255 composition (if any) or to LIMIT, and return the address of the
7256 next element of BUF.
7258 If such an annotation is not found, set *STOP to a starting
7259 position of a composition after POS (if any) or to LIMIT, and
7263 handle_composition_annotation (pos
, limit
, coding
, buf
, stop
)
7264 EMACS_INT pos
, limit
;
7265 struct coding_system
*coding
;
7269 EMACS_INT start
, end
;
7272 if (! find_composition (pos
, limit
, &start
, &end
, &prop
, coding
->src_object
)
7275 else if (start
> pos
)
7281 /* We found a composition. Store the corresponding
7282 annotation data in BUF. */
7284 enum composition_method method
= COMPOSITION_METHOD (prop
);
7285 int nchars
= COMPOSITION_LENGTH (prop
);
7287 ADD_COMPOSITION_DATA (buf
, nchars
, 0, method
);
7288 if (method
!= COMPOSITION_RELATIVE
)
7290 Lisp_Object components
;
7293 components
= COMPOSITION_COMPONENTS (prop
);
7294 if (VECTORP (components
))
7296 len
= XVECTOR (components
)->size
;
7297 for (i
= 0; i
< len
; i
++)
7298 *buf
++ = XINT (AREF (components
, i
));
7300 else if (STRINGP (components
))
7302 len
= SCHARS (components
);
7306 FETCH_STRING_CHAR_ADVANCE (*buf
, components
, i
, i_byte
);
7310 else if (INTEGERP (components
))
7313 *buf
++ = XINT (components
);
7315 else if (CONSP (components
))
7317 for (len
= 0; CONSP (components
);
7318 len
++, components
= XCDR (components
))
7319 *buf
++ = XINT (XCAR (components
));
7327 if (find_composition (end
, limit
, &start
, &end
, &prop
,
7338 /* Extract an annotation datum from a text property `charset' at POS of
7339 CODING->src_object (buffer of string), store the data in BUF, set
7340 *STOP to the position where the value of `charset' property changes
7341 (limiting by LIMIT), and return the address of the next element of
7344 If the property value is nil, set *STOP to the position where the
7345 property value is non-nil (limiting by LIMIT), and return BUF. */
7348 handle_charset_annotation (pos
, limit
, coding
, buf
, stop
)
7349 EMACS_INT pos
, limit
;
7350 struct coding_system
*coding
;
7354 Lisp_Object val
, next
;
7357 val
= Fget_text_property (make_number (pos
), Qcharset
, coding
->src_object
);
7358 if (! NILP (val
) && CHARSETP (val
))
7359 id
= XINT (CHARSET_SYMBOL_ID (val
));
7362 ADD_CHARSET_DATA (buf
, 0, id
);
7363 next
= Fnext_single_property_change (make_number (pos
), Qcharset
,
7365 make_number (limit
));
7366 *stop
= XINT (next
);
7372 consume_chars (coding
, translation_table
, max_lookup
)
7373 struct coding_system
*coding
;
7374 Lisp_Object translation_table
;
7377 int *buf
= coding
->charbuf
;
7378 int *buf_end
= coding
->charbuf
+ coding
->charbuf_size
;
7379 const unsigned char *src
= coding
->source
+ coding
->consumed
;
7380 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
7381 EMACS_INT pos
= coding
->src_pos
+ coding
->consumed_char
;
7382 EMACS_INT end_pos
= coding
->src_pos
+ coding
->src_chars
;
7383 int multibytep
= coding
->src_multibyte
;
7384 Lisp_Object eol_type
;
7386 EMACS_INT stop
, stop_composition
, stop_charset
;
7387 int *lookup_buf
= NULL
;
7389 if (! NILP (translation_table
))
7390 lookup_buf
= alloca (sizeof (int) * max_lookup
);
7392 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
7393 if (VECTORP (eol_type
))
7396 /* Note: composition handling is not yet implemented. */
7397 coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
7399 if (NILP (coding
->src_object
))
7400 stop
= stop_composition
= stop_charset
= end_pos
;
7403 if (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
)
7404 stop
= stop_composition
= pos
;
7406 stop
= stop_composition
= end_pos
;
7407 if (coding
->common_flags
& CODING_ANNOTATE_CHARSET_MASK
)
7408 stop
= stop_charset
= pos
;
7410 stop_charset
= end_pos
;
7413 /* Compensate for CRLF and conversion. */
7414 buf_end
-= 1 + MAX_ANNOTATION_LENGTH
;
7415 while (buf
< buf_end
)
7423 if (pos
== stop_composition
)
7424 buf
= handle_composition_annotation (pos
, end_pos
, coding
,
7425 buf
, &stop_composition
);
7426 if (pos
== stop_charset
)
7427 buf
= handle_charset_annotation (pos
, end_pos
, coding
,
7428 buf
, &stop_charset
);
7429 stop
= (stop_composition
< stop_charset
7430 ? stop_composition
: stop_charset
);
7437 if (coding
->encoder
== encode_coding_raw_text
7438 || coding
->encoder
== encode_coding_ccl
)
7440 else if ((bytes
= MULTIBYTE_LENGTH (src
, src_end
)) > 0)
7441 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
+= bytes
;
7443 c
= BYTE8_TO_CHAR (*src
), src
++, pos
++;
7446 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
++;
7447 if ((c
== '\r') && (coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
))
7449 if (! EQ (eol_type
, Qunix
))
7453 if (EQ (eol_type
, Qdos
))
7461 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7466 int from_nchars
= 1, to_nchars
= 1;
7467 int *lookup_buf_end
;
7468 const unsigned char *p
= src
;
7472 for (i
= 1; i
< max_lookup
&& p
< src_end
; i
++)
7473 lookup_buf
[i
] = STRING_CHAR_ADVANCE (p
);
7474 lookup_buf_end
= lookup_buf
+ i
;
7475 trans
= get_translation (trans
, lookup_buf
, lookup_buf_end
);
7476 if (INTEGERP (trans
))
7478 else if (CONSP (trans
))
7480 from_nchars
= ASIZE (XCAR (trans
));
7481 trans
= XCDR (trans
);
7482 if (INTEGERP (trans
))
7486 to_nchars
= ASIZE (trans
);
7487 if (buf
+ to_nchars
> buf_end
)
7489 c
= XINT (AREF (trans
, 0));
7495 for (i
= 1; i
< to_nchars
; i
++)
7496 *buf
++ = XINT (AREF (trans
, i
));
7497 for (i
= 1; i
< from_nchars
; i
++, pos
++)
7498 src
+= MULTIBYTE_LENGTH_NO_CHECK (src
);
7502 coding
->consumed
= src
- coding
->source
;
7503 coding
->consumed_char
= pos
- coding
->src_pos
;
7504 coding
->charbuf_used
= buf
- coding
->charbuf
;
7505 coding
->chars_at_source
= 0;
7509 /* Encode the text at CODING->src_object into CODING->dst_object.
7510 CODING->src_object is a buffer or a string.
7511 CODING->dst_object is a buffer or nil.
7513 If CODING->src_object is a buffer, it must be the current buffer.
7514 In this case, if CODING->src_pos is positive, it is a position of
7515 the source text in the buffer, otherwise. the source text is in the
7516 gap area of the buffer, and coding->src_pos specifies the offset of
7517 the text from GPT (which must be the same as PT). If this is the
7518 same buffer as CODING->dst_object, CODING->src_pos must be
7519 negative and CODING should not have `pre-write-conversion'.
7521 If CODING->src_object is a string, CODING should not have
7522 `pre-write-conversion'.
7524 If CODING->dst_object is a buffer, the encoded data is inserted at
7525 the current point of that buffer.
7527 If CODING->dst_object is nil, the encoded data is placed at the
7528 memory area specified by CODING->destination. */
7531 encode_coding (coding
)
7532 struct coding_system
*coding
;
7535 Lisp_Object translation_table
;
7538 attrs
= CODING_ID_ATTRS (coding
->id
);
7539 if (coding
->encoder
== encode_coding_raw_text
)
7540 translation_table
= Qnil
, max_lookup
= 0;
7542 translation_table
= get_translation_table (attrs
, 1, &max_lookup
);
7544 if (BUFFERP (coding
->dst_object
))
7546 set_buffer_internal (XBUFFER (coding
->dst_object
));
7547 coding
->dst_multibyte
7548 = ! NILP (current_buffer
->enable_multibyte_characters
);
7551 coding
->consumed
= coding
->consumed_char
= 0;
7552 coding
->produced
= coding
->produced_char
= 0;
7553 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7556 ALLOC_CONVERSION_WORK_AREA (coding
);
7559 coding_set_source (coding
);
7560 consume_chars (coding
, translation_table
, max_lookup
);
7561 coding_set_destination (coding
);
7562 (*(coding
->encoder
)) (coding
);
7563 } while (coding
->consumed_char
< coding
->src_chars
);
7565 if (BUFFERP (coding
->dst_object
) && coding
->produced_char
> 0)
7566 insert_from_gap (coding
->produced_char
, coding
->produced
);
7568 return (coding
->result
);
7572 /* Name (or base name) of work buffer for code conversion. */
7573 static Lisp_Object Vcode_conversion_workbuf_name
;
7575 /* A working buffer used by the top level conversion. Once it is
7576 created, it is never destroyed. It has the name
7577 Vcode_conversion_workbuf_name. The other working buffers are
7578 destroyed after the use is finished, and their names are modified
7579 versions of Vcode_conversion_workbuf_name. */
7580 static Lisp_Object Vcode_conversion_reused_workbuf
;
7582 /* 1 iff Vcode_conversion_reused_workbuf is already in use. */
7583 static int reused_workbuf_in_use
;
7586 /* Return a working buffer of code convesion. MULTIBYTE specifies the
7587 multibyteness of returning buffer. */
7590 make_conversion_work_buffer (multibyte
)
7593 Lisp_Object name
, workbuf
;
7594 struct buffer
*current
;
7596 if (reused_workbuf_in_use
++)
7598 name
= Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name
, Qnil
);
7599 workbuf
= Fget_buffer_create (name
);
7603 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf
)))
7604 Vcode_conversion_reused_workbuf
7605 = Fget_buffer_create (Vcode_conversion_workbuf_name
);
7606 workbuf
= Vcode_conversion_reused_workbuf
;
7608 current
= current_buffer
;
7609 set_buffer_internal (XBUFFER (workbuf
));
7610 /* We can't allow modification hooks to run in the work buffer. For
7611 instance, directory_files_internal assumes that file decoding
7612 doesn't compile new regexps. */
7613 Fset (Fmake_local_variable (Qinhibit_modification_hooks
), Qt
);
7615 current_buffer
->undo_list
= Qt
;
7616 current_buffer
->enable_multibyte_characters
= multibyte
? Qt
: Qnil
;
7617 set_buffer_internal (current
);
7623 code_conversion_restore (arg
)
7626 Lisp_Object current
, workbuf
;
7627 struct gcpro gcpro1
;
7630 current
= XCAR (arg
);
7631 workbuf
= XCDR (arg
);
7632 if (! NILP (workbuf
))
7634 if (EQ (workbuf
, Vcode_conversion_reused_workbuf
))
7635 reused_workbuf_in_use
= 0;
7636 else if (! NILP (Fbuffer_live_p (workbuf
)))
7637 Fkill_buffer (workbuf
);
7639 set_buffer_internal (XBUFFER (current
));
7645 code_conversion_save (with_work_buf
, multibyte
)
7646 int with_work_buf
, multibyte
;
7648 Lisp_Object workbuf
= Qnil
;
7651 workbuf
= make_conversion_work_buffer (multibyte
);
7652 record_unwind_protect (code_conversion_restore
,
7653 Fcons (Fcurrent_buffer (), workbuf
));
7658 decode_coding_gap (coding
, chars
, bytes
)
7659 struct coding_system
*coding
;
7660 EMACS_INT chars
, bytes
;
7662 int count
= specpdl_ptr
- specpdl
;
7665 code_conversion_save (0, 0);
7667 coding
->src_object
= Fcurrent_buffer ();
7668 coding
->src_chars
= chars
;
7669 coding
->src_bytes
= bytes
;
7670 coding
->src_pos
= -chars
;
7671 coding
->src_pos_byte
= -bytes
;
7672 coding
->src_multibyte
= chars
< bytes
;
7673 coding
->dst_object
= coding
->src_object
;
7674 coding
->dst_pos
= PT
;
7675 coding
->dst_pos_byte
= PT_BYTE
;
7676 coding
->dst_multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
7678 if (CODING_REQUIRE_DETECTION (coding
))
7679 detect_coding (coding
);
7681 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
7682 current_buffer
->text
->inhibit_shrinking
= 1;
7683 decode_coding (coding
);
7684 current_buffer
->text
->inhibit_shrinking
= 0;
7686 attrs
= CODING_ID_ATTRS (coding
->id
);
7687 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7689 EMACS_INT prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7692 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7693 val
= call1 (CODING_ATTR_POST_READ (attrs
),
7694 make_number (coding
->produced_char
));
7696 coding
->produced_char
+= Z
- prev_Z
;
7697 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7700 unbind_to (count
, Qnil
);
7701 return coding
->result
;
7705 encode_coding_gap (coding
, chars
, bytes
)
7706 struct coding_system
*coding
;
7707 EMACS_INT chars
, bytes
;
7709 int count
= specpdl_ptr
- specpdl
;
7711 code_conversion_save (0, 0);
7713 coding
->src_object
= Fcurrent_buffer ();
7714 coding
->src_chars
= chars
;
7715 coding
->src_bytes
= bytes
;
7716 coding
->src_pos
= -chars
;
7717 coding
->src_pos_byte
= -bytes
;
7718 coding
->src_multibyte
= chars
< bytes
;
7719 coding
->dst_object
= coding
->src_object
;
7720 coding
->dst_pos
= PT
;
7721 coding
->dst_pos_byte
= PT_BYTE
;
7723 encode_coding (coding
);
7725 unbind_to (count
, Qnil
);
7726 return coding
->result
;
7730 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in
7731 SRC_OBJECT into DST_OBJECT by coding context CODING.
7733 SRC_OBJECT is a buffer, a string, or Qnil.
7735 If it is a buffer, the text is at point of the buffer. FROM and TO
7736 are positions in the buffer.
7738 If it is a string, the text is at the beginning of the string.
7739 FROM and TO are indices to the string.
7741 If it is nil, the text is at coding->source. FROM and TO are
7742 indices to coding->source.
7744 DST_OBJECT is a buffer, Qt, or Qnil.
7746 If it is a buffer, the decoded text is inserted at point of the
7747 buffer. If the buffer is the same as SRC_OBJECT, the source text
7750 If it is Qt, a string is made from the decoded text, and
7751 set in CODING->dst_object.
7753 If it is Qnil, the decoded text is stored at CODING->destination.
7754 The caller must allocate CODING->dst_bytes bytes at
7755 CODING->destination by xmalloc. If the decoded text is longer than
7756 CODING->dst_bytes, CODING->destination is relocated by xrealloc.
7760 decode_coding_object (coding
, src_object
, from
, from_byte
, to
, to_byte
,
7762 struct coding_system
*coding
;
7763 Lisp_Object src_object
;
7764 EMACS_INT from
, from_byte
, to
, to_byte
;
7765 Lisp_Object dst_object
;
7767 int count
= specpdl_ptr
- specpdl
;
7768 unsigned char *destination
;
7769 EMACS_INT dst_bytes
;
7770 EMACS_INT chars
= to
- from
;
7771 EMACS_INT bytes
= to_byte
- from_byte
;
7773 int saved_pt
= -1, saved_pt_byte
;
7774 int need_marker_adjustment
= 0;
7775 Lisp_Object old_deactivate_mark
;
7777 old_deactivate_mark
= Vdeactivate_mark
;
7779 if (NILP (dst_object
))
7781 destination
= coding
->destination
;
7782 dst_bytes
= coding
->dst_bytes
;
7785 coding
->src_object
= src_object
;
7786 coding
->src_chars
= chars
;
7787 coding
->src_bytes
= bytes
;
7788 coding
->src_multibyte
= chars
< bytes
;
7790 if (STRINGP (src_object
))
7792 coding
->src_pos
= from
;
7793 coding
->src_pos_byte
= from_byte
;
7795 else if (BUFFERP (src_object
))
7797 set_buffer_internal (XBUFFER (src_object
));
7799 move_gap_both (from
, from_byte
);
7800 if (EQ (src_object
, dst_object
))
7802 struct Lisp_Marker
*tail
;
7804 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7806 tail
->need_adjustment
7807 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
7808 need_marker_adjustment
|= tail
->need_adjustment
;
7810 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7811 TEMP_SET_PT_BOTH (from
, from_byte
);
7812 current_buffer
->text
->inhibit_shrinking
= 1;
7813 del_range_both (from
, from_byte
, to
, to_byte
, 1);
7814 coding
->src_pos
= -chars
;
7815 coding
->src_pos_byte
= -bytes
;
7819 coding
->src_pos
= from
;
7820 coding
->src_pos_byte
= from_byte
;
7824 if (CODING_REQUIRE_DETECTION (coding
))
7825 detect_coding (coding
);
7826 attrs
= CODING_ID_ATTRS (coding
->id
);
7828 if (EQ (dst_object
, Qt
)
7829 || (! NILP (CODING_ATTR_POST_READ (attrs
))
7830 && NILP (dst_object
)))
7832 coding
->dst_multibyte
= !CODING_FOR_UNIBYTE (coding
);
7833 coding
->dst_object
= code_conversion_save (1, coding
->dst_multibyte
);
7834 coding
->dst_pos
= BEG
;
7835 coding
->dst_pos_byte
= BEG_BYTE
;
7837 else if (BUFFERP (dst_object
))
7839 code_conversion_save (0, 0);
7840 coding
->dst_object
= dst_object
;
7841 coding
->dst_pos
= BUF_PT (XBUFFER (dst_object
));
7842 coding
->dst_pos_byte
= BUF_PT_BYTE (XBUFFER (dst_object
));
7843 coding
->dst_multibyte
7844 = ! NILP (XBUFFER (dst_object
)->enable_multibyte_characters
);
7848 code_conversion_save (0, 0);
7849 coding
->dst_object
= Qnil
;
7850 /* Most callers presume this will return a multibyte result, and they
7851 won't use `binary' or `raw-text' anyway, so let's not worry about
7852 CODING_FOR_UNIBYTE. */
7853 coding
->dst_multibyte
= 1;
7856 decode_coding (coding
);
7858 if (BUFFERP (coding
->dst_object
))
7859 set_buffer_internal (XBUFFER (coding
->dst_object
));
7861 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7863 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
7864 EMACS_INT prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7867 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7868 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
7869 old_deactivate_mark
);
7870 val
= safe_call1 (CODING_ATTR_POST_READ (attrs
),
7871 make_number (coding
->produced_char
));
7874 coding
->produced_char
+= Z
- prev_Z
;
7875 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7878 if (EQ (dst_object
, Qt
))
7880 coding
->dst_object
= Fbuffer_string ();
7882 else if (NILP (dst_object
) && BUFFERP (coding
->dst_object
))
7884 set_buffer_internal (XBUFFER (coding
->dst_object
));
7885 if (dst_bytes
< coding
->produced
)
7887 destination
= xrealloc (destination
, coding
->produced
);
7890 record_conversion_result (coding
,
7891 CODING_RESULT_INSUFFICIENT_MEM
);
7892 unbind_to (count
, Qnil
);
7895 if (BEGV
< GPT
&& GPT
< BEGV
+ coding
->produced_char
)
7896 move_gap_both (BEGV
, BEGV_BYTE
);
7897 bcopy (BEGV_ADDR
, destination
, coding
->produced
);
7898 coding
->destination
= destination
;
7904 /* This is the case of:
7905 (BUFFERP (src_object) && EQ (src_object, dst_object))
7906 As we have moved PT while replacing the original buffer
7907 contents, we must recover it now. */
7908 set_buffer_internal (XBUFFER (src_object
));
7909 current_buffer
->text
->inhibit_shrinking
= 0;
7910 if (saved_pt
< from
)
7911 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
7912 else if (saved_pt
< from
+ chars
)
7913 TEMP_SET_PT_BOTH (from
, from_byte
);
7914 else if (! NILP (current_buffer
->enable_multibyte_characters
))
7915 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
7916 saved_pt_byte
+ (coding
->produced
- bytes
));
7918 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
7919 saved_pt_byte
+ (coding
->produced
- bytes
));
7921 if (need_marker_adjustment
)
7923 struct Lisp_Marker
*tail
;
7925 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7926 if (tail
->need_adjustment
)
7928 tail
->need_adjustment
= 0;
7929 if (tail
->insertion_type
)
7931 tail
->bytepos
= from_byte
;
7932 tail
->charpos
= from
;
7936 tail
->bytepos
= from_byte
+ coding
->produced
;
7938 = (NILP (current_buffer
->enable_multibyte_characters
)
7939 ? tail
->bytepos
: from
+ coding
->produced_char
);
7945 Vdeactivate_mark
= old_deactivate_mark
;
7946 unbind_to (count
, coding
->dst_object
);
7951 encode_coding_object (coding
, src_object
, from
, from_byte
, to
, to_byte
,
7953 struct coding_system
*coding
;
7954 Lisp_Object src_object
;
7955 EMACS_INT from
, from_byte
, to
, to_byte
;
7956 Lisp_Object dst_object
;
7958 int count
= specpdl_ptr
- specpdl
;
7959 EMACS_INT chars
= to
- from
;
7960 EMACS_INT bytes
= to_byte
- from_byte
;
7962 int saved_pt
= -1, saved_pt_byte
;
7963 int need_marker_adjustment
= 0;
7964 int kill_src_buffer
= 0;
7965 Lisp_Object old_deactivate_mark
;
7967 old_deactivate_mark
= Vdeactivate_mark
;
7969 coding
->src_object
= src_object
;
7970 coding
->src_chars
= chars
;
7971 coding
->src_bytes
= bytes
;
7972 coding
->src_multibyte
= chars
< bytes
;
7974 attrs
= CODING_ID_ATTRS (coding
->id
);
7976 if (EQ (src_object
, dst_object
))
7978 struct Lisp_Marker
*tail
;
7980 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7982 tail
->need_adjustment
7983 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
7984 need_marker_adjustment
|= tail
->need_adjustment
;
7988 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
7990 coding
->src_object
= code_conversion_save (1, coding
->src_multibyte
);
7991 set_buffer_internal (XBUFFER (coding
->src_object
));
7992 if (STRINGP (src_object
))
7993 insert_from_string (src_object
, from
, from_byte
, chars
, bytes
, 0);
7994 else if (BUFFERP (src_object
))
7995 insert_from_buffer (XBUFFER (src_object
), from
, chars
, 0);
7997 insert_1_both (coding
->source
+ from
, chars
, bytes
, 0, 0, 0);
7999 if (EQ (src_object
, dst_object
))
8001 set_buffer_internal (XBUFFER (src_object
));
8002 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8003 del_range_both (from
, from_byte
, to
, to_byte
, 1);
8004 set_buffer_internal (XBUFFER (coding
->src_object
));
8008 Lisp_Object args
[3];
8009 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
8011 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
8012 old_deactivate_mark
);
8013 args
[0] = CODING_ATTR_PRE_WRITE (attrs
);
8014 args
[1] = make_number (BEG
);
8015 args
[2] = make_number (Z
);
8016 safe_call (3, args
);
8019 if (XBUFFER (coding
->src_object
) != current_buffer
)
8020 kill_src_buffer
= 1;
8021 coding
->src_object
= Fcurrent_buffer ();
8023 move_gap_both (BEG
, BEG_BYTE
);
8024 coding
->src_chars
= Z
- BEG
;
8025 coding
->src_bytes
= Z_BYTE
- BEG_BYTE
;
8026 coding
->src_pos
= BEG
;
8027 coding
->src_pos_byte
= BEG_BYTE
;
8028 coding
->src_multibyte
= Z
< Z_BYTE
;
8030 else if (STRINGP (src_object
))
8032 code_conversion_save (0, 0);
8033 coding
->src_pos
= from
;
8034 coding
->src_pos_byte
= from_byte
;
8036 else if (BUFFERP (src_object
))
8038 code_conversion_save (0, 0);
8039 set_buffer_internal (XBUFFER (src_object
));
8040 if (EQ (src_object
, dst_object
))
8042 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
8043 coding
->src_object
= del_range_1 (from
, to
, 1, 1);
8044 coding
->src_pos
= 0;
8045 coding
->src_pos_byte
= 0;
8049 if (from
< GPT
&& to
>= GPT
)
8050 move_gap_both (from
, from_byte
);
8051 coding
->src_pos
= from
;
8052 coding
->src_pos_byte
= from_byte
;
8056 code_conversion_save (0, 0);
8058 if (BUFFERP (dst_object
))
8060 coding
->dst_object
= dst_object
;
8061 if (EQ (src_object
, dst_object
))
8063 coding
->dst_pos
= from
;
8064 coding
->dst_pos_byte
= from_byte
;
8068 struct buffer
*current
= current_buffer
;
8070 set_buffer_temp (XBUFFER (dst_object
));
8071 coding
->dst_pos
= PT
;
8072 coding
->dst_pos_byte
= PT_BYTE
;
8073 move_gap_both (coding
->dst_pos
, coding
->dst_pos_byte
);
8074 set_buffer_temp (current
);
8076 coding
->dst_multibyte
8077 = ! NILP (XBUFFER (dst_object
)->enable_multibyte_characters
);
8079 else if (EQ (dst_object
, Qt
))
8081 coding
->dst_object
= Qnil
;
8082 coding
->dst_bytes
= coding
->src_chars
;
8083 if (coding
->dst_bytes
== 0)
8084 coding
->dst_bytes
= 1;
8085 coding
->destination
= (unsigned char *) xmalloc (coding
->dst_bytes
);
8086 coding
->dst_multibyte
= 0;
8090 coding
->dst_object
= Qnil
;
8091 coding
->dst_multibyte
= 0;
8094 encode_coding (coding
);
8096 if (EQ (dst_object
, Qt
))
8098 if (BUFFERP (coding
->dst_object
))
8099 coding
->dst_object
= Fbuffer_string ();
8103 = make_unibyte_string ((char *) coding
->destination
,
8105 xfree (coding
->destination
);
8111 /* This is the case of:
8112 (BUFFERP (src_object) && EQ (src_object, dst_object))
8113 As we have moved PT while replacing the original buffer
8114 contents, we must recover it now. */
8115 set_buffer_internal (XBUFFER (src_object
));
8116 if (saved_pt
< from
)
8117 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
8118 else if (saved_pt
< from
+ chars
)
8119 TEMP_SET_PT_BOTH (from
, from_byte
);
8120 else if (! NILP (current_buffer
->enable_multibyte_characters
))
8121 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
8122 saved_pt_byte
+ (coding
->produced
- bytes
));
8124 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
8125 saved_pt_byte
+ (coding
->produced
- bytes
));
8127 if (need_marker_adjustment
)
8129 struct Lisp_Marker
*tail
;
8131 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8132 if (tail
->need_adjustment
)
8134 tail
->need_adjustment
= 0;
8135 if (tail
->insertion_type
)
8137 tail
->bytepos
= from_byte
;
8138 tail
->charpos
= from
;
8142 tail
->bytepos
= from_byte
+ coding
->produced
;
8144 = (NILP (current_buffer
->enable_multibyte_characters
)
8145 ? tail
->bytepos
: from
+ coding
->produced_char
);
8151 if (kill_src_buffer
)
8152 Fkill_buffer (coding
->src_object
);
8154 Vdeactivate_mark
= old_deactivate_mark
;
8155 unbind_to (count
, Qnil
);
8160 preferred_coding_system ()
8162 int id
= coding_categories
[coding_priorities
[0]].id
;
8164 return CODING_ID_NAME (id
);
8169 /*** 8. Emacs Lisp library functions ***/
8171 DEFUN ("coding-system-p", Fcoding_system_p
, Scoding_system_p
, 1, 1, 0,
8172 doc
: /* Return t if OBJECT is nil or a coding-system.
8173 See the documentation of `define-coding-system' for information
8174 about coding-system objects. */)
8179 || CODING_SYSTEM_ID (object
) >= 0)
8181 if (! SYMBOLP (object
)
8182 || NILP (Fget (object
, Qcoding_system_define_form
)))
8187 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system
,
8188 Sread_non_nil_coding_system
, 1, 1, 0,
8189 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
8196 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8197 Qt
, Qnil
, Qcoding_system_history
, Qnil
, Qnil
);
8199 while (SCHARS (val
) == 0);
8200 return (Fintern (val
, Qnil
));
8203 DEFUN ("read-coding-system", Fread_coding_system
, Sread_coding_system
, 1, 2, 0,
8204 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8205 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8206 Ignores case when completing coding systems (all Emacs coding systems
8207 are lower-case). */)
8208 (prompt
, default_coding_system
)
8209 Lisp_Object prompt
, default_coding_system
;
8212 int count
= SPECPDL_INDEX ();
8214 if (SYMBOLP (default_coding_system
))
8215 default_coding_system
= SYMBOL_NAME (default_coding_system
);
8216 specbind (Qcompletion_ignore_case
, Qt
);
8217 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8218 Qt
, Qnil
, Qcoding_system_history
,
8219 default_coding_system
, Qnil
);
8220 unbind_to (count
, Qnil
);
8221 return (SCHARS (val
) == 0 ? Qnil
: Fintern (val
, Qnil
));
8224 DEFUN ("check-coding-system", Fcheck_coding_system
, Scheck_coding_system
,
8226 doc
: /* Check validity of CODING-SYSTEM.
8227 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
8228 It is valid if it is nil or a symbol defined as a coding system by the
8229 function `define-coding-system'. */)
8231 Lisp_Object coding_system
;
8233 Lisp_Object define_form
;
8235 define_form
= Fget (coding_system
, Qcoding_system_define_form
);
8236 if (! NILP (define_form
))
8238 Fput (coding_system
, Qcoding_system_define_form
, Qnil
);
8239 safe_eval (define_form
);
8241 if (!NILP (Fcoding_system_p (coding_system
)))
8242 return coding_system
;
8243 xsignal1 (Qcoding_system_error
, coding_system
);
8247 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If
8248 HIGHEST is nonzero, return the coding system of the highest
8249 priority among the detected coding systems. Otherwize return a
8250 list of detected coding systems sorted by their priorities. If
8251 MULTIBYTEP is nonzero, it is assumed that the bytes are in correct
8252 multibyte form but contains only ASCII and eight-bit chars.
8253 Otherwise, the bytes are raw bytes.
8255 CODING-SYSTEM controls the detection as below:
8257 If it is nil, detect both text-format and eol-format. If the
8258 text-format part of CODING-SYSTEM is already specified
8259 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format
8260 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'),
8261 detect only text-format. */
8264 detect_coding_system (src
, src_chars
, src_bytes
, highest
, multibytep
,
8266 const unsigned char *src
;
8267 EMACS_INT src_chars
, src_bytes
;
8270 Lisp_Object coding_system
;
8272 const unsigned char *src_end
= src
+ src_bytes
;
8273 Lisp_Object attrs
, eol_type
;
8274 Lisp_Object val
= Qnil
;
8275 struct coding_system coding
;
8277 struct coding_detection_info detect_info
;
8278 enum coding_category base_category
;
8279 int null_byte_found
= 0, eight_bit_found
= 0;
8281 if (NILP (coding_system
))
8282 coding_system
= Qundecided
;
8283 setup_coding_system (coding_system
, &coding
);
8284 attrs
= CODING_ID_ATTRS (coding
.id
);
8285 eol_type
= CODING_ID_EOL_TYPE (coding
.id
);
8286 coding_system
= CODING_ATTR_BASE_NAME (attrs
);
8288 coding
.source
= src
;
8289 coding
.src_chars
= src_chars
;
8290 coding
.src_bytes
= src_bytes
;
8291 coding
.src_multibyte
= multibytep
;
8292 coding
.consumed
= 0;
8293 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8294 coding
.head_ascii
= 0;
8296 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
8298 /* At first, detect text-format if necessary. */
8299 base_category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8300 if (base_category
== coding_category_undecided
)
8302 enum coding_category category
;
8303 struct coding_system
*this;
8306 /* Skip all ASCII bytes except for a few ISO2022 controls. */
8307 for (; src
< src_end
; src
++)
8312 eight_bit_found
= 1;
8313 if (null_byte_found
)
8318 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
8319 && ! inhibit_iso_escape_detection
8320 && ! detect_info
.checked
)
8322 if (detect_coding_iso_2022 (&coding
, &detect_info
))
8324 /* We have scanned the whole data. */
8325 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
8327 /* We didn't find an 8-bit code. We may
8328 have found a null-byte, but it's very
8329 rare that a binary file confirm to
8332 coding
.head_ascii
= src
- coding
.source
;
8334 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
8338 else if (! c
&& !inhibit_null_byte_detection
)
8340 null_byte_found
= 1;
8341 if (eight_bit_found
)
8344 if (! eight_bit_found
)
8345 coding
.head_ascii
++;
8347 else if (! eight_bit_found
)
8348 coding
.head_ascii
++;
8351 if (null_byte_found
|| eight_bit_found
8352 || coding
.head_ascii
< coding
.src_bytes
8353 || detect_info
.found
)
8355 if (coding
.head_ascii
== coding
.src_bytes
)
8356 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
8357 for (i
= 0; i
< coding_category_raw_text
; i
++)
8359 category
= coding_priorities
[i
];
8360 this = coding_categories
+ category
;
8361 if (detect_info
.found
& (1 << category
))
8366 if (null_byte_found
)
8368 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
8369 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
8371 for (i
= 0; i
< coding_category_raw_text
; i
++)
8373 category
= coding_priorities
[i
];
8374 this = coding_categories
+ category
;
8378 /* No coding system of this category is defined. */
8379 detect_info
.rejected
|= (1 << category
);
8381 else if (category
>= coding_category_raw_text
)
8383 else if (detect_info
.checked
& (1 << category
))
8386 && (detect_info
.found
& (1 << category
)))
8389 else if ((*(this->detector
)) (&coding
, &detect_info
)
8391 && (detect_info
.found
& (1 << category
)))
8393 if (category
== coding_category_utf_16_auto
)
8395 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8396 category
= coding_category_utf_16_le
;
8398 category
= coding_category_utf_16_be
;
8406 if ((detect_info
.rejected
& CATEGORY_MASK_ANY
) == CATEGORY_MASK_ANY
8409 detect_info
.found
= CATEGORY_MASK_RAW_TEXT
;
8410 id
= CODING_SYSTEM_ID (Qno_conversion
);
8411 val
= Fcons (make_number (id
), Qnil
);
8413 else if (! detect_info
.rejected
&& ! detect_info
.found
)
8415 detect_info
.found
= CATEGORY_MASK_ANY
;
8416 id
= coding_categories
[coding_category_undecided
].id
;
8417 val
= Fcons (make_number (id
), Qnil
);
8421 if (detect_info
.found
)
8423 detect_info
.found
= 1 << category
;
8424 val
= Fcons (make_number (this->id
), Qnil
);
8427 for (i
= 0; i
< coding_category_raw_text
; i
++)
8428 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
8430 detect_info
.found
= 1 << coding_priorities
[i
];
8431 id
= coding_categories
[coding_priorities
[i
]].id
;
8432 val
= Fcons (make_number (id
), Qnil
);
8438 int mask
= detect_info
.rejected
| detect_info
.found
;
8441 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8443 category
= coding_priorities
[i
];
8444 if (! (mask
& (1 << category
)))
8446 found
|= 1 << category
;
8447 id
= coding_categories
[category
].id
;
8449 val
= Fcons (make_number (id
), val
);
8452 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8454 category
= coding_priorities
[i
];
8455 if (detect_info
.found
& (1 << category
))
8457 id
= coding_categories
[category
].id
;
8458 val
= Fcons (make_number (id
), val
);
8461 detect_info
.found
|= found
;
8464 else if (base_category
== coding_category_utf_8_auto
)
8466 if (detect_coding_utf_8 (&coding
, &detect_info
))
8468 struct coding_system
*this;
8470 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
8471 this = coding_categories
+ coding_category_utf_8_sig
;
8473 this = coding_categories
+ coding_category_utf_8_nosig
;
8474 val
= Fcons (make_number (this->id
), Qnil
);
8477 else if (base_category
== coding_category_utf_16_auto
)
8479 if (detect_coding_utf_16 (&coding
, &detect_info
))
8481 struct coding_system
*this;
8483 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8484 this = coding_categories
+ coding_category_utf_16_le
;
8485 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
8486 this = coding_categories
+ coding_category_utf_16_be
;
8487 else if (detect_info
.rejected
& CATEGORY_MASK_UTF_16_LE_NOSIG
)
8488 this = coding_categories
+ coding_category_utf_16_be_nosig
;
8490 this = coding_categories
+ coding_category_utf_16_le_nosig
;
8491 val
= Fcons (make_number (this->id
), Qnil
);
8496 detect_info
.found
= 1 << XINT (CODING_ATTR_CATEGORY (attrs
));
8497 val
= Fcons (make_number (coding
.id
), Qnil
);
8500 /* Then, detect eol-format if necessary. */
8502 int normal_eol
= -1, utf_16_be_eol
= -1, utf_16_le_eol
= -1;
8505 if (VECTORP (eol_type
))
8507 if (detect_info
.found
& ~CATEGORY_MASK_UTF_16
)
8509 if (null_byte_found
)
8510 normal_eol
= EOL_SEEN_LF
;
8512 normal_eol
= detect_eol (coding
.source
, src_bytes
,
8513 coding_category_raw_text
);
8515 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_BE
8516 | CATEGORY_MASK_UTF_16_BE_NOSIG
))
8517 utf_16_be_eol
= detect_eol (coding
.source
, src_bytes
,
8518 coding_category_utf_16_be
);
8519 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_LE
8520 | CATEGORY_MASK_UTF_16_LE_NOSIG
))
8521 utf_16_le_eol
= detect_eol (coding
.source
, src_bytes
,
8522 coding_category_utf_16_le
);
8526 if (EQ (eol_type
, Qunix
))
8527 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_LF
;
8528 else if (EQ (eol_type
, Qdos
))
8529 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CRLF
;
8531 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CR
;
8534 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
8536 enum coding_category category
;
8539 id
= XINT (XCAR (tail
));
8540 attrs
= CODING_ID_ATTRS (id
);
8541 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8542 eol_type
= CODING_ID_EOL_TYPE (id
);
8543 if (VECTORP (eol_type
))
8545 if (category
== coding_category_utf_16_be
8546 || category
== coding_category_utf_16_be_nosig
)
8547 this_eol
= utf_16_be_eol
;
8548 else if (category
== coding_category_utf_16_le
8549 || category
== coding_category_utf_16_le_nosig
)
8550 this_eol
= utf_16_le_eol
;
8552 this_eol
= normal_eol
;
8554 if (this_eol
== EOL_SEEN_LF
)
8555 XSETCAR (tail
, AREF (eol_type
, 0));
8556 else if (this_eol
== EOL_SEEN_CRLF
)
8557 XSETCAR (tail
, AREF (eol_type
, 1));
8558 else if (this_eol
== EOL_SEEN_CR
)
8559 XSETCAR (tail
, AREF (eol_type
, 2));
8561 XSETCAR (tail
, CODING_ID_NAME (id
));
8564 XSETCAR (tail
, CODING_ID_NAME (id
));
8568 return (highest
? (CONSP (val
) ? XCAR (val
) : Qnil
) : val
);
8572 DEFUN ("detect-coding-region", Fdetect_coding_region
, Sdetect_coding_region
,
8574 doc
: /* Detect coding system of the text in the region between START and END.
8575 Return a list of possible coding systems ordered by priority.
8576 The coding systems to try and their priorities follows what
8577 the function `coding-system-priority-list' (which see) returns.
8579 If only ASCII characters are found (except for such ISO-2022 control
8580 characters as ESC), it returns a list of single element `undecided'
8581 or its subsidiary coding system according to a detected end-of-line
8584 If optional argument HIGHEST is non-nil, return the coding system of
8585 highest priority. */)
8586 (start
, end
, highest
)
8587 Lisp_Object start
, end
, highest
;
8590 int from_byte
, to_byte
;
8592 CHECK_NUMBER_COERCE_MARKER (start
);
8593 CHECK_NUMBER_COERCE_MARKER (end
);
8595 validate_region (&start
, &end
);
8596 from
= XINT (start
), to
= XINT (end
);
8597 from_byte
= CHAR_TO_BYTE (from
);
8598 to_byte
= CHAR_TO_BYTE (to
);
8600 if (from
< GPT
&& to
>= GPT
)
8601 move_gap_both (to
, to_byte
);
8603 return detect_coding_system (BYTE_POS_ADDR (from_byte
),
8604 to
- from
, to_byte
- from_byte
,
8606 !NILP (current_buffer
8607 ->enable_multibyte_characters
),
8611 DEFUN ("detect-coding-string", Fdetect_coding_string
, Sdetect_coding_string
,
8613 doc
: /* Detect coding system of the text in STRING.
8614 Return a list of possible coding systems ordered by priority.
8615 The coding systems to try and their priorities follows what
8616 the function `coding-system-priority-list' (which see) returns.
8618 If only ASCII characters are found (except for such ISO-2022 control
8619 characters as ESC), it returns a list of single element `undecided'
8620 or its subsidiary coding system according to a detected end-of-line
8623 If optional argument HIGHEST is non-nil, return the coding system of
8624 highest priority. */)
8626 Lisp_Object string
, highest
;
8628 CHECK_STRING (string
);
8630 return detect_coding_system (SDATA (string
),
8631 SCHARS (string
), SBYTES (string
),
8632 !NILP (highest
), STRING_MULTIBYTE (string
),
8638 char_encodable_p (c
, attrs
)
8643 struct charset
*charset
;
8644 Lisp_Object translation_table
;
8646 translation_table
= CODING_ATTR_TRANS_TBL (attrs
);
8647 if (! NILP (translation_table
))
8648 c
= translate_char (translation_table
, c
);
8649 for (tail
= CODING_ATTR_CHARSET_LIST (attrs
);
8650 CONSP (tail
); tail
= XCDR (tail
))
8652 charset
= CHARSET_FROM_ID (XINT (XCAR (tail
)));
8653 if (CHAR_CHARSET_P (c
, charset
))
8656 return (! NILP (tail
));
8660 /* Return a list of coding systems that safely encode the text between
8661 START and END. If EXCLUDE is non-nil, it is a list of coding
8662 systems not to check. The returned list doesn't contain any such
8663 coding systems. In any case, if the text contains only ASCII or is
8664 unibyte, return t. */
8666 DEFUN ("find-coding-systems-region-internal",
8667 Ffind_coding_systems_region_internal
,
8668 Sfind_coding_systems_region_internal
, 2, 3, 0,
8669 doc
: /* Internal use only. */)
8670 (start
, end
, exclude
)
8671 Lisp_Object start
, end
, exclude
;
8673 Lisp_Object coding_attrs_list
, safe_codings
;
8674 EMACS_INT start_byte
, end_byte
;
8675 const unsigned char *p
, *pbeg
, *pend
;
8677 Lisp_Object tail
, elt
, work_table
;
8679 if (STRINGP (start
))
8681 if (!STRING_MULTIBYTE (start
)
8682 || SCHARS (start
) == SBYTES (start
))
8685 end_byte
= SBYTES (start
);
8689 CHECK_NUMBER_COERCE_MARKER (start
);
8690 CHECK_NUMBER_COERCE_MARKER (end
);
8691 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8692 args_out_of_range (start
, end
);
8693 if (NILP (current_buffer
->enable_multibyte_characters
))
8695 start_byte
= CHAR_TO_BYTE (XINT (start
));
8696 end_byte
= CHAR_TO_BYTE (XINT (end
));
8697 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8700 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8702 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8703 move_gap_both (XINT (start
), start_byte
);
8705 move_gap_both (XINT (end
), end_byte
);
8709 coding_attrs_list
= Qnil
;
8710 for (tail
= Vcoding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8712 || NILP (Fmemq (XCAR (tail
), exclude
)))
8716 attrs
= AREF (CODING_SYSTEM_SPEC (XCAR (tail
)), 0);
8717 if (EQ (XCAR (tail
), CODING_ATTR_BASE_NAME (attrs
))
8718 && ! EQ (CODING_ATTR_TYPE (attrs
), Qundecided
))
8720 ASET (attrs
, coding_attr_trans_tbl
,
8721 get_translation_table (attrs
, 1, NULL
));
8722 coding_attrs_list
= Fcons (attrs
, coding_attrs_list
);
8726 if (STRINGP (start
))
8727 p
= pbeg
= SDATA (start
);
8729 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
8730 pend
= p
+ (end_byte
- start_byte
);
8732 while (p
< pend
&& ASCII_BYTE_P (*p
)) p
++;
8733 while (p
< pend
&& ASCII_BYTE_P (*(pend
- 1))) pend
--;
8735 work_table
= Fmake_char_table (Qnil
, Qnil
);
8738 if (ASCII_BYTE_P (*p
))
8742 c
= STRING_CHAR_ADVANCE (p
);
8743 if (!NILP (char_table_ref (work_table
, c
)))
8744 /* This character was already checked. Ignore it. */
8747 charset_map_loaded
= 0;
8748 for (tail
= coding_attrs_list
; CONSP (tail
);)
8753 else if (char_encodable_p (c
, elt
))
8755 else if (CONSP (XCDR (tail
)))
8757 XSETCAR (tail
, XCAR (XCDR (tail
)));
8758 XSETCDR (tail
, XCDR (XCDR (tail
)));
8762 XSETCAR (tail
, Qnil
);
8766 if (charset_map_loaded
)
8768 EMACS_INT p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
8770 if (STRINGP (start
))
8771 pbeg
= SDATA (start
);
8773 pbeg
= BYTE_POS_ADDR (start_byte
);
8774 p
= pbeg
+ p_offset
;
8775 pend
= pbeg
+ pend_offset
;
8777 char_table_set (work_table
, c
, Qt
);
8781 safe_codings
= list2 (Qraw_text
, Qno_conversion
);
8782 for (tail
= coding_attrs_list
; CONSP (tail
); tail
= XCDR (tail
))
8783 if (! NILP (XCAR (tail
)))
8784 safe_codings
= Fcons (CODING_ATTR_BASE_NAME (XCAR (tail
)), safe_codings
);
8786 return safe_codings
;
8790 DEFUN ("unencodable-char-position", Funencodable_char_position
,
8791 Sunencodable_char_position
, 3, 5, 0,
8793 Return position of first un-encodable character in a region.
8794 START and END specify the region and CODING-SYSTEM specifies the
8795 encoding to check. Return nil if CODING-SYSTEM does encode the region.
8797 If optional 4th argument COUNT is non-nil, it specifies at most how
8798 many un-encodable characters to search. In this case, the value is a
8801 If optional 5th argument STRING is non-nil, it is a string to search
8802 for un-encodable characters. In that case, START and END are indexes
8804 (start
, end
, coding_system
, count
, string
)
8805 Lisp_Object start
, end
, coding_system
, count
, string
;
8808 struct coding_system coding
;
8809 Lisp_Object attrs
, charset_list
, translation_table
;
8810 Lisp_Object positions
;
8812 const unsigned char *p
, *stop
, *pend
;
8813 int ascii_compatible
;
8815 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
8816 attrs
= CODING_ID_ATTRS (coding
.id
);
8817 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
8819 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
8820 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
8821 translation_table
= get_translation_table (attrs
, 1, NULL
);
8825 validate_region (&start
, &end
);
8826 from
= XINT (start
);
8828 if (NILP (current_buffer
->enable_multibyte_characters
)
8829 || (ascii_compatible
8830 && (to
- from
) == (CHAR_TO_BYTE (to
) - (CHAR_TO_BYTE (from
)))))
8832 p
= CHAR_POS_ADDR (from
);
8833 pend
= CHAR_POS_ADDR (to
);
8834 if (from
< GPT
&& to
>= GPT
)
8841 CHECK_STRING (string
);
8842 CHECK_NATNUM (start
);
8844 from
= XINT (start
);
8847 || to
> SCHARS (string
))
8848 args_out_of_range_3 (string
, start
, end
);
8849 if (! STRING_MULTIBYTE (string
))
8851 p
= SDATA (string
) + string_char_to_byte (string
, from
);
8852 stop
= pend
= SDATA (string
) + string_char_to_byte (string
, to
);
8853 if (ascii_compatible
&& (to
- from
) == (pend
- p
))
8861 CHECK_NATNUM (count
);
8870 if (ascii_compatible
)
8871 while (p
< stop
&& ASCII_BYTE_P (*p
))
8881 c
= STRING_CHAR_ADVANCE (p
);
8882 if (! (ASCII_CHAR_P (c
) && ascii_compatible
)
8883 && ! char_charset (translate_char (translation_table
, c
),
8884 charset_list
, NULL
))
8886 positions
= Fcons (make_number (from
), positions
);
8895 return (NILP (count
) ? Fcar (positions
) : Fnreverse (positions
));
8899 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region
,
8900 Scheck_coding_systems_region
, 3, 3, 0,
8901 doc
: /* Check if the region is encodable by coding systems.
8903 START and END are buffer positions specifying the region.
8904 CODING-SYSTEM-LIST is a list of coding systems to check.
8906 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where
8907 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the
8908 whole region, POS0, POS1, ... are buffer positions where non-encodable
8909 characters are found.
8911 If all coding systems in CODING-SYSTEM-LIST can encode the region, the
8914 START may be a string. In that case, check if the string is
8915 encodable, and the value contains indices to the string instead of
8916 buffer positions. END is ignored.
8918 If the current buffer (or START if it is a string) is unibyte, the value
8920 (start
, end
, coding_system_list
)
8921 Lisp_Object start
, end
, coding_system_list
;
8924 EMACS_INT start_byte
, end_byte
;
8926 const unsigned char *p
, *pbeg
, *pend
;
8928 Lisp_Object tail
, elt
, attrs
;
8930 if (STRINGP (start
))
8932 if (!STRING_MULTIBYTE (start
)
8933 || SCHARS (start
) == SBYTES (start
))
8936 end_byte
= SBYTES (start
);
8941 CHECK_NUMBER_COERCE_MARKER (start
);
8942 CHECK_NUMBER_COERCE_MARKER (end
);
8943 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8944 args_out_of_range (start
, end
);
8945 if (NILP (current_buffer
->enable_multibyte_characters
))
8947 start_byte
= CHAR_TO_BYTE (XINT (start
));
8948 end_byte
= CHAR_TO_BYTE (XINT (end
));
8949 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8952 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8954 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8955 move_gap_both (XINT (start
), start_byte
);
8957 move_gap_both (XINT (end
), end_byte
);
8963 for (tail
= coding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8966 attrs
= AREF (CODING_SYSTEM_SPEC (elt
), 0);
8967 ASET (attrs
, coding_attr_trans_tbl
,
8968 get_translation_table (attrs
, 1, NULL
));
8969 list
= Fcons (Fcons (elt
, Fcons (attrs
, Qnil
)), list
);
8972 if (STRINGP (start
))
8973 p
= pbeg
= SDATA (start
);
8975 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
8976 pend
= p
+ (end_byte
- start_byte
);
8978 while (p
< pend
&& ASCII_BYTE_P (*p
)) p
++, pos
++;
8979 while (p
< pend
&& ASCII_BYTE_P (*(pend
- 1))) pend
--;
8983 if (ASCII_BYTE_P (*p
))
8987 c
= STRING_CHAR_ADVANCE (p
);
8989 charset_map_loaded
= 0;
8990 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
8992 elt
= XCDR (XCAR (tail
));
8993 if (! char_encodable_p (c
, XCAR (elt
)))
8994 XSETCDR (elt
, Fcons (make_number (pos
), XCDR (elt
)));
8996 if (charset_map_loaded
)
8998 EMACS_INT p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
9000 if (STRINGP (start
))
9001 pbeg
= SDATA (start
);
9003 pbeg
= BYTE_POS_ADDR (start_byte
);
9004 p
= pbeg
+ p_offset
;
9005 pend
= pbeg
+ pend_offset
;
9013 for (; CONSP (tail
); tail
= XCDR (tail
))
9016 if (CONSP (XCDR (XCDR (elt
))))
9017 list
= Fcons (Fcons (XCAR (elt
), Fnreverse (XCDR (XCDR (elt
)))),
9026 code_convert_region (start
, end
, coding_system
, dst_object
, encodep
, norecord
)
9027 Lisp_Object start
, end
, coding_system
, dst_object
;
9028 int encodep
, norecord
;
9030 struct coding_system coding
;
9031 EMACS_INT from
, from_byte
, to
, to_byte
;
9032 Lisp_Object src_object
;
9034 CHECK_NUMBER_COERCE_MARKER (start
);
9035 CHECK_NUMBER_COERCE_MARKER (end
);
9036 if (NILP (coding_system
))
9037 coding_system
= Qno_conversion
;
9039 CHECK_CODING_SYSTEM (coding_system
);
9040 src_object
= Fcurrent_buffer ();
9041 if (NILP (dst_object
))
9042 dst_object
= src_object
;
9043 else if (! EQ (dst_object
, Qt
))
9044 CHECK_BUFFER (dst_object
);
9046 validate_region (&start
, &end
);
9047 from
= XFASTINT (start
);
9048 from_byte
= CHAR_TO_BYTE (from
);
9049 to
= XFASTINT (end
);
9050 to_byte
= CHAR_TO_BYTE (to
);
9052 setup_coding_system (coding_system
, &coding
);
9053 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9056 encode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
9059 decode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
9062 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9064 return (BUFFERP (dst_object
)
9065 ? make_number (coding
.produced_char
)
9066 : coding
.dst_object
);
9070 DEFUN ("decode-coding-region", Fdecode_coding_region
, Sdecode_coding_region
,
9071 3, 4, "r\nzCoding system: ",
9072 doc
: /* Decode the current region from the specified coding system.
9073 When called from a program, takes four arguments:
9074 START, END, CODING-SYSTEM, and DESTINATION.
9075 START and END are buffer positions.
9077 Optional 4th arguments DESTINATION specifies where the decoded text goes.
9078 If nil, the region between START and END is replaced by the decoded text.
9079 If buffer, the decoded text is inserted in that buffer after point (point
9081 In those cases, the length of the decoded text is returned.
9082 If DESTINATION is t, the decoded text is returned.
9084 This function sets `last-coding-system-used' to the precise coding system
9085 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9086 not fully specified.) */)
9087 (start
, end
, coding_system
, destination
)
9088 Lisp_Object start
, end
, coding_system
, destination
;
9090 return code_convert_region (start
, end
, coding_system
, destination
, 0, 0);
9093 DEFUN ("encode-coding-region", Fencode_coding_region
, Sencode_coding_region
,
9094 3, 4, "r\nzCoding system: ",
9095 doc
: /* Encode the current region by specified coding system.
9096 When called from a program, takes four arguments:
9097 START, END, CODING-SYSTEM and DESTINATION.
9098 START and END are buffer positions.
9100 Optional 4th arguments DESTINATION specifies where the encoded text goes.
9101 If nil, the region between START and END is replace by the encoded text.
9102 If buffer, the encoded text is inserted in that buffer after point (point
9104 In those cases, the length of the encoded text is returned.
9105 If DESTINATION is t, the encoded text is returned.
9107 This function sets `last-coding-system-used' to the precise coding system
9108 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9109 not fully specified.) */)
9110 (start
, end
, coding_system
, destination
)
9111 Lisp_Object start
, end
, coding_system
, destination
;
9113 return code_convert_region (start
, end
, coding_system
, destination
, 1, 0);
9117 code_convert_string (string
, coding_system
, dst_object
,
9118 encodep
, nocopy
, norecord
)
9119 Lisp_Object string
, coding_system
, dst_object
;
9120 int encodep
, nocopy
, norecord
;
9122 struct coding_system coding
;
9123 EMACS_INT chars
, bytes
;
9125 CHECK_STRING (string
);
9126 if (NILP (coding_system
))
9129 Vlast_coding_system_used
= Qno_conversion
;
9130 if (NILP (dst_object
))
9131 return (nocopy
? Fcopy_sequence (string
) : string
);
9134 if (NILP (coding_system
))
9135 coding_system
= Qno_conversion
;
9137 CHECK_CODING_SYSTEM (coding_system
);
9138 if (NILP (dst_object
))
9140 else if (! EQ (dst_object
, Qt
))
9141 CHECK_BUFFER (dst_object
);
9143 setup_coding_system (coding_system
, &coding
);
9144 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9145 chars
= SCHARS (string
);
9146 bytes
= SBYTES (string
);
9148 encode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9150 decode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9152 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9154 return (BUFFERP (dst_object
)
9155 ? make_number (coding
.produced_char
)
9156 : coding
.dst_object
);
9160 /* Encode or decode STRING according to CODING_SYSTEM.
9161 Do not set Vlast_coding_system_used.
9163 This function is called only from macros DECODE_FILE and
9164 ENCODE_FILE, thus we ignore character composition. */
9167 code_convert_string_norecord (string
, coding_system
, encodep
)
9168 Lisp_Object string
, coding_system
;
9171 return code_convert_string (string
, coding_system
, Qt
, encodep
, 0, 1);
9175 DEFUN ("decode-coding-string", Fdecode_coding_string
, Sdecode_coding_string
,
9177 doc
: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
9179 Optional third arg NOCOPY non-nil means it is OK to return STRING itself
9180 if the decoding operation is trivial.
9182 Optional fourth arg BUFFER non-nil means that the decoded text is
9183 inserted in that buffer after point (point does not move). In this
9184 case, the return value is the length of the decoded text.
9186 This function sets `last-coding-system-used' to the precise coding system
9187 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9188 not fully specified.) */)
9189 (string
, coding_system
, nocopy
, buffer
)
9190 Lisp_Object string
, coding_system
, nocopy
, buffer
;
9192 return code_convert_string (string
, coding_system
, buffer
,
9193 0, ! NILP (nocopy
), 0);
9196 DEFUN ("encode-coding-string", Fencode_coding_string
, Sencode_coding_string
,
9198 doc
: /* Encode STRING to CODING-SYSTEM, and return the result.
9200 Optional third arg NOCOPY non-nil means it is OK to return STRING
9201 itself if the encoding operation is trivial.
9203 Optional fourth arg BUFFER non-nil means that the encoded text is
9204 inserted in that buffer after point (point does not move). In this
9205 case, the return value is the length of the encoded text.
9207 This function sets `last-coding-system-used' to the precise coding system
9208 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9209 not fully specified.) */)
9210 (string
, coding_system
, nocopy
, buffer
)
9211 Lisp_Object string
, coding_system
, nocopy
, buffer
;
9213 return code_convert_string (string
, coding_system
, buffer
,
9214 1, ! NILP (nocopy
), 1);
9218 DEFUN ("decode-sjis-char", Fdecode_sjis_char
, Sdecode_sjis_char
, 1, 1, 0,
9219 doc
: /* Decode a Japanese character which has CODE in shift_jis encoding.
9220 Return the corresponding character. */)
9224 Lisp_Object spec
, attrs
, val
;
9225 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
, *charset
;
9228 CHECK_NATNUM (code
);
9229 c
= XFASTINT (code
);
9230 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9231 attrs
= AREF (spec
, 0);
9233 if (ASCII_BYTE_P (c
)
9234 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9237 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9238 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9239 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9240 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9243 charset
= charset_roman
;
9244 else if (c
>= 0xA0 && c
< 0xDF)
9246 charset
= charset_kana
;
9251 int s1
= c
>> 8, s2
= c
& 0xFF;
9253 if (s1
< 0x81 || (s1
> 0x9F && s1
< 0xE0) || s1
> 0xEF
9254 || s2
< 0x40 || s2
== 0x7F || s2
> 0xFC)
9255 error ("Invalid code: %d", code
);
9257 charset
= charset_kanji
;
9259 c
= DECODE_CHAR (charset
, c
);
9261 error ("Invalid code: %d", code
);
9262 return make_number (c
);
9266 DEFUN ("encode-sjis-char", Fencode_sjis_char
, Sencode_sjis_char
, 1, 1, 0,
9267 doc
: /* Encode a Japanese character CH to shift_jis encoding.
9268 Return the corresponding code in SJIS. */)
9272 Lisp_Object spec
, attrs
, charset_list
;
9274 struct charset
*charset
;
9277 CHECK_CHARACTER (ch
);
9279 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9280 attrs
= AREF (spec
, 0);
9282 if (ASCII_CHAR_P (c
)
9283 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9286 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9287 charset
= char_charset (c
, charset_list
, &code
);
9288 if (code
== CHARSET_INVALID_CODE (charset
))
9289 error ("Can't encode by shift_jis encoding: %d", c
);
9292 return make_number (code
);
9295 DEFUN ("decode-big5-char", Fdecode_big5_char
, Sdecode_big5_char
, 1, 1, 0,
9296 doc
: /* Decode a Big5 character which has CODE in BIG5 coding system.
9297 Return the corresponding character. */)
9301 Lisp_Object spec
, attrs
, val
;
9302 struct charset
*charset_roman
, *charset_big5
, *charset
;
9305 CHECK_NATNUM (code
);
9306 c
= XFASTINT (code
);
9307 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9308 attrs
= AREF (spec
, 0);
9310 if (ASCII_BYTE_P (c
)
9311 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9314 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9315 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9316 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9319 charset
= charset_roman
;
9322 int b1
= c
>> 8, b2
= c
& 0x7F;
9323 if (b1
< 0xA1 || b1
> 0xFE
9324 || b2
< 0x40 || (b2
> 0x7E && b2
< 0xA1) || b2
> 0xFE)
9325 error ("Invalid code: %d", code
);
9326 charset
= charset_big5
;
9328 c
= DECODE_CHAR (charset
, (unsigned )c
);
9330 error ("Invalid code: %d", code
);
9331 return make_number (c
);
9334 DEFUN ("encode-big5-char", Fencode_big5_char
, Sencode_big5_char
, 1, 1, 0,
9335 doc
: /* Encode the Big5 character CH to BIG5 coding system.
9336 Return the corresponding character code in Big5. */)
9340 Lisp_Object spec
, attrs
, charset_list
;
9341 struct charset
*charset
;
9345 CHECK_CHARACTER (ch
);
9347 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9348 attrs
= AREF (spec
, 0);
9349 if (ASCII_CHAR_P (c
)
9350 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9353 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9354 charset
= char_charset (c
, charset_list
, &code
);
9355 if (code
== CHARSET_INVALID_CODE (charset
))
9356 error ("Can't encode by Big5 encoding: %d", c
);
9358 return make_number (code
);
9362 DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal
,
9363 Sset_terminal_coding_system_internal
, 1, 2, 0,
9364 doc
: /* Internal use only. */)
9365 (coding_system
, terminal
)
9366 Lisp_Object coding_system
;
9367 Lisp_Object terminal
;
9369 struct coding_system
*terminal_coding
= TERMINAL_TERMINAL_CODING (get_terminal (terminal
, 1));
9370 CHECK_SYMBOL (coding_system
);
9371 setup_coding_system (Fcheck_coding_system (coding_system
), terminal_coding
);
9372 /* We had better not send unsafe characters to terminal. */
9373 terminal_coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
9374 /* Characer composition should be disabled. */
9375 terminal_coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9376 terminal_coding
->src_multibyte
= 1;
9377 terminal_coding
->dst_multibyte
= 0;
9381 DEFUN ("set-safe-terminal-coding-system-internal",
9382 Fset_safe_terminal_coding_system_internal
,
9383 Sset_safe_terminal_coding_system_internal
, 1, 1, 0,
9384 doc
: /* Internal use only. */)
9386 Lisp_Object coding_system
;
9388 CHECK_SYMBOL (coding_system
);
9389 setup_coding_system (Fcheck_coding_system (coding_system
),
9390 &safe_terminal_coding
);
9391 /* Characer composition should be disabled. */
9392 safe_terminal_coding
.common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9393 safe_terminal_coding
.src_multibyte
= 1;
9394 safe_terminal_coding
.dst_multibyte
= 0;
9398 DEFUN ("terminal-coding-system", Fterminal_coding_system
,
9399 Sterminal_coding_system
, 0, 1, 0,
9400 doc
: /* Return coding system specified for terminal output on the given terminal.
9401 TERMINAL may be a terminal object, a frame, or nil for the selected
9402 frame's terminal device. */)
9404 Lisp_Object terminal
;
9406 struct coding_system
*terminal_coding
9407 = TERMINAL_TERMINAL_CODING (get_terminal (terminal
, 1));
9408 Lisp_Object coding_system
= CODING_ID_NAME (terminal_coding
->id
);
9410 /* For backward compatibility, return nil if it is `undecided'. */
9411 return (! EQ (coding_system
, Qundecided
) ? coding_system
: Qnil
);
9414 DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal
,
9415 Sset_keyboard_coding_system_internal
, 1, 2, 0,
9416 doc
: /* Internal use only. */)
9417 (coding_system
, terminal
)
9418 Lisp_Object coding_system
;
9419 Lisp_Object terminal
;
9421 struct terminal
*t
= get_terminal (terminal
, 1);
9422 CHECK_SYMBOL (coding_system
);
9423 if (NILP (coding_system
))
9424 coding_system
= Qno_conversion
;
9426 Fcheck_coding_system (coding_system
);
9427 setup_coding_system (coding_system
, TERMINAL_KEYBOARD_CODING (t
));
9428 /* Characer composition should be disabled. */
9429 TERMINAL_KEYBOARD_CODING (t
)->common_flags
9430 &= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9434 DEFUN ("keyboard-coding-system",
9435 Fkeyboard_coding_system
, Skeyboard_coding_system
, 0, 1, 0,
9436 doc
: /* Return coding system specified for decoding keyboard input. */)
9438 Lisp_Object terminal
;
9440 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING
9441 (get_terminal (terminal
, 1))->id
);
9445 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system
,
9446 Sfind_operation_coding_system
, 1, MANY
, 0,
9447 doc
: /* Choose a coding system for an operation based on the target name.
9448 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9449 DECODING-SYSTEM is the coding system to use for decoding
9450 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9451 for encoding (in case OPERATION does encoding).
9453 The first argument OPERATION specifies an I/O primitive:
9454 For file I/O, `insert-file-contents' or `write-region'.
9455 For process I/O, `call-process', `call-process-region', or `start-process'.
9456 For network I/O, `open-network-stream'.
9458 The remaining arguments should be the same arguments that were passed
9459 to the primitive. Depending on which primitive, one of those arguments
9460 is selected as the TARGET. For example, if OPERATION does file I/O,
9461 whichever argument specifies the file name is TARGET.
9463 TARGET has a meaning which depends on OPERATION:
9464 For file I/O, TARGET is a file name (except for the special case below).
9465 For process I/O, TARGET is a process name.
9466 For network I/O, TARGET is a service name or a port number.
9468 This function looks up what is specified for TARGET in
9469 `file-coding-system-alist', `process-coding-system-alist',
9470 or `network-coding-system-alist' depending on OPERATION.
9471 They may specify a coding system, a cons of coding systems,
9472 or a function symbol to call.
9473 In the last case, we call the function with one argument,
9474 which is a list of all the arguments given to this function.
9475 If the function can't decide a coding system, it can return
9476 `undecided' so that the normal code-detection is performed.
9478 If OPERATION is `insert-file-contents', the argument corresponding to
9479 TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
9480 file name to look up, and BUFFER is a buffer that contains the file's
9481 contents (not yet decoded). If `file-coding-system-alist' specifies a
9482 function to call for FILENAME, that function should examine the
9483 contents of BUFFER instead of reading the file.
9485 usage: (find-operation-coding-system OPERATION ARGUMENTS...) */)
9490 Lisp_Object operation
, target_idx
, target
, val
;
9491 register Lisp_Object chain
;
9494 error ("Too few arguments");
9495 operation
= args
[0];
9496 if (!SYMBOLP (operation
)
9497 || !INTEGERP (target_idx
= Fget (operation
, Qtarget_idx
)))
9498 error ("Invalid first argument");
9499 if (nargs
< 1 + XINT (target_idx
))
9500 error ("Too few arguments for operation: %s",
9501 SDATA (SYMBOL_NAME (operation
)));
9502 target
= args
[XINT (target_idx
) + 1];
9503 if (!(STRINGP (target
)
9504 || (EQ (operation
, Qinsert_file_contents
) && CONSP (target
)
9505 && STRINGP (XCAR (target
)) && BUFFERP (XCDR (target
)))
9506 || (EQ (operation
, Qopen_network_stream
) && INTEGERP (target
))))
9507 error ("Invalid %dth argument", XINT (target_idx
) + 1);
9509 target
= XCAR (target
);
9511 chain
= ((EQ (operation
, Qinsert_file_contents
)
9512 || EQ (operation
, Qwrite_region
))
9513 ? Vfile_coding_system_alist
9514 : (EQ (operation
, Qopen_network_stream
)
9515 ? Vnetwork_coding_system_alist
9516 : Vprocess_coding_system_alist
));
9520 for (; CONSP (chain
); chain
= XCDR (chain
))
9526 && ((STRINGP (target
)
9527 && STRINGP (XCAR (elt
))
9528 && fast_string_match (XCAR (elt
), target
) >= 0)
9529 || (INTEGERP (target
) && EQ (target
, XCAR (elt
)))))
9532 /* Here, if VAL is both a valid coding system and a valid
9533 function symbol, we return VAL as a coding system. */
9536 if (! SYMBOLP (val
))
9538 if (! NILP (Fcoding_system_p (val
)))
9539 return Fcons (val
, val
);
9540 if (! NILP (Ffboundp (val
)))
9542 /* We use call1 rather than safe_call1
9543 so as to get bug reports about functions called here
9544 which don't handle the current interface. */
9545 val
= call1 (val
, Flist (nargs
, args
));
9548 if (SYMBOLP (val
) && ! NILP (Fcoding_system_p (val
)))
9549 return Fcons (val
, val
);
9557 DEFUN ("set-coding-system-priority", Fset_coding_system_priority
,
9558 Sset_coding_system_priority
, 0, MANY
, 0,
9559 doc
: /* Assign higher priority to the coding systems given as arguments.
9560 If multiple coding systems belong to the same category,
9561 all but the first one are ignored.
9563 usage: (set-coding-system-priority &rest coding-systems) */)
9569 int changed
[coding_category_max
];
9570 enum coding_category priorities
[coding_category_max
];
9572 bzero (changed
, sizeof changed
);
9574 for (i
= j
= 0; i
< nargs
; i
++)
9576 enum coding_category category
;
9577 Lisp_Object spec
, attrs
;
9579 CHECK_CODING_SYSTEM_GET_SPEC (args
[i
], spec
);
9580 attrs
= AREF (spec
, 0);
9581 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
9582 if (changed
[category
])
9583 /* Ignore this coding system because a coding system of the
9584 same category already had a higher priority. */
9586 changed
[category
] = 1;
9587 priorities
[j
++] = category
;
9588 if (coding_categories
[category
].id
>= 0
9589 && ! EQ (args
[i
], CODING_ID_NAME (coding_categories
[category
].id
)))
9590 setup_coding_system (args
[i
], &coding_categories
[category
]);
9591 Fset (AREF (Vcoding_category_table
, category
), args
[i
]);
9594 /* Now we have decided top J priorities. Reflect the order of the
9595 original priorities to the remaining priorities. */
9597 for (i
= j
, j
= 0; i
< coding_category_max
; i
++, j
++)
9599 while (j
< coding_category_max
9600 && changed
[coding_priorities
[j
]])
9602 if (j
== coding_category_max
)
9604 priorities
[i
] = coding_priorities
[j
];
9607 bcopy (priorities
, coding_priorities
, sizeof priorities
);
9609 /* Update `coding-category-list'. */
9610 Vcoding_category_list
= Qnil
;
9611 for (i
= coding_category_max
- 1; i
>= 0; i
--)
9612 Vcoding_category_list
9613 = Fcons (AREF (Vcoding_category_table
, priorities
[i
]),
9614 Vcoding_category_list
);
9619 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list
,
9620 Scoding_system_priority_list
, 0, 1, 0,
9621 doc
: /* Return a list of coding systems ordered by their priorities.
9622 The list contains a subset of coding systems; i.e. coding systems
9623 assigned to each coding category (see `coding-category-list').
9625 HIGHESTP non-nil means just return the highest priority one. */)
9627 Lisp_Object highestp
;
9632 for (i
= 0, val
= Qnil
; i
< coding_category_max
; i
++)
9634 enum coding_category category
= coding_priorities
[i
];
9635 int id
= coding_categories
[category
].id
;
9640 attrs
= CODING_ID_ATTRS (id
);
9641 if (! NILP (highestp
))
9642 return CODING_ATTR_BASE_NAME (attrs
);
9643 val
= Fcons (CODING_ATTR_BASE_NAME (attrs
), val
);
9645 return Fnreverse (val
);
9648 static const char *const suffixes
[] = { "-unix", "-dos", "-mac" };
9651 make_subsidiaries (base
)
9654 Lisp_Object subsidiaries
;
9655 int base_name_len
= SBYTES (SYMBOL_NAME (base
));
9656 char *buf
= (char *) alloca (base_name_len
+ 6);
9659 bcopy (SDATA (SYMBOL_NAME (base
)), buf
, base_name_len
);
9660 subsidiaries
= Fmake_vector (make_number (3), Qnil
);
9661 for (i
= 0; i
< 3; i
++)
9663 bcopy (suffixes
[i
], buf
+ base_name_len
, strlen (suffixes
[i
]) + 1);
9664 ASET (subsidiaries
, i
, intern (buf
));
9666 return subsidiaries
;
9670 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal
,
9671 Sdefine_coding_system_internal
, coding_arg_max
, MANY
, 0,
9672 doc
: /* For internal use only.
9673 usage: (define-coding-system-internal ...) */)
9679 Lisp_Object spec_vec
; /* [ ATTRS ALIASE EOL_TYPE ] */
9680 Lisp_Object attrs
; /* Vector of attributes. */
9681 Lisp_Object eol_type
;
9682 Lisp_Object aliases
;
9683 Lisp_Object coding_type
, charset_list
, safe_charsets
;
9684 enum coding_category category
;
9685 Lisp_Object tail
, val
;
9686 int max_charset_id
= 0;
9689 if (nargs
< coding_arg_max
)
9692 attrs
= Fmake_vector (make_number (coding_attr_last_index
), Qnil
);
9694 name
= args
[coding_arg_name
];
9695 CHECK_SYMBOL (name
);
9696 CODING_ATTR_BASE_NAME (attrs
) = name
;
9698 val
= args
[coding_arg_mnemonic
];
9699 if (! STRINGP (val
))
9700 CHECK_CHARACTER (val
);
9701 CODING_ATTR_MNEMONIC (attrs
) = val
;
9703 coding_type
= args
[coding_arg_coding_type
];
9704 CHECK_SYMBOL (coding_type
);
9705 CODING_ATTR_TYPE (attrs
) = coding_type
;
9707 charset_list
= args
[coding_arg_charset_list
];
9708 if (SYMBOLP (charset_list
))
9710 if (EQ (charset_list
, Qiso_2022
))
9712 if (! EQ (coding_type
, Qiso_2022
))
9713 error ("Invalid charset-list");
9714 charset_list
= Viso_2022_charset_list
;
9716 else if (EQ (charset_list
, Qemacs_mule
))
9718 if (! EQ (coding_type
, Qemacs_mule
))
9719 error ("Invalid charset-list");
9720 charset_list
= Vemacs_mule_charset_list
;
9722 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9723 if (max_charset_id
< XFASTINT (XCAR (tail
)))
9724 max_charset_id
= XFASTINT (XCAR (tail
));
9728 charset_list
= Fcopy_sequence (charset_list
);
9729 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9731 struct charset
*charset
;
9734 CHECK_CHARSET_GET_CHARSET (val
, charset
);
9735 if (EQ (coding_type
, Qiso_2022
)
9736 ? CHARSET_ISO_FINAL (charset
) < 0
9737 : EQ (coding_type
, Qemacs_mule
)
9738 ? CHARSET_EMACS_MULE_ID (charset
) < 0
9740 error ("Can't handle charset `%s'",
9741 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9743 XSETCAR (tail
, make_number (charset
->id
));
9744 if (max_charset_id
< charset
->id
)
9745 max_charset_id
= charset
->id
;
9748 CODING_ATTR_CHARSET_LIST (attrs
) = charset_list
;
9750 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
9751 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
9752 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9753 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
9754 CODING_ATTR_SAFE_CHARSETS (attrs
) = safe_charsets
;
9756 CODING_ATTR_ASCII_COMPAT (attrs
) = args
[coding_arg_ascii_compatible_p
];
9758 val
= args
[coding_arg_decode_translation_table
];
9759 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
9761 CODING_ATTR_DECODE_TBL (attrs
) = val
;
9763 val
= args
[coding_arg_encode_translation_table
];
9764 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
9766 CODING_ATTR_ENCODE_TBL (attrs
) = val
;
9768 val
= args
[coding_arg_post_read_conversion
];
9770 CODING_ATTR_POST_READ (attrs
) = val
;
9772 val
= args
[coding_arg_pre_write_conversion
];
9774 CODING_ATTR_PRE_WRITE (attrs
) = val
;
9776 val
= args
[coding_arg_default_char
];
9778 CODING_ATTR_DEFAULT_CHAR (attrs
) = make_number (' ');
9781 CHECK_CHARACTER (val
);
9782 CODING_ATTR_DEFAULT_CHAR (attrs
) = val
;
9785 val
= args
[coding_arg_for_unibyte
];
9786 CODING_ATTR_FOR_UNIBYTE (attrs
) = NILP (val
) ? Qnil
: Qt
;
9788 val
= args
[coding_arg_plist
];
9790 CODING_ATTR_PLIST (attrs
) = val
;
9792 if (EQ (coding_type
, Qcharset
))
9794 /* Generate a lisp vector of 256 elements. Each element is nil,
9795 integer, or a list of charset IDs.
9797 If Nth element is nil, the byte code N is invalid in this
9800 If Nth element is a number NUM, N is the first byte of a
9801 charset whose ID is NUM.
9803 If Nth element is a list of charset IDs, N is the first byte
9804 of one of them. The list is sorted by dimensions of the
9805 charsets. A charset of smaller dimension comes firtst. */
9806 val
= Fmake_vector (make_number (256), Qnil
);
9808 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9810 struct charset
*charset
= CHARSET_FROM_ID (XFASTINT (XCAR (tail
)));
9811 int dim
= CHARSET_DIMENSION (charset
);
9812 int idx
= (dim
- 1) * 4;
9814 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9815 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9817 for (i
= charset
->code_space
[idx
];
9818 i
<= charset
->code_space
[idx
+ 1]; i
++)
9820 Lisp_Object tmp
, tmp2
;
9823 tmp
= AREF (val
, i
);
9826 else if (NUMBERP (tmp
))
9828 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp
)));
9830 tmp
= Fcons (XCAR (tail
), Fcons (tmp
, Qnil
));
9832 tmp
= Fcons (tmp
, Fcons (XCAR (tail
), Qnil
));
9836 for (tmp2
= tmp
; CONSP (tmp2
); tmp2
= XCDR (tmp2
))
9838 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2
))));
9843 tmp
= nconc2 (tmp
, Fcons (XCAR (tail
), Qnil
));
9846 XSETCDR (tmp2
, Fcons (XCAR (tmp2
), XCDR (tmp2
)));
9847 XSETCAR (tmp2
, XCAR (tail
));
9853 ASET (attrs
, coding_attr_charset_valids
, val
);
9854 category
= coding_category_charset
;
9856 else if (EQ (coding_type
, Qccl
))
9860 if (nargs
< coding_arg_ccl_max
)
9863 val
= args
[coding_arg_ccl_decoder
];
9864 CHECK_CCL_PROGRAM (val
);
9866 val
= Fcopy_sequence (val
);
9867 ASET (attrs
, coding_attr_ccl_decoder
, val
);
9869 val
= args
[coding_arg_ccl_encoder
];
9870 CHECK_CCL_PROGRAM (val
);
9872 val
= Fcopy_sequence (val
);
9873 ASET (attrs
, coding_attr_ccl_encoder
, val
);
9875 val
= args
[coding_arg_ccl_valids
];
9876 valids
= Fmake_string (make_number (256), make_number (0));
9877 for (tail
= val
; !NILP (tail
); tail
= Fcdr (tail
))
9884 from
= to
= XINT (val
);
9885 if (from
< 0 || from
> 255)
9886 args_out_of_range_3 (val
, make_number (0), make_number (255));
9891 CHECK_NATNUM_CAR (val
);
9892 CHECK_NATNUM_CDR (val
);
9893 from
= XINT (XCAR (val
));
9895 args_out_of_range_3 (XCAR (val
),
9896 make_number (0), make_number (255));
9897 to
= XINT (XCDR (val
));
9898 if (to
< from
|| to
> 255)
9899 args_out_of_range_3 (XCDR (val
),
9900 XCAR (val
), make_number (255));
9902 for (i
= from
; i
<= to
; i
++)
9903 SSET (valids
, i
, 1);
9905 ASET (attrs
, coding_attr_ccl_valids
, valids
);
9907 category
= coding_category_ccl
;
9909 else if (EQ (coding_type
, Qutf_16
))
9911 Lisp_Object bom
, endian
;
9913 CODING_ATTR_ASCII_COMPAT (attrs
) = Qnil
;
9915 if (nargs
< coding_arg_utf16_max
)
9918 bom
= args
[coding_arg_utf16_bom
];
9919 if (! NILP (bom
) && ! EQ (bom
, Qt
))
9923 CHECK_CODING_SYSTEM (val
);
9925 CHECK_CODING_SYSTEM (val
);
9927 ASET (attrs
, coding_attr_utf_bom
, bom
);
9929 endian
= args
[coding_arg_utf16_endian
];
9930 CHECK_SYMBOL (endian
);
9933 else if (! EQ (endian
, Qbig
) && ! EQ (endian
, Qlittle
))
9934 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian
)));
9935 ASET (attrs
, coding_attr_utf_16_endian
, endian
);
9937 category
= (CONSP (bom
)
9938 ? coding_category_utf_16_auto
9940 ? (EQ (endian
, Qbig
)
9941 ? coding_category_utf_16_be_nosig
9942 : coding_category_utf_16_le_nosig
)
9943 : (EQ (endian
, Qbig
)
9944 ? coding_category_utf_16_be
9945 : coding_category_utf_16_le
));
9947 else if (EQ (coding_type
, Qiso_2022
))
9949 Lisp_Object initial
, reg_usage
, request
, flags
;
9952 if (nargs
< coding_arg_iso2022_max
)
9955 initial
= Fcopy_sequence (args
[coding_arg_iso2022_initial
]);
9956 CHECK_VECTOR (initial
);
9957 for (i
= 0; i
< 4; i
++)
9959 val
= Faref (initial
, make_number (i
));
9962 struct charset
*charset
;
9964 CHECK_CHARSET_GET_CHARSET (val
, charset
);
9965 ASET (initial
, i
, make_number (CHARSET_ID (charset
)));
9966 if (i
== 0 && CHARSET_ASCII_COMPATIBLE_P (charset
))
9967 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9970 ASET (initial
, i
, make_number (-1));
9973 reg_usage
= args
[coding_arg_iso2022_reg_usage
];
9974 CHECK_CONS (reg_usage
);
9975 CHECK_NUMBER_CAR (reg_usage
);
9976 CHECK_NUMBER_CDR (reg_usage
);
9978 request
= Fcopy_sequence (args
[coding_arg_iso2022_request
]);
9979 for (tail
= request
; ! NILP (tail
); tail
= Fcdr (tail
))
9987 CHECK_CHARSET_GET_ID (tmp
, id
);
9988 CHECK_NATNUM_CDR (val
);
9989 if (XINT (XCDR (val
)) >= 4)
9990 error ("Invalid graphic register number: %d", XINT (XCDR (val
)));
9991 XSETCAR (val
, make_number (id
));
9994 flags
= args
[coding_arg_iso2022_flags
];
9995 CHECK_NATNUM (flags
);
9997 if (EQ (args
[coding_arg_charset_list
], Qiso_2022
))
9998 flags
= make_number (i
| CODING_ISO_FLAG_FULL_SUPPORT
);
10000 ASET (attrs
, coding_attr_iso_initial
, initial
);
10001 ASET (attrs
, coding_attr_iso_usage
, reg_usage
);
10002 ASET (attrs
, coding_attr_iso_request
, request
);
10003 ASET (attrs
, coding_attr_iso_flags
, flags
);
10004 setup_iso_safe_charsets (attrs
);
10006 if (i
& CODING_ISO_FLAG_SEVEN_BITS
)
10007 category
= ((i
& (CODING_ISO_FLAG_LOCKING_SHIFT
10008 | CODING_ISO_FLAG_SINGLE_SHIFT
))
10009 ? coding_category_iso_7_else
10010 : EQ (args
[coding_arg_charset_list
], Qiso_2022
)
10011 ? coding_category_iso_7
10012 : coding_category_iso_7_tight
);
10015 int id
= XINT (AREF (initial
, 1));
10017 category
= (((i
& CODING_ISO_FLAG_LOCKING_SHIFT
)
10018 || EQ (args
[coding_arg_charset_list
], Qiso_2022
)
10020 ? coding_category_iso_8_else
10021 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id
)) == 1)
10022 ? coding_category_iso_8_1
10023 : coding_category_iso_8_2
);
10025 if (category
!= coding_category_iso_8_1
10026 && category
!= coding_category_iso_8_2
)
10027 CODING_ATTR_ASCII_COMPAT (attrs
) = Qnil
;
10029 else if (EQ (coding_type
, Qemacs_mule
))
10031 if (EQ (args
[coding_arg_charset_list
], Qemacs_mule
))
10032 ASET (attrs
, coding_attr_emacs_mule_full
, Qt
);
10033 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
10034 category
= coding_category_emacs_mule
;
10036 else if (EQ (coding_type
, Qshift_jis
))
10039 struct charset
*charset
;
10041 if (XINT (Flength (charset_list
)) != 3
10042 && XINT (Flength (charset_list
)) != 4)
10043 error ("There should be three or four charsets");
10045 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10046 if (CHARSET_DIMENSION (charset
) != 1)
10047 error ("Dimension of charset %s is not one",
10048 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10049 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10050 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
10052 charset_list
= XCDR (charset_list
);
10053 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10054 if (CHARSET_DIMENSION (charset
) != 1)
10055 error ("Dimension of charset %s is not one",
10056 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10058 charset_list
= XCDR (charset_list
);
10059 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10060 if (CHARSET_DIMENSION (charset
) != 2)
10061 error ("Dimension of charset %s is not two",
10062 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10064 charset_list
= XCDR (charset_list
);
10065 if (! NILP (charset_list
))
10067 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10068 if (CHARSET_DIMENSION (charset
) != 2)
10069 error ("Dimension of charset %s is not two",
10070 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10073 category
= coding_category_sjis
;
10074 Vsjis_coding_system
= name
;
10076 else if (EQ (coding_type
, Qbig5
))
10078 struct charset
*charset
;
10080 if (XINT (Flength (charset_list
)) != 2)
10081 error ("There should be just two charsets");
10083 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10084 if (CHARSET_DIMENSION (charset
) != 1)
10085 error ("Dimension of charset %s is not one",
10086 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10087 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
10088 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
10090 charset_list
= XCDR (charset_list
);
10091 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
10092 if (CHARSET_DIMENSION (charset
) != 2)
10093 error ("Dimension of charset %s is not two",
10094 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
10096 category
= coding_category_big5
;
10097 Vbig5_coding_system
= name
;
10099 else if (EQ (coding_type
, Qraw_text
))
10101 category
= coding_category_raw_text
;
10102 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
10104 else if (EQ (coding_type
, Qutf_8
))
10108 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
10110 if (nargs
< coding_arg_utf8_max
)
10113 bom
= args
[coding_arg_utf8_bom
];
10114 if (! NILP (bom
) && ! EQ (bom
, Qt
))
10118 CHECK_CODING_SYSTEM (val
);
10120 CHECK_CODING_SYSTEM (val
);
10122 ASET (attrs
, coding_attr_utf_bom
, bom
);
10124 category
= (CONSP (bom
) ? coding_category_utf_8_auto
10125 : NILP (bom
) ? coding_category_utf_8_nosig
10126 : coding_category_utf_8_sig
);
10128 else if (EQ (coding_type
, Qundecided
))
10129 category
= coding_category_undecided
;
10131 error ("Invalid coding system type: %s",
10132 SDATA (SYMBOL_NAME (coding_type
)));
10134 CODING_ATTR_CATEGORY (attrs
) = make_number (category
);
10135 CODING_ATTR_PLIST (attrs
)
10136 = Fcons (QCcategory
, Fcons (AREF (Vcoding_category_table
, category
),
10137 CODING_ATTR_PLIST (attrs
)));
10138 CODING_ATTR_PLIST (attrs
)
10139 = Fcons (QCascii_compatible_p
,
10140 Fcons (CODING_ATTR_ASCII_COMPAT (attrs
),
10141 CODING_ATTR_PLIST (attrs
)));
10143 eol_type
= args
[coding_arg_eol_type
];
10144 if (! NILP (eol_type
)
10145 && ! EQ (eol_type
, Qunix
)
10146 && ! EQ (eol_type
, Qdos
)
10147 && ! EQ (eol_type
, Qmac
))
10148 error ("Invalid eol-type");
10150 aliases
= Fcons (name
, Qnil
);
10152 if (NILP (eol_type
))
10154 eol_type
= make_subsidiaries (name
);
10155 for (i
= 0; i
< 3; i
++)
10157 Lisp_Object this_spec
, this_name
, this_aliases
, this_eol_type
;
10159 this_name
= AREF (eol_type
, i
);
10160 this_aliases
= Fcons (this_name
, Qnil
);
10161 this_eol_type
= (i
== 0 ? Qunix
: i
== 1 ? Qdos
: Qmac
);
10162 this_spec
= Fmake_vector (make_number (3), attrs
);
10163 ASET (this_spec
, 1, this_aliases
);
10164 ASET (this_spec
, 2, this_eol_type
);
10165 Fputhash (this_name
, this_spec
, Vcoding_system_hash_table
);
10166 Vcoding_system_list
= Fcons (this_name
, Vcoding_system_list
);
10167 val
= Fassoc (Fsymbol_name (this_name
), Vcoding_system_alist
);
10169 Vcoding_system_alist
10170 = Fcons (Fcons (Fsymbol_name (this_name
), Qnil
),
10171 Vcoding_system_alist
);
10175 spec_vec
= Fmake_vector (make_number (3), attrs
);
10176 ASET (spec_vec
, 1, aliases
);
10177 ASET (spec_vec
, 2, eol_type
);
10179 Fputhash (name
, spec_vec
, Vcoding_system_hash_table
);
10180 Vcoding_system_list
= Fcons (name
, Vcoding_system_list
);
10181 val
= Fassoc (Fsymbol_name (name
), Vcoding_system_alist
);
10183 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (name
), Qnil
),
10184 Vcoding_system_alist
);
10187 int id
= coding_categories
[category
].id
;
10189 if (id
< 0 || EQ (name
, CODING_ID_NAME (id
)))
10190 setup_coding_system (name
, &coding_categories
[category
]);
10196 return Fsignal (Qwrong_number_of_arguments
,
10197 Fcons (intern ("define-coding-system-internal"),
10198 make_number (nargs
)));
10202 DEFUN ("coding-system-put", Fcoding_system_put
, Scoding_system_put
,
10204 doc
: /* Change value in CODING-SYSTEM's property list PROP to VAL. */)
10205 (coding_system
, prop
, val
)
10206 Lisp_Object coding_system
, prop
, val
;
10208 Lisp_Object spec
, attrs
;
10210 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10211 attrs
= AREF (spec
, 0);
10212 if (EQ (prop
, QCmnemonic
))
10214 if (! STRINGP (val
))
10215 CHECK_CHARACTER (val
);
10216 CODING_ATTR_MNEMONIC (attrs
) = val
;
10218 else if (EQ (prop
, QCdefault_char
))
10221 val
= make_number (' ');
10223 CHECK_CHARACTER (val
);
10224 CODING_ATTR_DEFAULT_CHAR (attrs
) = val
;
10226 else if (EQ (prop
, QCdecode_translation_table
))
10228 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10229 CHECK_SYMBOL (val
);
10230 CODING_ATTR_DECODE_TBL (attrs
) = val
;
10232 else if (EQ (prop
, QCencode_translation_table
))
10234 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10235 CHECK_SYMBOL (val
);
10236 CODING_ATTR_ENCODE_TBL (attrs
) = val
;
10238 else if (EQ (prop
, QCpost_read_conversion
))
10240 CHECK_SYMBOL (val
);
10241 CODING_ATTR_POST_READ (attrs
) = val
;
10243 else if (EQ (prop
, QCpre_write_conversion
))
10245 CHECK_SYMBOL (val
);
10246 CODING_ATTR_PRE_WRITE (attrs
) = val
;
10248 else if (EQ (prop
, QCascii_compatible_p
))
10250 CODING_ATTR_ASCII_COMPAT (attrs
) = val
;
10253 CODING_ATTR_PLIST (attrs
)
10254 = Fplist_put (CODING_ATTR_PLIST (attrs
), prop
, val
);
10259 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias
,
10260 Sdefine_coding_system_alias
, 2, 2, 0,
10261 doc
: /* Define ALIAS as an alias for CODING-SYSTEM. */)
10262 (alias
, coding_system
)
10263 Lisp_Object alias
, coding_system
;
10265 Lisp_Object spec
, aliases
, eol_type
, val
;
10267 CHECK_SYMBOL (alias
);
10268 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10269 aliases
= AREF (spec
, 1);
10270 /* ALIASES should be a list of length more than zero, and the first
10271 element is a base coding system. Append ALIAS at the tail of the
10273 while (!NILP (XCDR (aliases
)))
10274 aliases
= XCDR (aliases
);
10275 XSETCDR (aliases
, Fcons (alias
, Qnil
));
10277 eol_type
= AREF (spec
, 2);
10278 if (VECTORP (eol_type
))
10280 Lisp_Object subsidiaries
;
10283 subsidiaries
= make_subsidiaries (alias
);
10284 for (i
= 0; i
< 3; i
++)
10285 Fdefine_coding_system_alias (AREF (subsidiaries
, i
),
10286 AREF (eol_type
, i
));
10289 Fputhash (alias
, spec
, Vcoding_system_hash_table
);
10290 Vcoding_system_list
= Fcons (alias
, Vcoding_system_list
);
10291 val
= Fassoc (Fsymbol_name (alias
), Vcoding_system_alist
);
10293 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (alias
), Qnil
),
10294 Vcoding_system_alist
);
10299 DEFUN ("coding-system-base", Fcoding_system_base
, Scoding_system_base
,
10301 doc
: /* Return the base of CODING-SYSTEM.
10302 Any alias or subsidiary coding system is not a base coding system. */)
10304 Lisp_Object coding_system
;
10306 Lisp_Object spec
, attrs
;
10308 if (NILP (coding_system
))
10309 return (Qno_conversion
);
10310 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10311 attrs
= AREF (spec
, 0);
10312 return CODING_ATTR_BASE_NAME (attrs
);
10315 DEFUN ("coding-system-plist", Fcoding_system_plist
, Scoding_system_plist
,
10317 doc
: "Return the property list of CODING-SYSTEM.")
10319 Lisp_Object coding_system
;
10321 Lisp_Object spec
, attrs
;
10323 if (NILP (coding_system
))
10324 coding_system
= Qno_conversion
;
10325 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10326 attrs
= AREF (spec
, 0);
10327 return CODING_ATTR_PLIST (attrs
);
10331 DEFUN ("coding-system-aliases", Fcoding_system_aliases
, Scoding_system_aliases
,
10333 doc
: /* Return the list of aliases of CODING-SYSTEM. */)
10335 Lisp_Object coding_system
;
10339 if (NILP (coding_system
))
10340 coding_system
= Qno_conversion
;
10341 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10342 return AREF (spec
, 1);
10345 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type
,
10346 Scoding_system_eol_type
, 1, 1, 0,
10347 doc
: /* Return eol-type of CODING-SYSTEM.
10348 An eol-type is an integer 0, 1, 2, or a vector of coding systems.
10350 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF,
10351 and CR respectively.
10353 A vector value indicates that a format of end-of-line should be
10354 detected automatically. Nth element of the vector is the subsidiary
10355 coding system whose eol-type is N. */)
10357 Lisp_Object coding_system
;
10359 Lisp_Object spec
, eol_type
;
10362 if (NILP (coding_system
))
10363 coding_system
= Qno_conversion
;
10364 if (! CODING_SYSTEM_P (coding_system
))
10366 spec
= CODING_SYSTEM_SPEC (coding_system
);
10367 eol_type
= AREF (spec
, 2);
10368 if (VECTORP (eol_type
))
10369 return Fcopy_sequence (eol_type
);
10370 n
= EQ (eol_type
, Qunix
) ? 0 : EQ (eol_type
, Qdos
) ? 1 : 2;
10371 return make_number (n
);
10377 /*** 9. Post-amble ***/
10380 init_coding_once ()
10384 for (i
= 0; i
< coding_category_max
; i
++)
10386 coding_categories
[i
].id
= -1;
10387 coding_priorities
[i
] = i
;
10390 /* ISO2022 specific initialize routine. */
10391 for (i
= 0; i
< 0x20; i
++)
10392 iso_code_class
[i
] = ISO_control_0
;
10393 for (i
= 0x21; i
< 0x7F; i
++)
10394 iso_code_class
[i
] = ISO_graphic_plane_0
;
10395 for (i
= 0x80; i
< 0xA0; i
++)
10396 iso_code_class
[i
] = ISO_control_1
;
10397 for (i
= 0xA1; i
< 0xFF; i
++)
10398 iso_code_class
[i
] = ISO_graphic_plane_1
;
10399 iso_code_class
[0x20] = iso_code_class
[0x7F] = ISO_0x20_or_0x7F
;
10400 iso_code_class
[0xA0] = iso_code_class
[0xFF] = ISO_0xA0_or_0xFF
;
10401 iso_code_class
[ISO_CODE_SO
] = ISO_shift_out
;
10402 iso_code_class
[ISO_CODE_SI
] = ISO_shift_in
;
10403 iso_code_class
[ISO_CODE_SS2_7
] = ISO_single_shift_2_7
;
10404 iso_code_class
[ISO_CODE_ESC
] = ISO_escape
;
10405 iso_code_class
[ISO_CODE_SS2
] = ISO_single_shift_2
;
10406 iso_code_class
[ISO_CODE_SS3
] = ISO_single_shift_3
;
10407 iso_code_class
[ISO_CODE_CSI
] = ISO_control_sequence_introducer
;
10409 for (i
= 0; i
< 256; i
++)
10411 emacs_mule_bytes
[i
] = 1;
10413 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_11
] = 3;
10414 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_12
] = 3;
10415 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_21
] = 4;
10416 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_22
] = 4;
10424 staticpro (&Vcoding_system_hash_table
);
10426 Lisp_Object args
[2];
10429 Vcoding_system_hash_table
= Fmake_hash_table (2, args
);
10432 staticpro (&Vsjis_coding_system
);
10433 Vsjis_coding_system
= Qnil
;
10435 staticpro (&Vbig5_coding_system
);
10436 Vbig5_coding_system
= Qnil
;
10438 staticpro (&Vcode_conversion_reused_workbuf
);
10439 Vcode_conversion_reused_workbuf
= Qnil
;
10441 staticpro (&Vcode_conversion_workbuf_name
);
10442 Vcode_conversion_workbuf_name
= make_pure_c_string (" *code-conversion-work*");
10444 reused_workbuf_in_use
= 0;
10446 DEFSYM (Qcharset
, "charset");
10447 DEFSYM (Qtarget_idx
, "target-idx");
10448 DEFSYM (Qcoding_system_history
, "coding-system-history");
10449 Fset (Qcoding_system_history
, Qnil
);
10451 /* Target FILENAME is the first argument. */
10452 Fput (Qinsert_file_contents
, Qtarget_idx
, make_number (0));
10453 /* Target FILENAME is the third argument. */
10454 Fput (Qwrite_region
, Qtarget_idx
, make_number (2));
10456 DEFSYM (Qcall_process
, "call-process");
10457 /* Target PROGRAM is the first argument. */
10458 Fput (Qcall_process
, Qtarget_idx
, make_number (0));
10460 DEFSYM (Qcall_process_region
, "call-process-region");
10461 /* Target PROGRAM is the third argument. */
10462 Fput (Qcall_process_region
, Qtarget_idx
, make_number (2));
10464 DEFSYM (Qstart_process
, "start-process");
10465 /* Target PROGRAM is the third argument. */
10466 Fput (Qstart_process
, Qtarget_idx
, make_number (2));
10468 DEFSYM (Qopen_network_stream
, "open-network-stream");
10469 /* Target SERVICE is the fourth argument. */
10470 Fput (Qopen_network_stream
, Qtarget_idx
, make_number (3));
10472 DEFSYM (Qcoding_system
, "coding-system");
10473 DEFSYM (Qcoding_aliases
, "coding-aliases");
10475 DEFSYM (Qeol_type
, "eol-type");
10476 DEFSYM (Qunix
, "unix");
10477 DEFSYM (Qdos
, "dos");
10479 DEFSYM (Qbuffer_file_coding_system
, "buffer-file-coding-system");
10480 DEFSYM (Qpost_read_conversion
, "post-read-conversion");
10481 DEFSYM (Qpre_write_conversion
, "pre-write-conversion");
10482 DEFSYM (Qdefault_char
, "default-char");
10483 DEFSYM (Qundecided
, "undecided");
10484 DEFSYM (Qno_conversion
, "no-conversion");
10485 DEFSYM (Qraw_text
, "raw-text");
10487 DEFSYM (Qiso_2022
, "iso-2022");
10489 DEFSYM (Qutf_8
, "utf-8");
10490 DEFSYM (Qutf_8_emacs
, "utf-8-emacs");
10492 DEFSYM (Qutf_16
, "utf-16");
10493 DEFSYM (Qbig
, "big");
10494 DEFSYM (Qlittle
, "little");
10496 DEFSYM (Qshift_jis
, "shift-jis");
10497 DEFSYM (Qbig5
, "big5");
10499 DEFSYM (Qcoding_system_p
, "coding-system-p");
10501 DEFSYM (Qcoding_system_error
, "coding-system-error");
10502 Fput (Qcoding_system_error
, Qerror_conditions
,
10503 pure_cons (Qcoding_system_error
, pure_cons (Qerror
, Qnil
)));
10504 Fput (Qcoding_system_error
, Qerror_message
,
10505 make_pure_c_string ("Invalid coding system"));
10507 /* Intern this now in case it isn't already done.
10508 Setting this variable twice is harmless.
10509 But don't staticpro it here--that is done in alloc.c. */
10510 Qchar_table_extra_slots
= intern_c_string ("char-table-extra-slots");
10512 DEFSYM (Qtranslation_table
, "translation-table");
10513 Fput (Qtranslation_table
, Qchar_table_extra_slots
, make_number (2));
10514 DEFSYM (Qtranslation_table_id
, "translation-table-id");
10515 DEFSYM (Qtranslation_table_for_decode
, "translation-table-for-decode");
10516 DEFSYM (Qtranslation_table_for_encode
, "translation-table-for-encode");
10518 DEFSYM (Qvalid_codes
, "valid-codes");
10520 DEFSYM (Qemacs_mule
, "emacs-mule");
10522 DEFSYM (QCcategory
, ":category");
10523 DEFSYM (QCmnemonic
, ":mnemonic");
10524 DEFSYM (QCdefault_char
, ":default-char");
10525 DEFSYM (QCdecode_translation_table
, ":decode-translation-table");
10526 DEFSYM (QCencode_translation_table
, ":encode-translation-table");
10527 DEFSYM (QCpost_read_conversion
, ":post-read-conversion");
10528 DEFSYM (QCpre_write_conversion
, ":pre-write-conversion");
10529 DEFSYM (QCascii_compatible_p
, ":ascii-compatible-p");
10531 Vcoding_category_table
10532 = Fmake_vector (make_number (coding_category_max
), Qnil
);
10533 staticpro (&Vcoding_category_table
);
10534 /* Followings are target of code detection. */
10535 ASET (Vcoding_category_table
, coding_category_iso_7
,
10536 intern_c_string ("coding-category-iso-7"));
10537 ASET (Vcoding_category_table
, coding_category_iso_7_tight
,
10538 intern_c_string ("coding-category-iso-7-tight"));
10539 ASET (Vcoding_category_table
, coding_category_iso_8_1
,
10540 intern_c_string ("coding-category-iso-8-1"));
10541 ASET (Vcoding_category_table
, coding_category_iso_8_2
,
10542 intern_c_string ("coding-category-iso-8-2"));
10543 ASET (Vcoding_category_table
, coding_category_iso_7_else
,
10544 intern_c_string ("coding-category-iso-7-else"));
10545 ASET (Vcoding_category_table
, coding_category_iso_8_else
,
10546 intern_c_string ("coding-category-iso-8-else"));
10547 ASET (Vcoding_category_table
, coding_category_utf_8_auto
,
10548 intern_c_string ("coding-category-utf-8-auto"));
10549 ASET (Vcoding_category_table
, coding_category_utf_8_nosig
,
10550 intern_c_string ("coding-category-utf-8"));
10551 ASET (Vcoding_category_table
, coding_category_utf_8_sig
,
10552 intern_c_string ("coding-category-utf-8-sig"));
10553 ASET (Vcoding_category_table
, coding_category_utf_16_be
,
10554 intern_c_string ("coding-category-utf-16-be"));
10555 ASET (Vcoding_category_table
, coding_category_utf_16_auto
,
10556 intern_c_string ("coding-category-utf-16-auto"));
10557 ASET (Vcoding_category_table
, coding_category_utf_16_le
,
10558 intern_c_string ("coding-category-utf-16-le"));
10559 ASET (Vcoding_category_table
, coding_category_utf_16_be_nosig
,
10560 intern_c_string ("coding-category-utf-16-be-nosig"));
10561 ASET (Vcoding_category_table
, coding_category_utf_16_le_nosig
,
10562 intern_c_string ("coding-category-utf-16-le-nosig"));
10563 ASET (Vcoding_category_table
, coding_category_charset
,
10564 intern_c_string ("coding-category-charset"));
10565 ASET (Vcoding_category_table
, coding_category_sjis
,
10566 intern_c_string ("coding-category-sjis"));
10567 ASET (Vcoding_category_table
, coding_category_big5
,
10568 intern_c_string ("coding-category-big5"));
10569 ASET (Vcoding_category_table
, coding_category_ccl
,
10570 intern_c_string ("coding-category-ccl"));
10571 ASET (Vcoding_category_table
, coding_category_emacs_mule
,
10572 intern_c_string ("coding-category-emacs-mule"));
10573 /* Followings are NOT target of code detection. */
10574 ASET (Vcoding_category_table
, coding_category_raw_text
,
10575 intern_c_string ("coding-category-raw-text"));
10576 ASET (Vcoding_category_table
, coding_category_undecided
,
10577 intern_c_string ("coding-category-undecided"));
10579 DEFSYM (Qinsufficient_source
, "insufficient-source");
10580 DEFSYM (Qinconsistent_eol
, "inconsistent-eol");
10581 DEFSYM (Qinvalid_source
, "invalid-source");
10582 DEFSYM (Qinterrupted
, "interrupted");
10583 DEFSYM (Qinsufficient_memory
, "insufficient-memory");
10584 DEFSYM (Qcoding_system_define_form
, "coding-system-define-form");
10586 defsubr (&Scoding_system_p
);
10587 defsubr (&Sread_coding_system
);
10588 defsubr (&Sread_non_nil_coding_system
);
10589 defsubr (&Scheck_coding_system
);
10590 defsubr (&Sdetect_coding_region
);
10591 defsubr (&Sdetect_coding_string
);
10592 defsubr (&Sfind_coding_systems_region_internal
);
10593 defsubr (&Sunencodable_char_position
);
10594 defsubr (&Scheck_coding_systems_region
);
10595 defsubr (&Sdecode_coding_region
);
10596 defsubr (&Sencode_coding_region
);
10597 defsubr (&Sdecode_coding_string
);
10598 defsubr (&Sencode_coding_string
);
10599 defsubr (&Sdecode_sjis_char
);
10600 defsubr (&Sencode_sjis_char
);
10601 defsubr (&Sdecode_big5_char
);
10602 defsubr (&Sencode_big5_char
);
10603 defsubr (&Sset_terminal_coding_system_internal
);
10604 defsubr (&Sset_safe_terminal_coding_system_internal
);
10605 defsubr (&Sterminal_coding_system
);
10606 defsubr (&Sset_keyboard_coding_system_internal
);
10607 defsubr (&Skeyboard_coding_system
);
10608 defsubr (&Sfind_operation_coding_system
);
10609 defsubr (&Sset_coding_system_priority
);
10610 defsubr (&Sdefine_coding_system_internal
);
10611 defsubr (&Sdefine_coding_system_alias
);
10612 defsubr (&Scoding_system_put
);
10613 defsubr (&Scoding_system_base
);
10614 defsubr (&Scoding_system_plist
);
10615 defsubr (&Scoding_system_aliases
);
10616 defsubr (&Scoding_system_eol_type
);
10617 defsubr (&Scoding_system_priority_list
);
10619 DEFVAR_LISP ("coding-system-list", &Vcoding_system_list
,
10620 doc
: /* List of coding systems.
10622 Do not alter the value of this variable manually. This variable should be
10623 updated by the functions `define-coding-system' and
10624 `define-coding-system-alias'. */);
10625 Vcoding_system_list
= Qnil
;
10627 DEFVAR_LISP ("coding-system-alist", &Vcoding_system_alist
,
10628 doc
: /* Alist of coding system names.
10629 Each element is one element list of coding system name.
10630 This variable is given to `completing-read' as COLLECTION argument.
10632 Do not alter the value of this variable manually. This variable should be
10633 updated by the functions `make-coding-system' and
10634 `define-coding-system-alias'. */);
10635 Vcoding_system_alist
= Qnil
;
10637 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list
,
10638 doc
: /* List of coding-categories (symbols) ordered by priority.
10640 On detecting a coding system, Emacs tries code detection algorithms
10641 associated with each coding-category one by one in this order. When
10642 one algorithm agrees with a byte sequence of source text, the coding
10643 system bound to the corresponding coding-category is selected.
10645 Don't modify this variable directly, but use `set-coding-priority'. */);
10649 Vcoding_category_list
= Qnil
;
10650 for (i
= coding_category_max
- 1; i
>= 0; i
--)
10651 Vcoding_category_list
10652 = Fcons (XVECTOR (Vcoding_category_table
)->contents
[i
],
10653 Vcoding_category_list
);
10656 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read
,
10657 doc
: /* Specify the coding system for read operations.
10658 It is useful to bind this variable with `let', but do not set it globally.
10659 If the value is a coding system, it is used for decoding on read operation.
10660 If not, an appropriate element is used from one of the coding system alists.
10661 There are three such tables: `file-coding-system-alist',
10662 `process-coding-system-alist', and `network-coding-system-alist'. */);
10663 Vcoding_system_for_read
= Qnil
;
10665 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write
,
10666 doc
: /* Specify the coding system for write operations.
10667 Programs bind this variable with `let', but you should not set it globally.
10668 If the value is a coding system, it is used for encoding of output,
10669 when writing it to a file and when sending it to a file or subprocess.
10671 If this does not specify a coding system, an appropriate element
10672 is used from one of the coding system alists.
10673 There are three such tables: `file-coding-system-alist',
10674 `process-coding-system-alist', and `network-coding-system-alist'.
10675 For output to files, if the above procedure does not specify a coding system,
10676 the value of `buffer-file-coding-system' is used. */);
10677 Vcoding_system_for_write
= Qnil
;
10679 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used
,
10681 Coding system used in the latest file or process I/O. */);
10682 Vlast_coding_system_used
= Qnil
;
10684 DEFVAR_LISP ("last-code-conversion-error", &Vlast_code_conversion_error
,
10686 Error status of the last code conversion.
10688 When an error was detected in the last code conversion, this variable
10689 is set to one of the following symbols.
10690 `insufficient-source'
10694 `insufficient-memory'
10695 When no error was detected, the value doesn't change. So, to check
10696 the error status of a code conversion by this variable, you must
10697 explicitly set this variable to nil before performing code
10699 Vlast_code_conversion_error
= Qnil
;
10701 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion
,
10703 *Non-nil means always inhibit code conversion of end-of-line format.
10704 See info node `Coding Systems' and info node `Text and Binary' concerning
10705 such conversion. */);
10706 inhibit_eol_conversion
= 0;
10708 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system
,
10710 Non-nil means process buffer inherits coding system of process output.
10711 Bind it to t if the process output is to be treated as if it were a file
10712 read from some filesystem. */);
10713 inherit_process_coding_system
= 0;
10715 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist
,
10717 Alist to decide a coding system to use for a file I/O operation.
10718 The format is ((PATTERN . VAL) ...),
10719 where PATTERN is a regular expression matching a file name,
10720 VAL is a coding system, a cons of coding systems, or a function symbol.
10721 If VAL is a coding system, it is used for both decoding and encoding
10723 If VAL is a cons of coding systems, the car part is used for decoding,
10724 and the cdr part is used for encoding.
10725 If VAL is a function symbol, the function must return a coding system
10726 or a cons of coding systems which are used as above. The function is
10727 called with an argument that is a list of the arguments with which
10728 `find-operation-coding-system' was called. If the function can't decide
10729 a coding system, it can return `undecided' so that the normal
10730 code-detection is performed.
10732 See also the function `find-operation-coding-system'
10733 and the variable `auto-coding-alist'. */);
10734 Vfile_coding_system_alist
= Qnil
;
10736 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist
,
10738 Alist to decide a coding system to use for a process I/O operation.
10739 The format is ((PATTERN . VAL) ...),
10740 where PATTERN is a regular expression matching a program name,
10741 VAL is a coding system, a cons of coding systems, or a function symbol.
10742 If VAL is a coding system, it is used for both decoding what received
10743 from the program and encoding what sent to the program.
10744 If VAL is a cons of coding systems, the car part is used for decoding,
10745 and the cdr part is used for encoding.
10746 If VAL is a function symbol, the function must return a coding system
10747 or a cons of coding systems which are used as above.
10749 See also the function `find-operation-coding-system'. */);
10750 Vprocess_coding_system_alist
= Qnil
;
10752 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist
,
10754 Alist to decide a coding system to use for a network I/O operation.
10755 The format is ((PATTERN . VAL) ...),
10756 where PATTERN is a regular expression matching a network service name
10757 or is a port number to connect to,
10758 VAL is a coding system, a cons of coding systems, or a function symbol.
10759 If VAL is a coding system, it is used for both decoding what received
10760 from the network stream and encoding what sent to the network stream.
10761 If VAL is a cons of coding systems, the car part is used for decoding,
10762 and the cdr part is used for encoding.
10763 If VAL is a function symbol, the function must return a coding system
10764 or a cons of coding systems which are used as above.
10766 See also the function `find-operation-coding-system'. */);
10767 Vnetwork_coding_system_alist
= Qnil
;
10769 DEFVAR_LISP ("locale-coding-system", &Vlocale_coding_system
,
10770 doc
: /* Coding system to use with system messages.
10771 Also used for decoding keyboard input on X Window system. */);
10772 Vlocale_coding_system
= Qnil
;
10774 /* The eol mnemonics are reset in startup.el system-dependently. */
10775 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix
,
10777 *String displayed in mode line for UNIX-like (LF) end-of-line format. */);
10778 eol_mnemonic_unix
= make_pure_c_string (":");
10780 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos
,
10782 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
10783 eol_mnemonic_dos
= make_pure_c_string ("\\");
10785 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac
,
10787 *String displayed in mode line for MAC-like (CR) end-of-line format. */);
10788 eol_mnemonic_mac
= make_pure_c_string ("/");
10790 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided
,
10792 *String displayed in mode line when end-of-line format is not yet determined. */);
10793 eol_mnemonic_undecided
= make_pure_c_string (":");
10795 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation
,
10797 *Non-nil enables character translation while encoding and decoding. */);
10798 Venable_character_translation
= Qt
;
10800 DEFVAR_LISP ("standard-translation-table-for-decode",
10801 &Vstandard_translation_table_for_decode
,
10802 doc
: /* Table for translating characters while decoding. */);
10803 Vstandard_translation_table_for_decode
= Qnil
;
10805 DEFVAR_LISP ("standard-translation-table-for-encode",
10806 &Vstandard_translation_table_for_encode
,
10807 doc
: /* Table for translating characters while encoding. */);
10808 Vstandard_translation_table_for_encode
= Qnil
;
10810 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_table
,
10811 doc
: /* Alist of charsets vs revision numbers.
10812 While encoding, if a charset (car part of an element) is found,
10813 designate it with the escape sequence identifying revision (cdr part
10814 of the element). */);
10815 Vcharset_revision_table
= Qnil
;
10817 DEFVAR_LISP ("default-process-coding-system",
10818 &Vdefault_process_coding_system
,
10819 doc
: /* Cons of coding systems used for process I/O by default.
10820 The car part is used for decoding a process output,
10821 the cdr part is used for encoding a text to be sent to a process. */);
10822 Vdefault_process_coding_system
= Qnil
;
10824 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table
,
10826 Table of extra Latin codes in the range 128..159 (inclusive).
10827 This is a vector of length 256.
10828 If Nth element is non-nil, the existence of code N in a file
10829 \(or output of subprocess) doesn't prevent it to be detected as
10830 a coding system of ISO 2022 variant which has a flag
10831 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
10832 or reading output of a subprocess.
10833 Only 128th through 159th elements have a meaning. */);
10834 Vlatin_extra_code_table
= Fmake_vector (make_number (256), Qnil
);
10836 DEFVAR_LISP ("select-safe-coding-system-function",
10837 &Vselect_safe_coding_system_function
,
10839 Function to call to select safe coding system for encoding a text.
10841 If set, this function is called to force a user to select a proper
10842 coding system which can encode the text in the case that a default
10843 coding system used in each operation can't encode the text. The
10844 function should take care that the buffer is not modified while
10845 the coding system is being selected.
10847 The default value is `select-safe-coding-system' (which see). */);
10848 Vselect_safe_coding_system_function
= Qnil
;
10850 DEFVAR_BOOL ("coding-system-require-warning",
10851 &coding_system_require_warning
,
10852 doc
: /* Internal use only.
10853 If non-nil, on writing a file, `select-safe-coding-system-function' is
10854 called even if `coding-system-for-write' is non-nil. The command
10855 `universal-coding-system-argument' binds this variable to t temporarily. */);
10856 coding_system_require_warning
= 0;
10859 DEFVAR_BOOL ("inhibit-iso-escape-detection",
10860 &inhibit_iso_escape_detection
,
10862 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection.
10864 When Emacs reads text, it tries to detect how the text is encoded.
10865 This code detection is sensitive to escape sequences. If Emacs sees
10866 a valid ISO-2022 escape sequence, it assumes the text is encoded in one
10867 of the ISO2022 encodings, and decodes text by the corresponding coding
10868 system (e.g. `iso-2022-7bit').
10870 However, there may be a case that you want to read escape sequences in
10871 a file as is. In such a case, you can set this variable to non-nil.
10872 Then the code detection will ignore any escape sequences, and no text is
10873 detected as encoded in some ISO-2022 encoding. The result is that all
10874 escape sequences become visible in a buffer.
10876 The default value is nil, and it is strongly recommended not to change
10877 it. That is because many Emacs Lisp source files that contain
10878 non-ASCII characters are encoded by the coding system `iso-2022-7bit'
10879 in Emacs's distribution, and they won't be decoded correctly on
10880 reading if you suppress escape sequence detection.
10882 The other way to read escape sequences in a file without decoding is
10883 to explicitly specify some coding system that doesn't use ISO-2022
10884 escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argument]. */);
10885 inhibit_iso_escape_detection
= 0;
10887 DEFVAR_BOOL ("inhibit-null-byte-detection",
10888 &inhibit_null_byte_detection
,
10889 doc
: /* If non-nil, Emacs ignores null bytes on code detection.
10890 By default, Emacs treats it as binary data, and does not attempt to
10891 decode it. The effect is as if you specified `no-conversion' for
10894 Set this to non-nil when a regular text happens to include null bytes.
10895 Examples are Index nodes of Info files and null-byte delimited output
10896 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and
10897 decode text as usual. */);
10898 inhibit_null_byte_detection
= 0;
10900 DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input
,
10901 doc
: /* Char table for translating self-inserting characters.
10902 This is applied to the result of input methods, not their input.
10903 See also `keyboard-translate-table'.
10905 Use of this variable for character code unification was rendered
10906 obsolete in Emacs 23.1 and later, since Unicode is now the basis of
10907 internal character representation. */);
10908 Vtranslation_table_for_input
= Qnil
;
10911 Lisp_Object args
[coding_arg_max
];
10912 Lisp_Object plist
[16];
10915 for (i
= 0; i
< coding_arg_max
; i
++)
10918 plist
[0] = intern_c_string (":name");
10919 plist
[1] = args
[coding_arg_name
] = Qno_conversion
;
10920 plist
[2] = intern_c_string (":mnemonic");
10921 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('=');
10922 plist
[4] = intern_c_string (":coding-type");
10923 plist
[5] = args
[coding_arg_coding_type
] = Qraw_text
;
10924 plist
[6] = intern_c_string (":ascii-compatible-p");
10925 plist
[7] = args
[coding_arg_ascii_compatible_p
] = Qt
;
10926 plist
[8] = intern_c_string (":default-char");
10927 plist
[9] = args
[coding_arg_default_char
] = make_number (0);
10928 plist
[10] = intern_c_string (":for-unibyte");
10929 plist
[11] = args
[coding_arg_for_unibyte
] = Qt
;
10930 plist
[12] = intern_c_string (":docstring");
10931 plist
[13] = make_pure_c_string ("Do no conversion.\n\
10933 When you visit a file with this coding, the file is read into a\n\
10934 unibyte buffer as is, thus each byte of a file is treated as a\n\
10936 plist
[14] = intern_c_string (":eol-type");
10937 plist
[15] = args
[coding_arg_eol_type
] = Qunix
;
10938 args
[coding_arg_plist
] = Flist (16, plist
);
10939 Fdefine_coding_system_internal (coding_arg_max
, args
);
10941 plist
[1] = args
[coding_arg_name
] = Qundecided
;
10942 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('-');
10943 plist
[5] = args
[coding_arg_coding_type
] = Qundecided
;
10944 /* This is already set.
10945 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */
10946 plist
[8] = intern_c_string (":charset-list");
10947 plist
[9] = args
[coding_arg_charset_list
] = Fcons (Qascii
, Qnil
);
10948 plist
[11] = args
[coding_arg_for_unibyte
] = Qnil
;
10949 plist
[13] = make_pure_c_string ("No conversion on encoding, automatic conversion on decoding.");
10950 plist
[15] = args
[coding_arg_eol_type
] = Qnil
;
10951 args
[coding_arg_plist
] = Flist (16, plist
);
10952 Fdefine_coding_system_internal (coding_arg_max
, args
);
10955 setup_coding_system (Qno_conversion
, &safe_terminal_coding
);
10960 for (i
= 0; i
< coding_category_max
; i
++)
10961 Fset (AREF (Vcoding_category_table
, i
), Qno_conversion
);
10963 #if defined (MSDOS) || defined (WINDOWSNT)
10964 system_eol_type
= Qdos
;
10966 system_eol_type
= Qunix
;
10968 staticpro (&system_eol_type
);
10972 emacs_strerror (error_number
)
10977 synchronize_system_messages_locale ();
10978 str
= strerror (error_number
);
10980 if (! NILP (Vlocale_coding_system
))
10982 Lisp_Object dec
= code_convert_string_norecord (build_string (str
),
10983 Vlocale_coding_system
,
10985 str
= (char *) SDATA (dec
);
10993 /* arch-tag: 3a3a2b01-5ff6-4071-9afe-f5b808d9229d
10994 (do not change this comment) */