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 (struct coding_system
*coding
,
158 struct coding_detection_info
*detect_info
)
160 const unsigned char *src
= coding
->source
;
161 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
162 int multibytep
= coding
->src_multibyte
;
163 int consumed_chars
= 0;
169 /* Get one byte from the source. If the souce is exausted, jump
170 to no_more_source:. */
173 if (! __C_conforms_to_XXX___ (c
))
175 if (! __C_strongly_suggests_XXX__ (c
))
176 found
= CATEGORY_MASK_XXX
;
178 /* The byte sequence is invalid for XXX. */
179 detect_info
->rejected
|= CATEGORY_MASK_XXX
;
183 /* The source exausted successfully. */
184 detect_info
->found
|= found
;
189 /*** GENERAL NOTES on `decode_coding_XXX ()' functions ***
191 These functions decode a byte sequence specified as a source by
192 CODING. The resulting multibyte text goes to a place pointed to by
193 CODING->charbuf, the length of which should not exceed
194 CODING->charbuf_size;
196 These functions set the information of original and decoded texts in
197 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used.
198 They also set CODING->result to one of CODING_RESULT_XXX indicating
199 how the decoding is finished.
201 Below is the template of these functions. */
205 decode_coding_XXXX (struct coding_system
*coding
)
207 const unsigned char *src
= coding
->source
+ coding
->consumed
;
208 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
209 /* SRC_BASE remembers the start position in source in each loop.
210 The loop will be exited when there's not enough source code, or
211 when there's no room in CHARBUF for a decoded character. */
212 const unsigned char *src_base
;
213 /* A buffer to produce decoded characters. */
214 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
215 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
216 int multibytep
= coding
->src_multibyte
;
221 if (charbuf
< charbuf_end
)
222 /* No more room to produce a decoded character. */
229 if (src_base
< src_end
230 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
231 /* If the source ends by partial bytes to construct a character,
232 treat them as eight-bit raw data. */
233 while (src_base
< src_end
&& charbuf
< charbuf_end
)
234 *charbuf
++ = *src_base
++;
235 /* Remember how many bytes and characters we consumed. If the
236 source is multibyte, the bytes and chars are not identical. */
237 coding
->consumed
= coding
->consumed_char
= src_base
- coding
->source
;
238 /* Remember how many characters we produced. */
239 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
243 /*** GENERAL NOTES on `encode_coding_XXX ()' functions ***
245 These functions encode SRC_BYTES length text at SOURCE of Emacs'
246 internal multibyte format by CODING. The resulting byte sequence
247 goes to a place pointed to by DESTINATION, the length of which
248 should not exceed DST_BYTES.
250 These functions set the information of original and encoded texts in
251 the members produced, produced_char, consumed, and consumed_char of
252 the structure *CODING. They also set the member result to one of
253 CODING_RESULT_XXX indicating how the encoding finished.
255 DST_BYTES zero means that source area and destination area are
256 overlapped, which means that we can produce a encoded text until it
257 reaches at the head of not-yet-encoded source text.
259 Below is a template of these functions. */
262 encode_coding_XXX (struct coding_system
*coding
)
264 int multibytep
= coding
->dst_multibyte
;
265 int *charbuf
= coding
->charbuf
;
266 int *charbuf_end
= charbuf
->charbuf
+ coding
->charbuf_used
;
267 unsigned char *dst
= coding
->destination
+ coding
->produced
;
268 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
269 unsigned char *adjusted_dst_end
= dst_end
- _MAX_BYTES_PRODUCED_IN_LOOP_
;
270 int produced_chars
= 0;
272 for (; charbuf
< charbuf_end
&& dst
< adjusted_dst_end
; charbuf
++)
275 /* Encode C into DST, and increment DST. */
277 label_no_more_destination
:
278 /* How many chars and bytes we produced. */
279 coding
->produced_char
+= produced_chars
;
280 coding
->produced
= dst
- coding
->destination
;
285 /*** 1. Preamble ***/
293 #include "character.h"
296 #include "composite.h"
300 #include "termhooks.h"
302 Lisp_Object Vcoding_system_hash_table
;
304 Lisp_Object Qcoding_system
, Qcoding_aliases
, Qeol_type
;
305 Lisp_Object Qunix
, Qdos
;
306 extern Lisp_Object Qmac
; /* frame.c */
307 Lisp_Object Qbuffer_file_coding_system
;
308 Lisp_Object Qpost_read_conversion
, Qpre_write_conversion
;
309 Lisp_Object Qdefault_char
;
310 Lisp_Object Qno_conversion
, Qundecided
;
311 Lisp_Object Qcharset
, Qiso_2022
, Qutf_8
, Qutf_16
, Qshift_jis
, Qbig5
;
312 Lisp_Object Qbig
, Qlittle
;
313 Lisp_Object Qcoding_system_history
;
314 Lisp_Object Qvalid_codes
;
315 Lisp_Object QCcategory
, QCmnemonic
, QCdefault_char
;
316 Lisp_Object QCdecode_translation_table
, QCencode_translation_table
;
317 Lisp_Object QCpost_read_conversion
, QCpre_write_conversion
;
318 Lisp_Object QCascii_compatible_p
;
320 extern Lisp_Object Qinsert_file_contents
, Qwrite_region
;
321 Lisp_Object Qcall_process
, Qcall_process_region
;
322 Lisp_Object Qstart_process
, Qopen_network_stream
;
323 Lisp_Object Qtarget_idx
;
325 Lisp_Object Qinsufficient_source
, Qinconsistent_eol
, Qinvalid_source
;
326 Lisp_Object Qinterrupted
, Qinsufficient_memory
;
328 extern Lisp_Object Qcompletion_ignore_case
;
330 /* If a symbol has this property, evaluate the value to define the
331 symbol as a coding system. */
332 static Lisp_Object Qcoding_system_define_form
;
334 int coding_system_require_warning
;
336 Lisp_Object Vselect_safe_coding_system_function
;
338 /* Mnemonic string for each format of end-of-line. */
339 Lisp_Object eol_mnemonic_unix
, eol_mnemonic_dos
, eol_mnemonic_mac
;
340 /* Mnemonic string to indicate format of end-of-line is not yet
342 Lisp_Object eol_mnemonic_undecided
;
344 /* Format of end-of-line decided by system. This is Qunix on
345 Unix and Mac, Qdos on DOS/Windows.
346 This has an effect only for external encoding (i.e. for output to
347 file and process), not for in-buffer or Lisp string encoding. */
348 static Lisp_Object system_eol_type
;
352 Lisp_Object Vcoding_system_list
, Vcoding_system_alist
;
354 Lisp_Object Qcoding_system_p
, Qcoding_system_error
;
356 /* Coding system emacs-mule and raw-text are for converting only
357 end-of-line format. */
358 Lisp_Object Qemacs_mule
, Qraw_text
;
359 Lisp_Object Qutf_8_emacs
;
361 /* Coding-systems are handed between Emacs Lisp programs and C internal
362 routines by the following three variables. */
363 /* Coding-system for reading files and receiving data from process. */
364 Lisp_Object Vcoding_system_for_read
;
365 /* Coding-system for writing files and sending data to process. */
366 Lisp_Object Vcoding_system_for_write
;
367 /* Coding-system actually used in the latest I/O. */
368 Lisp_Object Vlast_coding_system_used
;
369 /* Set to non-nil when an error is detected while code conversion. */
370 Lisp_Object Vlast_code_conversion_error
;
371 /* A vector of length 256 which contains information about special
372 Latin codes (especially for dealing with Microsoft codes). */
373 Lisp_Object Vlatin_extra_code_table
;
375 /* Flag to inhibit code conversion of end-of-line format. */
376 int inhibit_eol_conversion
;
378 /* Flag to inhibit ISO2022 escape sequence detection. */
379 int inhibit_iso_escape_detection
;
381 /* Flag to inhibit detection of binary files through null bytes. */
382 int inhibit_null_byte_detection
;
384 /* Flag to make buffer-file-coding-system inherit from process-coding. */
385 int inherit_process_coding_system
;
387 /* Coding system to be used to encode text for terminal display when
388 terminal coding system is nil. */
389 struct coding_system safe_terminal_coding
;
391 Lisp_Object Vfile_coding_system_alist
;
392 Lisp_Object Vprocess_coding_system_alist
;
393 Lisp_Object Vnetwork_coding_system_alist
;
395 Lisp_Object Vlocale_coding_system
;
399 /* Flag to tell if we look up translation table on character code
401 Lisp_Object Venable_character_translation
;
402 /* Standard translation table to look up on decoding (reading). */
403 Lisp_Object Vstandard_translation_table_for_decode
;
404 /* Standard translation table to look up on encoding (writing). */
405 Lisp_Object Vstandard_translation_table_for_encode
;
407 Lisp_Object Qtranslation_table
;
408 Lisp_Object Qtranslation_table_id
;
409 Lisp_Object Qtranslation_table_for_decode
;
410 Lisp_Object Qtranslation_table_for_encode
;
412 /* Alist of charsets vs revision number. */
413 static Lisp_Object Vcharset_revision_table
;
415 /* Default coding systems used for process I/O. */
416 Lisp_Object Vdefault_process_coding_system
;
418 /* Char table for translating Quail and self-inserting input. */
419 Lisp_Object Vtranslation_table_for_input
;
421 /* Two special coding systems. */
422 Lisp_Object Vsjis_coding_system
;
423 Lisp_Object Vbig5_coding_system
;
425 /* ISO2022 section */
427 #define CODING_ISO_INITIAL(coding, reg) \
428 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \
429 coding_attr_iso_initial), \
433 #define CODING_ISO_REQUEST(coding, charset_id) \
434 (((charset_id) <= (coding)->max_charset_id \
435 ? ((coding)->safe_charsets[charset_id] != 255 \
436 ? (coding)->safe_charsets[charset_id] \
441 #define CODING_ISO_FLAGS(coding) \
442 ((coding)->spec.iso_2022.flags)
443 #define CODING_ISO_DESIGNATION(coding, reg) \
444 ((coding)->spec.iso_2022.current_designation[reg])
445 #define CODING_ISO_INVOCATION(coding, plane) \
446 ((coding)->spec.iso_2022.current_invocation[plane])
447 #define CODING_ISO_SINGLE_SHIFTING(coding) \
448 ((coding)->spec.iso_2022.single_shifting)
449 #define CODING_ISO_BOL(coding) \
450 ((coding)->spec.iso_2022.bol)
451 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \
452 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane)))
453 #define CODING_ISO_CMP_STATUS(coding) \
454 (&(coding)->spec.iso_2022.cmp_status)
455 #define CODING_ISO_EXTSEGMENT_LEN(coding) \
456 ((coding)->spec.iso_2022.ctext_extended_segment_len)
457 #define CODING_ISO_EMBEDDED_UTF_8(coding) \
458 ((coding)->spec.iso_2022.embedded_utf_8)
460 /* Control characters of ISO2022. */
461 /* code */ /* function */
462 #define ISO_CODE_LF 0x0A /* line-feed */
463 #define ISO_CODE_CR 0x0D /* carriage-return */
464 #define ISO_CODE_SO 0x0E /* shift-out */
465 #define ISO_CODE_SI 0x0F /* shift-in */
466 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
467 #define ISO_CODE_ESC 0x1B /* escape */
468 #define ISO_CODE_SS2 0x8E /* single-shift-2 */
469 #define ISO_CODE_SS3 0x8F /* single-shift-3 */
470 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */
472 /* All code (1-byte) of ISO2022 is classified into one of the
474 enum iso_code_class_type
476 ISO_control_0
, /* Control codes in the range
477 0x00..0x1F and 0x7F, except for the
478 following 5 codes. */
479 ISO_shift_out
, /* ISO_CODE_SO (0x0E) */
480 ISO_shift_in
, /* ISO_CODE_SI (0x0F) */
481 ISO_single_shift_2_7
, /* ISO_CODE_SS2_7 (0x19) */
482 ISO_escape
, /* ISO_CODE_SO (0x1B) */
483 ISO_control_1
, /* Control codes in the range
484 0x80..0x9F, except for the
485 following 3 codes. */
486 ISO_single_shift_2
, /* ISO_CODE_SS2 (0x8E) */
487 ISO_single_shift_3
, /* ISO_CODE_SS3 (0x8F) */
488 ISO_control_sequence_introducer
, /* ISO_CODE_CSI (0x9B) */
489 ISO_0x20_or_0x7F
, /* Codes of the values 0x20 or 0x7F. */
490 ISO_graphic_plane_0
, /* Graphic codes in the range 0x21..0x7E. */
491 ISO_0xA0_or_0xFF
, /* Codes of the values 0xA0 or 0xFF. */
492 ISO_graphic_plane_1
/* Graphic codes in the range 0xA1..0xFE. */
495 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the
496 `iso-flags' attribute of an iso2022 coding system. */
498 /* If set, produce long-form designation sequence (e.g. ESC $ ( A)
499 instead of the correct short-form sequence (e.g. ESC $ A). */
500 #define CODING_ISO_FLAG_LONG_FORM 0x0001
502 /* If set, reset graphic planes and registers at end-of-line to the
504 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002
506 /* If set, reset graphic planes and registers before any control
507 characters to the initial state. */
508 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004
510 /* If set, encode by 7-bit environment. */
511 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008
513 /* If set, use locking-shift function. */
514 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010
516 /* If set, use single-shift function. Overwrite
517 CODING_ISO_FLAG_LOCKING_SHIFT. */
518 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020
520 /* If set, use designation escape sequence. */
521 #define CODING_ISO_FLAG_DESIGNATION 0x0040
523 /* If set, produce revision number sequence. */
524 #define CODING_ISO_FLAG_REVISION 0x0080
526 /* If set, produce ISO6429's direction specifying sequence. */
527 #define CODING_ISO_FLAG_DIRECTION 0x0100
529 /* If set, assume designation states are reset at beginning of line on
531 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200
533 /* If set, designation sequence should be placed at beginning of line
535 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400
537 /* If set, do not encode unsafe charactes on output. */
538 #define CODING_ISO_FLAG_SAFE 0x0800
540 /* If set, extra latin codes (128..159) are accepted as a valid code
542 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000
544 #define CODING_ISO_FLAG_COMPOSITION 0x2000
546 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000
548 #define CODING_ISO_FLAG_USE_ROMAN 0x8000
550 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000
552 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000
554 /* A character to be produced on output if encoding of the original
555 character is prohibited by CODING_ISO_FLAG_SAFE. */
556 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?'
559 #define CODING_UTF_8_BOM(coding) \
560 ((coding)->spec.utf_8_bom)
563 #define CODING_UTF_16_BOM(coding) \
564 ((coding)->spec.utf_16.bom)
566 #define CODING_UTF_16_ENDIAN(coding) \
567 ((coding)->spec.utf_16.endian)
569 #define CODING_UTF_16_SURROGATE(coding) \
570 ((coding)->spec.utf_16.surrogate)
574 #define CODING_CCL_DECODER(coding) \
575 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder)
576 #define CODING_CCL_ENCODER(coding) \
577 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder)
578 #define CODING_CCL_VALIDS(coding) \
579 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids)))
581 /* Index for each coding category in `coding_categories' */
585 coding_category_iso_7
,
586 coding_category_iso_7_tight
,
587 coding_category_iso_8_1
,
588 coding_category_iso_8_2
,
589 coding_category_iso_7_else
,
590 coding_category_iso_8_else
,
591 coding_category_utf_8_auto
,
592 coding_category_utf_8_nosig
,
593 coding_category_utf_8_sig
,
594 coding_category_utf_16_auto
,
595 coding_category_utf_16_be
,
596 coding_category_utf_16_le
,
597 coding_category_utf_16_be_nosig
,
598 coding_category_utf_16_le_nosig
,
599 coding_category_charset
,
600 coding_category_sjis
,
601 coding_category_big5
,
603 coding_category_emacs_mule
,
604 /* All above are targets of code detection. */
605 coding_category_raw_text
,
606 coding_category_undecided
,
610 /* Definitions of flag bits used in detect_coding_XXXX. */
611 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7)
612 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight)
613 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1)
614 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2)
615 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else)
616 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else)
617 #define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto)
618 #define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig)
619 #define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig)
620 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto)
621 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be)
622 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le)
623 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig)
624 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig)
625 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset)
626 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis)
627 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5)
628 #define CATEGORY_MASK_CCL (1 << coding_category_ccl)
629 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule)
630 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text)
632 /* This value is returned if detect_coding_mask () find nothing other
633 than ASCII characters. */
634 #define CATEGORY_MASK_ANY \
635 (CATEGORY_MASK_ISO_7 \
636 | CATEGORY_MASK_ISO_7_TIGHT \
637 | CATEGORY_MASK_ISO_8_1 \
638 | CATEGORY_MASK_ISO_8_2 \
639 | CATEGORY_MASK_ISO_7_ELSE \
640 | CATEGORY_MASK_ISO_8_ELSE \
641 | CATEGORY_MASK_UTF_8_AUTO \
642 | CATEGORY_MASK_UTF_8_NOSIG \
643 | CATEGORY_MASK_UTF_8_SIG \
644 | CATEGORY_MASK_UTF_16_AUTO \
645 | CATEGORY_MASK_UTF_16_BE \
646 | CATEGORY_MASK_UTF_16_LE \
647 | CATEGORY_MASK_UTF_16_BE_NOSIG \
648 | CATEGORY_MASK_UTF_16_LE_NOSIG \
649 | CATEGORY_MASK_CHARSET \
650 | CATEGORY_MASK_SJIS \
651 | CATEGORY_MASK_BIG5 \
652 | CATEGORY_MASK_CCL \
653 | CATEGORY_MASK_EMACS_MULE)
656 #define CATEGORY_MASK_ISO_7BIT \
657 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT)
659 #define CATEGORY_MASK_ISO_8BIT \
660 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2)
662 #define CATEGORY_MASK_ISO_ELSE \
663 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE)
665 #define CATEGORY_MASK_ISO_ESCAPE \
666 (CATEGORY_MASK_ISO_7 \
667 | CATEGORY_MASK_ISO_7_TIGHT \
668 | CATEGORY_MASK_ISO_7_ELSE \
669 | CATEGORY_MASK_ISO_8_ELSE)
671 #define CATEGORY_MASK_ISO \
672 ( CATEGORY_MASK_ISO_7BIT \
673 | CATEGORY_MASK_ISO_8BIT \
674 | CATEGORY_MASK_ISO_ELSE)
676 #define CATEGORY_MASK_UTF_16 \
677 (CATEGORY_MASK_UTF_16_AUTO \
678 | CATEGORY_MASK_UTF_16_BE \
679 | CATEGORY_MASK_UTF_16_LE \
680 | CATEGORY_MASK_UTF_16_BE_NOSIG \
681 | CATEGORY_MASK_UTF_16_LE_NOSIG)
683 #define CATEGORY_MASK_UTF_8 \
684 (CATEGORY_MASK_UTF_8_AUTO \
685 | CATEGORY_MASK_UTF_8_NOSIG \
686 | CATEGORY_MASK_UTF_8_SIG)
688 /* List of symbols `coding-category-xxx' ordered by priority. This
689 variable is exposed to Emacs Lisp. */
690 static Lisp_Object Vcoding_category_list
;
692 /* Table of coding categories (Lisp symbols). This variable is for
694 static Lisp_Object Vcoding_category_table
;
696 /* Table of coding-categories ordered by priority. */
697 static enum coding_category coding_priorities
[coding_category_max
];
699 /* Nth element is a coding context for the coding system bound to the
700 Nth coding category. */
701 static struct coding_system coding_categories
[coding_category_max
];
703 /*** Commonly used macros and functions ***/
706 #define min(a, b) ((a) < (b) ? (a) : (b))
709 #define max(a, b) ((a) > (b) ? (a) : (b))
712 #define CODING_GET_INFO(coding, attrs, charset_list) \
714 (attrs) = CODING_ID_ATTRS ((coding)->id); \
715 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \
719 /* Safely get one byte from the source text pointed by SRC which ends
720 at SRC_END, and set C to that byte. If there are not enough bytes
721 in the source, it jumps to `no_more_source'. If multibytep is
722 nonzero, and a multibyte character is found at SRC, set C to the
723 negative value of the character code. The caller should declare
724 and set these variables appropriately in advance:
725 src, src_end, multibytep */
727 #define ONE_MORE_BYTE(c) \
729 if (src == src_end) \
731 if (src_base < src) \
732 record_conversion_result \
733 (coding, CODING_RESULT_INSUFFICIENT_SRC); \
734 goto no_more_source; \
737 if (multibytep && (c & 0x80)) \
739 if ((c & 0xFE) == 0xC0) \
740 c = ((c & 1) << 6) | *src++; \
744 c = - string_char (src, &src, NULL); \
745 record_conversion_result \
746 (coding, CODING_RESULT_INVALID_SRC); \
752 /* Safely get two bytes from the source text pointed by SRC which ends
753 at SRC_END, and set C1 and C2 to those bytes while skipping the
754 heading multibyte characters. If there are not enough bytes in the
755 source, it jumps to `no_more_source'. If multibytep is nonzero and
756 a multibyte character is found for C2, set C2 to the negative value
757 of the character code. The caller should declare and set these
758 variables appropriately in advance:
759 src, src_end, multibytep
760 It is intended that this macro is used in detect_coding_utf_16. */
762 #define TWO_MORE_BYTES(c1, c2) \
765 if (src == src_end) \
766 goto no_more_source; \
768 if (multibytep && (c1 & 0x80)) \
770 if ((c1 & 0xFE) == 0xC0) \
771 c1 = ((c1 & 1) << 6) | *src++; \
774 src += BYTES_BY_CHAR_HEAD (c1) - 1; \
779 if (src == src_end) \
780 goto no_more_source; \
782 if (multibytep && (c2 & 0x80)) \
784 if ((c2 & 0xFE) == 0xC0) \
785 c2 = ((c2 & 1) << 6) | *src++; \
792 #define ONE_MORE_BYTE_NO_CHECK(c) \
795 if (multibytep && (c & 0x80)) \
797 if ((c & 0xFE) == 0xC0) \
798 c = ((c & 1) << 6) | *src++; \
802 c = - string_char (src, &src, NULL); \
803 record_conversion_result \
804 (coding, CODING_RESULT_INVALID_SRC); \
811 /* Store a byte C in the place pointed by DST and increment DST to the
812 next free point, and increment PRODUCED_CHARS. The caller should
813 assure that C is 0..127, and declare and set the variable `dst'
814 appropriately in advance.
818 #define EMIT_ONE_ASCII_BYTE(c) \
825 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */
827 #define EMIT_TWO_ASCII_BYTES(c1, c2) \
829 produced_chars += 2; \
830 *dst++ = (c1), *dst++ = (c2); \
834 /* Store a byte C in the place pointed by DST and increment DST to the
835 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is
836 nonzero, store in an appropriate multibyte from. The caller should
837 declare and set the variables `dst' and `multibytep' appropriately
840 #define EMIT_ONE_BYTE(c) \
847 ch = BYTE8_TO_CHAR (ch); \
848 CHAR_STRING_ADVANCE (ch, dst); \
855 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */
857 #define EMIT_TWO_BYTES(c1, c2) \
859 produced_chars += 2; \
866 ch = BYTE8_TO_CHAR (ch); \
867 CHAR_STRING_ADVANCE (ch, dst); \
870 ch = BYTE8_TO_CHAR (ch); \
871 CHAR_STRING_ADVANCE (ch, dst); \
881 #define EMIT_THREE_BYTES(c1, c2, c3) \
883 EMIT_ONE_BYTE (c1); \
884 EMIT_TWO_BYTES (c2, c3); \
888 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \
890 EMIT_TWO_BYTES (c1, c2); \
891 EMIT_TWO_BYTES (c3, c4); \
895 /* Prototypes for static functions. */
896 static void record_conversion_result (struct coding_system
*coding
,
897 enum coding_result_code result
);
898 static int detect_coding_utf_8 (struct coding_system
*,
899 struct coding_detection_info
*info
);
900 static void decode_coding_utf_8 (struct coding_system
*);
901 static int encode_coding_utf_8 (struct coding_system
*);
903 static int detect_coding_utf_16 (struct coding_system
*,
904 struct coding_detection_info
*info
);
905 static void decode_coding_utf_16 (struct coding_system
*);
906 static int encode_coding_utf_16 (struct coding_system
*);
908 static int detect_coding_iso_2022 (struct coding_system
*,
909 struct coding_detection_info
*info
);
910 static void decode_coding_iso_2022 (struct coding_system
*);
911 static int encode_coding_iso_2022 (struct coding_system
*);
913 static int detect_coding_emacs_mule (struct coding_system
*,
914 struct coding_detection_info
*info
);
915 static void decode_coding_emacs_mule (struct coding_system
*);
916 static int encode_coding_emacs_mule (struct coding_system
*);
918 static int detect_coding_sjis (struct coding_system
*,
919 struct coding_detection_info
*info
);
920 static void decode_coding_sjis (struct coding_system
*);
921 static int encode_coding_sjis (struct coding_system
*);
923 static int detect_coding_big5 (struct coding_system
*,
924 struct coding_detection_info
*info
);
925 static void decode_coding_big5 (struct coding_system
*);
926 static int encode_coding_big5 (struct coding_system
*);
928 static int detect_coding_ccl (struct coding_system
*,
929 struct coding_detection_info
*info
);
930 static void decode_coding_ccl (struct coding_system
*);
931 static int encode_coding_ccl (struct coding_system
*);
933 static void decode_coding_raw_text (struct coding_system
*);
934 static int encode_coding_raw_text (struct coding_system
*);
936 static void coding_set_source (struct coding_system
*);
937 static void coding_set_destination (struct coding_system
*);
938 static void coding_alloc_by_realloc (struct coding_system
*, EMACS_INT
);
939 static void coding_alloc_by_making_gap (struct coding_system
*,
940 EMACS_INT
, EMACS_INT
);
941 static unsigned char *alloc_destination (struct coding_system
*,
942 EMACS_INT
, unsigned char *);
943 static void setup_iso_safe_charsets (Lisp_Object
);
944 static unsigned char *encode_designation_at_bol (struct coding_system
*,
947 static int detect_eol (const unsigned char *,
948 EMACS_INT
, enum coding_category
);
949 static Lisp_Object
adjust_coding_eol_type (struct coding_system
*, int);
950 static void decode_eol (struct coding_system
*);
951 static Lisp_Object
get_translation_table (Lisp_Object
, int, int *);
952 static Lisp_Object
get_translation (Lisp_Object
, int *, int *);
953 static int produce_chars (struct coding_system
*, Lisp_Object
, int);
954 static INLINE
void produce_charset (struct coding_system
*, int *,
956 static void produce_annotation (struct coding_system
*, EMACS_INT
);
957 static int decode_coding (struct coding_system
*);
958 static INLINE
int *handle_composition_annotation (EMACS_INT
, EMACS_INT
,
959 struct coding_system
*,
961 static INLINE
int *handle_charset_annotation (EMACS_INT
, EMACS_INT
,
962 struct coding_system
*,
964 static void consume_chars (struct coding_system
*, Lisp_Object
, int);
965 static int encode_coding (struct coding_system
*);
966 static Lisp_Object
make_conversion_work_buffer (int);
967 static Lisp_Object
code_conversion_restore (Lisp_Object
);
968 static INLINE
int char_encodable_p (int, Lisp_Object
);
969 static Lisp_Object
make_subsidiaries (Lisp_Object
);
972 record_conversion_result (struct coding_system
*coding
,
973 enum coding_result_code result
)
975 coding
->result
= result
;
978 case CODING_RESULT_INSUFFICIENT_SRC
:
979 Vlast_code_conversion_error
= Qinsufficient_source
;
981 case CODING_RESULT_INCONSISTENT_EOL
:
982 Vlast_code_conversion_error
= Qinconsistent_eol
;
984 case CODING_RESULT_INVALID_SRC
:
985 Vlast_code_conversion_error
= Qinvalid_source
;
987 case CODING_RESULT_INTERRUPT
:
988 Vlast_code_conversion_error
= Qinterrupted
;
990 case CODING_RESULT_INSUFFICIENT_MEM
:
991 Vlast_code_conversion_error
= Qinsufficient_memory
;
993 case CODING_RESULT_INSUFFICIENT_DST
:
994 /* Don't record this error in Vlast_code_conversion_error
995 because it happens just temporarily and is resolved when the
996 whole conversion is finished. */
998 case CODING_RESULT_SUCCESS
:
1001 Vlast_code_conversion_error
= intern ("Unknown error");
1005 /* This wrapper macro is used to preserve validity of pointers into
1006 buffer text across calls to decode_char, which could cause
1007 relocation of buffers if it loads a charset map, because loading a
1008 charset map allocates large structures. */
1009 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \
1011 charset_map_loaded = 0; \
1012 c = DECODE_CHAR (charset, code); \
1013 if (charset_map_loaded) \
1015 const unsigned char *orig = coding->source; \
1018 coding_set_source (coding); \
1019 offset = coding->source - orig; \
1021 src_base += offset; \
1022 src_end += offset; \
1027 /* If there are at least BYTES length of room at dst, allocate memory
1028 for coding->destination and update dst and dst_end. We don't have
1029 to take care of coding->source which will be relocated. It is
1030 handled by calling coding_set_source in encode_coding. */
1032 #define ASSURE_DESTINATION(bytes) \
1034 if (dst + (bytes) >= dst_end) \
1036 int more_bytes = charbuf_end - charbuf + (bytes); \
1038 dst = alloc_destination (coding, more_bytes, dst); \
1039 dst_end = coding->destination + coding->dst_bytes; \
1044 /* Store multibyte form of the character C in P, and advance P to the
1045 end of the multibyte form. This is like CHAR_STRING_ADVANCE but it
1046 never calls MAYBE_UNIFY_CHAR. */
1048 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) \
1050 if ((c) <= MAX_1_BYTE_CHAR) \
1052 else if ((c) <= MAX_2_BYTE_CHAR) \
1053 *(p)++ = (0xC0 | ((c) >> 6)), \
1054 *(p)++ = (0x80 | ((c) & 0x3F)); \
1055 else if ((c) <= MAX_3_BYTE_CHAR) \
1056 *(p)++ = (0xE0 | ((c) >> 12)), \
1057 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \
1058 *(p)++ = (0x80 | ((c) & 0x3F)); \
1059 else if ((c) <= MAX_4_BYTE_CHAR) \
1060 *(p)++ = (0xF0 | (c >> 18)), \
1061 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \
1062 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \
1063 *(p)++ = (0x80 | (c & 0x3F)); \
1064 else if ((c) <= MAX_5_BYTE_CHAR) \
1066 *(p)++ = (0x80 | ((c >> 18) & 0x0F)), \
1067 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \
1068 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \
1069 *(p)++ = (0x80 | (c & 0x3F)); \
1071 (p) += BYTE8_STRING ((c) - 0x3FFF80, p); \
1075 /* Return the character code of character whose multibyte form is at
1076 P, and advance P to the end of the multibyte form. This is like
1077 STRING_CHAR_ADVANCE, but it never calls MAYBE_UNIFY_CHAR. */
1079 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) \
1082 : ! ((p)[0] & 0x20) \
1084 ((((p)[-2] & 0x1F) << 6) \
1085 | ((p)[-1] & 0x3F) \
1086 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \
1087 : ! ((p)[0] & 0x10) \
1089 ((((p)[-3] & 0x0F) << 12) \
1090 | (((p)[-2] & 0x3F) << 6) \
1091 | ((p)[-1] & 0x3F))) \
1092 : ! ((p)[0] & 0x08) \
1094 ((((p)[-4] & 0xF) << 18) \
1095 | (((p)[-3] & 0x3F) << 12) \
1096 | (((p)[-2] & 0x3F) << 6) \
1097 | ((p)[-1] & 0x3F))) \
1099 ((((p)[-4] & 0x3F) << 18) \
1100 | (((p)[-3] & 0x3F) << 12) \
1101 | (((p)[-2] & 0x3F) << 6) \
1102 | ((p)[-1] & 0x3F))))
1106 coding_set_source (struct coding_system
*coding
)
1108 if (BUFFERP (coding
->src_object
))
1110 struct buffer
*buf
= XBUFFER (coding
->src_object
);
1112 if (coding
->src_pos
< 0)
1113 coding
->source
= BUF_GAP_END_ADDR (buf
) + coding
->src_pos_byte
;
1115 coding
->source
= BUF_BYTE_ADDRESS (buf
, coding
->src_pos_byte
);
1117 else if (STRINGP (coding
->src_object
))
1119 coding
->source
= SDATA (coding
->src_object
) + coding
->src_pos_byte
;
1122 /* Otherwise, the source is C string and is never relocated
1123 automatically. Thus we don't have to update anything. */
1128 coding_set_destination (struct coding_system
*coding
)
1130 if (BUFFERP (coding
->dst_object
))
1132 if (coding
->src_pos
< 0)
1134 coding
->destination
= BEG_ADDR
+ coding
->dst_pos_byte
- BEG_BYTE
;
1135 coding
->dst_bytes
= (GAP_END_ADDR
1136 - (coding
->src_bytes
- coding
->consumed
)
1137 - coding
->destination
);
1141 /* We are sure that coding->dst_pos_byte is before the gap
1143 coding
->destination
= (BUF_BEG_ADDR (XBUFFER (coding
->dst_object
))
1144 + coding
->dst_pos_byte
- BEG_BYTE
);
1145 coding
->dst_bytes
= (BUF_GAP_END_ADDR (XBUFFER (coding
->dst_object
))
1146 - coding
->destination
);
1150 /* Otherwise, the destination is C string and is never relocated
1151 automatically. Thus we don't have to update anything. */
1157 coding_alloc_by_realloc (struct coding_system
*coding
, EMACS_INT bytes
)
1159 coding
->destination
= (unsigned char *) xrealloc (coding
->destination
,
1160 coding
->dst_bytes
+ bytes
);
1161 coding
->dst_bytes
+= bytes
;
1165 coding_alloc_by_making_gap (struct coding_system
*coding
,
1166 EMACS_INT gap_head_used
, EMACS_INT bytes
)
1168 if (EQ (coding
->src_object
, coding
->dst_object
))
1170 /* The gap may contain the produced data at the head and not-yet
1171 consumed data at the tail. To preserve those data, we at
1172 first make the gap size to zero, then increase the gap
1174 EMACS_INT add
= GAP_SIZE
;
1176 GPT
+= gap_head_used
, GPT_BYTE
+= gap_head_used
;
1177 GAP_SIZE
= 0; ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
1179 GAP_SIZE
+= add
; ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
1180 GPT
-= gap_head_used
, GPT_BYTE
-= gap_head_used
;
1184 Lisp_Object this_buffer
;
1186 this_buffer
= Fcurrent_buffer ();
1187 set_buffer_internal (XBUFFER (coding
->dst_object
));
1189 set_buffer_internal (XBUFFER (this_buffer
));
1194 static unsigned char *
1195 alloc_destination (struct coding_system
*coding
, EMACS_INT nbytes
,
1198 EMACS_INT offset
= dst
- coding
->destination
;
1200 if (BUFFERP (coding
->dst_object
))
1202 struct buffer
*buf
= XBUFFER (coding
->dst_object
);
1204 coding_alloc_by_making_gap (coding
, dst
- BUF_GPT_ADDR (buf
), nbytes
);
1207 coding_alloc_by_realloc (coding
, nbytes
);
1208 coding_set_destination (coding
);
1209 dst
= coding
->destination
+ offset
;
1213 /** Macros for annotations. */
1215 /* An annotation data is stored in the array coding->charbuf in this
1217 [ -LENGTH ANNOTATION_MASK NCHARS ... ]
1218 LENGTH is the number of elements in the annotation.
1219 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK.
1220 NCHARS is the number of characters in the text annotated.
1222 The format of the following elements depend on ANNOTATION_MASK.
1224 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements
1226 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ]
1228 NBYTES is the number of bytes specified in the header part of
1229 old-style emacs-mule encoding, or 0 for the other kind of
1232 METHOD is one of enum composition_method.
1234 Optionnal COMPOSITION-COMPONENTS are characters and composition
1237 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID
1240 If ANNOTATION_MASK is 0, this annotation is just a space holder to
1241 recover from an invalid annotation, and should be skipped by
1242 produce_annotation. */
1244 /* Maximum length of the header of annotation data. */
1245 #define MAX_ANNOTATION_LENGTH 5
1247 #define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \
1249 *(buf)++ = -(len); \
1250 *(buf)++ = (mask); \
1251 *(buf)++ = (nchars); \
1252 coding->annotated = 1; \
1255 #define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \
1257 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \
1263 #define ADD_CHARSET_DATA(buf, nchars, id) \
1265 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \
1270 /*** 2. Emacs' internal format (emacs-utf-8) ***/
1277 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1278 Check if a text is encoded in UTF-8. If it is, return 1, else
1281 #define UTF_8_1_OCTET_P(c) ((c) < 0x80)
1282 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
1283 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
1284 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
1285 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
1286 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
1288 #define UTF_BOM 0xFEFF
1289 #define UTF_8_BOM_1 0xEF
1290 #define UTF_8_BOM_2 0xBB
1291 #define UTF_8_BOM_3 0xBF
1294 detect_coding_utf_8 (struct coding_system
*coding
,
1295 struct coding_detection_info
*detect_info
)
1297 const unsigned char *src
= coding
->source
, *src_base
;
1298 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1299 int multibytep
= coding
->src_multibyte
;
1300 int consumed_chars
= 0;
1304 detect_info
->checked
|= CATEGORY_MASK_UTF_8
;
1305 /* A coding system of this category is always ASCII compatible. */
1306 src
+= coding
->head_ascii
;
1310 int c
, c1
, c2
, c3
, c4
;
1314 if (c
< 0 || UTF_8_1_OCTET_P (c
))
1317 if (c1
< 0 || ! UTF_8_EXTRA_OCTET_P (c1
))
1319 if (UTF_8_2_OCTET_LEADING_P (c
))
1325 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1327 if (UTF_8_3_OCTET_LEADING_P (c
))
1330 if (src_base
== coding
->source
1331 && c
== UTF_8_BOM_1
&& c1
== UTF_8_BOM_2
&& c2
== UTF_8_BOM_3
)
1336 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1338 if (UTF_8_4_OCTET_LEADING_P (c
))
1344 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1346 if (UTF_8_5_OCTET_LEADING_P (c
))
1353 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1357 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
1359 detect_info
->rejected
|= CATEGORY_MASK_UTF_8
;
1364 /* The first character 0xFFFE doesn't necessarily mean a BOM. */
1365 detect_info
->found
|= CATEGORY_MASK_UTF_8_SIG
| CATEGORY_MASK_UTF_8_NOSIG
;
1369 detect_info
->rejected
|= CATEGORY_MASK_UTF_8_SIG
;
1371 detect_info
->found
|= CATEGORY_MASK_UTF_8_NOSIG
;
1378 decode_coding_utf_8 (struct coding_system
*coding
)
1380 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1381 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1382 const unsigned char *src_base
;
1383 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1384 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
1385 int consumed_chars
= 0, consumed_chars_base
= 0;
1386 int multibytep
= coding
->src_multibyte
;
1387 enum utf_bom_type bom
= CODING_UTF_8_BOM (coding
);
1388 Lisp_Object attr
, charset_list
;
1390 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1391 int byte_after_cr
= -1;
1393 CODING_GET_INFO (coding
, attr
, charset_list
);
1395 if (bom
!= utf_without_bom
)
1401 if (! UTF_8_3_OCTET_LEADING_P (c1
))
1406 if (! UTF_8_EXTRA_OCTET_P (c2
))
1411 if (! UTF_8_EXTRA_OCTET_P (c3
))
1415 if ((c1
!= UTF_8_BOM_1
)
1416 || (c2
!= UTF_8_BOM_2
) || (c3
!= UTF_8_BOM_3
))
1419 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1424 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1428 int c
, c1
, c2
, c3
, c4
, c5
;
1431 consumed_chars_base
= consumed_chars
;
1433 if (charbuf
>= charbuf_end
)
1435 if (byte_after_cr
>= 0)
1440 if (byte_after_cr
>= 0)
1441 c1
= byte_after_cr
, byte_after_cr
= -1;
1448 else if (UTF_8_1_OCTET_P (c1
))
1450 if (eol_crlf
&& c1
== '\r')
1451 ONE_MORE_BYTE (byte_after_cr
);
1457 if (c2
< 0 || ! UTF_8_EXTRA_OCTET_P (c2
))
1459 if (UTF_8_2_OCTET_LEADING_P (c1
))
1461 c
= ((c1
& 0x1F) << 6) | (c2
& 0x3F);
1462 /* Reject overlong sequences here and below. Encoders
1463 producing them are incorrect, they can be misleading,
1464 and they mess up read/write invariance. */
1471 if (c3
< 0 || ! UTF_8_EXTRA_OCTET_P (c3
))
1473 if (UTF_8_3_OCTET_LEADING_P (c1
))
1475 c
= (((c1
& 0xF) << 12)
1476 | ((c2
& 0x3F) << 6) | (c3
& 0x3F));
1478 || (c
>= 0xd800 && c
< 0xe000)) /* surrogates (invalid) */
1484 if (c4
< 0 || ! UTF_8_EXTRA_OCTET_P (c4
))
1486 if (UTF_8_4_OCTET_LEADING_P (c1
))
1488 c
= (((c1
& 0x7) << 18) | ((c2
& 0x3F) << 12)
1489 | ((c3
& 0x3F) << 6) | (c4
& 0x3F));
1496 if (c5
< 0 || ! UTF_8_EXTRA_OCTET_P (c5
))
1498 if (UTF_8_5_OCTET_LEADING_P (c1
))
1500 c
= (((c1
& 0x3) << 24) | ((c2
& 0x3F) << 18)
1501 | ((c3
& 0x3F) << 12) | ((c4
& 0x3F) << 6)
1503 if ((c
> MAX_CHAR
) || (c
< 0x200000))
1518 consumed_chars
= consumed_chars_base
;
1520 *charbuf
++ = ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
1525 coding
->consumed_char
+= consumed_chars_base
;
1526 coding
->consumed
= src_base
- coding
->source
;
1527 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1532 encode_coding_utf_8 (struct coding_system
*coding
)
1534 int multibytep
= coding
->dst_multibyte
;
1535 int *charbuf
= coding
->charbuf
;
1536 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1537 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1538 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1539 int produced_chars
= 0;
1542 if (CODING_UTF_8_BOM (coding
) == utf_with_bom
)
1544 ASSURE_DESTINATION (3);
1545 EMIT_THREE_BYTES (UTF_8_BOM_1
, UTF_8_BOM_2
, UTF_8_BOM_3
);
1546 CODING_UTF_8_BOM (coding
) = utf_without_bom
;
1551 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
1553 while (charbuf
< charbuf_end
)
1555 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p
, *pend
= str
;
1557 ASSURE_DESTINATION (safe_room
);
1559 if (CHAR_BYTE8_P (c
))
1561 c
= CHAR_TO_BYTE8 (c
);
1566 CHAR_STRING_ADVANCE_NO_UNIFY (c
, pend
);
1567 for (p
= str
; p
< pend
; p
++)
1574 int safe_room
= MAX_MULTIBYTE_LENGTH
;
1576 while (charbuf
< charbuf_end
)
1578 ASSURE_DESTINATION (safe_room
);
1580 if (CHAR_BYTE8_P (c
))
1581 *dst
++ = CHAR_TO_BYTE8 (c
);
1583 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
1587 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1588 coding
->produced_char
+= produced_chars
;
1589 coding
->produced
= dst
- coding
->destination
;
1594 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1595 Check if a text is encoded in one of UTF-16 based coding systems.
1596 If it is, return 1, else return 0. */
1598 #define UTF_16_HIGH_SURROGATE_P(val) \
1599 (((val) & 0xFC00) == 0xD800)
1601 #define UTF_16_LOW_SURROGATE_P(val) \
1602 (((val) & 0xFC00) == 0xDC00)
1604 #define UTF_16_INVALID_P(val) \
1605 (((val) == 0xFFFE) \
1606 || ((val) == 0xFFFF) \
1607 || UTF_16_LOW_SURROGATE_P (val))
1611 detect_coding_utf_16 (struct coding_system
*coding
,
1612 struct coding_detection_info
*detect_info
)
1614 const unsigned char *src
= coding
->source
, *src_base
= src
;
1615 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1616 int multibytep
= coding
->src_multibyte
;
1617 int consumed_chars
= 0;
1620 detect_info
->checked
|= CATEGORY_MASK_UTF_16
;
1621 if (coding
->mode
& CODING_MODE_LAST_BLOCK
1622 && (coding
->src_chars
& 1))
1624 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1628 TWO_MORE_BYTES (c1
, c2
);
1629 if ((c1
== 0xFF) && (c2
== 0xFE))
1631 detect_info
->found
|= (CATEGORY_MASK_UTF_16_LE
1632 | CATEGORY_MASK_UTF_16_AUTO
);
1633 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_BE
1634 | CATEGORY_MASK_UTF_16_BE_NOSIG
1635 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1637 else if ((c1
== 0xFE) && (c2
== 0xFF))
1639 detect_info
->found
|= (CATEGORY_MASK_UTF_16_BE
1640 | CATEGORY_MASK_UTF_16_AUTO
);
1641 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_LE
1642 | CATEGORY_MASK_UTF_16_BE_NOSIG
1643 | CATEGORY_MASK_UTF_16_LE_NOSIG
);
1647 detect_info
->rejected
|= CATEGORY_MASK_UTF_16
;
1652 /* We check the dispersion of Eth and Oth bytes where E is even and
1653 O is odd. If both are high, we assume binary data.*/
1654 unsigned char e
[256], o
[256];
1655 unsigned e_num
= 1, o_num
= 1;
1662 detect_info
->rejected
|= (CATEGORY_MASK_UTF_16_AUTO
1663 |CATEGORY_MASK_UTF_16_BE
1664 | CATEGORY_MASK_UTF_16_LE
);
1666 while ((detect_info
->rejected
& CATEGORY_MASK_UTF_16
)
1667 != CATEGORY_MASK_UTF_16
)
1669 TWO_MORE_BYTES (c1
, c2
);
1677 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_BE_NOSIG
;
1684 detect_info
->rejected
|= CATEGORY_MASK_UTF_16_LE_NOSIG
;
1695 decode_coding_utf_16 (struct coding_system
*coding
)
1697 const unsigned char *src
= coding
->source
+ coding
->consumed
;
1698 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1699 const unsigned char *src_base
;
1700 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
1701 /* We may produces at most 3 chars in one loop. */
1702 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
- 2;
1703 int consumed_chars
= 0, consumed_chars_base
= 0;
1704 int multibytep
= coding
->src_multibyte
;
1705 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1706 enum utf_16_endian_type endian
= CODING_UTF_16_ENDIAN (coding
);
1707 int surrogate
= CODING_UTF_16_SURROGATE (coding
);
1708 Lisp_Object attr
, charset_list
;
1710 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
1711 int byte_after_cr1
= -1, byte_after_cr2
= -1;
1713 CODING_GET_INFO (coding
, attr
, charset_list
);
1715 if (bom
== utf_with_bom
)
1724 if (endian
== utf_16_big_endian
1725 ? c
!= 0xFEFF : c
!= 0xFFFE)
1727 /* The first two bytes are not BOM. Treat them as bytes
1728 for a normal character. */
1732 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1734 else if (bom
== utf_detect_bom
)
1736 /* We have already tried to detect BOM and failed in
1738 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1746 consumed_chars_base
= consumed_chars
;
1748 if (charbuf
>= charbuf_end
)
1750 if (byte_after_cr1
>= 0)
1755 if (byte_after_cr1
>= 0)
1756 c1
= byte_after_cr1
, byte_after_cr1
= -1;
1764 if (byte_after_cr2
>= 0)
1765 c2
= byte_after_cr2
, byte_after_cr2
= -1;
1770 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
1774 c
= (endian
== utf_16_big_endian
1775 ? ((c1
<< 8) | c2
) : ((c2
<< 8) | c1
));
1779 if (! UTF_16_LOW_SURROGATE_P (c
))
1781 if (endian
== utf_16_big_endian
)
1782 c1
= surrogate
>> 8, c2
= surrogate
& 0xFF;
1784 c1
= surrogate
& 0xFF, c2
= surrogate
>> 8;
1788 if (UTF_16_HIGH_SURROGATE_P (c
))
1789 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1795 c
= ((surrogate
- 0xD800) << 10) | (c
- 0xDC00);
1796 CODING_UTF_16_SURROGATE (coding
) = surrogate
= 0;
1797 *charbuf
++ = 0x10000 + c
;
1802 if (UTF_16_HIGH_SURROGATE_P (c
))
1803 CODING_UTF_16_SURROGATE (coding
) = surrogate
= c
;
1806 if (eol_crlf
&& c
== '\r')
1808 ONE_MORE_BYTE (byte_after_cr1
);
1809 ONE_MORE_BYTE (byte_after_cr2
);
1817 coding
->consumed_char
+= consumed_chars_base
;
1818 coding
->consumed
= src_base
- coding
->source
;
1819 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
1823 encode_coding_utf_16 (struct coding_system
*coding
)
1825 int multibytep
= coding
->dst_multibyte
;
1826 int *charbuf
= coding
->charbuf
;
1827 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
1828 unsigned char *dst
= coding
->destination
+ coding
->produced
;
1829 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
1831 enum utf_bom_type bom
= CODING_UTF_16_BOM (coding
);
1832 int big_endian
= CODING_UTF_16_ENDIAN (coding
) == utf_16_big_endian
;
1833 int produced_chars
= 0;
1834 Lisp_Object attrs
, charset_list
;
1837 CODING_GET_INFO (coding
, attrs
, charset_list
);
1839 if (bom
!= utf_without_bom
)
1841 ASSURE_DESTINATION (safe_room
);
1843 EMIT_TWO_BYTES (0xFE, 0xFF);
1845 EMIT_TWO_BYTES (0xFF, 0xFE);
1846 CODING_UTF_16_BOM (coding
) = utf_without_bom
;
1849 while (charbuf
< charbuf_end
)
1851 ASSURE_DESTINATION (safe_room
);
1853 if (c
> MAX_UNICODE_CHAR
)
1854 c
= coding
->default_char
;
1859 EMIT_TWO_BYTES (c
>> 8, c
& 0xFF);
1861 EMIT_TWO_BYTES (c
& 0xFF, c
>> 8);
1868 c1
= (c
>> 10) + 0xD800;
1869 c2
= (c
& 0x3FF) + 0xDC00;
1871 EMIT_FOUR_BYTES (c1
>> 8, c1
& 0xFF, c2
>> 8, c2
& 0xFF);
1873 EMIT_FOUR_BYTES (c1
& 0xFF, c1
>> 8, c2
& 0xFF, c2
>> 8);
1876 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
1877 coding
->produced
= dst
- coding
->destination
;
1878 coding
->produced_char
+= produced_chars
;
1883 /*** 6. Old Emacs' internal format (emacs-mule) ***/
1885 /* Emacs' internal format for representation of multiple character
1886 sets is a kind of multi-byte encoding, i.e. characters are
1887 represented by variable-length sequences of one-byte codes.
1889 ASCII characters and control characters (e.g. `tab', `newline') are
1890 represented by one-byte sequences which are their ASCII codes, in
1891 the range 0x00 through 0x7F.
1893 8-bit characters of the range 0x80..0x9F are represented by
1894 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
1897 8-bit characters of the range 0xA0..0xFF are represented by
1898 one-byte sequences which are their 8-bit code.
1900 The other characters are represented by a sequence of `base
1901 leading-code', optional `extended leading-code', and one or two
1902 `position-code's. The length of the sequence is determined by the
1903 base leading-code. Leading-code takes the range 0x81 through 0x9D,
1904 whereas extended leading-code and position-code take the range 0xA0
1905 through 0xFF. See `charset.h' for more details about leading-code
1908 --- CODE RANGE of Emacs' internal format ---
1912 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
1913 eight-bit-graphic 0xA0..0xBF
1914 ELSE 0x81..0x9D + [0xA0..0xFF]+
1915 ---------------------------------------------
1917 As this is the internal character representation, the format is
1918 usually not used externally (i.e. in a file or in a data sent to a
1919 process). But, it is possible to have a text externally in this
1920 format (i.e. by encoding by the coding system `emacs-mule').
1922 In that case, a sequence of one-byte codes has a slightly different
1925 At first, all characters in eight-bit-control are represented by
1926 one-byte sequences which are their 8-bit code.
1928 Next, character composition data are represented by the byte
1929 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
1931 METHOD is 0xF2 plus one of composition method (enum
1932 composition_method),
1934 BYTES is 0xA0 plus a byte length of this composition data,
1936 CHARS is 0xA0 plus a number of characters composed by this
1939 COMPONENTs are characters of multibye form or composition
1940 rules encoded by two-byte of ASCII codes.
1942 In addition, for backward compatibility, the following formats are
1943 also recognized as composition data on decoding.
1946 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
1949 MSEQ is a multibyte form but in these special format:
1950 ASCII: 0xA0 ASCII_CODE+0x80,
1951 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
1952 RULE is a one byte code of the range 0xA0..0xF0 that
1953 represents a composition rule.
1956 char emacs_mule_bytes
[256];
1959 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1960 Check if a text is encoded in `emacs-mule'. If it is, return 1,
1964 detect_coding_emacs_mule (struct coding_system
*coding
,
1965 struct coding_detection_info
*detect_info
)
1967 const unsigned char *src
= coding
->source
, *src_base
;
1968 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
1969 int multibytep
= coding
->src_multibyte
;
1970 int consumed_chars
= 0;
1974 detect_info
->checked
|= CATEGORY_MASK_EMACS_MULE
;
1975 /* A coding system of this category is always ASCII compatible. */
1976 src
+= coding
->head_ascii
;
1986 /* Perhaps the start of composite character. We simply skip
1987 it because analyzing it is too heavy for detecting. But,
1988 at least, we check that the composite character
1989 constitutes of more than 4 bytes. */
1990 const unsigned char *src_base
;
2000 if (src
- src_base
<= 4)
2002 found
= CATEGORY_MASK_EMACS_MULE
;
2010 && (c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
))
2015 int more_bytes
= emacs_mule_bytes
[*src_base
] - 1;
2017 while (more_bytes
> 0)
2022 src
--; /* Unread the last byte. */
2027 if (more_bytes
!= 0)
2029 found
= CATEGORY_MASK_EMACS_MULE
;
2032 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
2036 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
2038 detect_info
->rejected
|= CATEGORY_MASK_EMACS_MULE
;
2041 detect_info
->found
|= found
;
2046 /* Parse emacs-mule multibyte sequence at SRC and return the decoded
2047 character. If CMP_STATUS indicates that we must expect MSEQ or
2048 RULE described above, decode it and return the negative value of
2049 the decoded character or rule. If an invalid byte is found, return
2050 -1. If SRC is too short, return -2. */
2053 emacs_mule_char (struct coding_system
*coding
, const unsigned char *src
,
2054 int *nbytes
, int *nchars
, int *id
,
2055 struct composition_status
*cmp_status
)
2057 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2058 const unsigned char *src_base
= src
;
2059 int multibytep
= coding
->src_multibyte
;
2060 struct charset
*charset
;
2063 int consumed_chars
= 0;
2070 charset
= emacs_mule_charset
[0];
2076 if (cmp_status
->state
!= COMPOSING_NO
2077 && cmp_status
->old_form
)
2079 if (cmp_status
->state
== COMPOSING_CHAR
)
2094 *nbytes
= src
- src_base
;
2095 *nchars
= consumed_chars
;
2103 switch (emacs_mule_bytes
[c
])
2106 if (! (charset
= emacs_mule_charset
[c
]))
2115 if (c
== EMACS_MULE_LEADING_CODE_PRIVATE_11
2116 || c
== EMACS_MULE_LEADING_CODE_PRIVATE_12
)
2119 if (c
< 0xA0 || ! (charset
= emacs_mule_charset
[c
]))
2128 if (! (charset
= emacs_mule_charset
[c
]))
2133 code
= (c
& 0x7F) << 8;
2143 if (c
< 0 || ! (charset
= emacs_mule_charset
[c
]))
2148 code
= (c
& 0x7F) << 8;
2157 charset
= CHARSET_FROM_ID (ASCII_BYTE_P (code
)
2158 ? charset_ascii
: charset_eight_bit
);
2164 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, code
, c
);
2168 *nbytes
= src
- src_base
;
2169 *nchars
= consumed_chars
;
2172 return (mseq_found
? -c
: c
);
2182 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
2184 /* Handle these composition sequence ('|': the end of header elements,
2185 BYTES and CHARS >= 0xA0):
2187 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ...
2188 (2) altchar composition: 0x80 0xF4 BYTES CHARS | ALT ... ALT CHAR ...
2189 (3) alt&rule composition: 0x80 0xF5 BYTES CHARS | ALT RULE ... ALT CHAR ...
2193 (4) relative composition: 0x80 | MSEQ ... MSEQ
2194 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ
2196 When the starter 0x80 and the following header elements are found,
2197 this annotation header is produced.
2199 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ]
2201 NCHARS is CHARS - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2202 NBYTES is BYTES - 0xA0 for (1), (2), (3), and 0 for (4), (5).
2204 Then, upon reading the following elements, these codes are produced
2205 until the composition end is found:
2208 (2) ALT ... ALT CHAR ... CHAR
2209 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR
2211 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
2213 When the composition end is found, LENGTH and NCHARS in the
2214 annotation header is updated as below:
2216 (1) LENGTH: unchanged, NCHARS: unchanged
2217 (2) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2218 (3) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged
2219 (4) LENGTH: unchanged, NCHARS: number of CHARs
2220 (5) LENGTH: unchanged, NCHARS: number of CHARs
2222 If an error is found while composing, the annotation header is
2223 changed to the original composition header (plus filler -1s) as
2226 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ]
2227 (5) [ 0x80 0xFF -1 -1- -1 ]
2229 and the sequence [ -2 DECODED-RULE ] is changed to the original
2230 byte sequence as below:
2231 o the original byte sequence is B: [ B -1 ]
2232 o the original byte sequence is B1 B2: [ B1 B2 ]
2234 Most of the routines are implemented by macros because many
2235 variables and labels in the caller decode_coding_emacs_mule must be
2236 accessible, and they are usually called just once (thus doesn't
2237 increase the size of compiled object). */
2239 /* Decode a composition rule represented by C as a component of
2240 composition sequence of Emacs 20 style. Set RULE to the decoded
2243 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \
2248 if (c < 0 || c >= 81) \
2249 goto invalid_code; \
2250 gref = c / 9, nref = c % 9; \
2251 if (gref == 4) gref = 10; \
2252 if (nref == 4) nref = 10; \
2253 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2257 /* Decode a composition rule represented by C and the following byte
2258 at SRC as a component of composition sequence of Emacs 21 style.
2259 Set RULE to the decoded rule. */
2261 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \
2266 if (gref < 0 || gref >= 81) \
2267 goto invalid_code; \
2268 ONE_MORE_BYTE (c); \
2270 if (nref < 0 || nref >= 81) \
2271 goto invalid_code; \
2272 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
2276 /* Start of Emacs 21 style format. The first three bytes at SRC are
2277 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is the
2278 byte length of this composition information, CHARS is the number of
2279 characters composed by this composition. */
2281 #define DECODE_EMACS_MULE_21_COMPOSITION() \
2283 enum composition_method method = c - 0xF2; \
2284 int *charbuf_base = charbuf; \
2285 int nbytes, nchars; \
2287 ONE_MORE_BYTE (c); \
2289 goto invalid_code; \
2290 nbytes = c - 0xA0; \
2291 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \
2292 goto invalid_code; \
2293 ONE_MORE_BYTE (c); \
2294 nchars = c - 0xA0; \
2295 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \
2296 goto invalid_code; \
2297 cmp_status->old_form = 0; \
2298 cmp_status->method = method; \
2299 if (method == COMPOSITION_RELATIVE) \
2300 cmp_status->state = COMPOSING_CHAR; \
2302 cmp_status->state = COMPOSING_COMPONENT_CHAR; \
2303 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2304 cmp_status->nchars = nchars; \
2305 cmp_status->ncomps = nbytes - 4; \
2306 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \
2310 /* Start of Emacs 20 style format for relative composition. */
2312 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \
2314 cmp_status->old_form = 1; \
2315 cmp_status->method = COMPOSITION_RELATIVE; \
2316 cmp_status->state = COMPOSING_CHAR; \
2317 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2318 cmp_status->nchars = cmp_status->ncomps = 0; \
2319 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2323 /* Start of Emacs 20 style format for rule-base composition. */
2325 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \
2327 cmp_status->old_form = 1; \
2328 cmp_status->method = COMPOSITION_WITH_RULE; \
2329 cmp_status->state = COMPOSING_CHAR; \
2330 cmp_status->length = MAX_ANNOTATION_LENGTH; \
2331 cmp_status->nchars = cmp_status->ncomps = 0; \
2332 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
2336 #define DECODE_EMACS_MULE_COMPOSITION_START() \
2338 const unsigned char *current_src = src; \
2340 ONE_MORE_BYTE (c); \
2342 goto invalid_code; \
2343 if (c - 0xF2 >= COMPOSITION_RELATIVE \
2344 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \
2345 DECODE_EMACS_MULE_21_COMPOSITION (); \
2346 else if (c < 0xA0) \
2347 goto invalid_code; \
2348 else if (c < 0xC0) \
2350 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \
2351 /* Re-read C as a composition component. */ \
2352 src = current_src; \
2354 else if (c == 0xFF) \
2355 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \
2357 goto invalid_code; \
2360 #define EMACS_MULE_COMPOSITION_END() \
2362 int idx = - cmp_status->length; \
2364 if (cmp_status->old_form) \
2365 charbuf[idx + 2] = cmp_status->nchars; \
2366 else if (cmp_status->method > COMPOSITION_RELATIVE) \
2367 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \
2368 cmp_status->state = COMPOSING_NO; \
2373 emacs_mule_finish_composition (int *charbuf
,
2374 struct composition_status
*cmp_status
)
2376 int idx
= - cmp_status
->length
;
2379 if (cmp_status
->old_form
&& cmp_status
->nchars
> 0)
2381 charbuf
[idx
+ 2] = cmp_status
->nchars
;
2383 if (cmp_status
->method
== COMPOSITION_WITH_RULE
2384 && cmp_status
->state
== COMPOSING_CHAR
)
2386 /* The last rule was invalid. */
2387 int rule
= charbuf
[-1] + 0xA0;
2389 charbuf
[-2] = BYTE8_TO_CHAR (rule
);
2396 charbuf
[idx
++] = BYTE8_TO_CHAR (0x80);
2398 if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2400 charbuf
[idx
++] = BYTE8_TO_CHAR (0xFF);
2401 charbuf
[idx
++] = -3;
2407 int nchars
= charbuf
[idx
+ 1] + 0xA0;
2408 int nbytes
= charbuf
[idx
+ 2] + 0xA0;
2410 charbuf
[idx
++] = BYTE8_TO_CHAR (0xF2 + cmp_status
->method
);
2411 charbuf
[idx
++] = BYTE8_TO_CHAR (nbytes
);
2412 charbuf
[idx
++] = BYTE8_TO_CHAR (nchars
);
2413 charbuf
[idx
++] = -1;
2417 cmp_status
->state
= COMPOSING_NO
;
2421 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \
2423 if (cmp_status->state != COMPOSING_NO) \
2424 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \
2429 decode_coding_emacs_mule (struct coding_system
*coding
)
2431 const unsigned char *src
= coding
->source
+ coding
->consumed
;
2432 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
2433 const unsigned char *src_base
;
2434 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
2435 /* We may produce two annocations (charset and composition) in one
2436 loop and one more charset annocation at the end. */
2438 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
2439 int consumed_chars
= 0, consumed_chars_base
;
2440 int multibytep
= coding
->src_multibyte
;
2441 Lisp_Object attrs
, charset_list
;
2442 int char_offset
= coding
->produced_char
;
2443 int last_offset
= char_offset
;
2444 int last_id
= charset_ascii
;
2446 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
2447 int byte_after_cr
= -1;
2448 struct composition_status
*cmp_status
= &coding
->spec
.emacs_mule
.cmp_status
;
2450 CODING_GET_INFO (coding
, attrs
, charset_list
);
2452 if (cmp_status
->state
!= COMPOSING_NO
)
2456 for (i
= 0; i
< cmp_status
->length
; i
++)
2457 *charbuf
++ = cmp_status
->carryover
[i
];
2458 coding
->annotated
= 1;
2466 consumed_chars_base
= consumed_chars
;
2468 if (charbuf
>= charbuf_end
)
2470 if (byte_after_cr
>= 0)
2475 if (byte_after_cr
>= 0)
2476 c
= byte_after_cr
, byte_after_cr
= -1;
2480 if (c
< 0 || c
== 0x80)
2482 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2489 DECODE_EMACS_MULE_COMPOSITION_START ();
2495 if (eol_crlf
&& c
== '\r')
2496 ONE_MORE_BYTE (byte_after_cr
);
2498 if (cmp_status
->state
!= COMPOSING_NO
)
2500 if (cmp_status
->old_form
)
2501 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2502 else if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2503 cmp_status
->ncomps
--;
2509 /* emacs_mule_char can load a charset map from a file, which
2510 allocates a large structure and might cause buffer text
2511 to be relocated as result. Thus, we need to remember the
2512 original pointer to buffer text, and fixup all related
2513 pointers after the call. */
2514 const unsigned char *orig
= coding
->source
;
2517 c
= emacs_mule_char (coding
, src_base
, &nbytes
, &nchars
, &id
,
2519 offset
= coding
->source
- orig
;
2533 src
= src_base
+ nbytes
;
2534 consumed_chars
= consumed_chars_base
+ nchars
;
2535 if (cmp_status
->state
>= COMPOSING_COMPONENT_CHAR
)
2536 cmp_status
->ncomps
-= nchars
;
2539 /* Now if C >= 0, we found a normally encoded characer, if C <
2540 0, we found an old-style composition component character or
2543 if (cmp_status
->state
== COMPOSING_NO
)
2547 if (last_id
!= charset_ascii
)
2548 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
,
2551 last_offset
= char_offset
;
2556 else if (cmp_status
->state
== COMPOSING_CHAR
)
2558 if (cmp_status
->old_form
)
2562 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2569 cmp_status
->nchars
++;
2570 cmp_status
->length
++;
2571 if (cmp_status
->nchars
== MAX_COMPOSITION_COMPONENTS
)
2572 EMACS_MULE_COMPOSITION_END ();
2573 else if (cmp_status
->method
== COMPOSITION_WITH_RULE
)
2574 cmp_status
->state
= COMPOSING_RULE
;
2580 cmp_status
->length
++;
2581 cmp_status
->nchars
--;
2582 if (cmp_status
->nchars
== 0)
2583 EMACS_MULE_COMPOSITION_END ();
2586 else if (cmp_status
->state
== COMPOSING_RULE
)
2592 EMACS_MULE_COMPOSITION_END ();
2599 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c
, rule
);
2604 cmp_status
->length
+= 2;
2605 cmp_status
->state
= COMPOSING_CHAR
;
2608 else if (cmp_status
->state
== COMPOSING_COMPONENT_CHAR
)
2611 cmp_status
->length
++;
2612 if (cmp_status
->ncomps
== 0)
2613 cmp_status
->state
= COMPOSING_CHAR
;
2614 else if (cmp_status
->ncomps
> 0)
2616 if (cmp_status
->method
== COMPOSITION_WITH_RULE_ALTCHARS
)
2617 cmp_status
->state
= COMPOSING_COMPONENT_RULE
;
2620 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2622 else /* COMPOSING_COMPONENT_RULE */
2626 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c
, rule
);
2631 cmp_status
->length
+= 2;
2632 cmp_status
->ncomps
--;
2633 if (cmp_status
->ncomps
> 0)
2634 cmp_status
->state
= COMPOSING_COMPONENT_CHAR
;
2636 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2642 consumed_chars
= consumed_chars_base
;
2646 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2648 consumed_chars
= consumed_chars_base
;
2650 *charbuf
++ = ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
2656 if (cmp_status
->state
!= COMPOSING_NO
)
2658 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
2659 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2664 charbuf
-= cmp_status
->length
;
2665 for (i
= 0; i
< cmp_status
->length
; i
++)
2666 cmp_status
->carryover
[i
] = charbuf
[i
];
2669 if (last_id
!= charset_ascii
)
2670 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
2671 coding
->consumed_char
+= consumed_chars_base
;
2672 coding
->consumed
= src_base
- coding
->source
;
2673 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
2677 #define EMACS_MULE_LEADING_CODES(id, codes) \
2680 codes[0] = id, codes[1] = 0; \
2681 else if (id < 0xE0) \
2682 codes[0] = 0x9A, codes[1] = id; \
2683 else if (id < 0xF0) \
2684 codes[0] = 0x9B, codes[1] = id; \
2685 else if (id < 0xF5) \
2686 codes[0] = 0x9C, codes[1] = id; \
2688 codes[0] = 0x9D, codes[1] = id; \
2693 encode_coding_emacs_mule (struct coding_system
*coding
)
2695 int multibytep
= coding
->dst_multibyte
;
2696 int *charbuf
= coding
->charbuf
;
2697 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
2698 unsigned char *dst
= coding
->destination
+ coding
->produced
;
2699 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
2701 int produced_chars
= 0;
2702 Lisp_Object attrs
, charset_list
;
2704 int preferred_charset_id
= -1;
2706 CODING_GET_INFO (coding
, attrs
, charset_list
);
2707 if (! EQ (charset_list
, Vemacs_mule_charset_list
))
2709 CODING_ATTR_CHARSET_LIST (attrs
)
2710 = charset_list
= Vemacs_mule_charset_list
;
2713 while (charbuf
< charbuf_end
)
2715 ASSURE_DESTINATION (safe_room
);
2720 /* Handle an annotation. */
2723 case CODING_ANNOTATE_COMPOSITION_MASK
:
2724 /* Not yet implemented. */
2726 case CODING_ANNOTATE_CHARSET_MASK
:
2727 preferred_charset_id
= charbuf
[3];
2728 if (preferred_charset_id
>= 0
2729 && NILP (Fmemq (make_number (preferred_charset_id
),
2731 preferred_charset_id
= -1;
2740 if (ASCII_CHAR_P (c
))
2741 EMIT_ONE_ASCII_BYTE (c
);
2742 else if (CHAR_BYTE8_P (c
))
2744 c
= CHAR_TO_BYTE8 (c
);
2749 struct charset
*charset
;
2753 unsigned char leading_codes
[2];
2755 if (preferred_charset_id
>= 0)
2757 charset
= CHARSET_FROM_ID (preferred_charset_id
);
2758 if (CHAR_CHARSET_P (c
, charset
))
2759 code
= ENCODE_CHAR (charset
, c
);
2761 charset
= char_charset (c
, charset_list
, &code
);
2764 charset
= char_charset (c
, charset_list
, &code
);
2767 c
= coding
->default_char
;
2768 if (ASCII_CHAR_P (c
))
2770 EMIT_ONE_ASCII_BYTE (c
);
2773 charset
= char_charset (c
, charset_list
, &code
);
2775 dimension
= CHARSET_DIMENSION (charset
);
2776 emacs_mule_id
= CHARSET_EMACS_MULE_ID (charset
);
2777 EMACS_MULE_LEADING_CODES (emacs_mule_id
, leading_codes
);
2778 EMIT_ONE_BYTE (leading_codes
[0]);
2779 if (leading_codes
[1])
2780 EMIT_ONE_BYTE (leading_codes
[1]);
2782 EMIT_ONE_BYTE (code
| 0x80);
2786 EMIT_ONE_BYTE (code
>> 8);
2787 EMIT_ONE_BYTE (code
& 0xFF);
2791 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
2792 coding
->produced_char
+= produced_chars
;
2793 coding
->produced
= dst
- coding
->destination
;
2798 /*** 7. ISO2022 handlers ***/
2800 /* The following note describes the coding system ISO2022 briefly.
2801 Since the intention of this note is to help understand the
2802 functions in this file, some parts are NOT ACCURATE or are OVERLY
2803 SIMPLIFIED. For thorough understanding, please refer to the
2804 original document of ISO2022. This is equivalent to the standard
2805 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
2807 ISO2022 provides many mechanisms to encode several character sets
2808 in 7-bit and 8-bit environments. For 7-bit environments, all text
2809 is encoded using bytes less than 128. This may make the encoded
2810 text a little bit longer, but the text passes more easily through
2811 several types of gateway, some of which strip off the MSB (Most
2814 There are two kinds of character sets: control character sets and
2815 graphic character sets. The former contain control characters such
2816 as `newline' and `escape' to provide control functions (control
2817 functions are also provided by escape sequences). The latter
2818 contain graphic characters such as 'A' and '-'. Emacs recognizes
2819 two control character sets and many graphic character sets.
2821 Graphic character sets are classified into one of the following
2822 four classes, according to the number of bytes (DIMENSION) and
2823 number of characters in one dimension (CHARS) of the set:
2824 - DIMENSION1_CHARS94
2825 - DIMENSION1_CHARS96
2826 - DIMENSION2_CHARS94
2827 - DIMENSION2_CHARS96
2829 In addition, each character set is assigned an identification tag,
2830 unique for each set, called the "final character" (denoted as <F>
2831 hereafter). The <F> of each character set is decided by ECMA(*)
2832 when it is registered in ISO. The code range of <F> is 0x30..0x7F
2833 (0x30..0x3F are for private use only).
2835 Note (*): ECMA = European Computer Manufacturers Association
2837 Here are examples of graphic character sets [NAME(<F>)]:
2838 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
2839 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
2840 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
2841 o DIMENSION2_CHARS96 -- none for the moment
2843 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
2844 C0 [0x00..0x1F] -- control character plane 0
2845 GL [0x20..0x7F] -- graphic character plane 0
2846 C1 [0x80..0x9F] -- control character plane 1
2847 GR [0xA0..0xFF] -- graphic character plane 1
2849 A control character set is directly designated and invoked to C0 or
2850 C1 by an escape sequence. The most common case is that:
2851 - ISO646's control character set is designated/invoked to C0, and
2852 - ISO6429's control character set is designated/invoked to C1,
2853 and usually these designations/invocations are omitted in encoded
2854 text. In a 7-bit environment, only C0 can be used, and a control
2855 character for C1 is encoded by an appropriate escape sequence to
2856 fit into the environment. All control characters for C1 are
2857 defined to have corresponding escape sequences.
2859 A graphic character set is at first designated to one of four
2860 graphic registers (G0 through G3), then these graphic registers are
2861 invoked to GL or GR. These designations and invocations can be
2862 done independently. The most common case is that G0 is invoked to
2863 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
2864 these invocations and designations are omitted in encoded text.
2865 In a 7-bit environment, only GL can be used.
2867 When a graphic character set of CHARS94 is invoked to GL, codes
2868 0x20 and 0x7F of the GL area work as control characters SPACE and
2869 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
2872 There are two ways of invocation: locking-shift and single-shift.
2873 With locking-shift, the invocation lasts until the next different
2874 invocation, whereas with single-shift, the invocation affects the
2875 following character only and doesn't affect the locking-shift
2876 state. Invocations are done by the following control characters or
2879 ----------------------------------------------------------------------
2880 abbrev function cntrl escape seq description
2881 ----------------------------------------------------------------------
2882 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
2883 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
2884 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
2885 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
2886 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
2887 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
2888 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
2889 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
2890 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
2891 ----------------------------------------------------------------------
2892 (*) These are not used by any known coding system.
2894 Control characters for these functions are defined by macros
2895 ISO_CODE_XXX in `coding.h'.
2897 Designations are done by the following escape sequences:
2898 ----------------------------------------------------------------------
2899 escape sequence description
2900 ----------------------------------------------------------------------
2901 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
2902 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
2903 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
2904 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
2905 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
2906 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
2907 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
2908 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
2909 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
2910 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
2911 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
2912 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
2913 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
2914 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
2915 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
2916 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
2917 ----------------------------------------------------------------------
2919 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
2920 of dimension 1, chars 94, and final character <F>, etc...
2922 Note (*): Although these designations are not allowed in ISO2022,
2923 Emacs accepts them on decoding, and produces them on encoding
2924 CHARS96 character sets in a coding system which is characterized as
2925 7-bit environment, non-locking-shift, and non-single-shift.
2927 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
2928 '(' must be omitted. We refer to this as "short-form" hereafter.
2930 Now you may notice that there are a lot of ways of encoding the
2931 same multilingual text in ISO2022. Actually, there exist many
2932 coding systems such as Compound Text (used in X11's inter client
2933 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
2934 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
2935 localized platforms), and all of these are variants of ISO2022.
2937 In addition to the above, Emacs handles two more kinds of escape
2938 sequences: ISO6429's direction specification and Emacs' private
2939 sequence for specifying character composition.
2941 ISO6429's direction specification takes the following form:
2942 o CSI ']' -- end of the current direction
2943 o CSI '0' ']' -- end of the current direction
2944 o CSI '1' ']' -- start of left-to-right text
2945 o CSI '2' ']' -- start of right-to-left text
2946 The control character CSI (0x9B: control sequence introducer) is
2947 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
2949 Character composition specification takes the following form:
2950 o ESC '0' -- start relative composition
2951 o ESC '1' -- end composition
2952 o ESC '2' -- start rule-base composition (*)
2953 o ESC '3' -- start relative composition with alternate chars (**)
2954 o ESC '4' -- start rule-base composition with alternate chars (**)
2955 Since these are not standard escape sequences of any ISO standard,
2956 the use of them with these meanings is restricted to Emacs only.
2958 (*) This form is used only in Emacs 20.7 and older versions,
2959 but newer versions can safely decode it.
2960 (**) This form is used only in Emacs 21.1 and newer versions,
2961 and older versions can't decode it.
2963 Here's a list of example usages of these composition escape
2964 sequences (categorized by `enum composition_method').
2966 COMPOSITION_RELATIVE:
2967 ESC 0 CHAR [ CHAR ] ESC 1
2968 COMPOSITION_WITH_RULE:
2969 ESC 2 CHAR [ RULE CHAR ] ESC 1
2970 COMPOSITION_WITH_ALTCHARS:
2971 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
2972 COMPOSITION_WITH_RULE_ALTCHARS:
2973 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
2975 enum iso_code_class_type iso_code_class
[256];
2977 #define SAFE_CHARSET_P(coding, id) \
2978 ((id) <= (coding)->max_charset_id \
2979 && (coding)->safe_charsets[id] != 255)
2982 #define SHIFT_OUT_OK(category) \
2983 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0)
2986 setup_iso_safe_charsets (Lisp_Object attrs
)
2988 Lisp_Object charset_list
, safe_charsets
;
2989 Lisp_Object request
;
2990 Lisp_Object reg_usage
;
2993 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
2996 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
2997 if ((flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
2998 && ! EQ (charset_list
, Viso_2022_charset_list
))
3000 CODING_ATTR_CHARSET_LIST (attrs
)
3001 = charset_list
= Viso_2022_charset_list
;
3002 ASET (attrs
, coding_attr_safe_charsets
, Qnil
);
3005 if (STRINGP (AREF (attrs
, coding_attr_safe_charsets
)))
3009 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
3011 int id
= XINT (XCAR (tail
));
3012 if (max_charset_id
< id
)
3013 max_charset_id
= id
;
3016 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
3017 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
3018 request
= AREF (attrs
, coding_attr_iso_request
);
3019 reg_usage
= AREF (attrs
, coding_attr_iso_usage
);
3020 reg94
= XINT (XCAR (reg_usage
));
3021 reg96
= XINT (XCDR (reg_usage
));
3023 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
3027 struct charset
*charset
;
3030 charset
= CHARSET_FROM_ID (XINT (id
));
3031 reg
= Fcdr (Fassq (id
, request
));
3033 SSET (safe_charsets
, XINT (id
), XINT (reg
));
3034 else if (charset
->iso_chars_96
)
3037 SSET (safe_charsets
, XINT (id
), reg96
);
3042 SSET (safe_charsets
, XINT (id
), reg94
);
3045 ASET (attrs
, coding_attr_safe_charsets
, safe_charsets
);
3049 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
3050 Check if a text is encoded in one of ISO-2022 based codig systems.
3051 If it is, return 1, else return 0. */
3054 detect_coding_iso_2022 (struct coding_system
*coding
,
3055 struct coding_detection_info
*detect_info
)
3057 const unsigned char *src
= coding
->source
, *src_base
= src
;
3058 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3059 int multibytep
= coding
->src_multibyte
;
3060 int single_shifting
= 0;
3063 int consumed_chars
= 0;
3067 int composition_count
= -1;
3069 detect_info
->checked
|= CATEGORY_MASK_ISO
;
3071 for (i
= coding_category_iso_7
; i
<= coding_category_iso_8_else
; i
++)
3073 struct coding_system
*this = &(coding_categories
[i
]);
3074 Lisp_Object attrs
, val
;
3078 attrs
= CODING_ID_ATTRS (this->id
);
3079 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT
3080 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Viso_2022_charset_list
))
3081 setup_iso_safe_charsets (attrs
);
3082 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
3083 this->max_charset_id
= SCHARS (val
) - 1;
3084 this->safe_charsets
= SDATA (val
);
3087 /* A coding system of this category is always ASCII compatible. */
3088 src
+= coding
->head_ascii
;
3090 while (rejected
!= CATEGORY_MASK_ISO
)
3097 if (inhibit_iso_escape_detection
)
3099 single_shifting
= 0;
3101 if (c
>= '(' && c
<= '/')
3103 /* Designation sequence for a charset of dimension 1. */
3105 if (c1
< ' ' || c1
>= 0x80
3106 || (id
= iso_charset_table
[0][c
>= ','][c1
]) < 0)
3107 /* Invalid designation sequence. Just ignore. */
3112 /* Designation sequence for a charset of dimension 2. */
3114 if (c
>= '@' && c
<= 'B')
3115 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
3116 id
= iso_charset_table
[1][0][c
];
3117 else if (c
>= '(' && c
<= '/')
3120 if (c1
< ' ' || c1
>= 0x80
3121 || (id
= iso_charset_table
[1][c
>= ','][c1
]) < 0)
3122 /* Invalid designation sequence. Just ignore. */
3126 /* Invalid designation sequence. Just ignore it. */
3129 else if (c
== 'N' || c
== 'O')
3131 /* ESC <Fe> for SS2 or SS3. */
3132 single_shifting
= 1;
3133 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3138 /* End of composition. */
3139 if (composition_count
< 0
3140 || composition_count
> MAX_COMPOSITION_COMPONENTS
)
3143 composition_count
= -1;
3144 found
|= CATEGORY_MASK_ISO
;
3146 else if (c
>= '0' && c
<= '4')
3148 /* ESC <Fp> for start/end composition. */
3149 composition_count
= 0;
3154 /* Invalid escape sequence. Just ignore it. */
3158 /* We found a valid designation sequence for CHARSET. */
3159 rejected
|= CATEGORY_MASK_ISO_8BIT
;
3160 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7
],
3162 found
|= CATEGORY_MASK_ISO_7
;
3164 rejected
|= CATEGORY_MASK_ISO_7
;
3165 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_tight
],
3167 found
|= CATEGORY_MASK_ISO_7_TIGHT
;
3169 rejected
|= CATEGORY_MASK_ISO_7_TIGHT
;
3170 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_7_else
],
3172 found
|= CATEGORY_MASK_ISO_7_ELSE
;
3174 rejected
|= CATEGORY_MASK_ISO_7_ELSE
;
3175 if (SAFE_CHARSET_P (&coding_categories
[coding_category_iso_8_else
],
3177 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3179 rejected
|= CATEGORY_MASK_ISO_8_ELSE
;
3184 /* Locking shift out/in. */
3185 if (inhibit_iso_escape_detection
)
3187 single_shifting
= 0;
3188 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_8BIT
;
3192 /* Control sequence introducer. */
3193 single_shifting
= 0;
3194 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3195 found
|= CATEGORY_MASK_ISO_8_ELSE
;
3196 goto check_extra_latin
;
3201 if (inhibit_iso_escape_detection
)
3203 single_shifting
= 0;
3204 rejected
|= CATEGORY_MASK_ISO_7BIT
;
3205 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3206 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3207 found
|= CATEGORY_MASK_ISO_8_1
, single_shifting
= 1;
3208 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_2
])
3209 & CODING_ISO_FLAG_SINGLE_SHIFT
)
3210 found
|= CATEGORY_MASK_ISO_8_2
, single_shifting
= 1;
3211 if (single_shifting
)
3213 goto check_extra_latin
;
3220 if (composition_count
>= 0)
3221 composition_count
++;
3222 single_shifting
= 0;
3227 rejected
|= CATEGORY_MASK_ISO_7BIT
| CATEGORY_MASK_ISO_7_ELSE
;
3228 found
|= CATEGORY_MASK_ISO_8_1
;
3229 /* Check the length of succeeding codes of the range
3230 0xA0..0FF. If the byte length is even, we include
3231 CATEGORY_MASK_ISO_8_2 in `found'. We can check this
3232 only when we are not single shifting. */
3233 if (! single_shifting
3234 && ! (rejected
& CATEGORY_MASK_ISO_8_2
))
3237 while (src
< src_end
)
3249 if (i
& 1 && src
< src_end
)
3251 rejected
|= CATEGORY_MASK_ISO_8_2
;
3252 if (composition_count
>= 0)
3253 composition_count
+= i
;
3257 found
|= CATEGORY_MASK_ISO_8_2
;
3258 if (composition_count
>= 0)
3259 composition_count
+= i
/ 2;
3265 single_shifting
= 0;
3266 if (! VECTORP (Vlatin_extra_code_table
)
3267 || NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
]))
3269 rejected
= CATEGORY_MASK_ISO
;
3272 if (CODING_ISO_FLAGS (&coding_categories
[coding_category_iso_8_1
])
3273 & CODING_ISO_FLAG_LATIN_EXTRA
)
3274 found
|= CATEGORY_MASK_ISO_8_1
;
3276 rejected
|= CATEGORY_MASK_ISO_8_1
;
3277 rejected
|= CATEGORY_MASK_ISO_8_2
;
3280 detect_info
->rejected
|= CATEGORY_MASK_ISO
;
3284 detect_info
->rejected
|= rejected
;
3285 detect_info
->found
|= (found
& ~rejected
);
3290 /* Set designation state into CODING. Set CHARS_96 to -1 if the
3291 escape sequence should be kept. */
3292 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \
3296 if (final < '0' || final >= 128 \
3297 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \
3298 || !SAFE_CHARSET_P (coding, id)) \
3300 CODING_ISO_DESIGNATION (coding, reg) = -2; \
3304 prev = CODING_ISO_DESIGNATION (coding, reg); \
3305 if (id == charset_jisx0201_roman) \
3307 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
3308 id = charset_ascii; \
3310 else if (id == charset_jisx0208_1978) \
3312 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
3313 id = charset_jisx0208; \
3315 CODING_ISO_DESIGNATION (coding, reg) = id; \
3316 /* If there was an invalid designation to REG previously, and this \
3317 designation is ASCII to REG, we should keep this designation \
3319 if (prev == -2 && id == charset_ascii) \
3324 /* Handle these composition sequence (ALT: alternate char):
3326 (1) relative composition: ESC 0 CHAR ... ESC 1
3327 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3328 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1
3329 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1
3331 When the start sequence (ESC 0/2/3/4) is found, this annotation
3334 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ]
3336 Then, upon reading CHAR or RULE (one or two bytes), these codes are
3337 produced until the end sequence (ESC 1) is found:
3340 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR
3341 (3) ALT ... ALT -1 -1 CHAR ... CHAR
3342 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR
3344 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the
3345 annotation header is updated as below:
3347 (1) LENGTH: unchanged, NCHARS: number of CHARs
3348 (2) LENGTH: unchanged, NCHARS: number of CHARs
3349 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs
3350 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs
3352 If an error is found while composing, the annotation header is
3355 [ ESC '0'/'2'/'3'/'4' -2 0 ]
3357 and the sequence [ -2 DECODED-RULE ] is changed to the original
3358 byte sequence as below:
3359 o the original byte sequence is B: [ B -1 ]
3360 o the original byte sequence is B1 B2: [ B1 B2 ]
3361 and the sequence [ -1 -1 ] is changed to the original byte
3366 /* Decode a composition rule C1 and maybe one more byte from the
3367 source, and set RULE to the encoded composition rule, NBYTES to the
3368 length of the composition rule. If the rule is invalid, set RULE
3369 to some negative value. */
3371 #define DECODE_COMPOSITION_RULE(rule, nbytes) \
3376 if (rule < 81) /* old format (before ver.21) */ \
3378 int gref = (rule) / 9; \
3379 int nref = (rule) % 9; \
3380 if (gref == 4) gref = 10; \
3381 if (nref == 4) nref = 10; \
3382 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
3385 else /* new format (after ver.21) */ \
3389 ONE_MORE_BYTE (c); \
3390 rule = COMPOSITION_ENCODE_RULE (rule - 81, c - 32); \
3392 rule += 0x100; /* to destinguish it from the old format */ \
3397 #define ENCODE_COMPOSITION_RULE(rule) \
3399 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \
3401 if (rule < 0x100) /* old format */ \
3403 if (gref == 10) gref = 4; \
3404 if (nref == 10) nref = 4; \
3405 charbuf[idx] = 32 + gref * 9 + nref; \
3406 charbuf[idx + 1] = -1; \
3409 else /* new format */ \
3411 charbuf[idx] = 32 + 81 + gref; \
3412 charbuf[idx + 1] = 32 + nref; \
3417 /* Finish the current composition as invalid. */
3419 static int finish_composition (int *, struct composition_status
*);
3422 finish_composition (int *charbuf
, struct composition_status
*cmp_status
)
3424 int idx
= - cmp_status
->length
;
3427 /* Recover the original ESC sequence */
3428 charbuf
[idx
++] = ISO_CODE_ESC
;
3429 charbuf
[idx
++] = (cmp_status
->method
== COMPOSITION_RELATIVE
? '0'
3430 : cmp_status
->method
== COMPOSITION_WITH_RULE
? '2'
3431 : cmp_status
->method
== COMPOSITION_WITH_ALTCHARS
? '3'
3432 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */
3434 charbuf
[idx
++] = -2;
3436 charbuf
[idx
++] = -1;
3437 new_chars
= cmp_status
->nchars
;
3438 if (cmp_status
->method
>= COMPOSITION_WITH_RULE
)
3439 for (; idx
< 0; idx
++)
3441 int elt
= charbuf
[idx
];
3445 ENCODE_COMPOSITION_RULE (charbuf
[idx
+ 1]);
3450 charbuf
[idx
++] = ISO_CODE_ESC
;
3455 cmp_status
->state
= COMPOSING_NO
;
3459 /* If characers are under composition, finish the composition. */
3460 #define MAYBE_FINISH_COMPOSITION() \
3462 if (cmp_status->state != COMPOSING_NO) \
3463 char_offset += finish_composition (charbuf, cmp_status); \
3466 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
3468 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
3469 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
3470 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1
3471 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1
3473 Produce this annotation sequence now:
3475 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ]
3478 #define DECODE_COMPOSITION_START(c1) \
3481 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \
3482 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3483 || (cmp_status->state == COMPOSING_COMPONENT_RULE \
3484 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \
3488 cmp_status->state = COMPOSING_CHAR; \
3489 cmp_status->length += 2; \
3493 MAYBE_FINISH_COMPOSITION (); \
3494 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \
3495 : c1 == '2' ? COMPOSITION_WITH_RULE \
3496 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
3497 : COMPOSITION_WITH_RULE_ALTCHARS); \
3499 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \
3500 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \
3501 cmp_status->length = MAX_ANNOTATION_LENGTH; \
3502 cmp_status->nchars = cmp_status->ncomps = 0; \
3503 coding->annotated = 1; \
3508 /* Handle composition end sequence ESC 1. */
3510 #define DECODE_COMPOSITION_END() \
3512 if (cmp_status->nchars == 0 \
3513 || ((cmp_status->state == COMPOSING_CHAR) \
3514 == (cmp_status->method == COMPOSITION_WITH_RULE))) \
3516 MAYBE_FINISH_COMPOSITION (); \
3517 goto invalid_code; \
3519 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \
3520 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \
3521 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \
3522 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \
3523 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \
3524 char_offset += cmp_status->nchars; \
3525 cmp_status->state = COMPOSING_NO; \
3528 /* Store a composition rule RULE in charbuf, and update cmp_status. */
3530 #define STORE_COMPOSITION_RULE(rule) \
3533 *charbuf++ = rule; \
3534 cmp_status->length += 2; \
3535 cmp_status->state--; \
3538 /* Store a composed char or a component char C in charbuf, and update
3541 #define STORE_COMPOSITION_CHAR(c) \
3544 cmp_status->length++; \
3545 if (cmp_status->state == COMPOSING_CHAR) \
3546 cmp_status->nchars++; \
3548 cmp_status->ncomps++; \
3549 if (cmp_status->method == COMPOSITION_WITH_RULE \
3550 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \
3551 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \
3552 cmp_status->state++; \
3556 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3559 decode_coding_iso_2022 (struct coding_system
*coding
)
3561 const unsigned char *src
= coding
->source
+ coding
->consumed
;
3562 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
3563 const unsigned char *src_base
;
3564 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
3565 /* We may produce two annocations (charset and composition) in one
3566 loop and one more charset annocation at the end. */
3568 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 3);
3569 int consumed_chars
= 0, consumed_chars_base
;
3570 int multibytep
= coding
->src_multibyte
;
3571 /* Charsets invoked to graphic plane 0 and 1 respectively. */
3572 int charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3573 int charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3574 int charset_id_2
, charset_id_3
;
3575 struct charset
*charset
;
3577 struct composition_status
*cmp_status
= CODING_ISO_CMP_STATUS (coding
);
3578 Lisp_Object attrs
, charset_list
;
3579 int char_offset
= coding
->produced_char
;
3580 int last_offset
= char_offset
;
3581 int last_id
= charset_ascii
;
3583 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
3584 int byte_after_cr
= -1;
3587 CODING_GET_INFO (coding
, attrs
, charset_list
);
3588 setup_iso_safe_charsets (attrs
);
3589 /* Charset list may have been changed. */
3590 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
3591 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
3593 if (cmp_status
->state
!= COMPOSING_NO
)
3595 for (i
= 0; i
< cmp_status
->length
; i
++)
3596 *charbuf
++ = cmp_status
->carryover
[i
];
3597 coding
->annotated
= 1;
3605 consumed_chars_base
= consumed_chars
;
3607 if (charbuf
>= charbuf_end
)
3609 if (byte_after_cr
>= 0)
3614 if (byte_after_cr
>= 0)
3615 c1
= byte_after_cr
, byte_after_cr
= -1;
3621 if (CODING_ISO_EXTSEGMENT_LEN (coding
) > 0)
3623 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3625 CODING_ISO_EXTSEGMENT_LEN (coding
)--;
3629 if (CODING_ISO_EMBEDDED_UTF_8 (coding
))
3631 if (c1
== ISO_CODE_ESC
)
3633 if (src
+ 1 >= src_end
)
3634 goto no_more_source
;
3635 *charbuf
++ = ISO_CODE_ESC
;
3637 if (src
[0] == '%' && src
[1] == '@')
3640 consumed_chars
+= 2;
3642 /* We are sure charbuf can contain two more chars. */
3645 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
3650 *charbuf
++ = ASCII_BYTE_P (c1
) ? c1
: BYTE8_TO_CHAR (c1
);
3656 if ((cmp_status
->state
== COMPOSING_RULE
3657 || cmp_status
->state
== COMPOSING_COMPONENT_RULE
)
3658 && c1
!= ISO_CODE_ESC
)
3662 DECODE_COMPOSITION_RULE (rule
, nbytes
);
3665 STORE_COMPOSITION_RULE (rule
);
3669 /* We produce at most one character. */
3670 switch (iso_code_class
[c1
])
3672 case ISO_0x20_or_0x7F
:
3673 if (charset_id_0
< 0
3674 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0
)))
3675 /* This is SPACE or DEL. */
3676 charset
= CHARSET_FROM_ID (charset_ascii
);
3678 charset
= CHARSET_FROM_ID (charset_id_0
);
3681 case ISO_graphic_plane_0
:
3682 if (charset_id_0
< 0)
3683 charset
= CHARSET_FROM_ID (charset_ascii
);
3685 charset
= CHARSET_FROM_ID (charset_id_0
);
3688 case ISO_0xA0_or_0xFF
:
3689 if (charset_id_1
< 0
3690 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1
))
3691 || CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
)
3693 /* This is a graphic character, we fall down ... */
3695 case ISO_graphic_plane_1
:
3696 if (charset_id_1
< 0)
3698 charset
= CHARSET_FROM_ID (charset_id_1
);
3702 if (eol_crlf
&& c1
== '\r')
3703 ONE_MORE_BYTE (byte_after_cr
);
3704 MAYBE_FINISH_COMPOSITION ();
3705 charset
= CHARSET_FROM_ID (charset_ascii
);
3712 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3713 || CODING_ISO_DESIGNATION (coding
, 1) < 0)
3715 CODING_ISO_INVOCATION (coding
, 0) = 1;
3716 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3720 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
))
3722 CODING_ISO_INVOCATION (coding
, 0) = 0;
3723 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3726 case ISO_single_shift_2_7
:
3727 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SEVEN_BITS
))
3729 case ISO_single_shift_2
:
3730 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3732 /* SS2 is handled as an escape sequence of ESC 'N' */
3734 goto label_escape_sequence
;
3736 case ISO_single_shift_3
:
3737 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
))
3739 /* SS2 is handled as an escape sequence of ESC 'O' */
3741 goto label_escape_sequence
;
3743 case ISO_control_sequence_introducer
:
3744 /* CSI is handled as an escape sequence of ESC '[' ... */
3746 goto label_escape_sequence
;
3750 label_escape_sequence
:
3751 /* Escape sequences handled here are invocation,
3752 designation, direction specification, and character
3753 composition specification. */
3756 case '&': /* revision of following character set */
3758 if (!(c1
>= '@' && c1
<= '~'))
3761 if (c1
!= ISO_CODE_ESC
)
3764 goto label_escape_sequence
;
3766 case '$': /* designation of 2-byte character set */
3767 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3773 if (c1
>= '@' && c1
<= 'B')
3774 { /* designation of JISX0208.1978, GB2312.1980,
3776 reg
= 0, chars96
= 0;
3778 else if (c1
>= 0x28 && c1
<= 0x2B)
3779 { /* designation of DIMENSION2_CHARS94 character set */
3780 reg
= c1
- 0x28, chars96
= 0;
3783 else if (c1
>= 0x2C && c1
<= 0x2F)
3784 { /* designation of DIMENSION2_CHARS96 character set */
3785 reg
= c1
- 0x2C, chars96
= 1;
3790 DECODE_DESIGNATION (reg
, 2, chars96
, c1
);
3791 /* We must update these variables now. */
3793 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3795 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3801 case 'n': /* invocation of locking-shift-2 */
3802 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3803 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3805 CODING_ISO_INVOCATION (coding
, 0) = 2;
3806 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3809 case 'o': /* invocation of locking-shift-3 */
3810 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_LOCKING_SHIFT
)
3811 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3813 CODING_ISO_INVOCATION (coding
, 0) = 3;
3814 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3817 case 'N': /* invocation of single-shift-2 */
3818 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3819 || CODING_ISO_DESIGNATION (coding
, 2) < 0)
3821 charset_id_2
= CODING_ISO_DESIGNATION (coding
, 2);
3822 if (charset_id_2
< 0)
3823 charset
= CHARSET_FROM_ID (charset_ascii
);
3825 charset
= CHARSET_FROM_ID (charset_id_2
);
3827 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
3831 case 'O': /* invocation of single-shift-3 */
3832 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
3833 || CODING_ISO_DESIGNATION (coding
, 3) < 0)
3835 charset_id_3
= CODING_ISO_DESIGNATION (coding
, 3);
3836 if (charset_id_3
< 0)
3837 charset
= CHARSET_FROM_ID (charset_ascii
);
3839 charset
= CHARSET_FROM_ID (charset_id_3
);
3841 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
3845 case '0': case '2': case '3': case '4': /* start composition */
3846 if (! (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
))
3848 if (last_id
!= charset_ascii
)
3850 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3851 last_id
= charset_ascii
;
3852 last_offset
= char_offset
;
3854 DECODE_COMPOSITION_START (c1
);
3857 case '1': /* end composition */
3858 if (cmp_status
->state
== COMPOSING_NO
)
3860 DECODE_COMPOSITION_END ();
3863 case '[': /* specification of direction */
3864 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DIRECTION
))
3866 /* For the moment, nested direction is not supported.
3867 So, `coding->mode & CODING_MODE_DIRECTION' zero means
3868 left-to-right, and nozero means right-to-left. */
3872 case ']': /* end of the current direction */
3873 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3875 case '0': /* end of the current direction */
3876 case '1': /* start of left-to-right direction */
3879 coding
->mode
&= ~CODING_MODE_DIRECTION
;
3884 case '2': /* start of right-to-left direction */
3887 coding
->mode
|= CODING_MODE_DIRECTION
;
3901 /* CTEXT extended segment:
3902 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
3903 We keep these bytes as is for the moment.
3904 They may be decoded by post-read-conversion. */
3908 ONE_MORE_BYTE (dim
);
3909 if (dim
< 0 || dim
> 4)
3917 size
= ((M
- 128) * 128) + (L
- 128);
3918 if (charbuf
+ 6 > charbuf_end
)
3920 *charbuf
++ = ISO_CODE_ESC
;
3924 *charbuf
++ = BYTE8_TO_CHAR (M
);
3925 *charbuf
++ = BYTE8_TO_CHAR (L
);
3926 CODING_ISO_EXTSEGMENT_LEN (coding
) = size
;
3930 /* XFree86 extension for embedding UTF-8 in CTEXT:
3931 ESC % G --UTF-8-BYTES-- ESC % @
3932 We keep these bytes as is for the moment.
3933 They may be decoded by post-read-conversion. */
3934 if (charbuf
+ 3 > charbuf_end
)
3936 *charbuf
++ = ISO_CODE_ESC
;
3939 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 1;
3947 if (! (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATION
))
3952 if (c1
>= 0x28 && c1
<= 0x2B)
3953 { /* designation of DIMENSION1_CHARS94 character set */
3954 reg
= c1
- 0x28, chars96
= 0;
3957 else if (c1
>= 0x2C && c1
<= 0x2F)
3958 { /* designation of DIMENSION1_CHARS96 character set */
3959 reg
= c1
- 0x2C, chars96
= 1;
3964 DECODE_DESIGNATION (reg
, 1, chars96
, c1
);
3965 /* We must update these variables now. */
3967 charset_id_0
= CODING_ISO_INVOKED_CHARSET (coding
, 0);
3969 charset_id_1
= CODING_ISO_INVOKED_CHARSET (coding
, 1);
3977 if (cmp_status
->state
== COMPOSING_NO
3978 && charset
->id
!= charset_ascii
3979 && last_id
!= charset
->id
)
3981 if (last_id
!= charset_ascii
)
3982 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
3983 last_id
= charset
->id
;
3984 last_offset
= char_offset
;
3987 /* Now we know CHARSET and 1st position code C1 of a character.
3988 Produce a decoded character while getting 2nd and 3rd
3989 position codes C2, C3 if necessary. */
3990 if (CHARSET_DIMENSION (charset
) > 1)
3993 if (c2
< 0x20 || (c2
>= 0x80 && c2
< 0xA0)
3994 || ((c1
& 0x80) != (c2
& 0x80)))
3995 /* C2 is not in a valid range. */
3997 if (CHARSET_DIMENSION (charset
) == 2)
3998 c1
= (c1
<< 8) | c2
;
4002 if (c3
< 0x20 || (c3
>= 0x80 && c3
< 0xA0)
4003 || ((c1
& 0x80) != (c3
& 0x80)))
4004 /* C3 is not in a valid range. */
4006 c1
= (c1
<< 16) | (c2
<< 8) | c2
;
4010 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c1
, c
);
4013 MAYBE_FINISH_COMPOSITION ();
4014 for (; src_base
< src
; src_base
++, char_offset
++)
4016 if (ASCII_BYTE_P (*src_base
))
4017 *charbuf
++ = *src_base
;
4019 *charbuf
++ = BYTE8_TO_CHAR (*src_base
);
4022 else if (cmp_status
->state
== COMPOSING_NO
)
4027 else if ((cmp_status
->state
== COMPOSING_CHAR
4028 ? cmp_status
->nchars
4029 : cmp_status
->ncomps
)
4030 >= MAX_COMPOSITION_COMPONENTS
)
4032 /* Too long composition. */
4033 MAYBE_FINISH_COMPOSITION ();
4038 STORE_COMPOSITION_CHAR (c
);
4042 MAYBE_FINISH_COMPOSITION ();
4044 consumed_chars
= consumed_chars_base
;
4046 *charbuf
++ = c
< 0 ? -c
: ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
4056 if (cmp_status
->state
!= COMPOSING_NO
)
4058 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
4059 MAYBE_FINISH_COMPOSITION ();
4062 charbuf
-= cmp_status
->length
;
4063 for (i
= 0; i
< cmp_status
->length
; i
++)
4064 cmp_status
->carryover
[i
] = charbuf
[i
];
4067 else if (last_id
!= charset_ascii
)
4068 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4069 coding
->consumed_char
+= consumed_chars_base
;
4070 coding
->consumed
= src_base
- coding
->source
;
4071 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4075 /* ISO2022 encoding stuff. */
4078 It is not enough to say just "ISO2022" on encoding, we have to
4079 specify more details. In Emacs, each coding system of ISO2022
4080 variant has the following specifications:
4081 1. Initial designation to G0 thru G3.
4082 2. Allows short-form designation?
4083 3. ASCII should be designated to G0 before control characters?
4084 4. ASCII should be designated to G0 at end of line?
4085 5. 7-bit environment or 8-bit environment?
4086 6. Use locking-shift?
4087 7. Use Single-shift?
4088 And the following two are only for Japanese:
4089 8. Use ASCII in place of JIS0201-1976-Roman?
4090 9. Use JISX0208-1983 in place of JISX0208-1978?
4091 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits
4092 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more
4096 /* Produce codes (escape sequence) for designating CHARSET to graphic
4097 register REG at DST, and increment DST. If <final-char> of CHARSET is
4098 '@', 'A', or 'B' and the coding system CODING allows, produce
4099 designation sequence of short-form. */
4101 #define ENCODE_DESIGNATION(charset, reg, coding) \
4103 unsigned char final_char = CHARSET_ISO_FINAL (charset); \
4104 char *intermediate_char_94 = "()*+"; \
4105 char *intermediate_char_96 = ",-./"; \
4106 int revision = -1; \
4109 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \
4110 revision = CHARSET_ISO_REVISION (charset); \
4112 if (revision >= 0) \
4114 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \
4115 EMIT_ONE_BYTE ('@' + revision); \
4117 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \
4118 if (CHARSET_DIMENSION (charset) == 1) \
4120 if (! CHARSET_ISO_CHARS_96 (charset)) \
4121 c = intermediate_char_94[reg]; \
4123 c = intermediate_char_96[reg]; \
4124 EMIT_ONE_ASCII_BYTE (c); \
4128 EMIT_ONE_ASCII_BYTE ('$'); \
4129 if (! CHARSET_ISO_CHARS_96 (charset)) \
4131 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \
4133 || final_char < '@' || final_char > 'B') \
4134 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \
4137 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \
4139 EMIT_ONE_ASCII_BYTE (final_char); \
4141 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \
4145 /* The following two macros produce codes (control character or escape
4146 sequence) for ISO2022 single-shift functions (single-shift-2 and
4149 #define ENCODE_SINGLE_SHIFT_2 \
4151 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4152 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \
4154 EMIT_ONE_BYTE (ISO_CODE_SS2); \
4155 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4159 #define ENCODE_SINGLE_SHIFT_3 \
4161 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4162 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \
4164 EMIT_ONE_BYTE (ISO_CODE_SS3); \
4165 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \
4169 /* The following four macros produce codes (control character or
4170 escape sequence) for ISO2022 locking-shift functions (shift-in,
4171 shift-out, locking-shift-2, and locking-shift-3). */
4173 #define ENCODE_SHIFT_IN \
4175 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \
4176 CODING_ISO_INVOCATION (coding, 0) = 0; \
4180 #define ENCODE_SHIFT_OUT \
4182 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \
4183 CODING_ISO_INVOCATION (coding, 0) = 1; \
4187 #define ENCODE_LOCKING_SHIFT_2 \
4189 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4190 CODING_ISO_INVOCATION (coding, 0) = 2; \
4194 #define ENCODE_LOCKING_SHIFT_3 \
4196 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \
4197 CODING_ISO_INVOCATION (coding, 0) = 3; \
4201 /* Produce codes for a DIMENSION1 character whose character set is
4202 CHARSET and whose position-code is C1. Designation and invocation
4203 sequences are also produced in advance if necessary. */
4205 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
4207 int id = CHARSET_ID (charset); \
4209 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \
4210 && id == charset_ascii) \
4212 id = charset_jisx0201_roman; \
4213 charset = CHARSET_FROM_ID (id); \
4216 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4218 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4219 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4221 EMIT_ONE_BYTE (c1 | 0x80); \
4222 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4225 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4227 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \
4230 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4232 EMIT_ONE_BYTE (c1 | 0x80); \
4236 /* Since CHARSET is not yet invoked to any graphic planes, we \
4237 must invoke it, or, at first, designate it to some graphic \
4238 register. Then repeat the loop to actually produce the \
4240 dst = encode_invocation_designation (charset, coding, dst, \
4245 /* Produce codes for a DIMENSION2 character whose character set is
4246 CHARSET and whose position-codes are C1 and C2. Designation and
4247 invocation codes are also produced in advance if necessary. */
4249 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
4251 int id = CHARSET_ID (charset); \
4253 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \
4254 && id == charset_jisx0208) \
4256 id = charset_jisx0208_1978; \
4257 charset = CHARSET_FROM_ID (id); \
4260 if (CODING_ISO_SINGLE_SHIFTING (coding)) \
4262 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \
4263 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4265 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4266 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \
4269 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \
4271 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \
4274 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \
4276 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \
4280 /* Since CHARSET is not yet invoked to any graphic planes, we \
4281 must invoke it, or, at first, designate it to some graphic \
4282 register. Then repeat the loop to actually produce the \
4284 dst = encode_invocation_designation (charset, coding, dst, \
4289 #define ENCODE_ISO_CHARACTER(charset, c) \
4291 int code = ENCODE_CHAR ((charset), (c)); \
4293 if (CHARSET_DIMENSION (charset) == 1) \
4294 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \
4296 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \
4300 /* Produce designation and invocation codes at a place pointed by DST
4301 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4305 encode_invocation_designation (struct charset
*charset
,
4306 struct coding_system
*coding
,
4307 unsigned char *dst
, int *p_nchars
)
4309 int multibytep
= coding
->dst_multibyte
;
4310 int produced_chars
= *p_nchars
;
4311 int reg
; /* graphic register number */
4312 int id
= CHARSET_ID (charset
);
4314 /* At first, check designations. */
4315 for (reg
= 0; reg
< 4; reg
++)
4316 if (id
== CODING_ISO_DESIGNATION (coding
, reg
))
4321 /* CHARSET is not yet designated to any graphic registers. */
4322 /* At first check the requested designation. */
4323 reg
= CODING_ISO_REQUEST (coding
, id
);
4325 /* Since CHARSET requests no special designation, designate it
4326 to graphic register 0. */
4329 ENCODE_DESIGNATION (charset
, reg
, coding
);
4332 if (CODING_ISO_INVOCATION (coding
, 0) != reg
4333 && CODING_ISO_INVOCATION (coding
, 1) != reg
)
4335 /* Since the graphic register REG is not invoked to any graphic
4336 planes, invoke it to graphic plane 0. */
4339 case 0: /* graphic register 0 */
4343 case 1: /* graphic register 1 */
4347 case 2: /* graphic register 2 */
4348 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4349 ENCODE_SINGLE_SHIFT_2
;
4351 ENCODE_LOCKING_SHIFT_2
;
4354 case 3: /* graphic register 3 */
4355 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_SINGLE_SHIFT
)
4356 ENCODE_SINGLE_SHIFT_3
;
4358 ENCODE_LOCKING_SHIFT_3
;
4363 *p_nchars
= produced_chars
;
4367 /* The following three macros produce codes for indicating direction
4369 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \
4371 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \
4372 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \
4374 EMIT_ONE_BYTE (ISO_CODE_CSI); \
4378 #define ENCODE_DIRECTION_R2L() \
4380 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \
4381 EMIT_TWO_ASCII_BYTES ('2', ']'); \
4385 #define ENCODE_DIRECTION_L2R() \
4387 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \
4388 EMIT_TWO_ASCII_BYTES ('0', ']'); \
4392 /* Produce codes for designation and invocation to reset the graphic
4393 planes and registers to initial state. */
4394 #define ENCODE_RESET_PLANE_AND_REGISTER() \
4397 struct charset *charset; \
4399 if (CODING_ISO_INVOCATION (coding, 0) != 0) \
4401 for (reg = 0; reg < 4; reg++) \
4402 if (CODING_ISO_INITIAL (coding, reg) >= 0 \
4403 && (CODING_ISO_DESIGNATION (coding, reg) \
4404 != CODING_ISO_INITIAL (coding, reg))) \
4406 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \
4407 ENCODE_DESIGNATION (charset, reg, coding); \
4412 /* Produce designation sequences of charsets in the line started from
4413 SRC to a place pointed by DST, and return updated DST.
4415 If the current block ends before any end-of-line, we may fail to
4416 find all the necessary designations. */
4418 static unsigned char *
4419 encode_designation_at_bol (struct coding_system
*coding
, int *charbuf
,
4420 int *charbuf_end
, unsigned char *dst
)
4422 struct charset
*charset
;
4423 /* Table of charsets to be designated to each graphic register. */
4425 int c
, found
= 0, reg
;
4426 int produced_chars
= 0;
4427 int multibytep
= coding
->dst_multibyte
;
4429 Lisp_Object charset_list
;
4431 attrs
= CODING_ID_ATTRS (coding
->id
);
4432 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4433 if (EQ (charset_list
, Qiso_2022
))
4434 charset_list
= Viso_2022_charset_list
;
4436 for (reg
= 0; reg
< 4; reg
++)
4446 charset
= char_charset (c
, charset_list
, NULL
);
4447 id
= CHARSET_ID (charset
);
4448 reg
= CODING_ISO_REQUEST (coding
, id
);
4449 if (reg
>= 0 && r
[reg
] < 0)
4458 for (reg
= 0; reg
< 4; reg
++)
4460 && CODING_ISO_DESIGNATION (coding
, reg
) != r
[reg
])
4461 ENCODE_DESIGNATION (CHARSET_FROM_ID (r
[reg
]), reg
, coding
);
4467 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
4470 encode_coding_iso_2022 (struct coding_system
*coding
)
4472 int multibytep
= coding
->dst_multibyte
;
4473 int *charbuf
= coding
->charbuf
;
4474 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4475 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4476 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4479 = (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
4480 && CODING_ISO_BOL (coding
));
4481 int produced_chars
= 0;
4482 Lisp_Object attrs
, eol_type
, charset_list
;
4483 int ascii_compatible
;
4485 int preferred_charset_id
= -1;
4487 CODING_GET_INFO (coding
, attrs
, charset_list
);
4488 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
4489 if (VECTORP (eol_type
))
4492 setup_iso_safe_charsets (attrs
);
4493 /* Charset list may have been changed. */
4494 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
4495 coding
->safe_charsets
= SDATA (CODING_ATTR_SAFE_CHARSETS (attrs
));
4497 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
4499 while (charbuf
< charbuf_end
)
4501 ASSURE_DESTINATION (safe_room
);
4503 if (bol_designation
)
4505 unsigned char *dst_prev
= dst
;
4507 /* We have to produce designation sequences if any now. */
4508 dst
= encode_designation_at_bol (coding
, charbuf
, charbuf_end
, dst
);
4509 bol_designation
= 0;
4510 /* We are sure that designation sequences are all ASCII bytes. */
4511 produced_chars
+= dst
- dst_prev
;
4518 /* Handle an annotation. */
4521 case CODING_ANNOTATE_COMPOSITION_MASK
:
4522 /* Not yet implemented. */
4524 case CODING_ANNOTATE_CHARSET_MASK
:
4525 preferred_charset_id
= charbuf
[2];
4526 if (preferred_charset_id
>= 0
4527 && NILP (Fmemq (make_number (preferred_charset_id
),
4529 preferred_charset_id
= -1;
4538 /* Now encode the character C. */
4539 if (c
< 0x20 || c
== 0x7F)
4542 || (c
== '\r' && EQ (eol_type
, Qmac
)))
4544 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4545 ENCODE_RESET_PLANE_AND_REGISTER ();
4546 if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_INIT_AT_BOL
)
4550 for (i
= 0; i
< 4; i
++)
4551 CODING_ISO_DESIGNATION (coding
, i
)
4552 = CODING_ISO_INITIAL (coding
, i
);
4555 = CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_DESIGNATE_AT_BOL
;
4557 else if (CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_CNTL
)
4558 ENCODE_RESET_PLANE_AND_REGISTER ();
4559 EMIT_ONE_ASCII_BYTE (c
);
4561 else if (ASCII_CHAR_P (c
))
4563 if (ascii_compatible
)
4564 EMIT_ONE_ASCII_BYTE (c
);
4567 struct charset
*charset
= CHARSET_FROM_ID (charset_ascii
);
4568 ENCODE_ISO_CHARACTER (charset
, c
);
4571 else if (CHAR_BYTE8_P (c
))
4573 c
= CHAR_TO_BYTE8 (c
);
4578 struct charset
*charset
;
4580 if (preferred_charset_id
>= 0)
4582 charset
= CHARSET_FROM_ID (preferred_charset_id
);
4583 if (! CHAR_CHARSET_P (c
, charset
))
4584 charset
= char_charset (c
, charset_list
, NULL
);
4587 charset
= char_charset (c
, charset_list
, NULL
);
4590 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
4592 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
4593 charset
= CHARSET_FROM_ID (charset_ascii
);
4597 c
= coding
->default_char
;
4598 charset
= char_charset (c
, charset_list
, NULL
);
4601 ENCODE_ISO_CHARACTER (charset
, c
);
4605 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4606 && CODING_ISO_FLAGS (coding
) & CODING_ISO_FLAG_RESET_AT_EOL
)
4608 ASSURE_DESTINATION (safe_room
);
4609 ENCODE_RESET_PLANE_AND_REGISTER ();
4611 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
4612 CODING_ISO_BOL (coding
) = bol_designation
;
4613 coding
->produced_char
+= produced_chars
;
4614 coding
->produced
= dst
- coding
->destination
;
4619 /*** 8,9. SJIS and BIG5 handlers ***/
4621 /* Although SJIS and BIG5 are not ISO's coding system, they are used
4622 quite widely. So, for the moment, Emacs supports them in the bare
4623 C code. But, in the future, they may be supported only by CCL. */
4625 /* SJIS is a coding system encoding three character sets: ASCII, right
4626 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
4627 as is. A character of charset katakana-jisx0201 is encoded by
4628 "position-code + 0x80". A character of charset japanese-jisx0208
4629 is encoded in 2-byte but two position-codes are divided and shifted
4630 so that it fit in the range below.
4632 --- CODE RANGE of SJIS ---
4633 (character set) (range)
4635 KATAKANA-JISX0201 0xA0 .. 0xDF
4636 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
4637 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
4638 -------------------------------
4642 /* BIG5 is a coding system encoding two character sets: ASCII and
4643 Big5. An ASCII character is encoded as is. Big5 is a two-byte
4644 character set and is encoded in two-byte.
4646 --- CODE RANGE of BIG5 ---
4647 (character set) (range)
4649 Big5 (1st byte) 0xA1 .. 0xFE
4650 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
4651 --------------------------
4655 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4656 Check if a text is encoded in SJIS. If it is, return
4657 CATEGORY_MASK_SJIS, else return 0. */
4660 detect_coding_sjis (struct coding_system
*coding
,
4661 struct coding_detection_info
*detect_info
)
4663 const unsigned char *src
= coding
->source
, *src_base
;
4664 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4665 int multibytep
= coding
->src_multibyte
;
4666 int consumed_chars
= 0;
4669 Lisp_Object attrs
, charset_list
;
4670 int max_first_byte_of_2_byte_code
;
4672 CODING_GET_INFO (coding
, attrs
, charset_list
);
4673 max_first_byte_of_2_byte_code
4674 = (XINT (Flength (charset_list
)) > 3 ? 0xFC : 0xEF);
4676 detect_info
->checked
|= CATEGORY_MASK_SJIS
;
4677 /* A coding system of this category is always ASCII compatible. */
4678 src
+= coding
->head_ascii
;
4686 if ((c
>= 0x81 && c
<= 0x9F)
4687 || (c
>= 0xE0 && c
<= max_first_byte_of_2_byte_code
))
4690 if (c
< 0x40 || c
== 0x7F || c
> 0xFC)
4692 found
= CATEGORY_MASK_SJIS
;
4694 else if (c
>= 0xA0 && c
< 0xE0)
4695 found
= CATEGORY_MASK_SJIS
;
4699 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4703 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4705 detect_info
->rejected
|= CATEGORY_MASK_SJIS
;
4708 detect_info
->found
|= found
;
4712 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
4713 Check if a text is encoded in BIG5. If it is, return
4714 CATEGORY_MASK_BIG5, else return 0. */
4717 detect_coding_big5 (struct coding_system
*coding
,
4718 struct coding_detection_info
*detect_info
)
4720 const unsigned char *src
= coding
->source
, *src_base
;
4721 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4722 int multibytep
= coding
->src_multibyte
;
4723 int consumed_chars
= 0;
4727 detect_info
->checked
|= CATEGORY_MASK_BIG5
;
4728 /* A coding system of this category is always ASCII compatible. */
4729 src
+= coding
->head_ascii
;
4740 if (c
< 0x40 || (c
>= 0x7F && c
<= 0xA0))
4742 found
= CATEGORY_MASK_BIG5
;
4747 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4751 if (src_base
< src
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
4753 detect_info
->rejected
|= CATEGORY_MASK_BIG5
;
4756 detect_info
->found
|= found
;
4760 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions".
4761 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */
4764 decode_coding_sjis (struct coding_system
*coding
)
4766 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4767 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4768 const unsigned char *src_base
;
4769 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4770 /* We may produce one charset annocation in one loop and one more at
4773 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4774 int consumed_chars
= 0, consumed_chars_base
;
4775 int multibytep
= coding
->src_multibyte
;
4776 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
4777 struct charset
*charset_kanji2
;
4778 Lisp_Object attrs
, charset_list
, val
;
4779 int char_offset
= coding
->produced_char
;
4780 int last_offset
= char_offset
;
4781 int last_id
= charset_ascii
;
4783 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4784 int byte_after_cr
= -1;
4786 CODING_GET_INFO (coding
, attrs
, charset_list
);
4789 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4790 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4791 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4792 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
4797 struct charset
*charset
;
4800 consumed_chars_base
= consumed_chars
;
4802 if (charbuf
>= charbuf_end
)
4804 if (byte_after_cr
>= 0)
4809 if (byte_after_cr
>= 0)
4810 c
= byte_after_cr
, byte_after_cr
= -1;
4817 if (eol_crlf
&& c
== '\r')
4818 ONE_MORE_BYTE (byte_after_cr
);
4819 charset
= charset_roman
;
4821 else if (c
== 0x80 || c
== 0xA0)
4823 else if (c
>= 0xA1 && c
<= 0xDF)
4825 /* SJIS -> JISX0201-Kana */
4827 charset
= charset_kana
;
4831 /* SJIS -> JISX0208 */
4833 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4837 charset
= charset_kanji
;
4839 else if (c
<= 0xFC && charset_kanji2
)
4841 /* SJIS -> JISX0213-2 */
4843 if (c1
< 0x40 || c1
== 0x7F || c1
> 0xFC)
4847 charset
= charset_kanji2
;
4851 if (charset
->id
!= charset_ascii
4852 && last_id
!= charset
->id
)
4854 if (last_id
!= charset_ascii
)
4855 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4856 last_id
= charset
->id
;
4857 last_offset
= char_offset
;
4859 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4866 consumed_chars
= consumed_chars_base
;
4868 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4874 if (last_id
!= charset_ascii
)
4875 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4876 coding
->consumed_char
+= consumed_chars_base
;
4877 coding
->consumed
= src_base
- coding
->source
;
4878 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4882 decode_coding_big5 (struct coding_system
*coding
)
4884 const unsigned char *src
= coding
->source
+ coding
->consumed
;
4885 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
4886 const unsigned char *src_base
;
4887 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
4888 /* We may produce one charset annocation in one loop and one more at
4891 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
4892 int consumed_chars
= 0, consumed_chars_base
;
4893 int multibytep
= coding
->src_multibyte
;
4894 struct charset
*charset_roman
, *charset_big5
;
4895 Lisp_Object attrs
, charset_list
, val
;
4896 int char_offset
= coding
->produced_char
;
4897 int last_offset
= char_offset
;
4898 int last_id
= charset_ascii
;
4900 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
4901 int byte_after_cr
= -1;
4903 CODING_GET_INFO (coding
, attrs
, charset_list
);
4905 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
4906 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
4911 struct charset
*charset
;
4914 consumed_chars_base
= consumed_chars
;
4916 if (charbuf
>= charbuf_end
)
4918 if (byte_after_cr
>= 0)
4923 if (byte_after_cr
>= 0)
4924 c
= byte_after_cr
, byte_after_cr
= -1;
4932 if (eol_crlf
&& c
== '\r')
4933 ONE_MORE_BYTE (byte_after_cr
);
4934 charset
= charset_roman
;
4939 if (c
< 0xA1 || c
> 0xFE)
4942 if (c1
< 0x40 || (c1
> 0x7E && c1
< 0xA1) || c1
> 0xFE)
4945 charset
= charset_big5
;
4947 if (charset
->id
!= charset_ascii
4948 && last_id
!= charset
->id
)
4950 if (last_id
!= charset_ascii
)
4951 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4952 last_id
= charset
->id
;
4953 last_offset
= char_offset
;
4955 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
, charset
, c
, c
);
4962 consumed_chars
= consumed_chars_base
;
4964 *charbuf
++ = c
< 0 ? -c
: BYTE8_TO_CHAR (c
);
4970 if (last_id
!= charset_ascii
)
4971 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
4972 coding
->consumed_char
+= consumed_chars_base
;
4973 coding
->consumed
= src_base
- coding
->source
;
4974 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
4977 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
4978 This function can encode charsets `ascii', `katakana-jisx0201',
4979 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
4980 are sure that all these charsets are registered as official charset
4981 (i.e. do not have extended leading-codes). Characters of other
4982 charsets are produced without any encoding. If SJIS_P is 1, encode
4983 SJIS text, else encode BIG5 text. */
4986 encode_coding_sjis (struct coding_system
*coding
)
4988 int multibytep
= coding
->dst_multibyte
;
4989 int *charbuf
= coding
->charbuf
;
4990 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
4991 unsigned char *dst
= coding
->destination
+ coding
->produced
;
4992 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
4994 int produced_chars
= 0;
4995 Lisp_Object attrs
, charset_list
, val
;
4996 int ascii_compatible
;
4997 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
;
4998 struct charset
*charset_kanji2
;
5001 CODING_GET_INFO (coding
, attrs
, charset_list
);
5003 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5004 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5005 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5006 charset_kanji2
= NILP (val
) ? NULL
: CHARSET_FROM_ID (XINT (XCAR (val
)));
5008 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5010 while (charbuf
< charbuf_end
)
5012 ASSURE_DESTINATION (safe_room
);
5014 /* Now encode the character C. */
5015 if (ASCII_CHAR_P (c
) && ascii_compatible
)
5016 EMIT_ONE_ASCII_BYTE (c
);
5017 else if (CHAR_BYTE8_P (c
))
5019 c
= CHAR_TO_BYTE8 (c
);
5025 struct charset
*charset
= char_charset (c
, charset_list
, &code
);
5029 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5031 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5032 charset
= CHARSET_FROM_ID (charset_ascii
);
5036 c
= coding
->default_char
;
5037 charset
= char_charset (c
, charset_list
, &code
);
5040 if (code
== CHARSET_INVALID_CODE (charset
))
5042 if (charset
== charset_kanji
)
5046 c1
= code
>> 8, c2
= code
& 0xFF;
5047 EMIT_TWO_BYTES (c1
, c2
);
5049 else if (charset
== charset_kana
)
5050 EMIT_ONE_BYTE (code
| 0x80);
5051 else if (charset_kanji2
&& charset
== charset_kanji2
)
5056 if (c1
== 0x21 || (c1
>= 0x23 && c1
<= 0x25)
5058 || (c1
>= 0x2C && c1
<= 0x2F) || c1
>= 0x6E)
5060 JIS_TO_SJIS2 (code
);
5061 c1
= code
>> 8, c2
= code
& 0xFF;
5062 EMIT_TWO_BYTES (c1
, c2
);
5065 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5068 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5071 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5072 coding
->produced_char
+= produced_chars
;
5073 coding
->produced
= dst
- coding
->destination
;
5078 encode_coding_big5 (struct coding_system
*coding
)
5080 int multibytep
= coding
->dst_multibyte
;
5081 int *charbuf
= coding
->charbuf
;
5082 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5083 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5084 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5086 int produced_chars
= 0;
5087 Lisp_Object attrs
, charset_list
, val
;
5088 int ascii_compatible
;
5089 struct charset
*charset_roman
, *charset_big5
;
5092 CODING_GET_INFO (coding
, attrs
, charset_list
);
5094 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
5095 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
5096 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5098 while (charbuf
< charbuf_end
)
5100 ASSURE_DESTINATION (safe_room
);
5102 /* Now encode the character C. */
5103 if (ASCII_CHAR_P (c
) && ascii_compatible
)
5104 EMIT_ONE_ASCII_BYTE (c
);
5105 else if (CHAR_BYTE8_P (c
))
5107 c
= CHAR_TO_BYTE8 (c
);
5113 struct charset
*charset
= char_charset (c
, charset_list
, &code
);
5117 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5119 code
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5120 charset
= CHARSET_FROM_ID (charset_ascii
);
5124 c
= coding
->default_char
;
5125 charset
= char_charset (c
, charset_list
, &code
);
5128 if (code
== CHARSET_INVALID_CODE (charset
))
5130 if (charset
== charset_big5
)
5134 c1
= code
>> 8, c2
= code
& 0xFF;
5135 EMIT_TWO_BYTES (c1
, c2
);
5138 EMIT_ONE_ASCII_BYTE (code
& 0x7F);
5141 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5142 coding
->produced_char
+= produced_chars
;
5143 coding
->produced
= dst
- coding
->destination
;
5148 /*** 10. CCL handlers ***/
5150 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5151 Check if a text is encoded in a coding system of which
5152 encoder/decoder are written in CCL program. If it is, return
5153 CATEGORY_MASK_CCL, else return 0. */
5156 detect_coding_ccl (struct coding_system
*coding
,
5157 struct coding_detection_info
*detect_info
)
5159 const unsigned char *src
= coding
->source
, *src_base
;
5160 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5161 int multibytep
= coding
->src_multibyte
;
5162 int consumed_chars
= 0;
5164 unsigned char *valids
;
5165 int head_ascii
= coding
->head_ascii
;
5168 detect_info
->checked
|= CATEGORY_MASK_CCL
;
5170 coding
= &coding_categories
[coding_category_ccl
];
5171 valids
= CODING_CCL_VALIDS (coding
);
5172 attrs
= CODING_ID_ATTRS (coding
->id
);
5173 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5182 if (c
< 0 || ! valids
[c
])
5184 if ((valids
[c
] > 1))
5185 found
= CATEGORY_MASK_CCL
;
5187 detect_info
->rejected
|= CATEGORY_MASK_CCL
;
5191 detect_info
->found
|= found
;
5196 decode_coding_ccl (struct coding_system
*coding
)
5198 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5199 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5200 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5201 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_size
;
5202 int consumed_chars
= 0;
5203 int multibytep
= coding
->src_multibyte
;
5204 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5205 int source_charbuf
[1024];
5206 int source_byteidx
[1025];
5207 Lisp_Object attrs
, charset_list
;
5209 CODING_GET_INFO (coding
, attrs
, charset_list
);
5213 const unsigned char *p
= src
;
5218 while (i
< 1024 && p
< src_end
)
5220 source_byteidx
[i
] = p
- src
;
5221 source_charbuf
[i
++] = STRING_CHAR_ADVANCE (p
);
5223 source_byteidx
[i
] = p
- src
;
5226 while (i
< 1024 && p
< src_end
)
5227 source_charbuf
[i
++] = *p
++;
5229 if (p
== src_end
&& coding
->mode
& CODING_MODE_LAST_BLOCK
)
5230 ccl
->last_block
= 1;
5231 ccl_driver (ccl
, source_charbuf
, charbuf
, i
, charbuf_end
- charbuf
,
5233 charbuf
+= ccl
->produced
;
5235 src
+= source_byteidx
[ccl
->consumed
];
5237 src
+= ccl
->consumed
;
5238 consumed_chars
+= ccl
->consumed
;
5239 if (p
== src_end
|| ccl
->status
!= CCL_STAT_SUSPEND_BY_SRC
)
5243 switch (ccl
->status
)
5245 case CCL_STAT_SUSPEND_BY_SRC
:
5246 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5248 case CCL_STAT_SUSPEND_BY_DST
:
5249 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5252 case CCL_STAT_INVALID_CMD
:
5253 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5256 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5259 coding
->consumed_char
+= consumed_chars
;
5260 coding
->consumed
= src
- coding
->source
;
5261 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5265 encode_coding_ccl (struct coding_system
*coding
)
5267 struct ccl_program
*ccl
= &coding
->spec
.ccl
->ccl
;
5268 int multibytep
= coding
->dst_multibyte
;
5269 int *charbuf
= coding
->charbuf
;
5270 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5271 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5272 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5273 int destination_charbuf
[1024];
5274 int i
, produced_chars
= 0;
5275 Lisp_Object attrs
, charset_list
;
5277 CODING_GET_INFO (coding
, attrs
, charset_list
);
5278 if (coding
->consumed_char
== coding
->src_chars
5279 && coding
->mode
& CODING_MODE_LAST_BLOCK
)
5280 ccl
->last_block
= 1;
5282 while (charbuf
< charbuf_end
)
5284 ccl_driver (ccl
, charbuf
, destination_charbuf
,
5285 charbuf_end
- charbuf
, 1024, charset_list
);
5288 ASSURE_DESTINATION (ccl
->produced
* 2);
5289 for (i
= 0; i
< ccl
->produced
; i
++)
5290 EMIT_ONE_BYTE (destination_charbuf
[i
] & 0xFF);
5294 ASSURE_DESTINATION (ccl
->produced
);
5295 for (i
= 0; i
< ccl
->produced
; i
++)
5296 *dst
++ = destination_charbuf
[i
] & 0xFF;
5297 produced_chars
+= ccl
->produced
;
5299 charbuf
+= ccl
->consumed
;
5300 if (ccl
->status
== CCL_STAT_QUIT
5301 || ccl
->status
== CCL_STAT_INVALID_CMD
)
5305 switch (ccl
->status
)
5307 case CCL_STAT_SUSPEND_BY_SRC
:
5308 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5310 case CCL_STAT_SUSPEND_BY_DST
:
5311 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_DST
);
5314 case CCL_STAT_INVALID_CMD
:
5315 record_conversion_result (coding
, CODING_RESULT_INTERRUPT
);
5318 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5322 coding
->produced_char
+= produced_chars
;
5323 coding
->produced
= dst
- coding
->destination
;
5329 /*** 10, 11. no-conversion handlers ***/
5331 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
5334 decode_coding_raw_text (struct coding_system
*coding
)
5337 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5339 coding
->chars_at_source
= 1;
5340 coding
->consumed_char
= coding
->src_chars
;
5341 coding
->consumed
= coding
->src_bytes
;
5342 if (eol_crlf
&& coding
->source
[coding
->src_bytes
- 1] == '\r')
5344 coding
->consumed_char
--;
5346 record_conversion_result (coding
, CODING_RESULT_INSUFFICIENT_SRC
);
5349 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5353 encode_coding_raw_text (struct coding_system
*coding
)
5355 int multibytep
= coding
->dst_multibyte
;
5356 int *charbuf
= coding
->charbuf
;
5357 int *charbuf_end
= coding
->charbuf
+ coding
->charbuf_used
;
5358 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5359 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5360 int produced_chars
= 0;
5365 int safe_room
= MAX_MULTIBYTE_LENGTH
* 2;
5367 if (coding
->src_multibyte
)
5368 while (charbuf
< charbuf_end
)
5370 ASSURE_DESTINATION (safe_room
);
5372 if (ASCII_CHAR_P (c
))
5373 EMIT_ONE_ASCII_BYTE (c
);
5374 else if (CHAR_BYTE8_P (c
))
5376 c
= CHAR_TO_BYTE8 (c
);
5381 unsigned char str
[MAX_MULTIBYTE_LENGTH
], *p0
= str
, *p1
= str
;
5383 CHAR_STRING_ADVANCE (c
, p1
);
5386 EMIT_ONE_BYTE (*p0
);
5392 while (charbuf
< charbuf_end
)
5394 ASSURE_DESTINATION (safe_room
);
5401 if (coding
->src_multibyte
)
5403 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5405 while (charbuf
< charbuf_end
)
5407 ASSURE_DESTINATION (safe_room
);
5409 if (ASCII_CHAR_P (c
))
5411 else if (CHAR_BYTE8_P (c
))
5412 *dst
++ = CHAR_TO_BYTE8 (c
);
5414 CHAR_STRING_ADVANCE (c
, dst
);
5419 ASSURE_DESTINATION (charbuf_end
- charbuf
);
5420 while (charbuf
< charbuf_end
&& dst
< dst_end
)
5421 *dst
++ = *charbuf
++;
5423 produced_chars
= dst
- (coding
->destination
+ coding
->produced
);
5425 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5426 coding
->produced_char
+= produced_chars
;
5427 coding
->produced
= dst
- coding
->destination
;
5431 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
5432 Check if a text is encoded in a charset-based coding system. If it
5433 is, return 1, else return 0. */
5436 detect_coding_charset (struct coding_system
*coding
,
5437 struct coding_detection_info
*detect_info
)
5439 const unsigned char *src
= coding
->source
, *src_base
;
5440 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5441 int multibytep
= coding
->src_multibyte
;
5442 int consumed_chars
= 0;
5443 Lisp_Object attrs
, valids
, name
;
5445 int head_ascii
= coding
->head_ascii
;
5446 int check_latin_extra
= 0;
5448 detect_info
->checked
|= CATEGORY_MASK_CHARSET
;
5450 coding
= &coding_categories
[coding_category_charset
];
5451 attrs
= CODING_ID_ATTRS (coding
->id
);
5452 valids
= AREF (attrs
, coding_attr_charset_valids
);
5453 name
= CODING_ID_NAME (coding
->id
);
5454 if (strncmp ((char *) SDATA (SYMBOL_NAME (name
)),
5455 "iso-8859-", sizeof ("iso-8859-") - 1) == 0
5456 || strncmp ((char *) SDATA (SYMBOL_NAME (name
)),
5457 "iso-latin-", sizeof ("iso-latin-") - 1) == 0)
5458 check_latin_extra
= 1;
5460 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
5467 struct charset
*charset
;
5474 val
= AREF (valids
, c
);
5480 && check_latin_extra
5481 && (!VECTORP (Vlatin_extra_code_table
)
5482 || NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
])))
5484 found
= CATEGORY_MASK_CHARSET
;
5488 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5489 dim
= CHARSET_DIMENSION (charset
);
5490 for (idx
= 1; idx
< dim
; idx
++)
5495 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 2]
5496 || c
> charset
->code_space
[(dim
- 1 - idx
) * 2 + 1])
5505 for (; CONSP (val
); val
= XCDR (val
))
5507 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5508 dim
= CHARSET_DIMENSION (charset
);
5514 if (c
< charset
->code_space
[(dim
- 1 - idx
) * 4]
5515 || c
> charset
->code_space
[(dim
- 1 - idx
) * 4 + 1])
5530 detect_info
->rejected
|= CATEGORY_MASK_CHARSET
;
5534 detect_info
->found
|= found
;
5539 decode_coding_charset (struct coding_system
*coding
)
5541 const unsigned char *src
= coding
->source
+ coding
->consumed
;
5542 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
5543 const unsigned char *src_base
;
5544 int *charbuf
= coding
->charbuf
+ coding
->charbuf_used
;
5545 /* We may produce one charset annocation in one loop and one more at
5548 = coding
->charbuf
+ coding
->charbuf_size
- (MAX_ANNOTATION_LENGTH
* 2);
5549 int consumed_chars
= 0, consumed_chars_base
;
5550 int multibytep
= coding
->src_multibyte
;
5551 Lisp_Object attrs
, charset_list
, valids
;
5552 int char_offset
= coding
->produced_char
;
5553 int last_offset
= char_offset
;
5554 int last_id
= charset_ascii
;
5556 !inhibit_eol_conversion
&& EQ (CODING_ID_EOL_TYPE (coding
->id
), Qdos
);
5557 int byte_after_cr
= -1;
5559 CODING_GET_INFO (coding
, attrs
, charset_list
);
5560 valids
= AREF (attrs
, coding_attr_charset_valids
);
5566 struct charset
*charset
;
5572 consumed_chars_base
= consumed_chars
;
5574 if (charbuf
>= charbuf_end
)
5576 if (byte_after_cr
>= 0)
5581 if (byte_after_cr
>= 0)
5589 if (eol_crlf
&& c
== '\r')
5590 ONE_MORE_BYTE (byte_after_cr
);
5596 val
= AREF (valids
, c
);
5597 if (! INTEGERP (val
) && ! CONSP (val
))
5601 charset
= CHARSET_FROM_ID (XFASTINT (val
));
5602 dim
= CHARSET_DIMENSION (charset
);
5606 code
= (code
<< 8) | c
;
5609 CODING_DECODE_CHAR (coding
, src
, src_base
, src_end
,
5614 /* VAL is a list of charset IDs. It is assured that the
5615 list is sorted by charset dimensions (smaller one
5619 charset
= CHARSET_FROM_ID (XFASTINT (XCAR (val
)));
5620 dim
= CHARSET_DIMENSION (charset
);
5624 code
= (code
<< 8) | c
;
5627 CODING_DECODE_CHAR (coding
, src
, src_base
,
5628 src_end
, charset
, code
, c
);
5636 if (charset
->id
!= charset_ascii
5637 && last_id
!= charset
->id
)
5639 if (last_id
!= charset_ascii
)
5640 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5641 last_id
= charset
->id
;
5642 last_offset
= char_offset
;
5651 consumed_chars
= consumed_chars_base
;
5653 *charbuf
++ = c
< 0 ? -c
: ASCII_BYTE_P (c
) ? c
: BYTE8_TO_CHAR (c
);
5659 if (last_id
!= charset_ascii
)
5660 ADD_CHARSET_DATA (charbuf
, char_offset
- last_offset
, last_id
);
5661 coding
->consumed_char
+= consumed_chars_base
;
5662 coding
->consumed
= src_base
- coding
->source
;
5663 coding
->charbuf_used
= charbuf
- coding
->charbuf
;
5667 encode_coding_charset (struct coding_system
*coding
)
5669 int multibytep
= coding
->dst_multibyte
;
5670 int *charbuf
= coding
->charbuf
;
5671 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
5672 unsigned char *dst
= coding
->destination
+ coding
->produced
;
5673 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
5674 int safe_room
= MAX_MULTIBYTE_LENGTH
;
5675 int produced_chars
= 0;
5676 Lisp_Object attrs
, charset_list
;
5677 int ascii_compatible
;
5680 CODING_GET_INFO (coding
, attrs
, charset_list
);
5681 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
5683 while (charbuf
< charbuf_end
)
5685 struct charset
*charset
;
5688 ASSURE_DESTINATION (safe_room
);
5690 if (ascii_compatible
&& ASCII_CHAR_P (c
))
5691 EMIT_ONE_ASCII_BYTE (c
);
5692 else if (CHAR_BYTE8_P (c
))
5694 c
= CHAR_TO_BYTE8 (c
);
5699 charset
= char_charset (c
, charset_list
, &code
);
5702 if (CHARSET_DIMENSION (charset
) == 1)
5703 EMIT_ONE_BYTE (code
);
5704 else if (CHARSET_DIMENSION (charset
) == 2)
5705 EMIT_TWO_BYTES (code
>> 8, code
& 0xFF);
5706 else if (CHARSET_DIMENSION (charset
) == 3)
5707 EMIT_THREE_BYTES (code
>> 16, (code
>> 8) & 0xFF, code
& 0xFF);
5709 EMIT_FOUR_BYTES (code
>> 24, (code
>> 16) & 0xFF,
5710 (code
>> 8) & 0xFF, code
& 0xFF);
5714 if (coding
->mode
& CODING_MODE_SAFE_ENCODING
)
5715 c
= CODING_INHIBIT_CHARACTER_SUBSTITUTION
;
5717 c
= coding
->default_char
;
5723 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
5724 coding
->produced_char
+= produced_chars
;
5725 coding
->produced
= dst
- coding
->destination
;
5730 /*** 7. C library functions ***/
5732 /* Setup coding context CODING from information about CODING_SYSTEM.
5733 If CODING_SYSTEM is nil, `no-conversion' is assumed. If
5734 CODING_SYSTEM is invalid, signal an error. */
5737 setup_coding_system (Lisp_Object coding_system
, struct coding_system
*coding
)
5740 Lisp_Object eol_type
;
5741 Lisp_Object coding_type
;
5744 if (NILP (coding_system
))
5745 coding_system
= Qundecided
;
5747 CHECK_CODING_SYSTEM_GET_ID (coding_system
, coding
->id
);
5749 attrs
= CODING_ID_ATTRS (coding
->id
);
5750 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
5753 coding
->head_ascii
= -1;
5754 if (VECTORP (eol_type
))
5755 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5756 | CODING_REQUIRE_DETECTION_MASK
);
5757 else if (! EQ (eol_type
, Qunix
))
5758 coding
->common_flags
= (CODING_REQUIRE_DECODING_MASK
5759 | CODING_REQUIRE_ENCODING_MASK
);
5761 coding
->common_flags
= 0;
5762 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
5763 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5764 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
5765 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5766 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs
)))
5767 coding
->common_flags
|= CODING_FOR_UNIBYTE_MASK
;
5769 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5770 coding
->max_charset_id
= SCHARS (val
) - 1;
5771 coding
->safe_charsets
= SDATA (val
);
5772 coding
->default_char
= XINT (CODING_ATTR_DEFAULT_CHAR (attrs
));
5773 coding
->carryover_bytes
= 0;
5775 coding_type
= CODING_ATTR_TYPE (attrs
);
5776 if (EQ (coding_type
, Qundecided
))
5778 coding
->detector
= NULL
;
5779 coding
->decoder
= decode_coding_raw_text
;
5780 coding
->encoder
= encode_coding_raw_text
;
5781 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5783 else if (EQ (coding_type
, Qiso_2022
))
5786 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5788 /* Invoke graphic register 0 to plane 0. */
5789 CODING_ISO_INVOCATION (coding
, 0) = 0;
5790 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */
5791 CODING_ISO_INVOCATION (coding
, 1)
5792 = (flags
& CODING_ISO_FLAG_SEVEN_BITS
? -1 : 1);
5793 /* Setup the initial status of designation. */
5794 for (i
= 0; i
< 4; i
++)
5795 CODING_ISO_DESIGNATION (coding
, i
) = CODING_ISO_INITIAL (coding
, i
);
5796 /* Not single shifting initially. */
5797 CODING_ISO_SINGLE_SHIFTING (coding
) = 0;
5798 /* Beginning of buffer should also be regarded as bol. */
5799 CODING_ISO_BOL (coding
) = 1;
5800 coding
->detector
= detect_coding_iso_2022
;
5801 coding
->decoder
= decode_coding_iso_2022
;
5802 coding
->encoder
= encode_coding_iso_2022
;
5803 if (flags
& CODING_ISO_FLAG_SAFE
)
5804 coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
5805 coding
->common_flags
5806 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5807 | CODING_REQUIRE_FLUSHING_MASK
);
5808 if (flags
& CODING_ISO_FLAG_COMPOSITION
)
5809 coding
->common_flags
|= CODING_ANNOTATE_COMPOSITION_MASK
;
5810 if (flags
& CODING_ISO_FLAG_DESIGNATION
)
5811 coding
->common_flags
|= CODING_ANNOTATE_CHARSET_MASK
;
5812 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5814 setup_iso_safe_charsets (attrs
);
5815 val
= CODING_ATTR_SAFE_CHARSETS (attrs
);
5816 coding
->max_charset_id
= SCHARS (val
) - 1;
5817 coding
->safe_charsets
= SDATA (val
);
5819 CODING_ISO_FLAGS (coding
) = flags
;
5820 CODING_ISO_CMP_STATUS (coding
)->state
= COMPOSING_NO
;
5821 CODING_ISO_CMP_STATUS (coding
)->method
= COMPOSITION_NO
;
5822 CODING_ISO_EXTSEGMENT_LEN (coding
) = 0;
5823 CODING_ISO_EMBEDDED_UTF_8 (coding
) = 0;
5825 else if (EQ (coding_type
, Qcharset
))
5827 coding
->detector
= detect_coding_charset
;
5828 coding
->decoder
= decode_coding_charset
;
5829 coding
->encoder
= encode_coding_charset
;
5830 coding
->common_flags
5831 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5833 else if (EQ (coding_type
, Qutf_8
))
5835 val
= AREF (attrs
, coding_attr_utf_bom
);
5836 CODING_UTF_8_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5837 : EQ (val
, Qt
) ? utf_with_bom
5839 coding
->detector
= detect_coding_utf_8
;
5840 coding
->decoder
= decode_coding_utf_8
;
5841 coding
->encoder
= encode_coding_utf_8
;
5842 coding
->common_flags
5843 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5844 if (CODING_UTF_8_BOM (coding
) == utf_detect_bom
)
5845 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5847 else if (EQ (coding_type
, Qutf_16
))
5849 val
= AREF (attrs
, coding_attr_utf_bom
);
5850 CODING_UTF_16_BOM (coding
) = (CONSP (val
) ? utf_detect_bom
5851 : EQ (val
, Qt
) ? utf_with_bom
5853 val
= AREF (attrs
, coding_attr_utf_16_endian
);
5854 CODING_UTF_16_ENDIAN (coding
) = (EQ (val
, Qbig
) ? utf_16_big_endian
5855 : utf_16_little_endian
);
5856 CODING_UTF_16_SURROGATE (coding
) = 0;
5857 coding
->detector
= detect_coding_utf_16
;
5858 coding
->decoder
= decode_coding_utf_16
;
5859 coding
->encoder
= encode_coding_utf_16
;
5860 coding
->common_flags
5861 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5862 if (CODING_UTF_16_BOM (coding
) == utf_detect_bom
)
5863 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
5865 else if (EQ (coding_type
, Qccl
))
5867 coding
->detector
= detect_coding_ccl
;
5868 coding
->decoder
= decode_coding_ccl
;
5869 coding
->encoder
= encode_coding_ccl
;
5870 coding
->common_flags
5871 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
5872 | CODING_REQUIRE_FLUSHING_MASK
);
5874 else if (EQ (coding_type
, Qemacs_mule
))
5876 coding
->detector
= detect_coding_emacs_mule
;
5877 coding
->decoder
= decode_coding_emacs_mule
;
5878 coding
->encoder
= encode_coding_emacs_mule
;
5879 coding
->common_flags
5880 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5881 coding
->spec
.emacs_mule
.full_support
= 1;
5882 if (! NILP (AREF (attrs
, coding_attr_emacs_mule_full
))
5883 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs
), Vemacs_mule_charset_list
))
5885 Lisp_Object tail
, safe_charsets
;
5886 int max_charset_id
= 0;
5888 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5890 if (max_charset_id
< XFASTINT (XCAR (tail
)))
5891 max_charset_id
= XFASTINT (XCAR (tail
));
5892 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
5893 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
5894 for (tail
= Vemacs_mule_charset_list
; CONSP (tail
);
5896 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
5897 coding
->max_charset_id
= max_charset_id
;
5898 coding
->safe_charsets
= SDATA (safe_charsets
);
5899 coding
->spec
.emacs_mule
.full_support
= 1;
5901 coding
->spec
.emacs_mule
.cmp_status
.state
= COMPOSING_NO
;
5902 coding
->spec
.emacs_mule
.cmp_status
.method
= COMPOSITION_NO
;
5904 else if (EQ (coding_type
, Qshift_jis
))
5906 coding
->detector
= detect_coding_sjis
;
5907 coding
->decoder
= decode_coding_sjis
;
5908 coding
->encoder
= encode_coding_sjis
;
5909 coding
->common_flags
5910 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5912 else if (EQ (coding_type
, Qbig5
))
5914 coding
->detector
= detect_coding_big5
;
5915 coding
->decoder
= decode_coding_big5
;
5916 coding
->encoder
= encode_coding_big5
;
5917 coding
->common_flags
5918 |= (CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
);
5920 else /* EQ (coding_type, Qraw_text) */
5922 coding
->detector
= NULL
;
5923 coding
->decoder
= decode_coding_raw_text
;
5924 coding
->encoder
= encode_coding_raw_text
;
5925 if (! EQ (eol_type
, Qunix
))
5927 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
5928 if (! VECTORP (eol_type
))
5929 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
5937 /* Return a list of charsets supported by CODING. */
5940 coding_charset_list (struct coding_system
*coding
)
5942 Lisp_Object attrs
, charset_list
;
5944 CODING_GET_INFO (coding
, attrs
, charset_list
);
5945 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5947 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5949 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5950 charset_list
= Viso_2022_charset_list
;
5952 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5954 charset_list
= Vemacs_mule_charset_list
;
5956 return charset_list
;
5960 /* Return a list of charsets supported by CODING-SYSTEM. */
5963 coding_system_charset_list (Lisp_Object coding_system
)
5966 Lisp_Object attrs
, charset_list
;
5968 CHECK_CODING_SYSTEM_GET_ID (coding_system
, id
);
5969 attrs
= CODING_ID_ATTRS (id
);
5971 if (EQ (CODING_ATTR_TYPE (attrs
), Qiso_2022
))
5973 int flags
= XINT (AREF (attrs
, coding_attr_iso_flags
));
5975 if (flags
& CODING_ISO_FLAG_FULL_SUPPORT
)
5976 charset_list
= Viso_2022_charset_list
;
5978 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5980 else if (EQ (CODING_ATTR_TYPE (attrs
), Qemacs_mule
))
5982 charset_list
= Vemacs_mule_charset_list
;
5986 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
5988 return charset_list
;
5992 /* Return raw-text or one of its subsidiaries that has the same
5993 eol_type as CODING-SYSTEM. */
5996 raw_text_coding_system (Lisp_Object coding_system
)
5998 Lisp_Object spec
, attrs
;
5999 Lisp_Object eol_type
, raw_text_eol_type
;
6001 if (NILP (coding_system
))
6003 spec
= CODING_SYSTEM_SPEC (coding_system
);
6004 attrs
= AREF (spec
, 0);
6006 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
6007 return coding_system
;
6009 eol_type
= AREF (spec
, 2);
6010 if (VECTORP (eol_type
))
6012 spec
= CODING_SYSTEM_SPEC (Qraw_text
);
6013 raw_text_eol_type
= AREF (spec
, 2);
6014 return (EQ (eol_type
, Qunix
) ? AREF (raw_text_eol_type
, 0)
6015 : EQ (eol_type
, Qdos
) ? AREF (raw_text_eol_type
, 1)
6016 : AREF (raw_text_eol_type
, 2));
6020 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT
6021 does, return one of the subsidiary that has the same eol-spec as
6022 PARENT. Otherwise, return CODING_SYSTEM. If PARENT is nil,
6023 inherit end-of-line format from the system's setting
6024 (system_eol_type). */
6027 coding_inherit_eol_type (Lisp_Object coding_system
, Lisp_Object parent
)
6029 Lisp_Object spec
, eol_type
;
6031 if (NILP (coding_system
))
6032 coding_system
= Qraw_text
;
6033 spec
= CODING_SYSTEM_SPEC (coding_system
);
6034 eol_type
= AREF (spec
, 2);
6035 if (VECTORP (eol_type
))
6037 Lisp_Object parent_eol_type
;
6039 if (! NILP (parent
))
6041 Lisp_Object parent_spec
;
6043 parent_spec
= CODING_SYSTEM_SPEC (parent
);
6044 parent_eol_type
= AREF (parent_spec
, 2);
6047 parent_eol_type
= system_eol_type
;
6048 if (EQ (parent_eol_type
, Qunix
))
6049 coding_system
= AREF (eol_type
, 0);
6050 else if (EQ (parent_eol_type
, Qdos
))
6051 coding_system
= AREF (eol_type
, 1);
6052 else if (EQ (parent_eol_type
, Qmac
))
6053 coding_system
= AREF (eol_type
, 2);
6055 return coding_system
;
6058 /* Emacs has a mechanism to automatically detect a coding system if it
6059 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
6060 it's impossible to distinguish some coding systems accurately
6061 because they use the same range of codes. So, at first, coding
6062 systems are categorized into 7, those are:
6064 o coding-category-emacs-mule
6066 The category for a coding system which has the same code range
6067 as Emacs' internal format. Assigned the coding-system (Lisp
6068 symbol) `emacs-mule' by default.
6070 o coding-category-sjis
6072 The category for a coding system which has the same code range
6073 as SJIS. Assigned the coding-system (Lisp
6074 symbol) `japanese-shift-jis' by default.
6076 o coding-category-iso-7
6078 The category for a coding system which has the same code range
6079 as ISO2022 of 7-bit environment. This doesn't use any locking
6080 shift and single shift functions. This can encode/decode all
6081 charsets. Assigned the coding-system (Lisp symbol)
6082 `iso-2022-7bit' by default.
6084 o coding-category-iso-7-tight
6086 Same as coding-category-iso-7 except that this can
6087 encode/decode only the specified charsets.
6089 o coding-category-iso-8-1
6091 The category for a coding system which has the same code range
6092 as ISO2022 of 8-bit environment and graphic plane 1 used only
6093 for DIMENSION1 charset. This doesn't use any locking shift
6094 and single shift functions. Assigned the coding-system (Lisp
6095 symbol) `iso-latin-1' by default.
6097 o coding-category-iso-8-2
6099 The category for a coding system which has the same code range
6100 as ISO2022 of 8-bit environment and graphic plane 1 used only
6101 for DIMENSION2 charset. This doesn't use any locking shift
6102 and single shift functions. Assigned the coding-system (Lisp
6103 symbol) `japanese-iso-8bit' by default.
6105 o coding-category-iso-7-else
6107 The category for a coding system which has the same code range
6108 as ISO2022 of 7-bit environemnt but uses locking shift or
6109 single shift functions. Assigned the coding-system (Lisp
6110 symbol) `iso-2022-7bit-lock' by default.
6112 o coding-category-iso-8-else
6114 The category for a coding system which has the same code range
6115 as ISO2022 of 8-bit environemnt but uses locking shift or
6116 single shift functions. Assigned the coding-system (Lisp
6117 symbol) `iso-2022-8bit-ss2' by default.
6119 o coding-category-big5
6121 The category for a coding system which has the same code range
6122 as BIG5. Assigned the coding-system (Lisp symbol)
6123 `cn-big5' by default.
6125 o coding-category-utf-8
6127 The category for a coding system which has the same code range
6128 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp
6129 symbol) `utf-8' by default.
6131 o coding-category-utf-16-be
6133 The category for a coding system in which a text has an
6134 Unicode signature (cf. Unicode Standard) in the order of BIG
6135 endian at the head. Assigned the coding-system (Lisp symbol)
6136 `utf-16-be' by default.
6138 o coding-category-utf-16-le
6140 The category for a coding system in which a text has an
6141 Unicode signature (cf. Unicode Standard) in the order of
6142 LITTLE endian at the head. Assigned the coding-system (Lisp
6143 symbol) `utf-16-le' by default.
6145 o coding-category-ccl
6147 The category for a coding system of which encoder/decoder is
6148 written in CCL programs. The default value is nil, i.e., no
6149 coding system is assigned.
6151 o coding-category-binary
6153 The category for a coding system not categorized in any of the
6154 above. Assigned the coding-system (Lisp symbol)
6155 `no-conversion' by default.
6157 Each of them is a Lisp symbol and the value is an actual
6158 `coding-system's (this is also a Lisp symbol) assigned by a user.
6159 What Emacs does actually is to detect a category of coding system.
6160 Then, it uses a `coding-system' assigned to it. If Emacs can't
6161 decide only one possible category, it selects a category of the
6162 highest priority. Priorities of categories are also specified by a
6163 user in a Lisp variable `coding-category-list'.
6167 #define EOL_SEEN_NONE 0
6168 #define EOL_SEEN_LF 1
6169 #define EOL_SEEN_CR 2
6170 #define EOL_SEEN_CRLF 4
6172 /* Detect how end-of-line of a text of length SRC_BYTES pointed by
6173 SOURCE is encoded. If CATEGORY is one of
6174 coding_category_utf_16_XXXX, assume that CR and LF are encoded by
6175 two-byte, else they are encoded by one-byte.
6177 Return one of EOL_SEEN_XXX. */
6179 #define MAX_EOL_CHECK_COUNT 3
6182 detect_eol (const unsigned char *source
, EMACS_INT src_bytes
,
6183 enum coding_category category
)
6185 const unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
6188 int eol_seen
= EOL_SEEN_NONE
;
6190 if ((1 << category
) & CATEGORY_MASK_UTF_16
)
6194 msb
= category
== (coding_category_utf_16_le
6195 | coding_category_utf_16_le_nosig
);
6198 while (src
+ 1 < src_end
)
6201 if (src
[msb
] == 0 && (c
== '\n' || c
== '\r'))
6206 this_eol
= EOL_SEEN_LF
;
6207 else if (src
+ 3 >= src_end
6208 || src
[msb
+ 2] != 0
6209 || src
[lsb
+ 2] != '\n')
6210 this_eol
= EOL_SEEN_CR
;
6213 this_eol
= EOL_SEEN_CRLF
;
6217 if (eol_seen
== EOL_SEEN_NONE
)
6218 /* This is the first end-of-line. */
6219 eol_seen
= this_eol
;
6220 else if (eol_seen
!= this_eol
)
6222 /* The found type is different from what found before.
6223 Allow for stray ^M characters in DOS EOL files. */
6224 if (eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
6225 || eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
)
6226 eol_seen
= EOL_SEEN_CRLF
;
6229 eol_seen
= EOL_SEEN_LF
;
6233 if (++total
== MAX_EOL_CHECK_COUNT
)
6241 while (src
< src_end
)
6244 if (c
== '\n' || c
== '\r')
6249 this_eol
= EOL_SEEN_LF
;
6250 else if (src
>= src_end
|| *src
!= '\n')
6251 this_eol
= EOL_SEEN_CR
;
6253 this_eol
= EOL_SEEN_CRLF
, src
++;
6255 if (eol_seen
== EOL_SEEN_NONE
)
6256 /* This is the first end-of-line. */
6257 eol_seen
= this_eol
;
6258 else if (eol_seen
!= this_eol
)
6260 /* The found type is different from what found before.
6261 Allow for stray ^M characters in DOS EOL files. */
6262 if (eol_seen
== EOL_SEEN_CR
&& this_eol
== EOL_SEEN_CRLF
6263 || eol_seen
== EOL_SEEN_CRLF
&& this_eol
== EOL_SEEN_CR
)
6264 eol_seen
= EOL_SEEN_CRLF
;
6267 eol_seen
= EOL_SEEN_LF
;
6271 if (++total
== MAX_EOL_CHECK_COUNT
)
6281 adjust_coding_eol_type (struct coding_system
*coding
, int eol_seen
)
6283 Lisp_Object eol_type
;
6285 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6286 if (eol_seen
& EOL_SEEN_LF
)
6288 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 0));
6291 else if (eol_seen
& EOL_SEEN_CRLF
)
6293 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 1));
6296 else if (eol_seen
& EOL_SEEN_CR
)
6298 coding
->id
= CODING_SYSTEM_ID (AREF (eol_type
, 2));
6304 /* Detect how a text specified in CODING is encoded. If a coding
6305 system is detected, update fields of CODING by the detected coding
6309 detect_coding (struct coding_system
*coding
)
6311 const unsigned char *src
, *src_end
;
6312 int saved_mode
= coding
->mode
;
6314 coding
->consumed
= coding
->consumed_char
= 0;
6315 coding
->produced
= coding
->produced_char
= 0;
6316 coding_set_source (coding
);
6318 src_end
= coding
->source
+ coding
->src_bytes
;
6319 coding
->head_ascii
= 0;
6321 /* If we have not yet decided the text encoding type, detect it
6323 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding
->id
)), Qundecided
))
6326 struct coding_detection_info detect_info
;
6327 int null_byte_found
= 0, eight_bit_found
= 0;
6329 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
6330 for (src
= coding
->source
; src
< src_end
; src
++)
6335 eight_bit_found
= 1;
6336 if (null_byte_found
)
6341 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
6342 && ! inhibit_iso_escape_detection
6343 && ! detect_info
.checked
)
6345 if (detect_coding_iso_2022 (coding
, &detect_info
))
6347 /* We have scanned the whole data. */
6348 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
6350 /* We didn't find an 8-bit code. We may
6351 have found a null-byte, but it's very
6352 rare that a binary file conforms to
6355 coding
->head_ascii
= src
- coding
->source
;
6357 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
6361 else if (! c
&& !inhibit_null_byte_detection
)
6363 null_byte_found
= 1;
6364 if (eight_bit_found
)
6367 if (! eight_bit_found
)
6368 coding
->head_ascii
++;
6370 else if (! eight_bit_found
)
6371 coding
->head_ascii
++;
6374 if (null_byte_found
|| eight_bit_found
6375 || coding
->head_ascii
< coding
->src_bytes
6376 || detect_info
.found
)
6378 enum coding_category category
;
6379 struct coding_system
*this;
6381 if (coding
->head_ascii
== coding
->src_bytes
)
6382 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
6383 for (i
= 0; i
< coding_category_raw_text
; i
++)
6385 category
= coding_priorities
[i
];
6386 this = coding_categories
+ category
;
6387 if (detect_info
.found
& (1 << category
))
6392 if (null_byte_found
)
6394 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
6395 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
6397 for (i
= 0; i
< coding_category_raw_text
; i
++)
6399 category
= coding_priorities
[i
];
6400 this = coding_categories
+ category
;
6403 /* No coding system of this category is defined. */
6404 detect_info
.rejected
|= (1 << category
);
6406 else if (category
>= coding_category_raw_text
)
6408 else if (detect_info
.checked
& (1 << category
))
6410 if (detect_info
.found
& (1 << category
))
6413 else if ((*(this->detector
)) (coding
, &detect_info
)
6414 && detect_info
.found
& (1 << category
))
6416 if (category
== coding_category_utf_16_auto
)
6418 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6419 category
= coding_category_utf_16_le
;
6421 category
= coding_category_utf_16_be
;
6428 if (i
< coding_category_raw_text
)
6429 setup_coding_system (CODING_ID_NAME (this->id
), coding
);
6430 else if (null_byte_found
)
6431 setup_coding_system (Qno_conversion
, coding
);
6432 else if ((detect_info
.rejected
& CATEGORY_MASK_ANY
)
6433 == CATEGORY_MASK_ANY
)
6434 setup_coding_system (Qraw_text
, coding
);
6435 else if (detect_info
.rejected
)
6436 for (i
= 0; i
< coding_category_raw_text
; i
++)
6437 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
6439 this = coding_categories
+ coding_priorities
[i
];
6440 setup_coding_system (CODING_ID_NAME (this->id
), coding
);
6445 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6446 == coding_category_utf_8_auto
)
6448 Lisp_Object coding_systems
;
6449 struct coding_detection_info detect_info
;
6452 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6453 detect_info
.found
= detect_info
.rejected
= 0;
6454 coding
->head_ascii
= 0;
6455 if (CONSP (coding_systems
)
6456 && detect_coding_utf_8 (coding
, &detect_info
))
6458 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
6459 setup_coding_system (XCAR (coding_systems
), coding
);
6461 setup_coding_system (XCDR (coding_systems
), coding
);
6464 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding
->id
)))
6465 == coding_category_utf_16_auto
)
6467 Lisp_Object coding_systems
;
6468 struct coding_detection_info detect_info
;
6471 = AREF (CODING_ID_ATTRS (coding
->id
), coding_attr_utf_bom
);
6472 detect_info
.found
= detect_info
.rejected
= 0;
6473 coding
->head_ascii
= 0;
6474 if (CONSP (coding_systems
)
6475 && detect_coding_utf_16 (coding
, &detect_info
))
6477 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
6478 setup_coding_system (XCAR (coding_systems
), coding
);
6479 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
6480 setup_coding_system (XCDR (coding_systems
), coding
);
6483 coding
->mode
= saved_mode
;
6488 decode_eol (struct coding_system
*coding
)
6490 Lisp_Object eol_type
;
6491 unsigned char *p
, *pbeg
, *pend
;
6493 eol_type
= CODING_ID_EOL_TYPE (coding
->id
);
6494 if (EQ (eol_type
, Qunix
) || inhibit_eol_conversion
)
6497 if (NILP (coding
->dst_object
))
6498 pbeg
= coding
->destination
;
6500 pbeg
= BYTE_POS_ADDR (coding
->dst_pos_byte
);
6501 pend
= pbeg
+ coding
->produced
;
6503 if (VECTORP (eol_type
))
6505 int eol_seen
= EOL_SEEN_NONE
;
6507 for (p
= pbeg
; p
< pend
; p
++)
6510 eol_seen
|= EOL_SEEN_LF
;
6511 else if (*p
== '\r')
6513 if (p
+ 1 < pend
&& *(p
+ 1) == '\n')
6515 eol_seen
|= EOL_SEEN_CRLF
;
6519 eol_seen
|= EOL_SEEN_CR
;
6522 /* Handle DOS-style EOLs in a file with stray ^M characters. */
6523 if ((eol_seen
& EOL_SEEN_CRLF
) != 0
6524 && (eol_seen
& EOL_SEEN_CR
) != 0
6525 && (eol_seen
& EOL_SEEN_LF
) == 0)
6526 eol_seen
= EOL_SEEN_CRLF
;
6527 else if (eol_seen
!= EOL_SEEN_NONE
6528 && eol_seen
!= EOL_SEEN_LF
6529 && eol_seen
!= EOL_SEEN_CRLF
6530 && eol_seen
!= EOL_SEEN_CR
)
6531 eol_seen
= EOL_SEEN_LF
;
6532 if (eol_seen
!= EOL_SEEN_NONE
)
6533 eol_type
= adjust_coding_eol_type (coding
, eol_seen
);
6536 if (EQ (eol_type
, Qmac
))
6538 for (p
= pbeg
; p
< pend
; p
++)
6542 else if (EQ (eol_type
, Qdos
))
6546 if (NILP (coding
->dst_object
))
6548 /* Start deleting '\r' from the tail to minimize the memory
6550 for (p
= pend
- 2; p
>= pbeg
; p
--)
6553 memmove (p
, p
+ 1, pend
-- - p
- 1);
6559 int pos_byte
= coding
->dst_pos_byte
;
6560 int pos
= coding
->dst_pos
;
6561 int pos_end
= pos
+ coding
->produced_char
- 1;
6563 while (pos
< pos_end
)
6565 p
= BYTE_POS_ADDR (pos_byte
);
6566 if (*p
== '\r' && p
[1] == '\n')
6568 del_range_2 (pos
, pos_byte
, pos
+ 1, pos_byte
+ 1, 0);
6573 if (coding
->dst_multibyte
)
6574 pos_byte
+= BYTES_BY_CHAR_HEAD (*p
);
6579 coding
->produced
-= n
;
6580 coding
->produced_char
-= n
;
6585 /* Return a translation table (or list of them) from coding system
6586 attribute vector ATTRS for encoding (ENCODEP is nonzero) or
6587 decoding (ENCODEP is zero). */
6590 get_translation_table (Lisp_Object attrs
, int encodep
, int *max_lookup
)
6592 Lisp_Object standard
, translation_table
;
6595 if (NILP (Venable_character_translation
))
6602 translation_table
= CODING_ATTR_ENCODE_TBL (attrs
),
6603 standard
= Vstandard_translation_table_for_encode
;
6605 translation_table
= CODING_ATTR_DECODE_TBL (attrs
),
6606 standard
= Vstandard_translation_table_for_decode
;
6607 if (NILP (translation_table
))
6608 translation_table
= standard
;
6611 if (SYMBOLP (translation_table
))
6612 translation_table
= Fget (translation_table
, Qtranslation_table
);
6613 else if (CONSP (translation_table
))
6615 translation_table
= Fcopy_sequence (translation_table
);
6616 for (val
= translation_table
; CONSP (val
); val
= XCDR (val
))
6617 if (SYMBOLP (XCAR (val
)))
6618 XSETCAR (val
, Fget (XCAR (val
), Qtranslation_table
));
6620 if (CHAR_TABLE_P (standard
))
6622 if (CONSP (translation_table
))
6623 translation_table
= nconc2 (translation_table
,
6624 Fcons (standard
, Qnil
));
6626 translation_table
= Fcons (translation_table
,
6627 Fcons (standard
, Qnil
));
6634 if (CHAR_TABLE_P (translation_table
)
6635 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table
)) > 1)
6637 val
= XCHAR_TABLE (translation_table
)->extras
[1];
6638 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6639 *max_lookup
= XFASTINT (val
);
6641 else if (CONSP (translation_table
))
6643 Lisp_Object tail
, val
;
6645 for (tail
= translation_table
; CONSP (tail
); tail
= XCDR (tail
))
6646 if (CHAR_TABLE_P (XCAR (tail
))
6647 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail
))) > 1)
6649 val
= XCHAR_TABLE (XCAR (tail
))->extras
[1];
6650 if (NATNUMP (val
) && *max_lookup
< XFASTINT (val
))
6651 *max_lookup
= XFASTINT (val
);
6655 return translation_table
;
6658 #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \
6661 if (CHAR_TABLE_P (table)) \
6663 trans = CHAR_TABLE_REF (table, c); \
6664 if (CHARACTERP (trans)) \
6665 c = XFASTINT (trans), trans = Qnil; \
6667 else if (CONSP (table)) \
6671 for (tail = table; CONSP (tail); tail = XCDR (tail)) \
6672 if (CHAR_TABLE_P (XCAR (tail))) \
6674 trans = CHAR_TABLE_REF (XCAR (tail), c); \
6675 if (CHARACTERP (trans)) \
6676 c = XFASTINT (trans), trans = Qnil; \
6677 else if (! NILP (trans)) \
6684 /* Return a translation of character(s) at BUF according to TRANS.
6685 TRANS is TO-CHAR or ((FROM . TO) ...) where
6686 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...].
6687 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a
6688 translation is found, and Qnil if not found..
6689 If BUF is too short to lookup characters in FROM, return Qt. */
6692 get_translation (Lisp_Object trans
, int *buf
, int *buf_end
)
6695 if (INTEGERP (trans
))
6697 for (; CONSP (trans
); trans
= XCDR (trans
))
6699 Lisp_Object val
= XCAR (trans
);
6700 Lisp_Object from
= XCAR (val
);
6701 int len
= ASIZE (from
);
6704 for (i
= 0; i
< len
; i
++)
6706 if (buf
+ i
== buf_end
)
6708 if (XINT (AREF (from
, i
)) != buf
[i
])
6719 produce_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
6722 unsigned char *dst
= coding
->destination
+ coding
->produced
;
6723 unsigned char *dst_end
= coding
->destination
+ coding
->dst_bytes
;
6725 EMACS_INT produced_chars
= 0;
6728 if (! coding
->chars_at_source
)
6730 /* Source characters are in coding->charbuf. */
6731 int *buf
= coding
->charbuf
;
6732 int *buf_end
= buf
+ coding
->charbuf_used
;
6734 if (EQ (coding
->src_object
, coding
->dst_object
))
6736 coding_set_source (coding
);
6737 dst_end
= ((unsigned char *) coding
->source
) + coding
->consumed
;
6740 while (buf
< buf_end
)
6746 int from_nchars
= 1, to_nchars
= 1;
6747 Lisp_Object trans
= Qnil
;
6749 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
6752 trans
= get_translation (trans
, buf
, buf_end
);
6753 if (INTEGERP (trans
))
6755 else if (CONSP (trans
))
6757 from_nchars
= ASIZE (XCAR (trans
));
6758 trans
= XCDR (trans
);
6759 if (INTEGERP (trans
))
6763 to_nchars
= ASIZE (trans
);
6764 c
= XINT (AREF (trans
, 0));
6767 else if (EQ (trans
, Qt
) && ! last_block
)
6771 if (dst
+ MAX_MULTIBYTE_LENGTH
* to_nchars
> dst_end
)
6773 dst
= alloc_destination (coding
,
6775 + MAX_MULTIBYTE_LENGTH
* to_nchars
,
6777 if (EQ (coding
->src_object
, coding
->dst_object
))
6779 coding_set_source (coding
);
6780 dst_end
= (((unsigned char *) coding
->source
)
6781 + coding
->consumed
);
6784 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6787 for (i
= 0; i
< to_nchars
; i
++)
6790 c
= XINT (AREF (trans
, i
));
6791 if (coding
->dst_multibyte
6792 || ! CHAR_BYTE8_P (c
))
6793 CHAR_STRING_ADVANCE_NO_UNIFY (c
, dst
);
6795 *dst
++ = CHAR_TO_BYTE8 (c
);
6797 produced_chars
+= to_nchars
;
6801 /* This is an annotation datum. (-C) is the length. */
6804 carryover
= buf_end
- buf
;
6808 /* Source characters are at coding->source. */
6809 const unsigned char *src
= coding
->source
;
6810 const unsigned char *src_end
= src
+ coding
->consumed
;
6812 if (EQ (coding
->dst_object
, coding
->src_object
))
6813 dst_end
= (unsigned char *) src
;
6814 if (coding
->src_multibyte
!= coding
->dst_multibyte
)
6816 if (coding
->src_multibyte
)
6819 EMACS_INT consumed_chars
= 0;
6823 const unsigned char *src_base
= src
;
6829 if (EQ (coding
->src_object
, coding
->dst_object
))
6830 dst_end
= (unsigned char *) src
;
6833 EMACS_INT offset
= src
- coding
->source
;
6835 dst
= alloc_destination (coding
, src_end
- src
+ 1,
6837 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6838 coding_set_source (coding
);
6839 src
= coding
->source
+ offset
;
6840 src_end
= coding
->source
+ coding
->src_bytes
;
6841 if (EQ (coding
->src_object
, coding
->dst_object
))
6842 dst_end
= (unsigned char *) src
;
6852 while (src
< src_end
)
6857 if (dst
>= dst_end
- 1)
6859 if (EQ (coding
->src_object
, coding
->dst_object
))
6860 dst_end
= (unsigned char *) src
;
6861 if (dst
>= dst_end
- 1)
6863 EMACS_INT offset
= src
- coding
->source
;
6864 EMACS_INT more_bytes
;
6866 if (EQ (coding
->src_object
, coding
->dst_object
))
6867 more_bytes
= ((src_end
- src
) / 2) + 2;
6869 more_bytes
= src_end
- src
+ 2;
6870 dst
= alloc_destination (coding
, more_bytes
, dst
);
6871 dst_end
= coding
->destination
+ coding
->dst_bytes
;
6872 coding_set_source (coding
);
6873 src
= coding
->source
+ offset
;
6874 src_end
= coding
->source
+ coding
->src_bytes
;
6875 if (EQ (coding
->src_object
, coding
->dst_object
))
6876 dst_end
= (unsigned char *) src
;
6884 if (!EQ (coding
->src_object
, coding
->dst_object
))
6886 EMACS_INT require
= coding
->src_bytes
- coding
->dst_bytes
;
6890 EMACS_INT offset
= src
- coding
->source
;
6892 dst
= alloc_destination (coding
, require
, dst
);
6893 coding_set_source (coding
);
6894 src
= coding
->source
+ offset
;
6895 src_end
= coding
->source
+ coding
->src_bytes
;
6898 produced_chars
= coding
->consumed_char
;
6899 while (src
< src_end
)
6904 produced
= dst
- (coding
->destination
+ coding
->produced
);
6905 if (BUFFERP (coding
->dst_object
) && produced_chars
> 0)
6906 insert_from_gap (produced_chars
, produced
);
6907 coding
->produced
+= produced
;
6908 coding
->produced_char
+= produced_chars
;
6912 /* Compose text in CODING->object according to the annotation data at
6913 CHARBUF. CHARBUF is an array:
6914 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ]
6918 produce_composition (struct coding_system
*coding
, int *charbuf
, EMACS_INT pos
)
6922 enum composition_method method
;
6923 Lisp_Object components
;
6925 len
= -charbuf
[0] - MAX_ANNOTATION_LENGTH
;
6926 to
= pos
+ charbuf
[2];
6927 method
= (enum composition_method
) (charbuf
[4]);
6929 if (method
== COMPOSITION_RELATIVE
)
6933 Lisp_Object args
[MAX_COMPOSITION_COMPONENTS
* 2 - 1];
6936 if (method
== COMPOSITION_WITH_RULE
)
6937 len
= charbuf
[2] * 3 - 2;
6938 charbuf
+= MAX_ANNOTATION_LENGTH
;
6939 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */
6940 for (i
= j
= 0; i
< len
&& charbuf
[i
] != -1; i
++, j
++)
6942 if (charbuf
[i
] >= 0)
6943 args
[j
] = make_number (charbuf
[i
]);
6947 args
[j
] = make_number (charbuf
[i
] % 0x100);
6950 components
= (i
== j
? Fstring (j
, args
) : Fvector (j
, args
));
6952 compose_text (pos
, to
, components
, Qnil
, coding
->dst_object
);
6956 /* Put `charset' property on text in CODING->object according to
6957 the annotation data at CHARBUF. CHARBUF is an array:
6958 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ]
6962 produce_charset (struct coding_system
*coding
, int *charbuf
, EMACS_INT pos
)
6964 EMACS_INT from
= pos
- charbuf
[2];
6965 struct charset
*charset
= CHARSET_FROM_ID (charbuf
[3]);
6967 Fput_text_property (make_number (from
), make_number (pos
),
6968 Qcharset
, CHARSET_NAME (charset
),
6969 coding
->dst_object
);
6973 #define CHARBUF_SIZE 0x4000
6975 #define ALLOC_CONVERSION_WORK_AREA(coding) \
6977 int size = CHARBUF_SIZE; \
6979 coding->charbuf = NULL; \
6980 while (size > 1024) \
6982 coding->charbuf = (int *) alloca (sizeof (int) * size); \
6983 if (coding->charbuf) \
6987 if (! coding->charbuf) \
6989 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_MEM); \
6990 return coding->result; \
6992 coding->charbuf_size = size; \
6997 produce_annotation (struct coding_system
*coding
, EMACS_INT pos
)
6999 int *charbuf
= coding
->charbuf
;
7000 int *charbuf_end
= charbuf
+ coding
->charbuf_used
;
7002 if (NILP (coding
->dst_object
))
7005 while (charbuf
< charbuf_end
)
7011 int len
= -*charbuf
;
7016 case CODING_ANNOTATE_COMPOSITION_MASK
:
7017 produce_composition (coding
, charbuf
, pos
);
7019 case CODING_ANNOTATE_CHARSET_MASK
:
7020 produce_charset (coding
, charbuf
, pos
);
7028 /* Decode the data at CODING->src_object into CODING->dst_object.
7029 CODING->src_object is a buffer, a string, or nil.
7030 CODING->dst_object is a buffer.
7032 If CODING->src_object is a buffer, it must be the current buffer.
7033 In this case, if CODING->src_pos is positive, it is a position of
7034 the source text in the buffer, otherwise, the source text is in the
7035 gap area of the buffer, and CODING->src_pos specifies the offset of
7036 the text from GPT (which must be the same as PT). If this is the
7037 same buffer as CODING->dst_object, CODING->src_pos must be
7040 If CODING->src_object is a string, CODING->src_pos is an index to
7043 If CODING->src_object is nil, CODING->source must already point to
7044 the non-relocatable memory area. In this case, CODING->src_pos is
7045 an offset from CODING->source.
7047 The decoded data is inserted at the current point of the buffer
7052 decode_coding (struct coding_system
*coding
)
7055 Lisp_Object undo_list
;
7056 Lisp_Object translation_table
;
7057 struct ccl_spec cclspec
;
7061 if (BUFFERP (coding
->src_object
)
7062 && coding
->src_pos
> 0
7063 && coding
->src_pos
< GPT
7064 && coding
->src_pos
+ coding
->src_chars
> GPT
)
7065 move_gap_both (coding
->src_pos
, coding
->src_pos_byte
);
7068 if (BUFFERP (coding
->dst_object
))
7070 if (current_buffer
!= XBUFFER (coding
->dst_object
))
7071 set_buffer_internal (XBUFFER (coding
->dst_object
));
7073 move_gap_both (PT
, PT_BYTE
);
7074 undo_list
= current_buffer
->undo_list
;
7075 current_buffer
->undo_list
= Qt
;
7078 coding
->consumed
= coding
->consumed_char
= 0;
7079 coding
->produced
= coding
->produced_char
= 0;
7080 coding
->chars_at_source
= 0;
7081 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7084 ALLOC_CONVERSION_WORK_AREA (coding
);
7086 attrs
= CODING_ID_ATTRS (coding
->id
);
7087 translation_table
= get_translation_table (attrs
, 0, NULL
);
7090 if (coding
->decoder
== decode_coding_ccl
)
7092 coding
->spec
.ccl
= &cclspec
;
7093 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_DECODER (coding
));
7097 EMACS_INT pos
= coding
->dst_pos
+ coding
->produced_char
;
7099 coding_set_source (coding
);
7100 coding
->annotated
= 0;
7101 coding
->charbuf_used
= carryover
;
7102 (*(coding
->decoder
)) (coding
);
7103 coding_set_destination (coding
);
7104 carryover
= produce_chars (coding
, translation_table
, 0);
7105 if (coding
->annotated
)
7106 produce_annotation (coding
, pos
);
7107 for (i
= 0; i
< carryover
; i
++)
7109 = coding
->charbuf
[coding
->charbuf_used
- carryover
+ i
];
7111 while (coding
->result
== CODING_RESULT_INSUFFICIENT_DST
7112 || (coding
->consumed
< coding
->src_bytes
7113 && (coding
->result
== CODING_RESULT_SUCCESS
7114 || coding
->result
== CODING_RESULT_INVALID_SRC
)));
7118 coding_set_destination (coding
);
7119 coding
->charbuf_used
= carryover
;
7120 produce_chars (coding
, translation_table
, 1);
7123 coding
->carryover_bytes
= 0;
7124 if (coding
->consumed
< coding
->src_bytes
)
7126 int nbytes
= coding
->src_bytes
- coding
->consumed
;
7127 const unsigned char *src
;
7129 coding_set_source (coding
);
7130 coding_set_destination (coding
);
7131 src
= coding
->source
+ coding
->consumed
;
7133 if (coding
->mode
& CODING_MODE_LAST_BLOCK
)
7135 /* Flush out unprocessed data as binary chars. We are sure
7136 that the number of data is less than the size of
7138 coding
->charbuf_used
= 0;
7139 coding
->chars_at_source
= 0;
7141 while (nbytes
-- > 0)
7146 c
= BYTE8_TO_CHAR (c
);
7147 coding
->charbuf
[coding
->charbuf_used
++] = c
;
7149 produce_chars (coding
, Qnil
, 1);
7153 /* Record unprocessed bytes in coding->carryover. We are
7154 sure that the number of data is less than the size of
7155 coding->carryover. */
7156 unsigned char *p
= coding
->carryover
;
7158 if (nbytes
> sizeof coding
->carryover
)
7159 nbytes
= sizeof coding
->carryover
;
7160 coding
->carryover_bytes
= nbytes
;
7161 while (nbytes
-- > 0)
7164 coding
->consumed
= coding
->src_bytes
;
7167 if (! EQ (CODING_ID_EOL_TYPE (coding
->id
), Qunix
)
7168 && !inhibit_eol_conversion
)
7169 decode_eol (coding
);
7170 if (BUFFERP (coding
->dst_object
))
7172 current_buffer
->undo_list
= undo_list
;
7173 record_insert (coding
->dst_pos
, coding
->produced_char
);
7175 return coding
->result
;
7179 /* Extract an annotation datum from a composition starting at POS and
7180 ending before LIMIT of CODING->src_object (buffer or string), store
7181 the data in BUF, set *STOP to a starting position of the next
7182 composition (if any) or to LIMIT, and return the address of the
7183 next element of BUF.
7185 If such an annotation is not found, set *STOP to a starting
7186 position of a composition after POS (if any) or to LIMIT, and
7190 handle_composition_annotation (EMACS_INT pos
, EMACS_INT limit
,
7191 struct coding_system
*coding
, int *buf
,
7194 EMACS_INT start
, end
;
7197 if (! find_composition (pos
, limit
, &start
, &end
, &prop
, coding
->src_object
)
7200 else if (start
> pos
)
7206 /* We found a composition. Store the corresponding
7207 annotation data in BUF. */
7209 enum composition_method method
= COMPOSITION_METHOD (prop
);
7210 int nchars
= COMPOSITION_LENGTH (prop
);
7212 ADD_COMPOSITION_DATA (buf
, nchars
, 0, method
);
7213 if (method
!= COMPOSITION_RELATIVE
)
7215 Lisp_Object components
;
7218 components
= COMPOSITION_COMPONENTS (prop
);
7219 if (VECTORP (components
))
7221 len
= XVECTOR (components
)->size
;
7222 for (i
= 0; i
< len
; i
++)
7223 *buf
++ = XINT (AREF (components
, i
));
7225 else if (STRINGP (components
))
7227 len
= SCHARS (components
);
7231 FETCH_STRING_CHAR_ADVANCE (*buf
, components
, i
, i_byte
);
7235 else if (INTEGERP (components
))
7238 *buf
++ = XINT (components
);
7240 else if (CONSP (components
))
7242 for (len
= 0; CONSP (components
);
7243 len
++, components
= XCDR (components
))
7244 *buf
++ = XINT (XCAR (components
));
7252 if (find_composition (end
, limit
, &start
, &end
, &prop
,
7263 /* Extract an annotation datum from a text property `charset' at POS of
7264 CODING->src_object (buffer of string), store the data in BUF, set
7265 *STOP to the position where the value of `charset' property changes
7266 (limiting by LIMIT), and return the address of the next element of
7269 If the property value is nil, set *STOP to the position where the
7270 property value is non-nil (limiting by LIMIT), and return BUF. */
7273 handle_charset_annotation (EMACS_INT pos
, EMACS_INT limit
,
7274 struct coding_system
*coding
, int *buf
,
7277 Lisp_Object val
, next
;
7280 val
= Fget_text_property (make_number (pos
), Qcharset
, coding
->src_object
);
7281 if (! NILP (val
) && CHARSETP (val
))
7282 id
= XINT (CHARSET_SYMBOL_ID (val
));
7285 ADD_CHARSET_DATA (buf
, 0, id
);
7286 next
= Fnext_single_property_change (make_number (pos
), Qcharset
,
7288 make_number (limit
));
7289 *stop
= XINT (next
);
7295 consume_chars (struct coding_system
*coding
, Lisp_Object translation_table
,
7298 int *buf
= coding
->charbuf
;
7299 int *buf_end
= coding
->charbuf
+ coding
->charbuf_size
;
7300 const unsigned char *src
= coding
->source
+ coding
->consumed
;
7301 const unsigned char *src_end
= coding
->source
+ coding
->src_bytes
;
7302 EMACS_INT pos
= coding
->src_pos
+ coding
->consumed_char
;
7303 EMACS_INT end_pos
= coding
->src_pos
+ coding
->src_chars
;
7304 int multibytep
= coding
->src_multibyte
;
7305 Lisp_Object eol_type
;
7307 EMACS_INT stop
, stop_composition
, stop_charset
;
7308 int *lookup_buf
= NULL
;
7310 if (! NILP (translation_table
))
7311 lookup_buf
= alloca (sizeof (int) * max_lookup
);
7313 eol_type
= inhibit_eol_conversion
? Qunix
: CODING_ID_EOL_TYPE (coding
->id
);
7314 if (VECTORP (eol_type
))
7317 /* Note: composition handling is not yet implemented. */
7318 coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
7320 if (NILP (coding
->src_object
))
7321 stop
= stop_composition
= stop_charset
= end_pos
;
7324 if (coding
->common_flags
& CODING_ANNOTATE_COMPOSITION_MASK
)
7325 stop
= stop_composition
= pos
;
7327 stop
= stop_composition
= end_pos
;
7328 if (coding
->common_flags
& CODING_ANNOTATE_CHARSET_MASK
)
7329 stop
= stop_charset
= pos
;
7331 stop_charset
= end_pos
;
7334 /* Compensate for CRLF and conversion. */
7335 buf_end
-= 1 + MAX_ANNOTATION_LENGTH
;
7336 while (buf
< buf_end
)
7344 if (pos
== stop_composition
)
7345 buf
= handle_composition_annotation (pos
, end_pos
, coding
,
7346 buf
, &stop_composition
);
7347 if (pos
== stop_charset
)
7348 buf
= handle_charset_annotation (pos
, end_pos
, coding
,
7349 buf
, &stop_charset
);
7350 stop
= (stop_composition
< stop_charset
7351 ? stop_composition
: stop_charset
);
7358 if (coding
->encoder
== encode_coding_raw_text
7359 || coding
->encoder
== encode_coding_ccl
)
7361 else if ((bytes
= MULTIBYTE_LENGTH (src
, src_end
)) > 0)
7362 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
+= bytes
;
7364 c
= BYTE8_TO_CHAR (*src
), src
++, pos
++;
7367 c
= STRING_CHAR_ADVANCE_NO_UNIFY (src
), pos
++;
7368 if ((c
== '\r') && (coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
))
7370 if (! EQ (eol_type
, Qunix
))
7374 if (EQ (eol_type
, Qdos
))
7382 LOOKUP_TRANSLATION_TABLE (translation_table
, c
, trans
);
7387 int from_nchars
= 1, to_nchars
= 1;
7388 int *lookup_buf_end
;
7389 const unsigned char *p
= src
;
7393 for (i
= 1; i
< max_lookup
&& p
< src_end
; i
++)
7394 lookup_buf
[i
] = STRING_CHAR_ADVANCE (p
);
7395 lookup_buf_end
= lookup_buf
+ i
;
7396 trans
= get_translation (trans
, lookup_buf
, lookup_buf_end
);
7397 if (INTEGERP (trans
))
7399 else if (CONSP (trans
))
7401 from_nchars
= ASIZE (XCAR (trans
));
7402 trans
= XCDR (trans
);
7403 if (INTEGERP (trans
))
7407 to_nchars
= ASIZE (trans
);
7408 if (buf
+ to_nchars
> buf_end
)
7410 c
= XINT (AREF (trans
, 0));
7416 for (i
= 1; i
< to_nchars
; i
++)
7417 *buf
++ = XINT (AREF (trans
, i
));
7418 for (i
= 1; i
< from_nchars
; i
++, pos
++)
7419 src
+= MULTIBYTE_LENGTH_NO_CHECK (src
);
7423 coding
->consumed
= src
- coding
->source
;
7424 coding
->consumed_char
= pos
- coding
->src_pos
;
7425 coding
->charbuf_used
= buf
- coding
->charbuf
;
7426 coding
->chars_at_source
= 0;
7430 /* Encode the text at CODING->src_object into CODING->dst_object.
7431 CODING->src_object is a buffer or a string.
7432 CODING->dst_object is a buffer or nil.
7434 If CODING->src_object is a buffer, it must be the current buffer.
7435 In this case, if CODING->src_pos is positive, it is a position of
7436 the source text in the buffer, otherwise. the source text is in the
7437 gap area of the buffer, and coding->src_pos specifies the offset of
7438 the text from GPT (which must be the same as PT). If this is the
7439 same buffer as CODING->dst_object, CODING->src_pos must be
7440 negative and CODING should not have `pre-write-conversion'.
7442 If CODING->src_object is a string, CODING should not have
7443 `pre-write-conversion'.
7445 If CODING->dst_object is a buffer, the encoded data is inserted at
7446 the current point of that buffer.
7448 If CODING->dst_object is nil, the encoded data is placed at the
7449 memory area specified by CODING->destination. */
7452 encode_coding (struct coding_system
*coding
)
7455 Lisp_Object translation_table
;
7457 struct ccl_spec cclspec
;
7459 attrs
= CODING_ID_ATTRS (coding
->id
);
7460 if (coding
->encoder
== encode_coding_raw_text
)
7461 translation_table
= Qnil
, max_lookup
= 0;
7463 translation_table
= get_translation_table (attrs
, 1, &max_lookup
);
7465 if (BUFFERP (coding
->dst_object
))
7467 set_buffer_internal (XBUFFER (coding
->dst_object
));
7468 coding
->dst_multibyte
7469 = ! NILP (current_buffer
->enable_multibyte_characters
);
7472 coding
->consumed
= coding
->consumed_char
= 0;
7473 coding
->produced
= coding
->produced_char
= 0;
7474 record_conversion_result (coding
, CODING_RESULT_SUCCESS
);
7477 ALLOC_CONVERSION_WORK_AREA (coding
);
7479 if (coding
->encoder
== encode_coding_ccl
)
7481 coding
->spec
.ccl
= &cclspec
;
7482 setup_ccl_program (&cclspec
.ccl
, CODING_CCL_ENCODER (coding
));
7485 coding_set_source (coding
);
7486 consume_chars (coding
, translation_table
, max_lookup
);
7487 coding_set_destination (coding
);
7488 (*(coding
->encoder
)) (coding
);
7489 } while (coding
->consumed_char
< coding
->src_chars
);
7491 if (BUFFERP (coding
->dst_object
) && coding
->produced_char
> 0)
7492 insert_from_gap (coding
->produced_char
, coding
->produced
);
7494 return (coding
->result
);
7498 /* Name (or base name) of work buffer for code conversion. */
7499 static Lisp_Object Vcode_conversion_workbuf_name
;
7501 /* A working buffer used by the top level conversion. Once it is
7502 created, it is never destroyed. It has the name
7503 Vcode_conversion_workbuf_name. The other working buffers are
7504 destroyed after the use is finished, and their names are modified
7505 versions of Vcode_conversion_workbuf_name. */
7506 static Lisp_Object Vcode_conversion_reused_workbuf
;
7508 /* 1 iff Vcode_conversion_reused_workbuf is already in use. */
7509 static int reused_workbuf_in_use
;
7512 /* Return a working buffer of code convesion. MULTIBYTE specifies the
7513 multibyteness of returning buffer. */
7516 make_conversion_work_buffer (int multibyte
)
7518 Lisp_Object name
, workbuf
;
7519 struct buffer
*current
;
7521 if (reused_workbuf_in_use
++)
7523 name
= Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name
, Qnil
);
7524 workbuf
= Fget_buffer_create (name
);
7528 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf
)))
7529 Vcode_conversion_reused_workbuf
7530 = Fget_buffer_create (Vcode_conversion_workbuf_name
);
7531 workbuf
= Vcode_conversion_reused_workbuf
;
7533 current
= current_buffer
;
7534 set_buffer_internal (XBUFFER (workbuf
));
7535 /* We can't allow modification hooks to run in the work buffer. For
7536 instance, directory_files_internal assumes that file decoding
7537 doesn't compile new regexps. */
7538 Fset (Fmake_local_variable (Qinhibit_modification_hooks
), Qt
);
7540 current_buffer
->undo_list
= Qt
;
7541 current_buffer
->enable_multibyte_characters
= multibyte
? Qt
: Qnil
;
7542 set_buffer_internal (current
);
7548 code_conversion_restore (Lisp_Object arg
)
7550 Lisp_Object current
, workbuf
;
7551 struct gcpro gcpro1
;
7554 current
= XCAR (arg
);
7555 workbuf
= XCDR (arg
);
7556 if (! NILP (workbuf
))
7558 if (EQ (workbuf
, Vcode_conversion_reused_workbuf
))
7559 reused_workbuf_in_use
= 0;
7560 else if (! NILP (Fbuffer_live_p (workbuf
)))
7561 Fkill_buffer (workbuf
);
7563 set_buffer_internal (XBUFFER (current
));
7569 code_conversion_save (int with_work_buf
, int multibyte
)
7571 Lisp_Object workbuf
= Qnil
;
7574 workbuf
= make_conversion_work_buffer (multibyte
);
7575 record_unwind_protect (code_conversion_restore
,
7576 Fcons (Fcurrent_buffer (), workbuf
));
7581 decode_coding_gap (struct coding_system
*coding
,
7582 EMACS_INT chars
, EMACS_INT bytes
)
7584 int count
= SPECPDL_INDEX ();
7587 code_conversion_save (0, 0);
7589 coding
->src_object
= Fcurrent_buffer ();
7590 coding
->src_chars
= chars
;
7591 coding
->src_bytes
= bytes
;
7592 coding
->src_pos
= -chars
;
7593 coding
->src_pos_byte
= -bytes
;
7594 coding
->src_multibyte
= chars
< bytes
;
7595 coding
->dst_object
= coding
->src_object
;
7596 coding
->dst_pos
= PT
;
7597 coding
->dst_pos_byte
= PT_BYTE
;
7598 coding
->dst_multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
7600 if (CODING_REQUIRE_DETECTION (coding
))
7601 detect_coding (coding
);
7603 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
7604 current_buffer
->text
->inhibit_shrinking
= 1;
7605 decode_coding (coding
);
7606 current_buffer
->text
->inhibit_shrinking
= 0;
7608 attrs
= CODING_ID_ATTRS (coding
->id
);
7609 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7611 EMACS_INT prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7614 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7615 val
= call1 (CODING_ATTR_POST_READ (attrs
),
7616 make_number (coding
->produced_char
));
7618 coding
->produced_char
+= Z
- prev_Z
;
7619 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7622 unbind_to (count
, Qnil
);
7623 return coding
->result
;
7627 encode_coding_gap (struct coding_system
*coding
,
7628 EMACS_INT chars
, EMACS_INT bytes
)
7630 int count
= SPECPDL_INDEX ();
7632 code_conversion_save (0, 0);
7634 coding
->src_object
= Fcurrent_buffer ();
7635 coding
->src_chars
= chars
;
7636 coding
->src_bytes
= bytes
;
7637 coding
->src_pos
= -chars
;
7638 coding
->src_pos_byte
= -bytes
;
7639 coding
->src_multibyte
= chars
< bytes
;
7640 coding
->dst_object
= coding
->src_object
;
7641 coding
->dst_pos
= PT
;
7642 coding
->dst_pos_byte
= PT_BYTE
;
7644 encode_coding (coding
);
7646 unbind_to (count
, Qnil
);
7647 return coding
->result
;
7651 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in
7652 SRC_OBJECT into DST_OBJECT by coding context CODING.
7654 SRC_OBJECT is a buffer, a string, or Qnil.
7656 If it is a buffer, the text is at point of the buffer. FROM and TO
7657 are positions in the buffer.
7659 If it is a string, the text is at the beginning of the string.
7660 FROM and TO are indices to the string.
7662 If it is nil, the text is at coding->source. FROM and TO are
7663 indices to coding->source.
7665 DST_OBJECT is a buffer, Qt, or Qnil.
7667 If it is a buffer, the decoded text is inserted at point of the
7668 buffer. If the buffer is the same as SRC_OBJECT, the source text
7671 If it is Qt, a string is made from the decoded text, and
7672 set in CODING->dst_object.
7674 If it is Qnil, the decoded text is stored at CODING->destination.
7675 The caller must allocate CODING->dst_bytes bytes at
7676 CODING->destination by xmalloc. If the decoded text is longer than
7677 CODING->dst_bytes, CODING->destination is relocated by xrealloc.
7681 decode_coding_object (struct coding_system
*coding
,
7682 Lisp_Object src_object
,
7683 EMACS_INT from
, EMACS_INT from_byte
,
7684 EMACS_INT to
, EMACS_INT to_byte
,
7685 Lisp_Object dst_object
)
7687 int count
= SPECPDL_INDEX ();
7688 unsigned char *destination
;
7689 EMACS_INT dst_bytes
;
7690 EMACS_INT chars
= to
- from
;
7691 EMACS_INT bytes
= to_byte
- from_byte
;
7693 int saved_pt
= -1, saved_pt_byte
;
7694 int need_marker_adjustment
= 0;
7695 Lisp_Object old_deactivate_mark
;
7697 old_deactivate_mark
= Vdeactivate_mark
;
7699 if (NILP (dst_object
))
7701 destination
= coding
->destination
;
7702 dst_bytes
= coding
->dst_bytes
;
7705 coding
->src_object
= src_object
;
7706 coding
->src_chars
= chars
;
7707 coding
->src_bytes
= bytes
;
7708 coding
->src_multibyte
= chars
< bytes
;
7710 if (STRINGP (src_object
))
7712 coding
->src_pos
= from
;
7713 coding
->src_pos_byte
= from_byte
;
7715 else if (BUFFERP (src_object
))
7717 set_buffer_internal (XBUFFER (src_object
));
7719 move_gap_both (from
, from_byte
);
7720 if (EQ (src_object
, dst_object
))
7722 struct Lisp_Marker
*tail
;
7724 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7726 tail
->need_adjustment
7727 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
7728 need_marker_adjustment
|= tail
->need_adjustment
;
7730 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7731 TEMP_SET_PT_BOTH (from
, from_byte
);
7732 current_buffer
->text
->inhibit_shrinking
= 1;
7733 del_range_both (from
, from_byte
, to
, to_byte
, 1);
7734 coding
->src_pos
= -chars
;
7735 coding
->src_pos_byte
= -bytes
;
7739 coding
->src_pos
= from
;
7740 coding
->src_pos_byte
= from_byte
;
7744 if (CODING_REQUIRE_DETECTION (coding
))
7745 detect_coding (coding
);
7746 attrs
= CODING_ID_ATTRS (coding
->id
);
7748 if (EQ (dst_object
, Qt
)
7749 || (! NILP (CODING_ATTR_POST_READ (attrs
))
7750 && NILP (dst_object
)))
7752 coding
->dst_multibyte
= !CODING_FOR_UNIBYTE (coding
);
7753 coding
->dst_object
= code_conversion_save (1, coding
->dst_multibyte
);
7754 coding
->dst_pos
= BEG
;
7755 coding
->dst_pos_byte
= BEG_BYTE
;
7757 else if (BUFFERP (dst_object
))
7759 code_conversion_save (0, 0);
7760 coding
->dst_object
= dst_object
;
7761 coding
->dst_pos
= BUF_PT (XBUFFER (dst_object
));
7762 coding
->dst_pos_byte
= BUF_PT_BYTE (XBUFFER (dst_object
));
7763 coding
->dst_multibyte
7764 = ! NILP (XBUFFER (dst_object
)->enable_multibyte_characters
);
7768 code_conversion_save (0, 0);
7769 coding
->dst_object
= Qnil
;
7770 /* Most callers presume this will return a multibyte result, and they
7771 won't use `binary' or `raw-text' anyway, so let's not worry about
7772 CODING_FOR_UNIBYTE. */
7773 coding
->dst_multibyte
= 1;
7776 decode_coding (coding
);
7778 if (BUFFERP (coding
->dst_object
))
7779 set_buffer_internal (XBUFFER (coding
->dst_object
));
7781 if (! NILP (CODING_ATTR_POST_READ (attrs
)))
7783 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
7784 EMACS_INT prev_Z
= Z
, prev_Z_BYTE
= Z_BYTE
;
7787 TEMP_SET_PT_BOTH (coding
->dst_pos
, coding
->dst_pos_byte
);
7788 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
7789 old_deactivate_mark
);
7790 val
= safe_call1 (CODING_ATTR_POST_READ (attrs
),
7791 make_number (coding
->produced_char
));
7794 coding
->produced_char
+= Z
- prev_Z
;
7795 coding
->produced
+= Z_BYTE
- prev_Z_BYTE
;
7798 if (EQ (dst_object
, Qt
))
7800 coding
->dst_object
= Fbuffer_string ();
7802 else if (NILP (dst_object
) && BUFFERP (coding
->dst_object
))
7804 set_buffer_internal (XBUFFER (coding
->dst_object
));
7805 if (dst_bytes
< coding
->produced
)
7807 destination
= xrealloc (destination
, coding
->produced
);
7810 record_conversion_result (coding
,
7811 CODING_RESULT_INSUFFICIENT_MEM
);
7812 unbind_to (count
, Qnil
);
7815 if (BEGV
< GPT
&& GPT
< BEGV
+ coding
->produced_char
)
7816 move_gap_both (BEGV
, BEGV_BYTE
);
7817 memcpy (destination
, BEGV_ADDR
, coding
->produced
);
7818 coding
->destination
= destination
;
7824 /* This is the case of:
7825 (BUFFERP (src_object) && EQ (src_object, dst_object))
7826 As we have moved PT while replacing the original buffer
7827 contents, we must recover it now. */
7828 set_buffer_internal (XBUFFER (src_object
));
7829 current_buffer
->text
->inhibit_shrinking
= 0;
7830 if (saved_pt
< from
)
7831 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
7832 else if (saved_pt
< from
+ chars
)
7833 TEMP_SET_PT_BOTH (from
, from_byte
);
7834 else if (! NILP (current_buffer
->enable_multibyte_characters
))
7835 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
7836 saved_pt_byte
+ (coding
->produced
- bytes
));
7838 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
7839 saved_pt_byte
+ (coding
->produced
- bytes
));
7841 if (need_marker_adjustment
)
7843 struct Lisp_Marker
*tail
;
7845 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7846 if (tail
->need_adjustment
)
7848 tail
->need_adjustment
= 0;
7849 if (tail
->insertion_type
)
7851 tail
->bytepos
= from_byte
;
7852 tail
->charpos
= from
;
7856 tail
->bytepos
= from_byte
+ coding
->produced
;
7858 = (NILP (current_buffer
->enable_multibyte_characters
)
7859 ? tail
->bytepos
: from
+ coding
->produced_char
);
7865 Vdeactivate_mark
= old_deactivate_mark
;
7866 unbind_to (count
, coding
->dst_object
);
7871 encode_coding_object (struct coding_system
*coding
,
7872 Lisp_Object src_object
,
7873 EMACS_INT from
, EMACS_INT from_byte
,
7874 EMACS_INT to
, EMACS_INT to_byte
,
7875 Lisp_Object dst_object
)
7877 int count
= SPECPDL_INDEX ();
7878 EMACS_INT chars
= to
- from
;
7879 EMACS_INT bytes
= to_byte
- from_byte
;
7881 int saved_pt
= -1, saved_pt_byte
;
7882 int need_marker_adjustment
= 0;
7883 int kill_src_buffer
= 0;
7884 Lisp_Object old_deactivate_mark
;
7886 old_deactivate_mark
= Vdeactivate_mark
;
7888 coding
->src_object
= src_object
;
7889 coding
->src_chars
= chars
;
7890 coding
->src_bytes
= bytes
;
7891 coding
->src_multibyte
= chars
< bytes
;
7893 attrs
= CODING_ID_ATTRS (coding
->id
);
7895 if (EQ (src_object
, dst_object
))
7897 struct Lisp_Marker
*tail
;
7899 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
7901 tail
->need_adjustment
7902 = tail
->charpos
== (tail
->insertion_type
? from
: to
);
7903 need_marker_adjustment
|= tail
->need_adjustment
;
7907 if (! NILP (CODING_ATTR_PRE_WRITE (attrs
)))
7909 coding
->src_object
= code_conversion_save (1, coding
->src_multibyte
);
7910 set_buffer_internal (XBUFFER (coding
->src_object
));
7911 if (STRINGP (src_object
))
7912 insert_from_string (src_object
, from
, from_byte
, chars
, bytes
, 0);
7913 else if (BUFFERP (src_object
))
7914 insert_from_buffer (XBUFFER (src_object
), from
, chars
, 0);
7916 insert_1_both (coding
->source
+ from
, chars
, bytes
, 0, 0, 0);
7918 if (EQ (src_object
, dst_object
))
7920 set_buffer_internal (XBUFFER (src_object
));
7921 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7922 del_range_both (from
, from_byte
, to
, to_byte
, 1);
7923 set_buffer_internal (XBUFFER (coding
->src_object
));
7927 Lisp_Object args
[3];
7928 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
7930 GCPRO5 (coding
->src_object
, coding
->dst_object
, src_object
, dst_object
,
7931 old_deactivate_mark
);
7932 args
[0] = CODING_ATTR_PRE_WRITE (attrs
);
7933 args
[1] = make_number (BEG
);
7934 args
[2] = make_number (Z
);
7935 safe_call (3, args
);
7938 if (XBUFFER (coding
->src_object
) != current_buffer
)
7939 kill_src_buffer
= 1;
7940 coding
->src_object
= Fcurrent_buffer ();
7942 move_gap_both (BEG
, BEG_BYTE
);
7943 coding
->src_chars
= Z
- BEG
;
7944 coding
->src_bytes
= Z_BYTE
- BEG_BYTE
;
7945 coding
->src_pos
= BEG
;
7946 coding
->src_pos_byte
= BEG_BYTE
;
7947 coding
->src_multibyte
= Z
< Z_BYTE
;
7949 else if (STRINGP (src_object
))
7951 code_conversion_save (0, 0);
7952 coding
->src_pos
= from
;
7953 coding
->src_pos_byte
= from_byte
;
7955 else if (BUFFERP (src_object
))
7957 code_conversion_save (0, 0);
7958 set_buffer_internal (XBUFFER (src_object
));
7959 if (EQ (src_object
, dst_object
))
7961 saved_pt
= PT
, saved_pt_byte
= PT_BYTE
;
7962 coding
->src_object
= del_range_1 (from
, to
, 1, 1);
7963 coding
->src_pos
= 0;
7964 coding
->src_pos_byte
= 0;
7968 if (from
< GPT
&& to
>= GPT
)
7969 move_gap_both (from
, from_byte
);
7970 coding
->src_pos
= from
;
7971 coding
->src_pos_byte
= from_byte
;
7975 code_conversion_save (0, 0);
7977 if (BUFFERP (dst_object
))
7979 coding
->dst_object
= dst_object
;
7980 if (EQ (src_object
, dst_object
))
7982 coding
->dst_pos
= from
;
7983 coding
->dst_pos_byte
= from_byte
;
7987 struct buffer
*current
= current_buffer
;
7989 set_buffer_temp (XBUFFER (dst_object
));
7990 coding
->dst_pos
= PT
;
7991 coding
->dst_pos_byte
= PT_BYTE
;
7992 move_gap_both (coding
->dst_pos
, coding
->dst_pos_byte
);
7993 set_buffer_temp (current
);
7995 coding
->dst_multibyte
7996 = ! NILP (XBUFFER (dst_object
)->enable_multibyte_characters
);
7998 else if (EQ (dst_object
, Qt
))
8000 coding
->dst_object
= Qnil
;
8001 coding
->dst_bytes
= coding
->src_chars
;
8002 if (coding
->dst_bytes
== 0)
8003 coding
->dst_bytes
= 1;
8004 coding
->destination
= (unsigned char *) xmalloc (coding
->dst_bytes
);
8005 coding
->dst_multibyte
= 0;
8009 coding
->dst_object
= Qnil
;
8010 coding
->dst_multibyte
= 0;
8013 encode_coding (coding
);
8015 if (EQ (dst_object
, Qt
))
8017 if (BUFFERP (coding
->dst_object
))
8018 coding
->dst_object
= Fbuffer_string ();
8022 = make_unibyte_string ((char *) coding
->destination
,
8024 xfree (coding
->destination
);
8030 /* This is the case of:
8031 (BUFFERP (src_object) && EQ (src_object, dst_object))
8032 As we have moved PT while replacing the original buffer
8033 contents, we must recover it now. */
8034 set_buffer_internal (XBUFFER (src_object
));
8035 if (saved_pt
< from
)
8036 TEMP_SET_PT_BOTH (saved_pt
, saved_pt_byte
);
8037 else if (saved_pt
< from
+ chars
)
8038 TEMP_SET_PT_BOTH (from
, from_byte
);
8039 else if (! NILP (current_buffer
->enable_multibyte_characters
))
8040 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced_char
- chars
),
8041 saved_pt_byte
+ (coding
->produced
- bytes
));
8043 TEMP_SET_PT_BOTH (saved_pt
+ (coding
->produced
- bytes
),
8044 saved_pt_byte
+ (coding
->produced
- bytes
));
8046 if (need_marker_adjustment
)
8048 struct Lisp_Marker
*tail
;
8050 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
8051 if (tail
->need_adjustment
)
8053 tail
->need_adjustment
= 0;
8054 if (tail
->insertion_type
)
8056 tail
->bytepos
= from_byte
;
8057 tail
->charpos
= from
;
8061 tail
->bytepos
= from_byte
+ coding
->produced
;
8063 = (NILP (current_buffer
->enable_multibyte_characters
)
8064 ? tail
->bytepos
: from
+ coding
->produced_char
);
8070 if (kill_src_buffer
)
8071 Fkill_buffer (coding
->src_object
);
8073 Vdeactivate_mark
= old_deactivate_mark
;
8074 unbind_to (count
, Qnil
);
8079 preferred_coding_system (void)
8081 int id
= coding_categories
[coding_priorities
[0]].id
;
8083 return CODING_ID_NAME (id
);
8088 /*** 8. Emacs Lisp library functions ***/
8090 DEFUN ("coding-system-p", Fcoding_system_p
, Scoding_system_p
, 1, 1, 0,
8091 doc
: /* Return t if OBJECT is nil or a coding-system.
8092 See the documentation of `define-coding-system' for information
8093 about coding-system objects. */)
8094 (Lisp_Object object
)
8097 || CODING_SYSTEM_ID (object
) >= 0)
8099 if (! SYMBOLP (object
)
8100 || NILP (Fget (object
, Qcoding_system_define_form
)))
8105 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system
,
8106 Sread_non_nil_coding_system
, 1, 1, 0,
8107 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
8108 (Lisp_Object prompt
)
8113 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8114 Qt
, Qnil
, Qcoding_system_history
, Qnil
, Qnil
);
8116 while (SCHARS (val
) == 0);
8117 return (Fintern (val
, Qnil
));
8120 DEFUN ("read-coding-system", Fread_coding_system
, Sread_coding_system
, 1, 2, 0,
8121 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8122 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8123 Ignores case when completing coding systems (all Emacs coding systems
8124 are lower-case). */)
8125 (Lisp_Object prompt
, Lisp_Object default_coding_system
)
8128 int count
= SPECPDL_INDEX ();
8130 if (SYMBOLP (default_coding_system
))
8131 default_coding_system
= SYMBOL_NAME (default_coding_system
);
8132 specbind (Qcompletion_ignore_case
, Qt
);
8133 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
8134 Qt
, Qnil
, Qcoding_system_history
,
8135 default_coding_system
, Qnil
);
8136 unbind_to (count
, Qnil
);
8137 return (SCHARS (val
) == 0 ? Qnil
: Fintern (val
, Qnil
));
8140 DEFUN ("check-coding-system", Fcheck_coding_system
, Scheck_coding_system
,
8142 doc
: /* Check validity of CODING-SYSTEM.
8143 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
8144 It is valid if it is nil or a symbol defined as a coding system by the
8145 function `define-coding-system'. */)
8146 (Lisp_Object coding_system
)
8148 Lisp_Object define_form
;
8150 define_form
= Fget (coding_system
, Qcoding_system_define_form
);
8151 if (! NILP (define_form
))
8153 Fput (coding_system
, Qcoding_system_define_form
, Qnil
);
8154 safe_eval (define_form
);
8156 if (!NILP (Fcoding_system_p (coding_system
)))
8157 return coding_system
;
8158 xsignal1 (Qcoding_system_error
, coding_system
);
8162 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If
8163 HIGHEST is nonzero, return the coding system of the highest
8164 priority among the detected coding systems. Otherwize return a
8165 list of detected coding systems sorted by their priorities. If
8166 MULTIBYTEP is nonzero, it is assumed that the bytes are in correct
8167 multibyte form but contains only ASCII and eight-bit chars.
8168 Otherwise, the bytes are raw bytes.
8170 CODING-SYSTEM controls the detection as below:
8172 If it is nil, detect both text-format and eol-format. If the
8173 text-format part of CODING-SYSTEM is already specified
8174 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format
8175 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'),
8176 detect only text-format. */
8179 detect_coding_system (const unsigned char *src
,
8180 EMACS_INT src_chars
, EMACS_INT src_bytes
,
8181 int highest
, int multibytep
,
8182 Lisp_Object coding_system
)
8184 const unsigned char *src_end
= src
+ src_bytes
;
8185 Lisp_Object attrs
, eol_type
;
8186 Lisp_Object val
= Qnil
;
8187 struct coding_system coding
;
8189 struct coding_detection_info detect_info
;
8190 enum coding_category base_category
;
8191 int null_byte_found
= 0, eight_bit_found
= 0;
8193 if (NILP (coding_system
))
8194 coding_system
= Qundecided
;
8195 setup_coding_system (coding_system
, &coding
);
8196 attrs
= CODING_ID_ATTRS (coding
.id
);
8197 eol_type
= CODING_ID_EOL_TYPE (coding
.id
);
8198 coding_system
= CODING_ATTR_BASE_NAME (attrs
);
8200 coding
.source
= src
;
8201 coding
.src_chars
= src_chars
;
8202 coding
.src_bytes
= src_bytes
;
8203 coding
.src_multibyte
= multibytep
;
8204 coding
.consumed
= 0;
8205 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8206 coding
.head_ascii
= 0;
8208 detect_info
.checked
= detect_info
.found
= detect_info
.rejected
= 0;
8210 /* At first, detect text-format if necessary. */
8211 base_category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8212 if (base_category
== coding_category_undecided
)
8214 enum coding_category category
;
8215 struct coding_system
*this;
8218 /* Skip all ASCII bytes except for a few ISO2022 controls. */
8219 for (; src
< src_end
; src
++)
8224 eight_bit_found
= 1;
8225 if (null_byte_found
)
8230 if ((c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
8231 && ! inhibit_iso_escape_detection
8232 && ! detect_info
.checked
)
8234 if (detect_coding_iso_2022 (&coding
, &detect_info
))
8236 /* We have scanned the whole data. */
8237 if (! (detect_info
.rejected
& CATEGORY_MASK_ISO_7_ELSE
))
8239 /* We didn't find an 8-bit code. We may
8240 have found a null-byte, but it's very
8241 rare that a binary file confirm to
8244 coding
.head_ascii
= src
- coding
.source
;
8246 detect_info
.rejected
|= ~CATEGORY_MASK_ISO_ESCAPE
;
8250 else if (! c
&& !inhibit_null_byte_detection
)
8252 null_byte_found
= 1;
8253 if (eight_bit_found
)
8256 if (! eight_bit_found
)
8257 coding
.head_ascii
++;
8259 else if (! eight_bit_found
)
8260 coding
.head_ascii
++;
8263 if (null_byte_found
|| eight_bit_found
8264 || coding
.head_ascii
< coding
.src_bytes
8265 || detect_info
.found
)
8267 if (coding
.head_ascii
== coding
.src_bytes
)
8268 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */
8269 for (i
= 0; i
< coding_category_raw_text
; i
++)
8271 category
= coding_priorities
[i
];
8272 this = coding_categories
+ category
;
8273 if (detect_info
.found
& (1 << category
))
8278 if (null_byte_found
)
8280 detect_info
.checked
|= ~CATEGORY_MASK_UTF_16
;
8281 detect_info
.rejected
|= ~CATEGORY_MASK_UTF_16
;
8283 for (i
= 0; i
< coding_category_raw_text
; i
++)
8285 category
= coding_priorities
[i
];
8286 this = coding_categories
+ category
;
8290 /* No coding system of this category is defined. */
8291 detect_info
.rejected
|= (1 << category
);
8293 else if (category
>= coding_category_raw_text
)
8295 else if (detect_info
.checked
& (1 << category
))
8298 && (detect_info
.found
& (1 << category
)))
8301 else if ((*(this->detector
)) (&coding
, &detect_info
)
8303 && (detect_info
.found
& (1 << category
)))
8305 if (category
== coding_category_utf_16_auto
)
8307 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8308 category
= coding_category_utf_16_le
;
8310 category
= coding_category_utf_16_be
;
8318 if ((detect_info
.rejected
& CATEGORY_MASK_ANY
) == CATEGORY_MASK_ANY
8321 detect_info
.found
= CATEGORY_MASK_RAW_TEXT
;
8322 id
= CODING_SYSTEM_ID (Qno_conversion
);
8323 val
= Fcons (make_number (id
), Qnil
);
8325 else if (! detect_info
.rejected
&& ! detect_info
.found
)
8327 detect_info
.found
= CATEGORY_MASK_ANY
;
8328 id
= coding_categories
[coding_category_undecided
].id
;
8329 val
= Fcons (make_number (id
), Qnil
);
8333 if (detect_info
.found
)
8335 detect_info
.found
= 1 << category
;
8336 val
= Fcons (make_number (this->id
), Qnil
);
8339 for (i
= 0; i
< coding_category_raw_text
; i
++)
8340 if (! (detect_info
.rejected
& (1 << coding_priorities
[i
])))
8342 detect_info
.found
= 1 << coding_priorities
[i
];
8343 id
= coding_categories
[coding_priorities
[i
]].id
;
8344 val
= Fcons (make_number (id
), Qnil
);
8350 int mask
= detect_info
.rejected
| detect_info
.found
;
8353 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8355 category
= coding_priorities
[i
];
8356 if (! (mask
& (1 << category
)))
8358 found
|= 1 << category
;
8359 id
= coding_categories
[category
].id
;
8361 val
= Fcons (make_number (id
), val
);
8364 for (i
= coding_category_raw_text
- 1; i
>= 0; i
--)
8366 category
= coding_priorities
[i
];
8367 if (detect_info
.found
& (1 << category
))
8369 id
= coding_categories
[category
].id
;
8370 val
= Fcons (make_number (id
), val
);
8373 detect_info
.found
|= found
;
8376 else if (base_category
== coding_category_utf_8_auto
)
8378 if (detect_coding_utf_8 (&coding
, &detect_info
))
8380 struct coding_system
*this;
8382 if (detect_info
.found
& CATEGORY_MASK_UTF_8_SIG
)
8383 this = coding_categories
+ coding_category_utf_8_sig
;
8385 this = coding_categories
+ coding_category_utf_8_nosig
;
8386 val
= Fcons (make_number (this->id
), Qnil
);
8389 else if (base_category
== coding_category_utf_16_auto
)
8391 if (detect_coding_utf_16 (&coding
, &detect_info
))
8393 struct coding_system
*this;
8395 if (detect_info
.found
& CATEGORY_MASK_UTF_16_LE
)
8396 this = coding_categories
+ coding_category_utf_16_le
;
8397 else if (detect_info
.found
& CATEGORY_MASK_UTF_16_BE
)
8398 this = coding_categories
+ coding_category_utf_16_be
;
8399 else if (detect_info
.rejected
& CATEGORY_MASK_UTF_16_LE_NOSIG
)
8400 this = coding_categories
+ coding_category_utf_16_be_nosig
;
8402 this = coding_categories
+ coding_category_utf_16_le_nosig
;
8403 val
= Fcons (make_number (this->id
), Qnil
);
8408 detect_info
.found
= 1 << XINT (CODING_ATTR_CATEGORY (attrs
));
8409 val
= Fcons (make_number (coding
.id
), Qnil
);
8412 /* Then, detect eol-format if necessary. */
8414 int normal_eol
= -1, utf_16_be_eol
= -1, utf_16_le_eol
= -1;
8417 if (VECTORP (eol_type
))
8419 if (detect_info
.found
& ~CATEGORY_MASK_UTF_16
)
8421 if (null_byte_found
)
8422 normal_eol
= EOL_SEEN_LF
;
8424 normal_eol
= detect_eol (coding
.source
, src_bytes
,
8425 coding_category_raw_text
);
8427 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_BE
8428 | CATEGORY_MASK_UTF_16_BE_NOSIG
))
8429 utf_16_be_eol
= detect_eol (coding
.source
, src_bytes
,
8430 coding_category_utf_16_be
);
8431 if (detect_info
.found
& (CATEGORY_MASK_UTF_16_LE
8432 | CATEGORY_MASK_UTF_16_LE_NOSIG
))
8433 utf_16_le_eol
= detect_eol (coding
.source
, src_bytes
,
8434 coding_category_utf_16_le
);
8438 if (EQ (eol_type
, Qunix
))
8439 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_LF
;
8440 else if (EQ (eol_type
, Qdos
))
8441 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CRLF
;
8443 normal_eol
= utf_16_be_eol
= utf_16_le_eol
= EOL_SEEN_CR
;
8446 for (tail
= val
; CONSP (tail
); tail
= XCDR (tail
))
8448 enum coding_category category
;
8451 id
= XINT (XCAR (tail
));
8452 attrs
= CODING_ID_ATTRS (id
);
8453 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
8454 eol_type
= CODING_ID_EOL_TYPE (id
);
8455 if (VECTORP (eol_type
))
8457 if (category
== coding_category_utf_16_be
8458 || category
== coding_category_utf_16_be_nosig
)
8459 this_eol
= utf_16_be_eol
;
8460 else if (category
== coding_category_utf_16_le
8461 || category
== coding_category_utf_16_le_nosig
)
8462 this_eol
= utf_16_le_eol
;
8464 this_eol
= normal_eol
;
8466 if (this_eol
== EOL_SEEN_LF
)
8467 XSETCAR (tail
, AREF (eol_type
, 0));
8468 else if (this_eol
== EOL_SEEN_CRLF
)
8469 XSETCAR (tail
, AREF (eol_type
, 1));
8470 else if (this_eol
== EOL_SEEN_CR
)
8471 XSETCAR (tail
, AREF (eol_type
, 2));
8473 XSETCAR (tail
, CODING_ID_NAME (id
));
8476 XSETCAR (tail
, CODING_ID_NAME (id
));
8480 return (highest
? (CONSP (val
) ? XCAR (val
) : Qnil
) : val
);
8484 DEFUN ("detect-coding-region", Fdetect_coding_region
, Sdetect_coding_region
,
8486 doc
: /* Detect coding system of the text in the region between START and END.
8487 Return a list of possible coding systems ordered by priority.
8488 The coding systems to try and their priorities follows what
8489 the function `coding-system-priority-list' (which see) returns.
8491 If only ASCII characters are found (except for such ISO-2022 control
8492 characters as ESC), it returns a list of single element `undecided'
8493 or its subsidiary coding system according to a detected end-of-line
8496 If optional argument HIGHEST is non-nil, return the coding system of
8497 highest priority. */)
8498 (Lisp_Object start
, Lisp_Object end
, Lisp_Object highest
)
8501 int from_byte
, to_byte
;
8503 CHECK_NUMBER_COERCE_MARKER (start
);
8504 CHECK_NUMBER_COERCE_MARKER (end
);
8506 validate_region (&start
, &end
);
8507 from
= XINT (start
), to
= XINT (end
);
8508 from_byte
= CHAR_TO_BYTE (from
);
8509 to_byte
= CHAR_TO_BYTE (to
);
8511 if (from
< GPT
&& to
>= GPT
)
8512 move_gap_both (to
, to_byte
);
8514 return detect_coding_system (BYTE_POS_ADDR (from_byte
),
8515 to
- from
, to_byte
- from_byte
,
8517 !NILP (current_buffer
8518 ->enable_multibyte_characters
),
8522 DEFUN ("detect-coding-string", Fdetect_coding_string
, Sdetect_coding_string
,
8524 doc
: /* Detect coding system of the text in STRING.
8525 Return a list of possible coding systems ordered by priority.
8526 The coding systems to try and their priorities follows what
8527 the function `coding-system-priority-list' (which see) returns.
8529 If only ASCII characters are found (except for such ISO-2022 control
8530 characters as ESC), it returns a list of single element `undecided'
8531 or its subsidiary coding system according to a detected end-of-line
8534 If optional argument HIGHEST is non-nil, return the coding system of
8535 highest priority. */)
8536 (Lisp_Object string
, Lisp_Object highest
)
8538 CHECK_STRING (string
);
8540 return detect_coding_system (SDATA (string
),
8541 SCHARS (string
), SBYTES (string
),
8542 !NILP (highest
), STRING_MULTIBYTE (string
),
8548 char_encodable_p (int c
, Lisp_Object attrs
)
8551 struct charset
*charset
;
8552 Lisp_Object translation_table
;
8554 translation_table
= CODING_ATTR_TRANS_TBL (attrs
);
8555 if (! NILP (translation_table
))
8556 c
= translate_char (translation_table
, c
);
8557 for (tail
= CODING_ATTR_CHARSET_LIST (attrs
);
8558 CONSP (tail
); tail
= XCDR (tail
))
8560 charset
= CHARSET_FROM_ID (XINT (XCAR (tail
)));
8561 if (CHAR_CHARSET_P (c
, charset
))
8564 return (! NILP (tail
));
8568 /* Return a list of coding systems that safely encode the text between
8569 START and END. If EXCLUDE is non-nil, it is a list of coding
8570 systems not to check. The returned list doesn't contain any such
8571 coding systems. In any case, if the text contains only ASCII or is
8572 unibyte, return t. */
8574 DEFUN ("find-coding-systems-region-internal",
8575 Ffind_coding_systems_region_internal
,
8576 Sfind_coding_systems_region_internal
, 2, 3, 0,
8577 doc
: /* Internal use only. */)
8578 (Lisp_Object start
, Lisp_Object end
, Lisp_Object exclude
)
8580 Lisp_Object coding_attrs_list
, safe_codings
;
8581 EMACS_INT start_byte
, end_byte
;
8582 const unsigned char *p
, *pbeg
, *pend
;
8584 Lisp_Object tail
, elt
, work_table
;
8586 if (STRINGP (start
))
8588 if (!STRING_MULTIBYTE (start
)
8589 || SCHARS (start
) == SBYTES (start
))
8592 end_byte
= SBYTES (start
);
8596 CHECK_NUMBER_COERCE_MARKER (start
);
8597 CHECK_NUMBER_COERCE_MARKER (end
);
8598 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8599 args_out_of_range (start
, end
);
8600 if (NILP (current_buffer
->enable_multibyte_characters
))
8602 start_byte
= CHAR_TO_BYTE (XINT (start
));
8603 end_byte
= CHAR_TO_BYTE (XINT (end
));
8604 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8607 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8609 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8610 move_gap_both (XINT (start
), start_byte
);
8612 move_gap_both (XINT (end
), end_byte
);
8616 coding_attrs_list
= Qnil
;
8617 for (tail
= Vcoding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8619 || NILP (Fmemq (XCAR (tail
), exclude
)))
8623 attrs
= AREF (CODING_SYSTEM_SPEC (XCAR (tail
)), 0);
8624 if (EQ (XCAR (tail
), CODING_ATTR_BASE_NAME (attrs
))
8625 && ! EQ (CODING_ATTR_TYPE (attrs
), Qundecided
))
8627 ASET (attrs
, coding_attr_trans_tbl
,
8628 get_translation_table (attrs
, 1, NULL
));
8629 coding_attrs_list
= Fcons (attrs
, coding_attrs_list
);
8633 if (STRINGP (start
))
8634 p
= pbeg
= SDATA (start
);
8636 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
8637 pend
= p
+ (end_byte
- start_byte
);
8639 while (p
< pend
&& ASCII_BYTE_P (*p
)) p
++;
8640 while (p
< pend
&& ASCII_BYTE_P (*(pend
- 1))) pend
--;
8642 work_table
= Fmake_char_table (Qnil
, Qnil
);
8645 if (ASCII_BYTE_P (*p
))
8649 c
= STRING_CHAR_ADVANCE (p
);
8650 if (!NILP (char_table_ref (work_table
, c
)))
8651 /* This character was already checked. Ignore it. */
8654 charset_map_loaded
= 0;
8655 for (tail
= coding_attrs_list
; CONSP (tail
);)
8660 else if (char_encodable_p (c
, elt
))
8662 else if (CONSP (XCDR (tail
)))
8664 XSETCAR (tail
, XCAR (XCDR (tail
)));
8665 XSETCDR (tail
, XCDR (XCDR (tail
)));
8669 XSETCAR (tail
, Qnil
);
8673 if (charset_map_loaded
)
8675 EMACS_INT p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
8677 if (STRINGP (start
))
8678 pbeg
= SDATA (start
);
8680 pbeg
= BYTE_POS_ADDR (start_byte
);
8681 p
= pbeg
+ p_offset
;
8682 pend
= pbeg
+ pend_offset
;
8684 char_table_set (work_table
, c
, Qt
);
8688 safe_codings
= list2 (Qraw_text
, Qno_conversion
);
8689 for (tail
= coding_attrs_list
; CONSP (tail
); tail
= XCDR (tail
))
8690 if (! NILP (XCAR (tail
)))
8691 safe_codings
= Fcons (CODING_ATTR_BASE_NAME (XCAR (tail
)), safe_codings
);
8693 return safe_codings
;
8697 DEFUN ("unencodable-char-position", Funencodable_char_position
,
8698 Sunencodable_char_position
, 3, 5, 0,
8700 Return position of first un-encodable character in a region.
8701 START and END specify the region and CODING-SYSTEM specifies the
8702 encoding to check. Return nil if CODING-SYSTEM does encode the region.
8704 If optional 4th argument COUNT is non-nil, it specifies at most how
8705 many un-encodable characters to search. In this case, the value is a
8708 If optional 5th argument STRING is non-nil, it is a string to search
8709 for un-encodable characters. In that case, START and END are indexes
8711 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object count
, Lisp_Object string
)
8714 struct coding_system coding
;
8715 Lisp_Object attrs
, charset_list
, translation_table
;
8716 Lisp_Object positions
;
8718 const unsigned char *p
, *stop
, *pend
;
8719 int ascii_compatible
;
8721 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
8722 attrs
= CODING_ID_ATTRS (coding
.id
);
8723 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
8725 ascii_compatible
= ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
));
8726 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
8727 translation_table
= get_translation_table (attrs
, 1, NULL
);
8731 validate_region (&start
, &end
);
8732 from
= XINT (start
);
8734 if (NILP (current_buffer
->enable_multibyte_characters
)
8735 || (ascii_compatible
8736 && (to
- from
) == (CHAR_TO_BYTE (to
) - (CHAR_TO_BYTE (from
)))))
8738 p
= CHAR_POS_ADDR (from
);
8739 pend
= CHAR_POS_ADDR (to
);
8740 if (from
< GPT
&& to
>= GPT
)
8747 CHECK_STRING (string
);
8748 CHECK_NATNUM (start
);
8750 from
= XINT (start
);
8753 || to
> SCHARS (string
))
8754 args_out_of_range_3 (string
, start
, end
);
8755 if (! STRING_MULTIBYTE (string
))
8757 p
= SDATA (string
) + string_char_to_byte (string
, from
);
8758 stop
= pend
= SDATA (string
) + string_char_to_byte (string
, to
);
8759 if (ascii_compatible
&& (to
- from
) == (pend
- p
))
8767 CHECK_NATNUM (count
);
8776 if (ascii_compatible
)
8777 while (p
< stop
&& ASCII_BYTE_P (*p
))
8787 c
= STRING_CHAR_ADVANCE (p
);
8788 if (! (ASCII_CHAR_P (c
) && ascii_compatible
)
8789 && ! char_charset (translate_char (translation_table
, c
),
8790 charset_list
, NULL
))
8792 positions
= Fcons (make_number (from
), positions
);
8801 return (NILP (count
) ? Fcar (positions
) : Fnreverse (positions
));
8805 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region
,
8806 Scheck_coding_systems_region
, 3, 3, 0,
8807 doc
: /* Check if the region is encodable by coding systems.
8809 START and END are buffer positions specifying the region.
8810 CODING-SYSTEM-LIST is a list of coding systems to check.
8812 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where
8813 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the
8814 whole region, POS0, POS1, ... are buffer positions where non-encodable
8815 characters are found.
8817 If all coding systems in CODING-SYSTEM-LIST can encode the region, the
8820 START may be a string. In that case, check if the string is
8821 encodable, and the value contains indices to the string instead of
8822 buffer positions. END is ignored.
8824 If the current buffer (or START if it is a string) is unibyte, the value
8826 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system_list
)
8829 EMACS_INT start_byte
, end_byte
;
8831 const unsigned char *p
, *pbeg
, *pend
;
8833 Lisp_Object tail
, elt
, attrs
;
8835 if (STRINGP (start
))
8837 if (!STRING_MULTIBYTE (start
)
8838 || SCHARS (start
) == SBYTES (start
))
8841 end_byte
= SBYTES (start
);
8846 CHECK_NUMBER_COERCE_MARKER (start
);
8847 CHECK_NUMBER_COERCE_MARKER (end
);
8848 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
8849 args_out_of_range (start
, end
);
8850 if (NILP (current_buffer
->enable_multibyte_characters
))
8852 start_byte
= CHAR_TO_BYTE (XINT (start
));
8853 end_byte
= CHAR_TO_BYTE (XINT (end
));
8854 if (XINT (end
) - XINT (start
) == end_byte
- start_byte
)
8857 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
8859 if ((GPT
- XINT (start
)) < (XINT (end
) - GPT
))
8860 move_gap_both (XINT (start
), start_byte
);
8862 move_gap_both (XINT (end
), end_byte
);
8868 for (tail
= coding_system_list
; CONSP (tail
); tail
= XCDR (tail
))
8871 attrs
= AREF (CODING_SYSTEM_SPEC (elt
), 0);
8872 ASET (attrs
, coding_attr_trans_tbl
,
8873 get_translation_table (attrs
, 1, NULL
));
8874 list
= Fcons (Fcons (elt
, Fcons (attrs
, Qnil
)), list
);
8877 if (STRINGP (start
))
8878 p
= pbeg
= SDATA (start
);
8880 p
= pbeg
= BYTE_POS_ADDR (start_byte
);
8881 pend
= p
+ (end_byte
- start_byte
);
8883 while (p
< pend
&& ASCII_BYTE_P (*p
)) p
++, pos
++;
8884 while (p
< pend
&& ASCII_BYTE_P (*(pend
- 1))) pend
--;
8888 if (ASCII_BYTE_P (*p
))
8892 c
= STRING_CHAR_ADVANCE (p
);
8894 charset_map_loaded
= 0;
8895 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
8897 elt
= XCDR (XCAR (tail
));
8898 if (! char_encodable_p (c
, XCAR (elt
)))
8899 XSETCDR (elt
, Fcons (make_number (pos
), XCDR (elt
)));
8901 if (charset_map_loaded
)
8903 EMACS_INT p_offset
= p
- pbeg
, pend_offset
= pend
- pbeg
;
8905 if (STRINGP (start
))
8906 pbeg
= SDATA (start
);
8908 pbeg
= BYTE_POS_ADDR (start_byte
);
8909 p
= pbeg
+ p_offset
;
8910 pend
= pbeg
+ pend_offset
;
8918 for (; CONSP (tail
); tail
= XCDR (tail
))
8921 if (CONSP (XCDR (XCDR (elt
))))
8922 list
= Fcons (Fcons (XCAR (elt
), Fnreverse (XCDR (XCDR (elt
)))),
8931 code_convert_region (Lisp_Object start
, Lisp_Object end
,
8932 Lisp_Object coding_system
, Lisp_Object dst_object
,
8933 int encodep
, int norecord
)
8935 struct coding_system coding
;
8936 EMACS_INT from
, from_byte
, to
, to_byte
;
8937 Lisp_Object src_object
;
8939 CHECK_NUMBER_COERCE_MARKER (start
);
8940 CHECK_NUMBER_COERCE_MARKER (end
);
8941 if (NILP (coding_system
))
8942 coding_system
= Qno_conversion
;
8944 CHECK_CODING_SYSTEM (coding_system
);
8945 src_object
= Fcurrent_buffer ();
8946 if (NILP (dst_object
))
8947 dst_object
= src_object
;
8948 else if (! EQ (dst_object
, Qt
))
8949 CHECK_BUFFER (dst_object
);
8951 validate_region (&start
, &end
);
8952 from
= XFASTINT (start
);
8953 from_byte
= CHAR_TO_BYTE (from
);
8954 to
= XFASTINT (end
);
8955 to_byte
= CHAR_TO_BYTE (to
);
8957 setup_coding_system (coding_system
, &coding
);
8958 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
8961 encode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
8964 decode_coding_object (&coding
, src_object
, from
, from_byte
, to
, to_byte
,
8967 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
8969 return (BUFFERP (dst_object
)
8970 ? make_number (coding
.produced_char
)
8971 : coding
.dst_object
);
8975 DEFUN ("decode-coding-region", Fdecode_coding_region
, Sdecode_coding_region
,
8976 3, 4, "r\nzCoding system: ",
8977 doc
: /* Decode the current region from the specified coding system.
8978 When called from a program, takes four arguments:
8979 START, END, CODING-SYSTEM, and DESTINATION.
8980 START and END are buffer positions.
8982 Optional 4th arguments DESTINATION specifies where the decoded text goes.
8983 If nil, the region between START and END is replaced by the decoded text.
8984 If buffer, the decoded text is inserted in that buffer after point (point
8986 In those cases, the length of the decoded text is returned.
8987 If DESTINATION is t, the decoded text is returned.
8989 This function sets `last-coding-system-used' to the precise coding system
8990 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
8991 not fully specified.) */)
8992 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
8994 return code_convert_region (start
, end
, coding_system
, destination
, 0, 0);
8997 DEFUN ("encode-coding-region", Fencode_coding_region
, Sencode_coding_region
,
8998 3, 4, "r\nzCoding system: ",
8999 doc
: /* Encode the current region by specified coding system.
9000 When called from a program, takes four arguments:
9001 START, END, CODING-SYSTEM and DESTINATION.
9002 START and END are buffer positions.
9004 Optional 4th arguments DESTINATION specifies where the encoded text goes.
9005 If nil, the region between START and END is replace by the encoded text.
9006 If buffer, the encoded text is inserted in that buffer after point (point
9008 In those cases, the length of the encoded text is returned.
9009 If DESTINATION is t, the encoded text is returned.
9011 This function sets `last-coding-system-used' to the precise coding system
9012 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9013 not fully specified.) */)
9014 (Lisp_Object start
, Lisp_Object end
, Lisp_Object coding_system
, Lisp_Object destination
)
9016 return code_convert_region (start
, end
, coding_system
, destination
, 1, 0);
9020 code_convert_string (string
, coding_system
, dst_object
,
9021 encodep
, nocopy
, norecord
)
9022 Lisp_Object string
, coding_system
, dst_object
;
9023 int encodep
, nocopy
, norecord
;
9025 struct coding_system coding
;
9026 EMACS_INT chars
, bytes
;
9028 CHECK_STRING (string
);
9029 if (NILP (coding_system
))
9032 Vlast_coding_system_used
= Qno_conversion
;
9033 if (NILP (dst_object
))
9034 return (nocopy
? Fcopy_sequence (string
) : string
);
9037 if (NILP (coding_system
))
9038 coding_system
= Qno_conversion
;
9040 CHECK_CODING_SYSTEM (coding_system
);
9041 if (NILP (dst_object
))
9043 else if (! EQ (dst_object
, Qt
))
9044 CHECK_BUFFER (dst_object
);
9046 setup_coding_system (coding_system
, &coding
);
9047 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
9048 chars
= SCHARS (string
);
9049 bytes
= SBYTES (string
);
9051 encode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9053 decode_coding_object (&coding
, string
, 0, 0, chars
, bytes
, dst_object
);
9055 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
9057 return (BUFFERP (dst_object
)
9058 ? make_number (coding
.produced_char
)
9059 : coding
.dst_object
);
9063 /* Encode or decode STRING according to CODING_SYSTEM.
9064 Do not set Vlast_coding_system_used.
9066 This function is called only from macros DECODE_FILE and
9067 ENCODE_FILE, thus we ignore character composition. */
9070 code_convert_string_norecord (Lisp_Object string
, Lisp_Object coding_system
,
9073 return code_convert_string (string
, coding_system
, Qt
, encodep
, 0, 1);
9077 DEFUN ("decode-coding-string", Fdecode_coding_string
, Sdecode_coding_string
,
9079 doc
: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
9081 Optional third arg NOCOPY non-nil means it is OK to return STRING itself
9082 if the decoding operation is trivial.
9084 Optional fourth arg BUFFER non-nil means that the decoded text is
9085 inserted in that buffer after point (point does not move). In this
9086 case, the return value is the length of the decoded text.
9088 This function sets `last-coding-system-used' to the precise coding system
9089 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9090 not fully specified.) */)
9091 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9093 return code_convert_string (string
, coding_system
, buffer
,
9094 0, ! NILP (nocopy
), 0);
9097 DEFUN ("encode-coding-string", Fencode_coding_string
, Sencode_coding_string
,
9099 doc
: /* Encode STRING to CODING-SYSTEM, and return the result.
9101 Optional third arg NOCOPY non-nil means it is OK to return STRING
9102 itself if the encoding operation is trivial.
9104 Optional fourth arg BUFFER non-nil means that the encoded text is
9105 inserted in that buffer after point (point does not move). In this
9106 case, the return value is the length of the encoded text.
9108 This function sets `last-coding-system-used' to the precise coding system
9109 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
9110 not fully specified.) */)
9111 (Lisp_Object string
, Lisp_Object coding_system
, Lisp_Object nocopy
, Lisp_Object buffer
)
9113 return code_convert_string (string
, coding_system
, buffer
,
9114 1, ! NILP (nocopy
), 1);
9118 DEFUN ("decode-sjis-char", Fdecode_sjis_char
, Sdecode_sjis_char
, 1, 1, 0,
9119 doc
: /* Decode a Japanese character which has CODE in shift_jis encoding.
9120 Return the corresponding character. */)
9123 Lisp_Object spec
, attrs
, val
;
9124 struct charset
*charset_roman
, *charset_kanji
, *charset_kana
, *charset
;
9127 CHECK_NATNUM (code
);
9128 c
= XFASTINT (code
);
9129 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9130 attrs
= AREF (spec
, 0);
9132 if (ASCII_BYTE_P (c
)
9133 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9136 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9137 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9138 charset_kana
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9139 charset_kanji
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9142 charset
= charset_roman
;
9143 else if (c
>= 0xA0 && c
< 0xDF)
9145 charset
= charset_kana
;
9150 int s1
= c
>> 8, s2
= c
& 0xFF;
9152 if (s1
< 0x81 || (s1
> 0x9F && s1
< 0xE0) || s1
> 0xEF
9153 || s2
< 0x40 || s2
== 0x7F || s2
> 0xFC)
9154 error ("Invalid code: %d", code
);
9156 charset
= charset_kanji
;
9158 c
= DECODE_CHAR (charset
, c
);
9160 error ("Invalid code: %d", code
);
9161 return make_number (c
);
9165 DEFUN ("encode-sjis-char", Fencode_sjis_char
, Sencode_sjis_char
, 1, 1, 0,
9166 doc
: /* Encode a Japanese character CH to shift_jis encoding.
9167 Return the corresponding code in SJIS. */)
9170 Lisp_Object spec
, attrs
, charset_list
;
9172 struct charset
*charset
;
9175 CHECK_CHARACTER (ch
);
9177 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system
, spec
);
9178 attrs
= AREF (spec
, 0);
9180 if (ASCII_CHAR_P (c
)
9181 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9184 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9185 charset
= char_charset (c
, charset_list
, &code
);
9186 if (code
== CHARSET_INVALID_CODE (charset
))
9187 error ("Can't encode by shift_jis encoding: %d", c
);
9190 return make_number (code
);
9193 DEFUN ("decode-big5-char", Fdecode_big5_char
, Sdecode_big5_char
, 1, 1, 0,
9194 doc
: /* Decode a Big5 character which has CODE in BIG5 coding system.
9195 Return the corresponding character. */)
9198 Lisp_Object spec
, attrs
, val
;
9199 struct charset
*charset_roman
, *charset_big5
, *charset
;
9202 CHECK_NATNUM (code
);
9203 c
= XFASTINT (code
);
9204 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9205 attrs
= AREF (spec
, 0);
9207 if (ASCII_BYTE_P (c
)
9208 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9211 val
= CODING_ATTR_CHARSET_LIST (attrs
);
9212 charset_roman
= CHARSET_FROM_ID (XINT (XCAR (val
))), val
= XCDR (val
);
9213 charset_big5
= CHARSET_FROM_ID (XINT (XCAR (val
)));
9216 charset
= charset_roman
;
9219 int b1
= c
>> 8, b2
= c
& 0x7F;
9220 if (b1
< 0xA1 || b1
> 0xFE
9221 || b2
< 0x40 || (b2
> 0x7E && b2
< 0xA1) || b2
> 0xFE)
9222 error ("Invalid code: %d", code
);
9223 charset
= charset_big5
;
9225 c
= DECODE_CHAR (charset
, (unsigned )c
);
9227 error ("Invalid code: %d", code
);
9228 return make_number (c
);
9231 DEFUN ("encode-big5-char", Fencode_big5_char
, Sencode_big5_char
, 1, 1, 0,
9232 doc
: /* Encode the Big5 character CH to BIG5 coding system.
9233 Return the corresponding character code in Big5. */)
9236 Lisp_Object spec
, attrs
, charset_list
;
9237 struct charset
*charset
;
9241 CHECK_CHARACTER (ch
);
9243 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system
, spec
);
9244 attrs
= AREF (spec
, 0);
9245 if (ASCII_CHAR_P (c
)
9246 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs
)))
9249 charset_list
= CODING_ATTR_CHARSET_LIST (attrs
);
9250 charset
= char_charset (c
, charset_list
, &code
);
9251 if (code
== CHARSET_INVALID_CODE (charset
))
9252 error ("Can't encode by Big5 encoding: %d", c
);
9254 return make_number (code
);
9258 DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal
,
9259 Sset_terminal_coding_system_internal
, 1, 2, 0,
9260 doc
: /* Internal use only. */)
9261 (Lisp_Object coding_system
, Lisp_Object terminal
)
9263 struct coding_system
*terminal_coding
= TERMINAL_TERMINAL_CODING (get_terminal (terminal
, 1));
9264 CHECK_SYMBOL (coding_system
);
9265 setup_coding_system (Fcheck_coding_system (coding_system
), terminal_coding
);
9266 /* We had better not send unsafe characters to terminal. */
9267 terminal_coding
->mode
|= CODING_MODE_SAFE_ENCODING
;
9268 /* Characer composition should be disabled. */
9269 terminal_coding
->common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9270 terminal_coding
->src_multibyte
= 1;
9271 terminal_coding
->dst_multibyte
= 0;
9275 DEFUN ("set-safe-terminal-coding-system-internal",
9276 Fset_safe_terminal_coding_system_internal
,
9277 Sset_safe_terminal_coding_system_internal
, 1, 1, 0,
9278 doc
: /* Internal use only. */)
9279 (Lisp_Object coding_system
)
9281 CHECK_SYMBOL (coding_system
);
9282 setup_coding_system (Fcheck_coding_system (coding_system
),
9283 &safe_terminal_coding
);
9284 /* Characer composition should be disabled. */
9285 safe_terminal_coding
.common_flags
&= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9286 safe_terminal_coding
.src_multibyte
= 1;
9287 safe_terminal_coding
.dst_multibyte
= 0;
9291 DEFUN ("terminal-coding-system", Fterminal_coding_system
,
9292 Sterminal_coding_system
, 0, 1, 0,
9293 doc
: /* Return coding system specified for terminal output on the given terminal.
9294 TERMINAL may be a terminal object, a frame, or nil for the selected
9295 frame's terminal device. */)
9296 (Lisp_Object terminal
)
9298 struct coding_system
*terminal_coding
9299 = TERMINAL_TERMINAL_CODING (get_terminal (terminal
, 1));
9300 Lisp_Object coding_system
= CODING_ID_NAME (terminal_coding
->id
);
9302 /* For backward compatibility, return nil if it is `undecided'. */
9303 return (! EQ (coding_system
, Qundecided
) ? coding_system
: Qnil
);
9306 DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal
,
9307 Sset_keyboard_coding_system_internal
, 1, 2, 0,
9308 doc
: /* Internal use only. */)
9309 (Lisp_Object coding_system
, Lisp_Object terminal
)
9311 struct terminal
*t
= get_terminal (terminal
, 1);
9312 CHECK_SYMBOL (coding_system
);
9313 if (NILP (coding_system
))
9314 coding_system
= Qno_conversion
;
9316 Fcheck_coding_system (coding_system
);
9317 setup_coding_system (coding_system
, TERMINAL_KEYBOARD_CODING (t
));
9318 /* Characer composition should be disabled. */
9319 TERMINAL_KEYBOARD_CODING (t
)->common_flags
9320 &= ~CODING_ANNOTATE_COMPOSITION_MASK
;
9324 DEFUN ("keyboard-coding-system",
9325 Fkeyboard_coding_system
, Skeyboard_coding_system
, 0, 1, 0,
9326 doc
: /* Return coding system specified for decoding keyboard input. */)
9327 (Lisp_Object terminal
)
9329 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING
9330 (get_terminal (terminal
, 1))->id
);
9334 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system
,
9335 Sfind_operation_coding_system
, 1, MANY
, 0,
9336 doc
: /* Choose a coding system for an operation based on the target name.
9337 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9338 DECODING-SYSTEM is the coding system to use for decoding
9339 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9340 for encoding (in case OPERATION does encoding).
9342 The first argument OPERATION specifies an I/O primitive:
9343 For file I/O, `insert-file-contents' or `write-region'.
9344 For process I/O, `call-process', `call-process-region', or `start-process'.
9345 For network I/O, `open-network-stream'.
9347 The remaining arguments should be the same arguments that were passed
9348 to the primitive. Depending on which primitive, one of those arguments
9349 is selected as the TARGET. For example, if OPERATION does file I/O,
9350 whichever argument specifies the file name is TARGET.
9352 TARGET has a meaning which depends on OPERATION:
9353 For file I/O, TARGET is a file name (except for the special case below).
9354 For process I/O, TARGET is a process name.
9355 For network I/O, TARGET is a service name or a port number.
9357 This function looks up what is specified for TARGET in
9358 `file-coding-system-alist', `process-coding-system-alist',
9359 or `network-coding-system-alist' depending on OPERATION.
9360 They may specify a coding system, a cons of coding systems,
9361 or a function symbol to call.
9362 In the last case, we call the function with one argument,
9363 which is a list of all the arguments given to this function.
9364 If the function can't decide a coding system, it can return
9365 `undecided' so that the normal code-detection is performed.
9367 If OPERATION is `insert-file-contents', the argument corresponding to
9368 TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
9369 file name to look up, and BUFFER is a buffer that contains the file's
9370 contents (not yet decoded). If `file-coding-system-alist' specifies a
9371 function to call for FILENAME, that function should examine the
9372 contents of BUFFER instead of reading the file.
9374 usage: (find-operation-coding-system OPERATION ARGUMENTS...) */)
9375 (int nargs
, Lisp_Object
*args
)
9377 Lisp_Object operation
, target_idx
, target
, val
;
9378 register Lisp_Object chain
;
9381 error ("Too few arguments");
9382 operation
= args
[0];
9383 if (!SYMBOLP (operation
)
9384 || !INTEGERP (target_idx
= Fget (operation
, Qtarget_idx
)))
9385 error ("Invalid first argument");
9386 if (nargs
< 1 + XINT (target_idx
))
9387 error ("Too few arguments for operation: %s",
9388 SDATA (SYMBOL_NAME (operation
)));
9389 target
= args
[XINT (target_idx
) + 1];
9390 if (!(STRINGP (target
)
9391 || (EQ (operation
, Qinsert_file_contents
) && CONSP (target
)
9392 && STRINGP (XCAR (target
)) && BUFFERP (XCDR (target
)))
9393 || (EQ (operation
, Qopen_network_stream
) && INTEGERP (target
))))
9394 error ("Invalid %dth argument", XINT (target_idx
) + 1);
9396 target
= XCAR (target
);
9398 chain
= ((EQ (operation
, Qinsert_file_contents
)
9399 || EQ (operation
, Qwrite_region
))
9400 ? Vfile_coding_system_alist
9401 : (EQ (operation
, Qopen_network_stream
)
9402 ? Vnetwork_coding_system_alist
9403 : Vprocess_coding_system_alist
));
9407 for (; CONSP (chain
); chain
= XCDR (chain
))
9413 && ((STRINGP (target
)
9414 && STRINGP (XCAR (elt
))
9415 && fast_string_match (XCAR (elt
), target
) >= 0)
9416 || (INTEGERP (target
) && EQ (target
, XCAR (elt
)))))
9419 /* Here, if VAL is both a valid coding system and a valid
9420 function symbol, we return VAL as a coding system. */
9423 if (! SYMBOLP (val
))
9425 if (! NILP (Fcoding_system_p (val
)))
9426 return Fcons (val
, val
);
9427 if (! NILP (Ffboundp (val
)))
9429 /* We use call1 rather than safe_call1
9430 so as to get bug reports about functions called here
9431 which don't handle the current interface. */
9432 val
= call1 (val
, Flist (nargs
, args
));
9435 if (SYMBOLP (val
) && ! NILP (Fcoding_system_p (val
)))
9436 return Fcons (val
, val
);
9444 DEFUN ("set-coding-system-priority", Fset_coding_system_priority
,
9445 Sset_coding_system_priority
, 0, MANY
, 0,
9446 doc
: /* Assign higher priority to the coding systems given as arguments.
9447 If multiple coding systems belong to the same category,
9448 all but the first one are ignored.
9450 usage: (set-coding-system-priority &rest coding-systems) */)
9451 (int nargs
, Lisp_Object
*args
)
9454 int changed
[coding_category_max
];
9455 enum coding_category priorities
[coding_category_max
];
9457 memset (changed
, 0, sizeof changed
);
9459 for (i
= j
= 0; i
< nargs
; i
++)
9461 enum coding_category category
;
9462 Lisp_Object spec
, attrs
;
9464 CHECK_CODING_SYSTEM_GET_SPEC (args
[i
], spec
);
9465 attrs
= AREF (spec
, 0);
9466 category
= XINT (CODING_ATTR_CATEGORY (attrs
));
9467 if (changed
[category
])
9468 /* Ignore this coding system because a coding system of the
9469 same category already had a higher priority. */
9471 changed
[category
] = 1;
9472 priorities
[j
++] = category
;
9473 if (coding_categories
[category
].id
>= 0
9474 && ! EQ (args
[i
], CODING_ID_NAME (coding_categories
[category
].id
)))
9475 setup_coding_system (args
[i
], &coding_categories
[category
]);
9476 Fset (AREF (Vcoding_category_table
, category
), args
[i
]);
9479 /* Now we have decided top J priorities. Reflect the order of the
9480 original priorities to the remaining priorities. */
9482 for (i
= j
, j
= 0; i
< coding_category_max
; i
++, j
++)
9484 while (j
< coding_category_max
9485 && changed
[coding_priorities
[j
]])
9487 if (j
== coding_category_max
)
9489 priorities
[i
] = coding_priorities
[j
];
9492 memcpy (coding_priorities
, priorities
, sizeof priorities
);
9494 /* Update `coding-category-list'. */
9495 Vcoding_category_list
= Qnil
;
9496 for (i
= coding_category_max
- 1; i
>= 0; i
--)
9497 Vcoding_category_list
9498 = Fcons (AREF (Vcoding_category_table
, priorities
[i
]),
9499 Vcoding_category_list
);
9504 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list
,
9505 Scoding_system_priority_list
, 0, 1, 0,
9506 doc
: /* Return a list of coding systems ordered by their priorities.
9507 The list contains a subset of coding systems; i.e. coding systems
9508 assigned to each coding category (see `coding-category-list').
9510 HIGHESTP non-nil means just return the highest priority one. */)
9511 (Lisp_Object highestp
)
9516 for (i
= 0, val
= Qnil
; i
< coding_category_max
; i
++)
9518 enum coding_category category
= coding_priorities
[i
];
9519 int id
= coding_categories
[category
].id
;
9524 attrs
= CODING_ID_ATTRS (id
);
9525 if (! NILP (highestp
))
9526 return CODING_ATTR_BASE_NAME (attrs
);
9527 val
= Fcons (CODING_ATTR_BASE_NAME (attrs
), val
);
9529 return Fnreverse (val
);
9532 static const char *const suffixes
[] = { "-unix", "-dos", "-mac" };
9535 make_subsidiaries (Lisp_Object base
)
9537 Lisp_Object subsidiaries
;
9538 int base_name_len
= SBYTES (SYMBOL_NAME (base
));
9539 char *buf
= (char *) alloca (base_name_len
+ 6);
9542 memcpy (buf
, SDATA (SYMBOL_NAME (base
)), base_name_len
);
9543 subsidiaries
= Fmake_vector (make_number (3), Qnil
);
9544 for (i
= 0; i
< 3; i
++)
9546 memcpy (buf
+ base_name_len
, suffixes
[i
], strlen (suffixes
[i
]) + 1);
9547 ASET (subsidiaries
, i
, intern (buf
));
9549 return subsidiaries
;
9553 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal
,
9554 Sdefine_coding_system_internal
, coding_arg_max
, MANY
, 0,
9555 doc
: /* For internal use only.
9556 usage: (define-coding-system-internal ...) */)
9557 (int nargs
, Lisp_Object
*args
)
9560 Lisp_Object spec_vec
; /* [ ATTRS ALIASE EOL_TYPE ] */
9561 Lisp_Object attrs
; /* Vector of attributes. */
9562 Lisp_Object eol_type
;
9563 Lisp_Object aliases
;
9564 Lisp_Object coding_type
, charset_list
, safe_charsets
;
9565 enum coding_category category
;
9566 Lisp_Object tail
, val
;
9567 int max_charset_id
= 0;
9570 if (nargs
< coding_arg_max
)
9573 attrs
= Fmake_vector (make_number (coding_attr_last_index
), Qnil
);
9575 name
= args
[coding_arg_name
];
9576 CHECK_SYMBOL (name
);
9577 CODING_ATTR_BASE_NAME (attrs
) = name
;
9579 val
= args
[coding_arg_mnemonic
];
9580 if (! STRINGP (val
))
9581 CHECK_CHARACTER (val
);
9582 CODING_ATTR_MNEMONIC (attrs
) = val
;
9584 coding_type
= args
[coding_arg_coding_type
];
9585 CHECK_SYMBOL (coding_type
);
9586 CODING_ATTR_TYPE (attrs
) = coding_type
;
9588 charset_list
= args
[coding_arg_charset_list
];
9589 if (SYMBOLP (charset_list
))
9591 if (EQ (charset_list
, Qiso_2022
))
9593 if (! EQ (coding_type
, Qiso_2022
))
9594 error ("Invalid charset-list");
9595 charset_list
= Viso_2022_charset_list
;
9597 else if (EQ (charset_list
, Qemacs_mule
))
9599 if (! EQ (coding_type
, Qemacs_mule
))
9600 error ("Invalid charset-list");
9601 charset_list
= Vemacs_mule_charset_list
;
9603 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9604 if (max_charset_id
< XFASTINT (XCAR (tail
)))
9605 max_charset_id
= XFASTINT (XCAR (tail
));
9609 charset_list
= Fcopy_sequence (charset_list
);
9610 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9612 struct charset
*charset
;
9615 CHECK_CHARSET_GET_CHARSET (val
, charset
);
9616 if (EQ (coding_type
, Qiso_2022
)
9617 ? CHARSET_ISO_FINAL (charset
) < 0
9618 : EQ (coding_type
, Qemacs_mule
)
9619 ? CHARSET_EMACS_MULE_ID (charset
) < 0
9621 error ("Can't handle charset `%s'",
9622 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9624 XSETCAR (tail
, make_number (charset
->id
));
9625 if (max_charset_id
< charset
->id
)
9626 max_charset_id
= charset
->id
;
9629 CODING_ATTR_CHARSET_LIST (attrs
) = charset_list
;
9631 safe_charsets
= make_uninit_string (max_charset_id
+ 1);
9632 memset (SDATA (safe_charsets
), 255, max_charset_id
+ 1);
9633 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9634 SSET (safe_charsets
, XFASTINT (XCAR (tail
)), 0);
9635 CODING_ATTR_SAFE_CHARSETS (attrs
) = safe_charsets
;
9637 CODING_ATTR_ASCII_COMPAT (attrs
) = args
[coding_arg_ascii_compatible_p
];
9639 val
= args
[coding_arg_decode_translation_table
];
9640 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
9642 CODING_ATTR_DECODE_TBL (attrs
) = val
;
9644 val
= args
[coding_arg_encode_translation_table
];
9645 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
9647 CODING_ATTR_ENCODE_TBL (attrs
) = val
;
9649 val
= args
[coding_arg_post_read_conversion
];
9651 CODING_ATTR_POST_READ (attrs
) = val
;
9653 val
= args
[coding_arg_pre_write_conversion
];
9655 CODING_ATTR_PRE_WRITE (attrs
) = val
;
9657 val
= args
[coding_arg_default_char
];
9659 CODING_ATTR_DEFAULT_CHAR (attrs
) = make_number (' ');
9662 CHECK_CHARACTER (val
);
9663 CODING_ATTR_DEFAULT_CHAR (attrs
) = val
;
9666 val
= args
[coding_arg_for_unibyte
];
9667 CODING_ATTR_FOR_UNIBYTE (attrs
) = NILP (val
) ? Qnil
: Qt
;
9669 val
= args
[coding_arg_plist
];
9671 CODING_ATTR_PLIST (attrs
) = val
;
9673 if (EQ (coding_type
, Qcharset
))
9675 /* Generate a lisp vector of 256 elements. Each element is nil,
9676 integer, or a list of charset IDs.
9678 If Nth element is nil, the byte code N is invalid in this
9681 If Nth element is a number NUM, N is the first byte of a
9682 charset whose ID is NUM.
9684 If Nth element is a list of charset IDs, N is the first byte
9685 of one of them. The list is sorted by dimensions of the
9686 charsets. A charset of smaller dimension comes firtst. */
9687 val
= Fmake_vector (make_number (256), Qnil
);
9689 for (tail
= charset_list
; CONSP (tail
); tail
= XCDR (tail
))
9691 struct charset
*charset
= CHARSET_FROM_ID (XFASTINT (XCAR (tail
)));
9692 int dim
= CHARSET_DIMENSION (charset
);
9693 int idx
= (dim
- 1) * 4;
9695 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9696 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9698 for (i
= charset
->code_space
[idx
];
9699 i
<= charset
->code_space
[idx
+ 1]; i
++)
9701 Lisp_Object tmp
, tmp2
;
9704 tmp
= AREF (val
, i
);
9707 else if (NUMBERP (tmp
))
9709 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp
)));
9711 tmp
= Fcons (XCAR (tail
), Fcons (tmp
, Qnil
));
9713 tmp
= Fcons (tmp
, Fcons (XCAR (tail
), Qnil
));
9717 for (tmp2
= tmp
; CONSP (tmp2
); tmp2
= XCDR (tmp2
))
9719 dim2
= CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2
))));
9724 tmp
= nconc2 (tmp
, Fcons (XCAR (tail
), Qnil
));
9727 XSETCDR (tmp2
, Fcons (XCAR (tmp2
), XCDR (tmp2
)));
9728 XSETCAR (tmp2
, XCAR (tail
));
9734 ASET (attrs
, coding_attr_charset_valids
, val
);
9735 category
= coding_category_charset
;
9737 else if (EQ (coding_type
, Qccl
))
9741 if (nargs
< coding_arg_ccl_max
)
9744 val
= args
[coding_arg_ccl_decoder
];
9745 CHECK_CCL_PROGRAM (val
);
9747 val
= Fcopy_sequence (val
);
9748 ASET (attrs
, coding_attr_ccl_decoder
, val
);
9750 val
= args
[coding_arg_ccl_encoder
];
9751 CHECK_CCL_PROGRAM (val
);
9753 val
= Fcopy_sequence (val
);
9754 ASET (attrs
, coding_attr_ccl_encoder
, val
);
9756 val
= args
[coding_arg_ccl_valids
];
9757 valids
= Fmake_string (make_number (256), make_number (0));
9758 for (tail
= val
; !NILP (tail
); tail
= Fcdr (tail
))
9765 from
= to
= XINT (val
);
9766 if (from
< 0 || from
> 255)
9767 args_out_of_range_3 (val
, make_number (0), make_number (255));
9772 CHECK_NATNUM_CAR (val
);
9773 CHECK_NATNUM_CDR (val
);
9774 from
= XINT (XCAR (val
));
9776 args_out_of_range_3 (XCAR (val
),
9777 make_number (0), make_number (255));
9778 to
= XINT (XCDR (val
));
9779 if (to
< from
|| to
> 255)
9780 args_out_of_range_3 (XCDR (val
),
9781 XCAR (val
), make_number (255));
9783 for (i
= from
; i
<= to
; i
++)
9784 SSET (valids
, i
, 1);
9786 ASET (attrs
, coding_attr_ccl_valids
, valids
);
9788 category
= coding_category_ccl
;
9790 else if (EQ (coding_type
, Qutf_16
))
9792 Lisp_Object bom
, endian
;
9794 CODING_ATTR_ASCII_COMPAT (attrs
) = Qnil
;
9796 if (nargs
< coding_arg_utf16_max
)
9799 bom
= args
[coding_arg_utf16_bom
];
9800 if (! NILP (bom
) && ! EQ (bom
, Qt
))
9804 CHECK_CODING_SYSTEM (val
);
9806 CHECK_CODING_SYSTEM (val
);
9808 ASET (attrs
, coding_attr_utf_bom
, bom
);
9810 endian
= args
[coding_arg_utf16_endian
];
9811 CHECK_SYMBOL (endian
);
9814 else if (! EQ (endian
, Qbig
) && ! EQ (endian
, Qlittle
))
9815 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian
)));
9816 ASET (attrs
, coding_attr_utf_16_endian
, endian
);
9818 category
= (CONSP (bom
)
9819 ? coding_category_utf_16_auto
9821 ? (EQ (endian
, Qbig
)
9822 ? coding_category_utf_16_be_nosig
9823 : coding_category_utf_16_le_nosig
)
9824 : (EQ (endian
, Qbig
)
9825 ? coding_category_utf_16_be
9826 : coding_category_utf_16_le
));
9828 else if (EQ (coding_type
, Qiso_2022
))
9830 Lisp_Object initial
, reg_usage
, request
, flags
;
9833 if (nargs
< coding_arg_iso2022_max
)
9836 initial
= Fcopy_sequence (args
[coding_arg_iso2022_initial
]);
9837 CHECK_VECTOR (initial
);
9838 for (i
= 0; i
< 4; i
++)
9840 val
= Faref (initial
, make_number (i
));
9843 struct charset
*charset
;
9845 CHECK_CHARSET_GET_CHARSET (val
, charset
);
9846 ASET (initial
, i
, make_number (CHARSET_ID (charset
)));
9847 if (i
== 0 && CHARSET_ASCII_COMPATIBLE_P (charset
))
9848 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9851 ASET (initial
, i
, make_number (-1));
9854 reg_usage
= args
[coding_arg_iso2022_reg_usage
];
9855 CHECK_CONS (reg_usage
);
9856 CHECK_NUMBER_CAR (reg_usage
);
9857 CHECK_NUMBER_CDR (reg_usage
);
9859 request
= Fcopy_sequence (args
[coding_arg_iso2022_request
]);
9860 for (tail
= request
; ! NILP (tail
); tail
= Fcdr (tail
))
9868 CHECK_CHARSET_GET_ID (tmp
, id
);
9869 CHECK_NATNUM_CDR (val
);
9870 if (XINT (XCDR (val
)) >= 4)
9871 error ("Invalid graphic register number: %d", XINT (XCDR (val
)));
9872 XSETCAR (val
, make_number (id
));
9875 flags
= args
[coding_arg_iso2022_flags
];
9876 CHECK_NATNUM (flags
);
9878 if (EQ (args
[coding_arg_charset_list
], Qiso_2022
))
9879 flags
= make_number (i
| CODING_ISO_FLAG_FULL_SUPPORT
);
9881 ASET (attrs
, coding_attr_iso_initial
, initial
);
9882 ASET (attrs
, coding_attr_iso_usage
, reg_usage
);
9883 ASET (attrs
, coding_attr_iso_request
, request
);
9884 ASET (attrs
, coding_attr_iso_flags
, flags
);
9885 setup_iso_safe_charsets (attrs
);
9887 if (i
& CODING_ISO_FLAG_SEVEN_BITS
)
9888 category
= ((i
& (CODING_ISO_FLAG_LOCKING_SHIFT
9889 | CODING_ISO_FLAG_SINGLE_SHIFT
))
9890 ? coding_category_iso_7_else
9891 : EQ (args
[coding_arg_charset_list
], Qiso_2022
)
9892 ? coding_category_iso_7
9893 : coding_category_iso_7_tight
);
9896 int id
= XINT (AREF (initial
, 1));
9898 category
= (((i
& CODING_ISO_FLAG_LOCKING_SHIFT
)
9899 || EQ (args
[coding_arg_charset_list
], Qiso_2022
)
9901 ? coding_category_iso_8_else
9902 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id
)) == 1)
9903 ? coding_category_iso_8_1
9904 : coding_category_iso_8_2
);
9906 if (category
!= coding_category_iso_8_1
9907 && category
!= coding_category_iso_8_2
)
9908 CODING_ATTR_ASCII_COMPAT (attrs
) = Qnil
;
9910 else if (EQ (coding_type
, Qemacs_mule
))
9912 if (EQ (args
[coding_arg_charset_list
], Qemacs_mule
))
9913 ASET (attrs
, coding_attr_emacs_mule_full
, Qt
);
9914 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9915 category
= coding_category_emacs_mule
;
9917 else if (EQ (coding_type
, Qshift_jis
))
9920 struct charset
*charset
;
9922 if (XINT (Flength (charset_list
)) != 3
9923 && XINT (Flength (charset_list
)) != 4)
9924 error ("There should be three or four charsets");
9926 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9927 if (CHARSET_DIMENSION (charset
) != 1)
9928 error ("Dimension of charset %s is not one",
9929 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9930 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9931 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9933 charset_list
= XCDR (charset_list
);
9934 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9935 if (CHARSET_DIMENSION (charset
) != 1)
9936 error ("Dimension of charset %s is not one",
9937 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9939 charset_list
= XCDR (charset_list
);
9940 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9941 if (CHARSET_DIMENSION (charset
) != 2)
9942 error ("Dimension of charset %s is not two",
9943 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9945 charset_list
= XCDR (charset_list
);
9946 if (! NILP (charset_list
))
9948 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9949 if (CHARSET_DIMENSION (charset
) != 2)
9950 error ("Dimension of charset %s is not two",
9951 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9954 category
= coding_category_sjis
;
9955 Vsjis_coding_system
= name
;
9957 else if (EQ (coding_type
, Qbig5
))
9959 struct charset
*charset
;
9961 if (XINT (Flength (charset_list
)) != 2)
9962 error ("There should be just two charsets");
9964 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9965 if (CHARSET_DIMENSION (charset
) != 1)
9966 error ("Dimension of charset %s is not one",
9967 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9968 if (CHARSET_ASCII_COMPATIBLE_P (charset
))
9969 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9971 charset_list
= XCDR (charset_list
);
9972 charset
= CHARSET_FROM_ID (XINT (XCAR (charset_list
)));
9973 if (CHARSET_DIMENSION (charset
) != 2)
9974 error ("Dimension of charset %s is not two",
9975 SDATA (SYMBOL_NAME (CHARSET_NAME (charset
))));
9977 category
= coding_category_big5
;
9978 Vbig5_coding_system
= name
;
9980 else if (EQ (coding_type
, Qraw_text
))
9982 category
= coding_category_raw_text
;
9983 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9985 else if (EQ (coding_type
, Qutf_8
))
9989 CODING_ATTR_ASCII_COMPAT (attrs
) = Qt
;
9991 if (nargs
< coding_arg_utf8_max
)
9994 bom
= args
[coding_arg_utf8_bom
];
9995 if (! NILP (bom
) && ! EQ (bom
, Qt
))
9999 CHECK_CODING_SYSTEM (val
);
10001 CHECK_CODING_SYSTEM (val
);
10003 ASET (attrs
, coding_attr_utf_bom
, bom
);
10005 category
= (CONSP (bom
) ? coding_category_utf_8_auto
10006 : NILP (bom
) ? coding_category_utf_8_nosig
10007 : coding_category_utf_8_sig
);
10009 else if (EQ (coding_type
, Qundecided
))
10010 category
= coding_category_undecided
;
10012 error ("Invalid coding system type: %s",
10013 SDATA (SYMBOL_NAME (coding_type
)));
10015 CODING_ATTR_CATEGORY (attrs
) = make_number (category
);
10016 CODING_ATTR_PLIST (attrs
)
10017 = Fcons (QCcategory
, Fcons (AREF (Vcoding_category_table
, category
),
10018 CODING_ATTR_PLIST (attrs
)));
10019 CODING_ATTR_PLIST (attrs
)
10020 = Fcons (QCascii_compatible_p
,
10021 Fcons (CODING_ATTR_ASCII_COMPAT (attrs
),
10022 CODING_ATTR_PLIST (attrs
)));
10024 eol_type
= args
[coding_arg_eol_type
];
10025 if (! NILP (eol_type
)
10026 && ! EQ (eol_type
, Qunix
)
10027 && ! EQ (eol_type
, Qdos
)
10028 && ! EQ (eol_type
, Qmac
))
10029 error ("Invalid eol-type");
10031 aliases
= Fcons (name
, Qnil
);
10033 if (NILP (eol_type
))
10035 eol_type
= make_subsidiaries (name
);
10036 for (i
= 0; i
< 3; i
++)
10038 Lisp_Object this_spec
, this_name
, this_aliases
, this_eol_type
;
10040 this_name
= AREF (eol_type
, i
);
10041 this_aliases
= Fcons (this_name
, Qnil
);
10042 this_eol_type
= (i
== 0 ? Qunix
: i
== 1 ? Qdos
: Qmac
);
10043 this_spec
= Fmake_vector (make_number (3), attrs
);
10044 ASET (this_spec
, 1, this_aliases
);
10045 ASET (this_spec
, 2, this_eol_type
);
10046 Fputhash (this_name
, this_spec
, Vcoding_system_hash_table
);
10047 Vcoding_system_list
= Fcons (this_name
, Vcoding_system_list
);
10048 val
= Fassoc (Fsymbol_name (this_name
), Vcoding_system_alist
);
10050 Vcoding_system_alist
10051 = Fcons (Fcons (Fsymbol_name (this_name
), Qnil
),
10052 Vcoding_system_alist
);
10056 spec_vec
= Fmake_vector (make_number (3), attrs
);
10057 ASET (spec_vec
, 1, aliases
);
10058 ASET (spec_vec
, 2, eol_type
);
10060 Fputhash (name
, spec_vec
, Vcoding_system_hash_table
);
10061 Vcoding_system_list
= Fcons (name
, Vcoding_system_list
);
10062 val
= Fassoc (Fsymbol_name (name
), Vcoding_system_alist
);
10064 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (name
), Qnil
),
10065 Vcoding_system_alist
);
10068 int id
= coding_categories
[category
].id
;
10070 if (id
< 0 || EQ (name
, CODING_ID_NAME (id
)))
10071 setup_coding_system (name
, &coding_categories
[category
]);
10077 return Fsignal (Qwrong_number_of_arguments
,
10078 Fcons (intern ("define-coding-system-internal"),
10079 make_number (nargs
)));
10083 DEFUN ("coding-system-put", Fcoding_system_put
, Scoding_system_put
,
10085 doc
: /* Change value in CODING-SYSTEM's property list PROP to VAL. */)
10086 (Lisp_Object coding_system
, Lisp_Object prop
, Lisp_Object val
)
10088 Lisp_Object spec
, attrs
;
10090 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10091 attrs
= AREF (spec
, 0);
10092 if (EQ (prop
, QCmnemonic
))
10094 if (! STRINGP (val
))
10095 CHECK_CHARACTER (val
);
10096 CODING_ATTR_MNEMONIC (attrs
) = val
;
10098 else if (EQ (prop
, QCdefault_char
))
10101 val
= make_number (' ');
10103 CHECK_CHARACTER (val
);
10104 CODING_ATTR_DEFAULT_CHAR (attrs
) = val
;
10106 else if (EQ (prop
, QCdecode_translation_table
))
10108 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10109 CHECK_SYMBOL (val
);
10110 CODING_ATTR_DECODE_TBL (attrs
) = val
;
10112 else if (EQ (prop
, QCencode_translation_table
))
10114 if (! CHAR_TABLE_P (val
) && ! CONSP (val
))
10115 CHECK_SYMBOL (val
);
10116 CODING_ATTR_ENCODE_TBL (attrs
) = val
;
10118 else if (EQ (prop
, QCpost_read_conversion
))
10120 CHECK_SYMBOL (val
);
10121 CODING_ATTR_POST_READ (attrs
) = val
;
10123 else if (EQ (prop
, QCpre_write_conversion
))
10125 CHECK_SYMBOL (val
);
10126 CODING_ATTR_PRE_WRITE (attrs
) = val
;
10128 else if (EQ (prop
, QCascii_compatible_p
))
10130 CODING_ATTR_ASCII_COMPAT (attrs
) = val
;
10133 CODING_ATTR_PLIST (attrs
)
10134 = Fplist_put (CODING_ATTR_PLIST (attrs
), prop
, val
);
10139 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias
,
10140 Sdefine_coding_system_alias
, 2, 2, 0,
10141 doc
: /* Define ALIAS as an alias for CODING-SYSTEM. */)
10142 (Lisp_Object alias
, Lisp_Object coding_system
)
10144 Lisp_Object spec
, aliases
, eol_type
, val
;
10146 CHECK_SYMBOL (alias
);
10147 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10148 aliases
= AREF (spec
, 1);
10149 /* ALIASES should be a list of length more than zero, and the first
10150 element is a base coding system. Append ALIAS at the tail of the
10152 while (!NILP (XCDR (aliases
)))
10153 aliases
= XCDR (aliases
);
10154 XSETCDR (aliases
, Fcons (alias
, Qnil
));
10156 eol_type
= AREF (spec
, 2);
10157 if (VECTORP (eol_type
))
10159 Lisp_Object subsidiaries
;
10162 subsidiaries
= make_subsidiaries (alias
);
10163 for (i
= 0; i
< 3; i
++)
10164 Fdefine_coding_system_alias (AREF (subsidiaries
, i
),
10165 AREF (eol_type
, i
));
10168 Fputhash (alias
, spec
, Vcoding_system_hash_table
);
10169 Vcoding_system_list
= Fcons (alias
, Vcoding_system_list
);
10170 val
= Fassoc (Fsymbol_name (alias
), Vcoding_system_alist
);
10172 Vcoding_system_alist
= Fcons (Fcons (Fsymbol_name (alias
), Qnil
),
10173 Vcoding_system_alist
);
10178 DEFUN ("coding-system-base", Fcoding_system_base
, Scoding_system_base
,
10180 doc
: /* Return the base of CODING-SYSTEM.
10181 Any alias or subsidiary coding system is not a base coding system. */)
10182 (Lisp_Object coding_system
)
10184 Lisp_Object spec
, attrs
;
10186 if (NILP (coding_system
))
10187 return (Qno_conversion
);
10188 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10189 attrs
= AREF (spec
, 0);
10190 return CODING_ATTR_BASE_NAME (attrs
);
10193 DEFUN ("coding-system-plist", Fcoding_system_plist
, Scoding_system_plist
,
10195 doc
: "Return the property list of CODING-SYSTEM.")
10196 (Lisp_Object coding_system
)
10198 Lisp_Object spec
, attrs
;
10200 if (NILP (coding_system
))
10201 coding_system
= Qno_conversion
;
10202 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10203 attrs
= AREF (spec
, 0);
10204 return CODING_ATTR_PLIST (attrs
);
10208 DEFUN ("coding-system-aliases", Fcoding_system_aliases
, Scoding_system_aliases
,
10210 doc
: /* Return the list of aliases of CODING-SYSTEM. */)
10211 (Lisp_Object coding_system
)
10215 if (NILP (coding_system
))
10216 coding_system
= Qno_conversion
;
10217 CHECK_CODING_SYSTEM_GET_SPEC (coding_system
, spec
);
10218 return AREF (spec
, 1);
10221 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type
,
10222 Scoding_system_eol_type
, 1, 1, 0,
10223 doc
: /* Return eol-type of CODING-SYSTEM.
10224 An eol-type is an integer 0, 1, 2, or a vector of coding systems.
10226 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF,
10227 and CR respectively.
10229 A vector value indicates that a format of end-of-line should be
10230 detected automatically. Nth element of the vector is the subsidiary
10231 coding system whose eol-type is N. */)
10232 (Lisp_Object coding_system
)
10234 Lisp_Object spec
, eol_type
;
10237 if (NILP (coding_system
))
10238 coding_system
= Qno_conversion
;
10239 if (! CODING_SYSTEM_P (coding_system
))
10241 spec
= CODING_SYSTEM_SPEC (coding_system
);
10242 eol_type
= AREF (spec
, 2);
10243 if (VECTORP (eol_type
))
10244 return Fcopy_sequence (eol_type
);
10245 n
= EQ (eol_type
, Qunix
) ? 0 : EQ (eol_type
, Qdos
) ? 1 : 2;
10246 return make_number (n
);
10252 /*** 9. Post-amble ***/
10255 init_coding_once (void)
10259 for (i
= 0; i
< coding_category_max
; i
++)
10261 coding_categories
[i
].id
= -1;
10262 coding_priorities
[i
] = i
;
10265 /* ISO2022 specific initialize routine. */
10266 for (i
= 0; i
< 0x20; i
++)
10267 iso_code_class
[i
] = ISO_control_0
;
10268 for (i
= 0x21; i
< 0x7F; i
++)
10269 iso_code_class
[i
] = ISO_graphic_plane_0
;
10270 for (i
= 0x80; i
< 0xA0; i
++)
10271 iso_code_class
[i
] = ISO_control_1
;
10272 for (i
= 0xA1; i
< 0xFF; i
++)
10273 iso_code_class
[i
] = ISO_graphic_plane_1
;
10274 iso_code_class
[0x20] = iso_code_class
[0x7F] = ISO_0x20_or_0x7F
;
10275 iso_code_class
[0xA0] = iso_code_class
[0xFF] = ISO_0xA0_or_0xFF
;
10276 iso_code_class
[ISO_CODE_SO
] = ISO_shift_out
;
10277 iso_code_class
[ISO_CODE_SI
] = ISO_shift_in
;
10278 iso_code_class
[ISO_CODE_SS2_7
] = ISO_single_shift_2_7
;
10279 iso_code_class
[ISO_CODE_ESC
] = ISO_escape
;
10280 iso_code_class
[ISO_CODE_SS2
] = ISO_single_shift_2
;
10281 iso_code_class
[ISO_CODE_SS3
] = ISO_single_shift_3
;
10282 iso_code_class
[ISO_CODE_CSI
] = ISO_control_sequence_introducer
;
10284 for (i
= 0; i
< 256; i
++)
10286 emacs_mule_bytes
[i
] = 1;
10288 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_11
] = 3;
10289 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_12
] = 3;
10290 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_21
] = 4;
10291 emacs_mule_bytes
[EMACS_MULE_LEADING_CODE_PRIVATE_22
] = 4;
10297 syms_of_coding (void)
10299 staticpro (&Vcoding_system_hash_table
);
10301 Lisp_Object args
[2];
10304 Vcoding_system_hash_table
= Fmake_hash_table (2, args
);
10307 staticpro (&Vsjis_coding_system
);
10308 Vsjis_coding_system
= Qnil
;
10310 staticpro (&Vbig5_coding_system
);
10311 Vbig5_coding_system
= Qnil
;
10313 staticpro (&Vcode_conversion_reused_workbuf
);
10314 Vcode_conversion_reused_workbuf
= Qnil
;
10316 staticpro (&Vcode_conversion_workbuf_name
);
10317 Vcode_conversion_workbuf_name
= make_pure_c_string (" *code-conversion-work*");
10319 reused_workbuf_in_use
= 0;
10321 DEFSYM (Qcharset
, "charset");
10322 DEFSYM (Qtarget_idx
, "target-idx");
10323 DEFSYM (Qcoding_system_history
, "coding-system-history");
10324 Fset (Qcoding_system_history
, Qnil
);
10326 /* Target FILENAME is the first argument. */
10327 Fput (Qinsert_file_contents
, Qtarget_idx
, make_number (0));
10328 /* Target FILENAME is the third argument. */
10329 Fput (Qwrite_region
, Qtarget_idx
, make_number (2));
10331 DEFSYM (Qcall_process
, "call-process");
10332 /* Target PROGRAM is the first argument. */
10333 Fput (Qcall_process
, Qtarget_idx
, make_number (0));
10335 DEFSYM (Qcall_process_region
, "call-process-region");
10336 /* Target PROGRAM is the third argument. */
10337 Fput (Qcall_process_region
, Qtarget_idx
, make_number (2));
10339 DEFSYM (Qstart_process
, "start-process");
10340 /* Target PROGRAM is the third argument. */
10341 Fput (Qstart_process
, Qtarget_idx
, make_number (2));
10343 DEFSYM (Qopen_network_stream
, "open-network-stream");
10344 /* Target SERVICE is the fourth argument. */
10345 Fput (Qopen_network_stream
, Qtarget_idx
, make_number (3));
10347 DEFSYM (Qcoding_system
, "coding-system");
10348 DEFSYM (Qcoding_aliases
, "coding-aliases");
10350 DEFSYM (Qeol_type
, "eol-type");
10351 DEFSYM (Qunix
, "unix");
10352 DEFSYM (Qdos
, "dos");
10354 DEFSYM (Qbuffer_file_coding_system
, "buffer-file-coding-system");
10355 DEFSYM (Qpost_read_conversion
, "post-read-conversion");
10356 DEFSYM (Qpre_write_conversion
, "pre-write-conversion");
10357 DEFSYM (Qdefault_char
, "default-char");
10358 DEFSYM (Qundecided
, "undecided");
10359 DEFSYM (Qno_conversion
, "no-conversion");
10360 DEFSYM (Qraw_text
, "raw-text");
10362 DEFSYM (Qiso_2022
, "iso-2022");
10364 DEFSYM (Qutf_8
, "utf-8");
10365 DEFSYM (Qutf_8_emacs
, "utf-8-emacs");
10367 DEFSYM (Qutf_16
, "utf-16");
10368 DEFSYM (Qbig
, "big");
10369 DEFSYM (Qlittle
, "little");
10371 DEFSYM (Qshift_jis
, "shift-jis");
10372 DEFSYM (Qbig5
, "big5");
10374 DEFSYM (Qcoding_system_p
, "coding-system-p");
10376 DEFSYM (Qcoding_system_error
, "coding-system-error");
10377 Fput (Qcoding_system_error
, Qerror_conditions
,
10378 pure_cons (Qcoding_system_error
, pure_cons (Qerror
, Qnil
)));
10379 Fput (Qcoding_system_error
, Qerror_message
,
10380 make_pure_c_string ("Invalid coding system"));
10382 /* Intern this now in case it isn't already done.
10383 Setting this variable twice is harmless.
10384 But don't staticpro it here--that is done in alloc.c. */
10385 Qchar_table_extra_slots
= intern_c_string ("char-table-extra-slots");
10387 DEFSYM (Qtranslation_table
, "translation-table");
10388 Fput (Qtranslation_table
, Qchar_table_extra_slots
, make_number (2));
10389 DEFSYM (Qtranslation_table_id
, "translation-table-id");
10390 DEFSYM (Qtranslation_table_for_decode
, "translation-table-for-decode");
10391 DEFSYM (Qtranslation_table_for_encode
, "translation-table-for-encode");
10393 DEFSYM (Qvalid_codes
, "valid-codes");
10395 DEFSYM (Qemacs_mule
, "emacs-mule");
10397 DEFSYM (QCcategory
, ":category");
10398 DEFSYM (QCmnemonic
, ":mnemonic");
10399 DEFSYM (QCdefault_char
, ":default-char");
10400 DEFSYM (QCdecode_translation_table
, ":decode-translation-table");
10401 DEFSYM (QCencode_translation_table
, ":encode-translation-table");
10402 DEFSYM (QCpost_read_conversion
, ":post-read-conversion");
10403 DEFSYM (QCpre_write_conversion
, ":pre-write-conversion");
10404 DEFSYM (QCascii_compatible_p
, ":ascii-compatible-p");
10406 Vcoding_category_table
10407 = Fmake_vector (make_number (coding_category_max
), Qnil
);
10408 staticpro (&Vcoding_category_table
);
10409 /* Followings are target of code detection. */
10410 ASET (Vcoding_category_table
, coding_category_iso_7
,
10411 intern_c_string ("coding-category-iso-7"));
10412 ASET (Vcoding_category_table
, coding_category_iso_7_tight
,
10413 intern_c_string ("coding-category-iso-7-tight"));
10414 ASET (Vcoding_category_table
, coding_category_iso_8_1
,
10415 intern_c_string ("coding-category-iso-8-1"));
10416 ASET (Vcoding_category_table
, coding_category_iso_8_2
,
10417 intern_c_string ("coding-category-iso-8-2"));
10418 ASET (Vcoding_category_table
, coding_category_iso_7_else
,
10419 intern_c_string ("coding-category-iso-7-else"));
10420 ASET (Vcoding_category_table
, coding_category_iso_8_else
,
10421 intern_c_string ("coding-category-iso-8-else"));
10422 ASET (Vcoding_category_table
, coding_category_utf_8_auto
,
10423 intern_c_string ("coding-category-utf-8-auto"));
10424 ASET (Vcoding_category_table
, coding_category_utf_8_nosig
,
10425 intern_c_string ("coding-category-utf-8"));
10426 ASET (Vcoding_category_table
, coding_category_utf_8_sig
,
10427 intern_c_string ("coding-category-utf-8-sig"));
10428 ASET (Vcoding_category_table
, coding_category_utf_16_be
,
10429 intern_c_string ("coding-category-utf-16-be"));
10430 ASET (Vcoding_category_table
, coding_category_utf_16_auto
,
10431 intern_c_string ("coding-category-utf-16-auto"));
10432 ASET (Vcoding_category_table
, coding_category_utf_16_le
,
10433 intern_c_string ("coding-category-utf-16-le"));
10434 ASET (Vcoding_category_table
, coding_category_utf_16_be_nosig
,
10435 intern_c_string ("coding-category-utf-16-be-nosig"));
10436 ASET (Vcoding_category_table
, coding_category_utf_16_le_nosig
,
10437 intern_c_string ("coding-category-utf-16-le-nosig"));
10438 ASET (Vcoding_category_table
, coding_category_charset
,
10439 intern_c_string ("coding-category-charset"));
10440 ASET (Vcoding_category_table
, coding_category_sjis
,
10441 intern_c_string ("coding-category-sjis"));
10442 ASET (Vcoding_category_table
, coding_category_big5
,
10443 intern_c_string ("coding-category-big5"));
10444 ASET (Vcoding_category_table
, coding_category_ccl
,
10445 intern_c_string ("coding-category-ccl"));
10446 ASET (Vcoding_category_table
, coding_category_emacs_mule
,
10447 intern_c_string ("coding-category-emacs-mule"));
10448 /* Followings are NOT target of code detection. */
10449 ASET (Vcoding_category_table
, coding_category_raw_text
,
10450 intern_c_string ("coding-category-raw-text"));
10451 ASET (Vcoding_category_table
, coding_category_undecided
,
10452 intern_c_string ("coding-category-undecided"));
10454 DEFSYM (Qinsufficient_source
, "insufficient-source");
10455 DEFSYM (Qinconsistent_eol
, "inconsistent-eol");
10456 DEFSYM (Qinvalid_source
, "invalid-source");
10457 DEFSYM (Qinterrupted
, "interrupted");
10458 DEFSYM (Qinsufficient_memory
, "insufficient-memory");
10459 DEFSYM (Qcoding_system_define_form
, "coding-system-define-form");
10461 defsubr (&Scoding_system_p
);
10462 defsubr (&Sread_coding_system
);
10463 defsubr (&Sread_non_nil_coding_system
);
10464 defsubr (&Scheck_coding_system
);
10465 defsubr (&Sdetect_coding_region
);
10466 defsubr (&Sdetect_coding_string
);
10467 defsubr (&Sfind_coding_systems_region_internal
);
10468 defsubr (&Sunencodable_char_position
);
10469 defsubr (&Scheck_coding_systems_region
);
10470 defsubr (&Sdecode_coding_region
);
10471 defsubr (&Sencode_coding_region
);
10472 defsubr (&Sdecode_coding_string
);
10473 defsubr (&Sencode_coding_string
);
10474 defsubr (&Sdecode_sjis_char
);
10475 defsubr (&Sencode_sjis_char
);
10476 defsubr (&Sdecode_big5_char
);
10477 defsubr (&Sencode_big5_char
);
10478 defsubr (&Sset_terminal_coding_system_internal
);
10479 defsubr (&Sset_safe_terminal_coding_system_internal
);
10480 defsubr (&Sterminal_coding_system
);
10481 defsubr (&Sset_keyboard_coding_system_internal
);
10482 defsubr (&Skeyboard_coding_system
);
10483 defsubr (&Sfind_operation_coding_system
);
10484 defsubr (&Sset_coding_system_priority
);
10485 defsubr (&Sdefine_coding_system_internal
);
10486 defsubr (&Sdefine_coding_system_alias
);
10487 defsubr (&Scoding_system_put
);
10488 defsubr (&Scoding_system_base
);
10489 defsubr (&Scoding_system_plist
);
10490 defsubr (&Scoding_system_aliases
);
10491 defsubr (&Scoding_system_eol_type
);
10492 defsubr (&Scoding_system_priority_list
);
10494 DEFVAR_LISP ("coding-system-list", &Vcoding_system_list
,
10495 doc
: /* List of coding systems.
10497 Do not alter the value of this variable manually. This variable should be
10498 updated by the functions `define-coding-system' and
10499 `define-coding-system-alias'. */);
10500 Vcoding_system_list
= Qnil
;
10502 DEFVAR_LISP ("coding-system-alist", &Vcoding_system_alist
,
10503 doc
: /* Alist of coding system names.
10504 Each element is one element list of coding system name.
10505 This variable is given to `completing-read' as COLLECTION argument.
10507 Do not alter the value of this variable manually. This variable should be
10508 updated by the functions `make-coding-system' and
10509 `define-coding-system-alias'. */);
10510 Vcoding_system_alist
= Qnil
;
10512 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list
,
10513 doc
: /* List of coding-categories (symbols) ordered by priority.
10515 On detecting a coding system, Emacs tries code detection algorithms
10516 associated with each coding-category one by one in this order. When
10517 one algorithm agrees with a byte sequence of source text, the coding
10518 system bound to the corresponding coding-category is selected.
10520 Don't modify this variable directly, but use `set-coding-priority'. */);
10524 Vcoding_category_list
= Qnil
;
10525 for (i
= coding_category_max
- 1; i
>= 0; i
--)
10526 Vcoding_category_list
10527 = Fcons (XVECTOR (Vcoding_category_table
)->contents
[i
],
10528 Vcoding_category_list
);
10531 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read
,
10532 doc
: /* Specify the coding system for read operations.
10533 It is useful to bind this variable with `let', but do not set it globally.
10534 If the value is a coding system, it is used for decoding on read operation.
10535 If not, an appropriate element is used from one of the coding system alists.
10536 There are three such tables: `file-coding-system-alist',
10537 `process-coding-system-alist', and `network-coding-system-alist'. */);
10538 Vcoding_system_for_read
= Qnil
;
10540 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write
,
10541 doc
: /* Specify the coding system for write operations.
10542 Programs bind this variable with `let', but you should not set it globally.
10543 If the value is a coding system, it is used for encoding of output,
10544 when writing it to a file and when sending it to a file or subprocess.
10546 If this does not specify a coding system, an appropriate element
10547 is used from one of the coding system alists.
10548 There are three such tables: `file-coding-system-alist',
10549 `process-coding-system-alist', and `network-coding-system-alist'.
10550 For output to files, if the above procedure does not specify a coding system,
10551 the value of `buffer-file-coding-system' is used. */);
10552 Vcoding_system_for_write
= Qnil
;
10554 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used
,
10556 Coding system used in the latest file or process I/O. */);
10557 Vlast_coding_system_used
= Qnil
;
10559 DEFVAR_LISP ("last-code-conversion-error", &Vlast_code_conversion_error
,
10561 Error status of the last code conversion.
10563 When an error was detected in the last code conversion, this variable
10564 is set to one of the following symbols.
10565 `insufficient-source'
10569 `insufficient-memory'
10570 When no error was detected, the value doesn't change. So, to check
10571 the error status of a code conversion by this variable, you must
10572 explicitly set this variable to nil before performing code
10574 Vlast_code_conversion_error
= Qnil
;
10576 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion
,
10578 *Non-nil means always inhibit code conversion of end-of-line format.
10579 See info node `Coding Systems' and info node `Text and Binary' concerning
10580 such conversion. */);
10581 inhibit_eol_conversion
= 0;
10583 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system
,
10585 Non-nil means process buffer inherits coding system of process output.
10586 Bind it to t if the process output is to be treated as if it were a file
10587 read from some filesystem. */);
10588 inherit_process_coding_system
= 0;
10590 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist
,
10592 Alist to decide a coding system to use for a file I/O operation.
10593 The format is ((PATTERN . VAL) ...),
10594 where PATTERN is a regular expression matching a file name,
10595 VAL is a coding system, a cons of coding systems, or a function symbol.
10596 If VAL is a coding system, it is used for both decoding and encoding
10598 If VAL is a cons of coding systems, the car part is used for decoding,
10599 and the cdr part is used for encoding.
10600 If VAL is a function symbol, the function must return a coding system
10601 or a cons of coding systems which are used as above. The function is
10602 called with an argument that is a list of the arguments with which
10603 `find-operation-coding-system' was called. If the function can't decide
10604 a coding system, it can return `undecided' so that the normal
10605 code-detection is performed.
10607 See also the function `find-operation-coding-system'
10608 and the variable `auto-coding-alist'. */);
10609 Vfile_coding_system_alist
= Qnil
;
10611 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist
,
10613 Alist to decide a coding system to use for a process I/O operation.
10614 The format is ((PATTERN . VAL) ...),
10615 where PATTERN is a regular expression matching a program name,
10616 VAL is a coding system, a cons of coding systems, or a function symbol.
10617 If VAL is a coding system, it is used for both decoding what received
10618 from the program and encoding what sent to the program.
10619 If VAL is a cons of coding systems, the car part is used for decoding,
10620 and the cdr part is used for encoding.
10621 If VAL is a function symbol, the function must return a coding system
10622 or a cons of coding systems which are used as above.
10624 See also the function `find-operation-coding-system'. */);
10625 Vprocess_coding_system_alist
= Qnil
;
10627 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist
,
10629 Alist to decide a coding system to use for a network I/O operation.
10630 The format is ((PATTERN . VAL) ...),
10631 where PATTERN is a regular expression matching a network service name
10632 or is a port number to connect to,
10633 VAL is a coding system, a cons of coding systems, or a function symbol.
10634 If VAL is a coding system, it is used for both decoding what received
10635 from the network stream and encoding what sent to the network stream.
10636 If VAL is a cons of coding systems, the car part is used for decoding,
10637 and the cdr part is used for encoding.
10638 If VAL is a function symbol, the function must return a coding system
10639 or a cons of coding systems which are used as above.
10641 See also the function `find-operation-coding-system'. */);
10642 Vnetwork_coding_system_alist
= Qnil
;
10644 DEFVAR_LISP ("locale-coding-system", &Vlocale_coding_system
,
10645 doc
: /* Coding system to use with system messages.
10646 Also used for decoding keyboard input on X Window system. */);
10647 Vlocale_coding_system
= Qnil
;
10649 /* The eol mnemonics are reset in startup.el system-dependently. */
10650 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix
,
10652 *String displayed in mode line for UNIX-like (LF) end-of-line format. */);
10653 eol_mnemonic_unix
= make_pure_c_string (":");
10655 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos
,
10657 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
10658 eol_mnemonic_dos
= make_pure_c_string ("\\");
10660 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac
,
10662 *String displayed in mode line for MAC-like (CR) end-of-line format. */);
10663 eol_mnemonic_mac
= make_pure_c_string ("/");
10665 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided
,
10667 *String displayed in mode line when end-of-line format is not yet determined. */);
10668 eol_mnemonic_undecided
= make_pure_c_string (":");
10670 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation
,
10672 *Non-nil enables character translation while encoding and decoding. */);
10673 Venable_character_translation
= Qt
;
10675 DEFVAR_LISP ("standard-translation-table-for-decode",
10676 &Vstandard_translation_table_for_decode
,
10677 doc
: /* Table for translating characters while decoding. */);
10678 Vstandard_translation_table_for_decode
= Qnil
;
10680 DEFVAR_LISP ("standard-translation-table-for-encode",
10681 &Vstandard_translation_table_for_encode
,
10682 doc
: /* Table for translating characters while encoding. */);
10683 Vstandard_translation_table_for_encode
= Qnil
;
10685 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_table
,
10686 doc
: /* Alist of charsets vs revision numbers.
10687 While encoding, if a charset (car part of an element) is found,
10688 designate it with the escape sequence identifying revision (cdr part
10689 of the element). */);
10690 Vcharset_revision_table
= Qnil
;
10692 DEFVAR_LISP ("default-process-coding-system",
10693 &Vdefault_process_coding_system
,
10694 doc
: /* Cons of coding systems used for process I/O by default.
10695 The car part is used for decoding a process output,
10696 the cdr part is used for encoding a text to be sent to a process. */);
10697 Vdefault_process_coding_system
= Qnil
;
10699 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table
,
10701 Table of extra Latin codes in the range 128..159 (inclusive).
10702 This is a vector of length 256.
10703 If Nth element is non-nil, the existence of code N in a file
10704 \(or output of subprocess) doesn't prevent it to be detected as
10705 a coding system of ISO 2022 variant which has a flag
10706 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
10707 or reading output of a subprocess.
10708 Only 128th through 159th elements have a meaning. */);
10709 Vlatin_extra_code_table
= Fmake_vector (make_number (256), Qnil
);
10711 DEFVAR_LISP ("select-safe-coding-system-function",
10712 &Vselect_safe_coding_system_function
,
10714 Function to call to select safe coding system for encoding a text.
10716 If set, this function is called to force a user to select a proper
10717 coding system which can encode the text in the case that a default
10718 coding system used in each operation can't encode the text. The
10719 function should take care that the buffer is not modified while
10720 the coding system is being selected.
10722 The default value is `select-safe-coding-system' (which see). */);
10723 Vselect_safe_coding_system_function
= Qnil
;
10725 DEFVAR_BOOL ("coding-system-require-warning",
10726 &coding_system_require_warning
,
10727 doc
: /* Internal use only.
10728 If non-nil, on writing a file, `select-safe-coding-system-function' is
10729 called even if `coding-system-for-write' is non-nil. The command
10730 `universal-coding-system-argument' binds this variable to t temporarily. */);
10731 coding_system_require_warning
= 0;
10734 DEFVAR_BOOL ("inhibit-iso-escape-detection",
10735 &inhibit_iso_escape_detection
,
10737 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection.
10739 When Emacs reads text, it tries to detect how the text is encoded.
10740 This code detection is sensitive to escape sequences. If Emacs sees
10741 a valid ISO-2022 escape sequence, it assumes the text is encoded in one
10742 of the ISO2022 encodings, and decodes text by the corresponding coding
10743 system (e.g. `iso-2022-7bit').
10745 However, there may be a case that you want to read escape sequences in
10746 a file as is. In such a case, you can set this variable to non-nil.
10747 Then the code detection will ignore any escape sequences, and no text is
10748 detected as encoded in some ISO-2022 encoding. The result is that all
10749 escape sequences become visible in a buffer.
10751 The default value is nil, and it is strongly recommended not to change
10752 it. That is because many Emacs Lisp source files that contain
10753 non-ASCII characters are encoded by the coding system `iso-2022-7bit'
10754 in Emacs's distribution, and they won't be decoded correctly on
10755 reading if you suppress escape sequence detection.
10757 The other way to read escape sequences in a file without decoding is
10758 to explicitly specify some coding system that doesn't use ISO-2022
10759 escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argument]. */);
10760 inhibit_iso_escape_detection
= 0;
10762 DEFVAR_BOOL ("inhibit-null-byte-detection",
10763 &inhibit_null_byte_detection
,
10764 doc
: /* If non-nil, Emacs ignores null bytes on code detection.
10765 By default, Emacs treats it as binary data, and does not attempt to
10766 decode it. The effect is as if you specified `no-conversion' for
10769 Set this to non-nil when a regular text happens to include null bytes.
10770 Examples are Index nodes of Info files and null-byte delimited output
10771 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and
10772 decode text as usual. */);
10773 inhibit_null_byte_detection
= 0;
10775 DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input
,
10776 doc
: /* Char table for translating self-inserting characters.
10777 This is applied to the result of input methods, not their input.
10778 See also `keyboard-translate-table'.
10780 Use of this variable for character code unification was rendered
10781 obsolete in Emacs 23.1 and later, since Unicode is now the basis of
10782 internal character representation. */);
10783 Vtranslation_table_for_input
= Qnil
;
10786 Lisp_Object args
[coding_arg_max
];
10787 Lisp_Object plist
[16];
10790 for (i
= 0; i
< coding_arg_max
; i
++)
10793 plist
[0] = intern_c_string (":name");
10794 plist
[1] = args
[coding_arg_name
] = Qno_conversion
;
10795 plist
[2] = intern_c_string (":mnemonic");
10796 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('=');
10797 plist
[4] = intern_c_string (":coding-type");
10798 plist
[5] = args
[coding_arg_coding_type
] = Qraw_text
;
10799 plist
[6] = intern_c_string (":ascii-compatible-p");
10800 plist
[7] = args
[coding_arg_ascii_compatible_p
] = Qt
;
10801 plist
[8] = intern_c_string (":default-char");
10802 plist
[9] = args
[coding_arg_default_char
] = make_number (0);
10803 plist
[10] = intern_c_string (":for-unibyte");
10804 plist
[11] = args
[coding_arg_for_unibyte
] = Qt
;
10805 plist
[12] = intern_c_string (":docstring");
10806 plist
[13] = make_pure_c_string ("Do no conversion.\n\
10808 When you visit a file with this coding, the file is read into a\n\
10809 unibyte buffer as is, thus each byte of a file is treated as a\n\
10811 plist
[14] = intern_c_string (":eol-type");
10812 plist
[15] = args
[coding_arg_eol_type
] = Qunix
;
10813 args
[coding_arg_plist
] = Flist (16, plist
);
10814 Fdefine_coding_system_internal (coding_arg_max
, args
);
10816 plist
[1] = args
[coding_arg_name
] = Qundecided
;
10817 plist
[3] = args
[coding_arg_mnemonic
] = make_number ('-');
10818 plist
[5] = args
[coding_arg_coding_type
] = Qundecided
;
10819 /* This is already set.
10820 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */
10821 plist
[8] = intern_c_string (":charset-list");
10822 plist
[9] = args
[coding_arg_charset_list
] = Fcons (Qascii
, Qnil
);
10823 plist
[11] = args
[coding_arg_for_unibyte
] = Qnil
;
10824 plist
[13] = make_pure_c_string ("No conversion on encoding, automatic conversion on decoding.");
10825 plist
[15] = args
[coding_arg_eol_type
] = Qnil
;
10826 args
[coding_arg_plist
] = Flist (16, plist
);
10827 Fdefine_coding_system_internal (coding_arg_max
, args
);
10830 setup_coding_system (Qno_conversion
, &safe_terminal_coding
);
10835 for (i
= 0; i
< coding_category_max
; i
++)
10836 Fset (AREF (Vcoding_category_table
, i
), Qno_conversion
);
10838 #if defined (DOS_NT)
10839 system_eol_type
= Qdos
;
10841 system_eol_type
= Qunix
;
10843 staticpro (&system_eol_type
);
10847 emacs_strerror (int error_number
)
10851 synchronize_system_messages_locale ();
10852 str
= strerror (error_number
);
10854 if (! NILP (Vlocale_coding_system
))
10856 Lisp_Object dec
= code_convert_string_norecord (build_string (str
),
10857 Vlocale_coding_system
,
10859 str
= (char *) SDATA (dec
);
10867 /* arch-tag: 3a3a2b01-5ff6-4071-9afe-f5b808d9229d
10868 (do not change this comment) */