1 /* Coding system handler (conversion, detection, and etc).
2 Copyright (C) 1995, 1997, 1998, 2002 Electrotechnical Laboratory, JAPAN.
3 Licensed to the Free Software Foundation.
4 Copyright (C) 2001 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /*** TABLE OF CONTENTS ***
27 2. Emacs' internal format (emacs-mule) handlers
29 4. Shift-JIS and BIG5 handlers
31 6. End-of-line handlers
32 7. C library functions
33 8. Emacs Lisp library functions
38 /*** 0. General comments ***/
41 /*** GENERAL NOTE on CODING SYSTEMS ***
43 A coding system is an encoding mechanism for one or more character
44 sets. Here's a list of coding systems which Emacs can handle. When
45 we say "decode", it means converting some other coding system to
46 Emacs' internal format (emacs-mule), and when we say "encode",
47 it means converting the coding system emacs-mule to some other
50 0. Emacs' internal format (emacs-mule)
52 Emacs itself holds a multi-lingual character in buffers and strings
53 in a special format. Details are described in section 2.
57 The most famous coding system for multiple character sets. X's
58 Compound Text, various EUCs (Extended Unix Code), and coding
59 systems used in Internet communication such as ISO-2022-JP are
60 all variants of ISO2022. Details are described in section 3.
62 2. SJIS (or Shift-JIS or MS-Kanji-Code)
64 A coding system to encode character sets: ASCII, JISX0201, and
65 JISX0208. Widely used for PC's in Japan. Details are described in
70 A coding system to encode the character sets ASCII and Big5. Widely
71 used for Chinese (mainly in Taiwan and Hong Kong). Details are
72 described in section 4. In this file, when we write "BIG5"
73 (all uppercase), we mean the coding system, and when we write
74 "Big5" (capitalized), we mean the character set.
78 A coding system for text containing random 8-bit code. Emacs does
79 no code conversion on such text except for end-of-line format.
83 If a user wants to read/write text encoded in a coding system not
84 listed above, he can supply a decoder and an encoder for it as CCL
85 (Code Conversion Language) programs. Emacs executes the CCL program
86 while reading/writing.
88 Emacs represents a coding system by a Lisp symbol that has a property
89 `coding-system'. But, before actually using the coding system, the
90 information about it is set in a structure of type `struct
91 coding_system' for rapid processing. See section 6 for more details.
95 /*** GENERAL NOTES on END-OF-LINE FORMAT ***
97 How end-of-line of text is encoded depends on the operating system.
98 For instance, Unix's format is just one byte of `line-feed' code,
99 whereas DOS's format is two-byte sequence of `carriage-return' and
100 `line-feed' codes. MacOS's format is usually one byte of
103 Since text character encoding and end-of-line encoding are
104 independent, any coding system described above can have any
105 end-of-line format. So Emacs has information about end-of-line
106 format in each coding-system. See section 6 for more details.
110 /*** GENERAL NOTES on `detect_coding_XXX ()' functions ***
112 These functions check if a text between SRC and SRC_END is encoded
113 in the coding system category XXX. Each returns an integer value in
114 which appropriate flag bits for the category XXX are set. The flag
115 bits are defined in macros CODING_CATEGORY_MASK_XXX. Below is the
116 template for these functions. If MULTIBYTEP is nonzero, 8-bit codes
117 of the range 0x80..0x9F are in multibyte form. */
120 detect_coding_emacs_mule (src
, src_end
, multibytep
)
121 unsigned char *src
, *src_end
;
128 /*** GENERAL NOTES on `decode_coding_XXX ()' functions ***
130 These functions decode SRC_BYTES length of unibyte text at SOURCE
131 encoded in CODING to Emacs' internal format. The resulting
132 multibyte text goes to a place pointed to by DESTINATION, the length
133 of which should not exceed DST_BYTES.
135 These functions set the information about original and decoded texts
136 in the members `produced', `produced_char', `consumed', and
137 `consumed_char' of the structure *CODING. They also set the member
138 `result' to one of CODING_FINISH_XXX indicating how the decoding
141 DST_BYTES zero means that the source area and destination area are
142 overlapped, which means that we can produce a decoded text until it
143 reaches the head of the not-yet-decoded source text.
145 Below is a template for these functions. */
148 decode_coding_XXX (coding
, source
, destination
, src_bytes
, dst_bytes
)
149 struct coding_system
*coding
;
150 unsigned char *source
, *destination
;
151 int src_bytes
, dst_bytes
;
157 /*** GENERAL NOTES on `encode_coding_XXX ()' functions ***
159 These functions encode SRC_BYTES length text at SOURCE from Emacs'
160 internal multibyte format to CODING. The resulting unibyte text
161 goes to a place pointed to by DESTINATION, the length of which
162 should not exceed DST_BYTES.
164 These functions set the information about original and encoded texts
165 in the members `produced', `produced_char', `consumed', and
166 `consumed_char' of the structure *CODING. They also set the member
167 `result' to one of CODING_FINISH_XXX indicating how the encoding
170 DST_BYTES zero means that the source area and destination area are
171 overlapped, which means that we can produce encoded text until it
172 reaches at the head of the not-yet-encoded source text.
174 Below is a template for these functions. */
177 encode_coding_XXX (coding
, source
, destination
, src_bytes
, dst_bytes
)
178 struct coding_system
*coding
;
179 unsigned char *source
, *destination
;
180 int src_bytes
, dst_bytes
;
186 /*** COMMONLY USED MACROS ***/
188 /* The following two macros ONE_MORE_BYTE and TWO_MORE_BYTES safely
189 get one, two, and three bytes from the source text respectively.
190 If there are not enough bytes in the source, they jump to
191 `label_end_of_loop'. The caller should set variables `coding',
192 `src' and `src_end' to appropriate pointer in advance. These
193 macros are called from decoding routines `decode_coding_XXX', thus
194 it is assumed that the source text is unibyte. */
196 #define ONE_MORE_BYTE(c1) \
198 if (src >= src_end) \
200 coding->result = CODING_FINISH_INSUFFICIENT_SRC; \
201 goto label_end_of_loop; \
206 #define TWO_MORE_BYTES(c1, c2) \
208 if (src + 1 >= src_end) \
210 coding->result = CODING_FINISH_INSUFFICIENT_SRC; \
211 goto label_end_of_loop; \
218 /* Like ONE_MORE_BYTE, but 8-bit bytes of data at SRC are in multibyte
219 form if MULTIBYTEP is nonzero. */
221 #define ONE_MORE_BYTE_CHECK_MULTIBYTE(c1, multibytep) \
223 if (src >= src_end) \
225 coding->result = CODING_FINISH_INSUFFICIENT_SRC; \
226 goto label_end_of_loop; \
229 if (multibytep && c1 == LEADING_CODE_8_BIT_CONTROL) \
230 c1 = *src++ - 0x20; \
233 /* Set C to the next character at the source text pointed by `src'.
234 If there are not enough characters in the source, jump to
235 `label_end_of_loop'. The caller should set variables `coding'
236 `src', `src_end', and `translation_table' to appropriate pointers
237 in advance. This macro is used in encoding routines
238 `encode_coding_XXX', thus it assumes that the source text is in
239 multibyte form except for 8-bit characters. 8-bit characters are
240 in multibyte form if coding->src_multibyte is nonzero, else they
241 are represented by a single byte. */
243 #define ONE_MORE_CHAR(c) \
245 int len = src_end - src; \
249 coding->result = CODING_FINISH_INSUFFICIENT_SRC; \
250 goto label_end_of_loop; \
252 if (coding->src_multibyte \
253 || UNIBYTE_STR_AS_MULTIBYTE_P (src, len, bytes)) \
254 c = STRING_CHAR_AND_LENGTH (src, len, bytes); \
256 c = *src, bytes = 1; \
257 if (!NILP (translation_table)) \
258 c = translate_char (translation_table, c, -1, 0, 0); \
263 /* Produce a multibyte form of character C to `dst'. Jump to
264 `label_end_of_loop' if there's not enough space at `dst'.
266 If we are now in the middle of a composition sequence, the decoded
267 character may be ALTCHAR (for the current composition). In that
268 case, the character goes to coding->cmp_data->data instead of
271 This macro is used in decoding routines. */
273 #define EMIT_CHAR(c) \
275 if (! COMPOSING_P (coding) \
276 || coding->composing == COMPOSITION_RELATIVE \
277 || coding->composing == COMPOSITION_WITH_RULE) \
279 int bytes = CHAR_BYTES (c); \
280 if ((dst + bytes) > (dst_bytes ? dst_end : src)) \
282 coding->result = CODING_FINISH_INSUFFICIENT_DST; \
283 goto label_end_of_loop; \
285 dst += CHAR_STRING (c, dst); \
286 coding->produced_char++; \
289 if (COMPOSING_P (coding) \
290 && coding->composing != COMPOSITION_RELATIVE) \
292 CODING_ADD_COMPOSITION_COMPONENT (coding, c); \
293 coding->composition_rule_follows \
294 = coding->composing != COMPOSITION_WITH_ALTCHARS; \
299 #define EMIT_ONE_BYTE(c) \
301 if (dst >= (dst_bytes ? dst_end : src)) \
303 coding->result = CODING_FINISH_INSUFFICIENT_DST; \
304 goto label_end_of_loop; \
309 #define EMIT_TWO_BYTES(c1, c2) \
311 if (dst + 2 > (dst_bytes ? dst_end : src)) \
313 coding->result = CODING_FINISH_INSUFFICIENT_DST; \
314 goto label_end_of_loop; \
316 *dst++ = c1, *dst++ = c2; \
319 #define EMIT_BYTES(from, to) \
321 if (dst + (to - from) > (dst_bytes ? dst_end : src)) \
323 coding->result = CODING_FINISH_INSUFFICIENT_DST; \
324 goto label_end_of_loop; \
331 /*** 1. Preamble ***/
344 #include "composite.h"
349 #else /* not emacs */
353 #endif /* not emacs */
355 Lisp_Object Qcoding_system
, Qeol_type
;
356 Lisp_Object Qbuffer_file_coding_system
;
357 Lisp_Object Qpost_read_conversion
, Qpre_write_conversion
;
358 Lisp_Object Qno_conversion
, Qundecided
;
359 Lisp_Object Qcoding_system_history
;
360 Lisp_Object Qsafe_chars
;
361 Lisp_Object Qvalid_codes
;
363 extern Lisp_Object Qinsert_file_contents
, Qwrite_region
;
364 Lisp_Object Qcall_process
, Qcall_process_region
, Qprocess_argument
;
365 Lisp_Object Qstart_process
, Qopen_network_stream
;
366 Lisp_Object Qtarget_idx
;
368 Lisp_Object Vselect_safe_coding_system_function
;
370 /* Mnemonic string for each format of end-of-line. */
371 Lisp_Object eol_mnemonic_unix
, eol_mnemonic_dos
, eol_mnemonic_mac
;
372 /* Mnemonic string to indicate format of end-of-line is not yet
374 Lisp_Object eol_mnemonic_undecided
;
376 /* Format of end-of-line decided by system. This is CODING_EOL_LF on
377 Unix, CODING_EOL_CRLF on DOS/Windows, and CODING_EOL_CR on Mac. */
382 Lisp_Object Vcoding_system_list
, Vcoding_system_alist
;
384 Lisp_Object Qcoding_system_p
, Qcoding_system_error
;
386 /* Coding system emacs-mule and raw-text are for converting only
387 end-of-line format. */
388 Lisp_Object Qemacs_mule
, Qraw_text
;
390 /* Coding-systems are handed between Emacs Lisp programs and C internal
391 routines by the following three variables. */
392 /* Coding-system for reading files and receiving data from process. */
393 Lisp_Object Vcoding_system_for_read
;
394 /* Coding-system for writing files and sending data to process. */
395 Lisp_Object Vcoding_system_for_write
;
396 /* Coding-system actually used in the latest I/O. */
397 Lisp_Object Vlast_coding_system_used
;
399 /* A vector of length 256 which contains information about special
400 Latin codes (especially for dealing with Microsoft codes). */
401 Lisp_Object Vlatin_extra_code_table
;
403 /* Flag to inhibit code conversion of end-of-line format. */
404 int inhibit_eol_conversion
;
406 /* Flag to inhibit ISO2022 escape sequence detection. */
407 int inhibit_iso_escape_detection
;
409 /* Flag to make buffer-file-coding-system inherit from process-coding. */
410 int inherit_process_coding_system
;
412 /* Coding system to be used to encode text for terminal display. */
413 struct coding_system terminal_coding
;
415 /* Coding system to be used to encode text for terminal display when
416 terminal coding system is nil. */
417 struct coding_system safe_terminal_coding
;
419 /* Coding system of what is sent from terminal keyboard. */
420 struct coding_system keyboard_coding
;
422 /* Default coding system to be used to write a file. */
423 struct coding_system default_buffer_file_coding
;
425 Lisp_Object Vfile_coding_system_alist
;
426 Lisp_Object Vprocess_coding_system_alist
;
427 Lisp_Object Vnetwork_coding_system_alist
;
429 Lisp_Object Vlocale_coding_system
;
433 Lisp_Object Qcoding_category
, Qcoding_category_index
;
435 /* List of symbols `coding-category-xxx' ordered by priority. */
436 Lisp_Object Vcoding_category_list
;
438 /* Table of coding categories (Lisp symbols). */
439 Lisp_Object Vcoding_category_table
;
441 /* Table of names of symbol for each coding-category. */
442 char *coding_category_name
[CODING_CATEGORY_IDX_MAX
] = {
443 "coding-category-emacs-mule",
444 "coding-category-sjis",
445 "coding-category-iso-7",
446 "coding-category-iso-7-tight",
447 "coding-category-iso-8-1",
448 "coding-category-iso-8-2",
449 "coding-category-iso-7-else",
450 "coding-category-iso-8-else",
451 "coding-category-ccl",
452 "coding-category-big5",
453 "coding-category-utf-8",
454 "coding-category-utf-16-be",
455 "coding-category-utf-16-le",
456 "coding-category-raw-text",
457 "coding-category-binary"
460 /* Table of pointers to coding systems corresponding to each coding
462 struct coding_system
*coding_system_table
[CODING_CATEGORY_IDX_MAX
];
464 /* Table of coding category masks. Nth element is a mask for a coding
465 category of which priority is Nth. */
467 int coding_priorities
[CODING_CATEGORY_IDX_MAX
];
469 /* Flag to tell if we look up translation table on character code
471 Lisp_Object Venable_character_translation
;
472 /* Standard translation table to look up on decoding (reading). */
473 Lisp_Object Vstandard_translation_table_for_decode
;
474 /* Standard translation table to look up on encoding (writing). */
475 Lisp_Object Vstandard_translation_table_for_encode
;
477 Lisp_Object Qtranslation_table
;
478 Lisp_Object Qtranslation_table_id
;
479 Lisp_Object Qtranslation_table_for_decode
;
480 Lisp_Object Qtranslation_table_for_encode
;
482 /* Alist of charsets vs revision number. */
483 Lisp_Object Vcharset_revision_alist
;
485 /* Default coding systems used for process I/O. */
486 Lisp_Object Vdefault_process_coding_system
;
488 /* Global flag to tell that we can't call post-read-conversion and
489 pre-write-conversion functions. Usually the value is zero, but it
490 is set to 1 temporarily while such functions are running. This is
491 to avoid infinite recursive call. */
492 static int inhibit_pre_post_conversion
;
494 /* Char-table containing safe coding systems of each character. */
495 Lisp_Object Vchar_coding_system_table
;
496 Lisp_Object Qchar_coding_system
;
498 /* Return `safe-chars' property of coding system CODING. Don't check
499 validity of CODING. */
502 coding_safe_chars (coding
)
503 struct coding_system
*coding
;
505 Lisp_Object coding_spec
, plist
, safe_chars
;
507 coding_spec
= Fget (coding
->symbol
, Qcoding_system
);
508 plist
= XVECTOR (coding_spec
)->contents
[3];
509 safe_chars
= Fplist_get (XVECTOR (coding_spec
)->contents
[3], Qsafe_chars
);
510 return (CHAR_TABLE_P (safe_chars
) ? safe_chars
: Qt
);
513 #define CODING_SAFE_CHAR_P(safe_chars, c) \
514 (EQ (safe_chars, Qt) || !NILP (CHAR_TABLE_REF (safe_chars, c)))
517 /*** 2. Emacs internal format (emacs-mule) handlers ***/
519 /* Emacs' internal format for representation of multiple character
520 sets is a kind of multi-byte encoding, i.e. characters are
521 represented by variable-length sequences of one-byte codes.
523 ASCII characters and control characters (e.g. `tab', `newline') are
524 represented by one-byte sequences which are their ASCII codes, in
525 the range 0x00 through 0x7F.
527 8-bit characters of the range 0x80..0x9F are represented by
528 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit
531 8-bit characters of the range 0xA0..0xFF are represented by
532 one-byte sequences which are their 8-bit code.
534 The other characters are represented by a sequence of `base
535 leading-code', optional `extended leading-code', and one or two
536 `position-code's. The length of the sequence is determined by the
537 base leading-code. Leading-code takes the range 0x81 through 0x9D,
538 whereas extended leading-code and position-code take the range 0xA0
539 through 0xFF. See `charset.h' for more details about leading-code
542 --- CODE RANGE of Emacs' internal format ---
546 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF
547 eight-bit-graphic 0xA0..0xBF
548 ELSE 0x81..0x9D + [0xA0..0xFF]+
549 ---------------------------------------------
551 As this is the internal character representation, the format is
552 usually not used externally (i.e. in a file or in a data sent to a
553 process). But, it is possible to have a text externally in this
554 format (i.e. by encoding by the coding system `emacs-mule').
556 In that case, a sequence of one-byte codes has a slightly different
559 Firstly, all characters in eight-bit-control are represented by
560 one-byte sequences which are their 8-bit code.
562 Next, character composition data are represented by the byte
563 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ...,
565 METHOD is 0xF0 plus one of composition method (enum
568 BYTES is 0xA0 plus the byte length of these composition data,
570 CHARS is 0xA0 plus the number of characters composed by these
573 COMPONENTs are characters of multibyte form or composition
574 rules encoded by two-byte of ASCII codes.
576 In addition, for backward compatibility, the following formats are
577 also recognized as composition data on decoding.
580 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ
583 MSEQ is a multibyte form but in these special format:
584 ASCII: 0xA0 ASCII_CODE+0x80,
585 other: LEADING_CODE+0x20 FOLLOWING-BYTE ...,
586 RULE is a one byte code of the range 0xA0..0xF0 that
587 represents a composition rule.
590 enum emacs_code_class_type emacs_code_class
[256];
592 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
593 Check if a text is encoded in Emacs' internal format. If it is,
594 return CODING_CATEGORY_MASK_EMACS_MULE, else return 0. */
597 detect_coding_emacs_mule (src
, src_end
, multibytep
)
598 unsigned char *src
, *src_end
;
603 /* Dummy for ONE_MORE_BYTE. */
604 struct coding_system dummy_coding
;
605 struct coding_system
*coding
= &dummy_coding
;
609 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
617 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
626 if (c
== ISO_CODE_ESC
|| c
== ISO_CODE_SI
|| c
== ISO_CODE_SO
)
629 else if (c
>= 0x80 && c
< 0xA0)
632 /* Old leading code for a composite character. */
636 unsigned char *src_base
= src
- 1;
639 if (!UNIBYTE_STR_AS_MULTIBYTE_P (src_base
, src_end
- src_base
,
642 src
= src_base
+ bytes
;
647 return CODING_CATEGORY_MASK_EMACS_MULE
;
651 /* Record the starting position START and METHOD of one composition. */
653 #define CODING_ADD_COMPOSITION_START(coding, start, method) \
655 struct composition_data *cmp_data = coding->cmp_data; \
656 int *data = cmp_data->data + cmp_data->used; \
657 coding->cmp_data_start = cmp_data->used; \
659 data[1] = cmp_data->char_offset + start; \
660 data[3] = (int) method; \
661 cmp_data->used += 4; \
664 /* Record the ending position END of the current composition. */
666 #define CODING_ADD_COMPOSITION_END(coding, end) \
668 struct composition_data *cmp_data = coding->cmp_data; \
669 int *data = cmp_data->data + coding->cmp_data_start; \
670 data[0] = cmp_data->used - coding->cmp_data_start; \
671 data[2] = cmp_data->char_offset + end; \
674 /* Record one COMPONENT (alternate character or composition rule). */
676 #define CODING_ADD_COMPOSITION_COMPONENT(coding, component) \
677 (coding->cmp_data->data[coding->cmp_data->used++] = component)
680 /* Get one byte from a data pointed by SRC and increment SRC. If SRC
681 is not less than SRC_END, return -1 without incrementing Src. */
683 #define SAFE_ONE_MORE_BYTE() (src >= src_end ? -1 : *src++)
686 /* Decode a character represented as a component of composition
687 sequence of Emacs 20 style at SRC. Set C to that character, store
688 its multibyte form sequence at P, and set P to the end of that
689 sequence. If no valid character is found, set C to -1. */
691 #define DECODE_EMACS_MULE_COMPOSITION_CHAR(c, p) \
695 c = SAFE_ONE_MORE_BYTE (); \
698 if (CHAR_HEAD_P (c)) \
700 else if (c == 0xA0) \
702 c = SAFE_ONE_MORE_BYTE (); \
711 else if (BASE_LEADING_CODE_P (c - 0x20)) \
713 unsigned char *p0 = p; \
717 bytes = BYTES_BY_CHAR_HEAD (c); \
720 c = SAFE_ONE_MORE_BYTE (); \
725 if (UNIBYTE_STR_AS_MULTIBYTE_P (p0, p - p0, bytes)) \
726 c = STRING_CHAR (p0, bytes); \
735 /* Decode a composition rule represented as a component of composition
736 sequence of Emacs 20 style at SRC. Set C to the rule. If not
737 valid rule is found, set C to -1. */
739 #define DECODE_EMACS_MULE_COMPOSITION_RULE(c) \
741 c = SAFE_ONE_MORE_BYTE (); \
743 if (c < 0 || c >= 81) \
747 gref = c / 9, nref = c % 9; \
748 c = COMPOSITION_ENCODE_RULE (gref, nref); \
753 /* Decode composition sequence encoded by `emacs-mule' at the source
754 pointed by SRC. SRC_END is the end of source. Store information
755 of the composition in CODING->cmp_data.
757 For backward compatibility, decode also a composition sequence of
758 Emacs 20 style. In that case, the composition sequence contains
759 characters that should be extracted into a buffer or string. Store
760 those characters at *DESTINATION in multibyte form.
762 If we encounter an invalid byte sequence, return 0.
763 If we encounter an insufficient source or destination, or
764 insufficient space in CODING->cmp_data, return 1.
765 Otherwise, return consumed bytes in the source.
769 decode_composition_emacs_mule (coding
, src
, src_end
,
770 destination
, dst_end
, dst_bytes
)
771 struct coding_system
*coding
;
772 unsigned char *src
, *src_end
, **destination
, *dst_end
;
775 unsigned char *dst
= *destination
;
776 int method
, data_len
, nchars
;
777 unsigned char *src_base
= src
++;
778 /* Store components of composition. */
779 int component
[COMPOSITION_DATA_MAX_BUNCH_LENGTH
];
781 /* Store multibyte form of characters to be composed. This is for
782 Emacs 20 style composition sequence. */
783 unsigned char buf
[MAX_COMPOSITION_COMPONENTS
* MAX_MULTIBYTE_LENGTH
];
784 unsigned char *bufp
= buf
;
785 int c
, i
, gref
, nref
;
787 if (coding
->cmp_data
->used
+ COMPOSITION_DATA_MAX_BUNCH_LENGTH
788 >= COMPOSITION_DATA_SIZE
)
790 coding
->result
= CODING_FINISH_INSUFFICIENT_CMP
;
795 if (c
- 0xF0 >= COMPOSITION_RELATIVE
796 && c
- 0xF0 <= COMPOSITION_WITH_RULE_ALTCHARS
)
801 with_rule
= (method
== COMPOSITION_WITH_RULE
802 || method
== COMPOSITION_WITH_RULE_ALTCHARS
);
806 || src_base
+ data_len
> src_end
)
812 for (ncomponent
= 0; src
< src_base
+ data_len
; ncomponent
++)
814 /* If it is longer than this, it can't be valid. */
815 if (ncomponent
>= COMPOSITION_DATA_MAX_BUNCH_LENGTH
)
818 if (ncomponent
% 2 && with_rule
)
820 ONE_MORE_BYTE (gref
);
822 ONE_MORE_BYTE (nref
);
824 c
= COMPOSITION_ENCODE_RULE (gref
, nref
);
829 if (UNIBYTE_STR_AS_MULTIBYTE_P (src
, src_end
- src
, bytes
))
830 c
= STRING_CHAR (src
, bytes
);
835 component
[ncomponent
] = c
;
840 /* This may be an old Emacs 20 style format. See the comment at
841 the section 2 of this file. */
842 while (src
< src_end
&& !CHAR_HEAD_P (*src
)) src
++;
844 && !(coding
->mode
& CODING_MODE_LAST_BLOCK
))
845 goto label_end_of_loop
;
851 method
= COMPOSITION_RELATIVE
;
852 for (ncomponent
= 0; ncomponent
< MAX_COMPOSITION_COMPONENTS
;)
854 DECODE_EMACS_MULE_COMPOSITION_CHAR (c
, bufp
);
857 component
[ncomponent
++] = c
;
865 method
= COMPOSITION_WITH_RULE
;
867 DECODE_EMACS_MULE_COMPOSITION_CHAR (c
, bufp
);
872 ncomponent
< MAX_COMPOSITION_COMPONENTS
* 2 - 1;)
874 DECODE_EMACS_MULE_COMPOSITION_RULE (c
);
877 component
[ncomponent
++] = c
;
878 DECODE_EMACS_MULE_COMPOSITION_CHAR (c
, bufp
);
881 component
[ncomponent
++] = c
;
885 nchars
= (ncomponent
+ 1) / 2;
891 if (buf
== bufp
|| dst
+ (bufp
- buf
) <= (dst_bytes
? dst_end
: src
))
893 CODING_ADD_COMPOSITION_START (coding
, coding
->produced_char
, method
);
894 for (i
= 0; i
< ncomponent
; i
++)
895 CODING_ADD_COMPOSITION_COMPONENT (coding
, component
[i
]);
896 CODING_ADD_COMPOSITION_END (coding
, coding
->produced_char
+ nchars
);
899 unsigned char *p
= buf
;
900 EMIT_BYTES (p
, bufp
);
901 *destination
+= bufp
- buf
;
902 coding
->produced_char
+= nchars
;
904 return (src
- src_base
);
910 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
913 decode_coding_emacs_mule (coding
, source
, destination
, src_bytes
, dst_bytes
)
914 struct coding_system
*coding
;
915 unsigned char *source
, *destination
;
916 int src_bytes
, dst_bytes
;
918 unsigned char *src
= source
;
919 unsigned char *src_end
= source
+ src_bytes
;
920 unsigned char *dst
= destination
;
921 unsigned char *dst_end
= destination
+ dst_bytes
;
922 /* SRC_BASE remembers the start position in source in each loop.
923 The loop will be exited when there's not enough source code, or
924 when there's not enough destination area to produce a
926 unsigned char *src_base
;
928 coding
->produced_char
= 0;
929 while ((src_base
= src
) < src_end
)
931 unsigned char tmp
[MAX_MULTIBYTE_LENGTH
], *p
;
938 if (coding
->eol_type
== CODING_EOL_CR
)
940 else if (coding
->eol_type
== CODING_EOL_CRLF
)
945 if (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
947 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
948 goto label_end_of_loop
;
955 coding
->produced_char
++;
958 else if (*src
== '\n')
960 if ((coding
->eol_type
== CODING_EOL_CR
961 || coding
->eol_type
== CODING_EOL_CRLF
)
962 && coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
964 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
965 goto label_end_of_loop
;
968 coding
->produced_char
++;
971 else if (*src
== 0x80)
973 /* Start of composition data. */
974 int consumed
= decode_composition_emacs_mule (coding
, src
, src_end
,
978 goto label_end_of_loop
;
979 else if (consumed
> 0)
984 bytes
= CHAR_STRING (*src
, tmp
);
988 else if (UNIBYTE_STR_AS_MULTIBYTE_P (src
, src_end
- src
, bytes
))
995 bytes
= CHAR_STRING (*src
, tmp
);
999 if (dst
+ bytes
>= (dst_bytes
? dst_end
: src
))
1001 coding
->result
= CODING_FINISH_INSUFFICIENT_DST
;
1004 while (bytes
--) *dst
++ = *p
++;
1005 coding
->produced_char
++;
1008 coding
->consumed
= coding
->consumed_char
= src_base
- source
;
1009 coding
->produced
= dst
- destination
;
1013 /* Encode composition data stored at DATA into a special byte sequence
1014 starting by 0x80. Update CODING->cmp_data_start and maybe
1015 CODING->cmp_data for the next call. */
1017 #define ENCODE_COMPOSITION_EMACS_MULE(coding, data) \
1019 unsigned char buf[1024], *p0 = buf, *p; \
1020 int len = data[0]; \
1024 buf[1] = 0xF0 + data[3]; /* METHOD */ \
1025 buf[3] = 0xA0 + (data[2] - data[1]); /* COMPOSED-CHARS */ \
1027 if (data[3] == COMPOSITION_WITH_RULE \
1028 || data[3] == COMPOSITION_WITH_RULE_ALTCHARS) \
1030 p += CHAR_STRING (data[4], p); \
1031 for (i = 5; i < len; i += 2) \
1034 COMPOSITION_DECODE_RULE (data[i], gref, nref); \
1035 *p++ = 0x20 + gref; \
1036 *p++ = 0x20 + nref; \
1037 p += CHAR_STRING (data[i + 1], p); \
1042 for (i = 4; i < len; i++) \
1043 p += CHAR_STRING (data[i], p); \
1045 buf[2] = 0xA0 + (p - buf); /* COMPONENTS-BYTES */ \
1047 if (dst + (p - buf) + 4 > (dst_bytes ? dst_end : src)) \
1049 coding->result = CODING_FINISH_INSUFFICIENT_DST; \
1050 goto label_end_of_loop; \
1054 coding->cmp_data_start += data[0]; \
1055 if (coding->cmp_data_start == coding->cmp_data->used \
1056 && coding->cmp_data->next) \
1058 coding->cmp_data = coding->cmp_data->next; \
1059 coding->cmp_data_start = 0; \
1064 static void encode_eol
P_ ((struct coding_system
*, unsigned char *,
1065 unsigned char *, int, int));
1068 encode_coding_emacs_mule (coding
, source
, destination
, src_bytes
, dst_bytes
)
1069 struct coding_system
*coding
;
1070 unsigned char *source
, *destination
;
1071 int src_bytes
, dst_bytes
;
1073 unsigned char *src
= source
;
1074 unsigned char *src_end
= source
+ src_bytes
;
1075 unsigned char *dst
= destination
;
1076 unsigned char *dst_end
= destination
+ dst_bytes
;
1077 unsigned char *src_base
;
1082 Lisp_Object translation_table
;
1084 translation_table
= Qnil
;
1086 /* Optimization for the case that there's no composition. */
1087 if (!coding
->cmp_data
|| coding
->cmp_data
->used
== 0)
1089 encode_eol (coding
, source
, destination
, src_bytes
, dst_bytes
);
1093 char_offset
= coding
->cmp_data
->char_offset
;
1094 data
= coding
->cmp_data
->data
+ coding
->cmp_data_start
;
1099 /* If SRC starts a composition, encode the information about the
1100 composition in advance. */
1101 if (coding
->cmp_data_start
< coding
->cmp_data
->used
1102 && char_offset
+ coding
->consumed_char
== data
[1])
1104 ENCODE_COMPOSITION_EMACS_MULE (coding
, data
);
1105 char_offset
= coding
->cmp_data
->char_offset
;
1106 data
= coding
->cmp_data
->data
+ coding
->cmp_data_start
;
1110 if (c
== '\n' && (coding
->eol_type
== CODING_EOL_CRLF
1111 || coding
->eol_type
== CODING_EOL_CR
))
1113 if (coding
->eol_type
== CODING_EOL_CRLF
)
1114 EMIT_TWO_BYTES ('\r', c
);
1116 EMIT_ONE_BYTE ('\r');
1118 else if (SINGLE_BYTE_CHAR_P (c
))
1121 EMIT_BYTES (src_base
, src
);
1122 coding
->consumed_char
++;
1125 coding
->consumed
= src_base
- source
;
1126 coding
->produced
= coding
->produced_char
= dst
- destination
;
1131 /*** 3. ISO2022 handlers ***/
1133 /* The following note describes the coding system ISO2022 briefly.
1134 Since the intention of this note is to help understand the
1135 functions in this file, some parts are NOT ACCURATE or are OVERLY
1136 SIMPLIFIED. For thorough understanding, please refer to the
1137 original document of ISO2022. This is equivalent to the standard
1138 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*).
1140 ISO2022 provides many mechanisms to encode several character sets
1141 in 7-bit and 8-bit environments. For 7-bit environments, all text
1142 is encoded using bytes less than 128. This may make the encoded
1143 text a little bit longer, but the text passes more easily through
1144 several types of gateway, some of which strip off the MSB (Most
1147 There are two kinds of character sets: control character sets and
1148 graphic character sets. The former contain control characters such
1149 as `newline' and `escape' to provide control functions (control
1150 functions are also provided by escape sequences). The latter
1151 contain graphic characters such as 'A' and '-'. Emacs recognizes
1152 two control character sets and many graphic character sets.
1154 Graphic character sets are classified into one of the following
1155 four classes, according to the number of bytes (DIMENSION) and
1156 number of characters in one dimension (CHARS) of the set:
1157 - DIMENSION1_CHARS94
1158 - DIMENSION1_CHARS96
1159 - DIMENSION2_CHARS94
1160 - DIMENSION2_CHARS96
1162 In addition, each character set is assigned an identification tag,
1163 unique for each set, called the "final character" (denoted as <F>
1164 hereafter). The <F> of each character set is decided by ECMA(*)
1165 when it is registered in ISO. The code range of <F> is 0x30..0x7F
1166 (0x30..0x3F are for private use only).
1168 Note (*): ECMA = European Computer Manufacturers Association
1170 Here are examples of graphic character sets [NAME(<F>)]:
1171 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ...
1172 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ...
1173 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ...
1174 o DIMENSION2_CHARS96 -- none for the moment
1176 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR.
1177 C0 [0x00..0x1F] -- control character plane 0
1178 GL [0x20..0x7F] -- graphic character plane 0
1179 C1 [0x80..0x9F] -- control character plane 1
1180 GR [0xA0..0xFF] -- graphic character plane 1
1182 A control character set is directly designated and invoked to C0 or
1183 C1 by an escape sequence. The most common case is that:
1184 - ISO646's control character set is designated/invoked to C0, and
1185 - ISO6429's control character set is designated/invoked to C1,
1186 and usually these designations/invocations are omitted in encoded
1187 text. In a 7-bit environment, only C0 can be used, and a control
1188 character for C1 is encoded by an appropriate escape sequence to
1189 fit into the environment. All control characters for C1 are
1190 defined to have corresponding escape sequences.
1192 A graphic character set is at first designated to one of four
1193 graphic registers (G0 through G3), then these graphic registers are
1194 invoked to GL or GR. These designations and invocations can be
1195 done independently. The most common case is that G0 is invoked to
1196 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually
1197 these invocations and designations are omitted in encoded text.
1198 In a 7-bit environment, only GL can be used.
1200 When a graphic character set of CHARS94 is invoked to GL, codes
1201 0x20 and 0x7F of the GL area work as control characters SPACE and
1202 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not
1205 There are two ways of invocation: locking-shift and single-shift.
1206 With locking-shift, the invocation lasts until the next different
1207 invocation, whereas with single-shift, the invocation affects the
1208 following character only and doesn't affect the locking-shift
1209 state. Invocations are done by the following control characters or
1212 ----------------------------------------------------------------------
1213 abbrev function cntrl escape seq description
1214 ----------------------------------------------------------------------
1215 SI/LS0 (shift-in) 0x0F none invoke G0 into GL
1216 SO/LS1 (shift-out) 0x0E none invoke G1 into GL
1217 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL
1218 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL
1219 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*)
1220 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*)
1221 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*)
1222 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char
1223 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char
1224 ----------------------------------------------------------------------
1225 (*) These are not used by any known coding system.
1227 Control characters for these functions are defined by macros
1228 ISO_CODE_XXX in `coding.h'.
1230 Designations are done by the following escape sequences:
1231 ----------------------------------------------------------------------
1232 escape sequence description
1233 ----------------------------------------------------------------------
1234 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0
1235 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1
1236 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2
1237 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3
1238 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*)
1239 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1
1240 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2
1241 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3
1242 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**)
1243 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1
1244 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2
1245 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3
1246 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*)
1247 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1
1248 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2
1249 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3
1250 ----------------------------------------------------------------------
1252 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set
1253 of dimension 1, chars 94, and final character <F>, etc...
1255 Note (*): Although these designations are not allowed in ISO2022,
1256 Emacs accepts them on decoding, and produces them on encoding
1257 CHARS96 character sets in a coding system which is characterized as
1258 7-bit environment, non-locking-shift, and non-single-shift.
1260 Note (**): If <F> is '@', 'A', or 'B', the intermediate character
1261 '(' can be omitted. We refer to this as "short-form" hereafter.
1263 Now you may notice that there are a lot of ways of encoding the
1264 same multilingual text in ISO2022. Actually, there exist many
1265 coding systems such as Compound Text (used in X11's inter client
1266 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR
1267 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian
1268 localized platforms), and all of these are variants of ISO2022.
1270 In addition to the above, Emacs handles two more kinds of escape
1271 sequences: ISO6429's direction specification and Emacs' private
1272 sequence for specifying character composition.
1274 ISO6429's direction specification takes the following form:
1275 o CSI ']' -- end of the current direction
1276 o CSI '0' ']' -- end of the current direction
1277 o CSI '1' ']' -- start of left-to-right text
1278 o CSI '2' ']' -- start of right-to-left text
1279 The control character CSI (0x9B: control sequence introducer) is
1280 abbreviated to the escape sequence ESC '[' in a 7-bit environment.
1282 Character composition specification takes the following form:
1283 o ESC '0' -- start relative composition
1284 o ESC '1' -- end composition
1285 o ESC '2' -- start rule-base composition (*)
1286 o ESC '3' -- start relative composition with alternate chars (**)
1287 o ESC '4' -- start rule-base composition with alternate chars (**)
1288 Since these are not standard escape sequences of any ISO standard,
1289 the use of them with these meanings is restricted to Emacs only.
1291 (*) This form is used only in Emacs 20.5 and older versions,
1292 but the newer versions can safely decode it.
1293 (**) This form is used only in Emacs 21.1 and newer versions,
1294 and the older versions can't decode it.
1296 Here's a list of example usages of these composition escape
1297 sequences (categorized by `enum composition_method').
1299 COMPOSITION_RELATIVE:
1300 ESC 0 CHAR [ CHAR ] ESC 1
1301 COMPOSITION_WITH_RULE:
1302 ESC 2 CHAR [ RULE CHAR ] ESC 1
1303 COMPOSITION_WITH_ALTCHARS:
1304 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1
1305 COMPOSITION_WITH_RULE_ALTCHARS:
1306 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */
1308 enum iso_code_class_type iso_code_class
[256];
1310 #define CHARSET_OK(idx, charset, c) \
1311 (coding_system_table[idx] \
1312 && (charset == CHARSET_ASCII \
1313 || (safe_chars = coding_safe_chars (coding_system_table[idx]), \
1314 CODING_SAFE_CHAR_P (safe_chars, c))) \
1315 && (CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding_system_table[idx], \
1317 != CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION))
1319 #define SHIFT_OUT_OK(idx) \
1320 (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding_system_table[idx], 1) >= 0)
1322 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
1323 Check if a text is encoded in ISO2022. If it is, return an
1324 integer in which appropriate flag bits any of:
1325 CODING_CATEGORY_MASK_ISO_7
1326 CODING_CATEGORY_MASK_ISO_7_TIGHT
1327 CODING_CATEGORY_MASK_ISO_8_1
1328 CODING_CATEGORY_MASK_ISO_8_2
1329 CODING_CATEGORY_MASK_ISO_7_ELSE
1330 CODING_CATEGORY_MASK_ISO_8_ELSE
1331 are set. If a code which should never appear in ISO2022 is found,
1335 detect_coding_iso2022 (src
, src_end
, multibytep
)
1336 unsigned char *src
, *src_end
;
1339 int mask
= CODING_CATEGORY_MASK_ISO
;
1341 int reg
[4], shift_out
= 0, single_shifting
= 0;
1343 /* Dummy for ONE_MORE_BYTE. */
1344 struct coding_system dummy_coding
;
1345 struct coding_system
*coding
= &dummy_coding
;
1346 Lisp_Object safe_chars
;
1348 reg
[0] = CHARSET_ASCII
, reg
[1] = reg
[2] = reg
[3] = -1;
1349 while (mask
&& src
< src_end
)
1351 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
1355 if (inhibit_iso_escape_detection
)
1357 single_shifting
= 0;
1358 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
1359 if (c
>= '(' && c
<= '/')
1361 /* Designation sequence for a charset of dimension 1. */
1362 ONE_MORE_BYTE_CHECK_MULTIBYTE (c1
, multibytep
);
1363 if (c1
< ' ' || c1
>= 0x80
1364 || (charset
= iso_charset_table
[0][c
>= ','][c1
]) < 0)
1365 /* Invalid designation sequence. Just ignore. */
1367 reg
[(c
- '(') % 4] = charset
;
1371 /* Designation sequence for a charset of dimension 2. */
1372 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
1373 if (c
>= '@' && c
<= 'B')
1374 /* Designation for JISX0208.1978, GB2312, or JISX0208. */
1375 reg
[0] = charset
= iso_charset_table
[1][0][c
];
1376 else if (c
>= '(' && c
<= '/')
1378 ONE_MORE_BYTE_CHECK_MULTIBYTE (c1
, multibytep
);
1379 if (c1
< ' ' || c1
>= 0x80
1380 || (charset
= iso_charset_table
[1][c
>= ','][c1
]) < 0)
1381 /* Invalid designation sequence. Just ignore. */
1383 reg
[(c
- '(') % 4] = charset
;
1386 /* Invalid designation sequence. Just ignore. */
1389 else if (c
== 'N' || c
== 'O')
1391 /* ESC <Fe> for SS2 or SS3. */
1392 mask
&= CODING_CATEGORY_MASK_ISO_7_ELSE
;
1395 else if (c
>= '0' && c
<= '4')
1397 /* ESC <Fp> for start/end composition. */
1398 mask_found
|= CODING_CATEGORY_MASK_ISO
;
1402 /* Invalid escape sequence. Just ignore. */
1405 /* We found a valid designation sequence for CHARSET. */
1406 mask
&= ~CODING_CATEGORY_MASK_ISO_8BIT
;
1407 c
= MAKE_CHAR (charset
, 0, 0);
1408 if (CHARSET_OK (CODING_CATEGORY_IDX_ISO_7
, charset
, c
))
1409 mask_found
|= CODING_CATEGORY_MASK_ISO_7
;
1411 mask
&= ~CODING_CATEGORY_MASK_ISO_7
;
1412 if (CHARSET_OK (CODING_CATEGORY_IDX_ISO_7_TIGHT
, charset
, c
))
1413 mask_found
|= CODING_CATEGORY_MASK_ISO_7_TIGHT
;
1415 mask
&= ~CODING_CATEGORY_MASK_ISO_7_TIGHT
;
1416 if (CHARSET_OK (CODING_CATEGORY_IDX_ISO_7_ELSE
, charset
, c
))
1417 mask_found
|= CODING_CATEGORY_MASK_ISO_7_ELSE
;
1419 mask
&= ~CODING_CATEGORY_MASK_ISO_7_ELSE
;
1420 if (CHARSET_OK (CODING_CATEGORY_IDX_ISO_8_ELSE
, charset
, c
))
1421 mask_found
|= CODING_CATEGORY_MASK_ISO_8_ELSE
;
1423 mask
&= ~CODING_CATEGORY_MASK_ISO_8_ELSE
;
1427 if (inhibit_iso_escape_detection
)
1429 single_shifting
= 0;
1432 || SHIFT_OUT_OK (CODING_CATEGORY_IDX_ISO_7_ELSE
)
1433 || SHIFT_OUT_OK (CODING_CATEGORY_IDX_ISO_8_ELSE
)))
1435 /* Locking shift out. */
1436 mask
&= ~CODING_CATEGORY_MASK_ISO_7BIT
;
1437 mask_found
|= CODING_CATEGORY_MASK_ISO_SHIFT
;
1442 if (inhibit_iso_escape_detection
)
1444 single_shifting
= 0;
1447 /* Locking shift in. */
1448 mask
&= ~CODING_CATEGORY_MASK_ISO_7BIT
;
1449 mask_found
|= CODING_CATEGORY_MASK_ISO_SHIFT
;
1454 single_shifting
= 0;
1458 int newmask
= CODING_CATEGORY_MASK_ISO_8_ELSE
;
1460 if (inhibit_iso_escape_detection
)
1462 if (c
!= ISO_CODE_CSI
)
1464 if (coding_system_table
[CODING_CATEGORY_IDX_ISO_8_1
]->flags
1465 & CODING_FLAG_ISO_SINGLE_SHIFT
)
1466 newmask
|= CODING_CATEGORY_MASK_ISO_8_1
;
1467 if (coding_system_table
[CODING_CATEGORY_IDX_ISO_8_2
]->flags
1468 & CODING_FLAG_ISO_SINGLE_SHIFT
)
1469 newmask
|= CODING_CATEGORY_MASK_ISO_8_2
;
1470 single_shifting
= 1;
1472 if (VECTORP (Vlatin_extra_code_table
)
1473 && !NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
]))
1475 if (coding_system_table
[CODING_CATEGORY_IDX_ISO_8_1
]->flags
1476 & CODING_FLAG_ISO_LATIN_EXTRA
)
1477 newmask
|= CODING_CATEGORY_MASK_ISO_8_1
;
1478 if (coding_system_table
[CODING_CATEGORY_IDX_ISO_8_2
]->flags
1479 & CODING_FLAG_ISO_LATIN_EXTRA
)
1480 newmask
|= CODING_CATEGORY_MASK_ISO_8_2
;
1483 mask_found
|= newmask
;
1490 single_shifting
= 0;
1495 single_shifting
= 0;
1496 if (VECTORP (Vlatin_extra_code_table
)
1497 && !NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
]))
1501 if (coding_system_table
[CODING_CATEGORY_IDX_ISO_8_1
]->flags
1502 & CODING_FLAG_ISO_LATIN_EXTRA
)
1503 newmask
|= CODING_CATEGORY_MASK_ISO_8_1
;
1504 if (coding_system_table
[CODING_CATEGORY_IDX_ISO_8_2
]->flags
1505 & CODING_FLAG_ISO_LATIN_EXTRA
)
1506 newmask
|= CODING_CATEGORY_MASK_ISO_8_2
;
1508 mask_found
|= newmask
;
1515 mask
&= ~(CODING_CATEGORY_MASK_ISO_7BIT
1516 | CODING_CATEGORY_MASK_ISO_7_ELSE
);
1517 mask_found
|= CODING_CATEGORY_MASK_ISO_8_1
;
1518 /* Check the length of succeeding codes of the range
1519 0xA0..0FF. If the byte length is odd, we exclude
1520 CODING_CATEGORY_MASK_ISO_8_2. We can check this only
1521 when we are not single shifting. */
1522 if (!single_shifting
1523 && mask
& CODING_CATEGORY_MASK_ISO_8_2
)
1526 while (src
< src_end
)
1528 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
1534 if (i
& 1 && src
< src_end
)
1535 mask
&= ~CODING_CATEGORY_MASK_ISO_8_2
;
1537 mask_found
|= CODING_CATEGORY_MASK_ISO_8_2
;
1544 return (mask
& mask_found
);
1547 /* Decode a character of which charset is CHARSET, the 1st position
1548 code is C1, the 2nd position code is C2, and return the decoded
1549 character code. If the variable `translation_table' is non-nil,
1550 returned the translated code. */
1552 #define DECODE_ISO_CHARACTER(charset, c1, c2) \
1553 (NILP (translation_table) \
1554 ? MAKE_CHAR (charset, c1, c2) \
1555 : translate_char (translation_table, -1, charset, c1, c2))
1557 /* Set designation state into CODING. */
1558 #define DECODE_DESIGNATION(reg, dimension, chars, final_char) \
1562 if (final_char < '0' || final_char >= 128) \
1563 goto label_invalid_code; \
1564 charset = ISO_CHARSET_TABLE (make_number (dimension), \
1565 make_number (chars), \
1566 make_number (final_char)); \
1567 c = MAKE_CHAR (charset, 0, 0); \
1569 && (CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) == reg \
1570 || CODING_SAFE_CHAR_P (safe_chars, c))) \
1572 if (coding->spec.iso2022.last_invalid_designation_register == 0 \
1574 && charset == CHARSET_ASCII) \
1576 /* We should insert this designation sequence as is so \
1577 that it is surely written back to a file. */ \
1578 coding->spec.iso2022.last_invalid_designation_register = -1; \
1579 goto label_invalid_code; \
1581 coding->spec.iso2022.last_invalid_designation_register = -1; \
1582 if ((coding->mode & CODING_MODE_DIRECTION) \
1583 && CHARSET_REVERSE_CHARSET (charset) >= 0) \
1584 charset = CHARSET_REVERSE_CHARSET (charset); \
1585 CODING_SPEC_ISO_DESIGNATION (coding, reg) = charset; \
1589 coding->spec.iso2022.last_invalid_designation_register = reg; \
1590 goto label_invalid_code; \
1594 /* Allocate a memory block for storing information about compositions.
1595 The block is chained to the already allocated blocks. */
1598 coding_allocate_composition_data (coding
, char_offset
)
1599 struct coding_system
*coding
;
1602 struct composition_data
*cmp_data
1603 = (struct composition_data
*) xmalloc (sizeof *cmp_data
);
1605 cmp_data
->char_offset
= char_offset
;
1607 cmp_data
->prev
= coding
->cmp_data
;
1608 cmp_data
->next
= NULL
;
1609 if (coding
->cmp_data
)
1610 coding
->cmp_data
->next
= cmp_data
;
1611 coding
->cmp_data
= cmp_data
;
1612 coding
->cmp_data_start
= 0;
1615 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
1616 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1
1617 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1
1618 ESC 3 : altchar composition : ESC 3 ALT ... ESC 0 CHAR ... ESC 1
1619 ESC 4 : alt&rule composition : ESC 4 ALT RULE .. ALT ESC 0 CHAR ... ESC 1
1622 #define DECODE_COMPOSITION_START(c1) \
1624 if (coding->composing == COMPOSITION_DISABLED) \
1626 *dst++ = ISO_CODE_ESC; \
1627 *dst++ = c1 & 0x7f; \
1628 coding->produced_char += 2; \
1630 else if (!COMPOSING_P (coding)) \
1632 /* This is surely the start of a composition. We must be sure \
1633 that coding->cmp_data has enough space to store the \
1634 information about the composition. If not, terminate the \
1635 current decoding loop, allocate one more memory block for \
1636 coding->cmp_data in the caller, then start the decoding \
1637 loop again. We can't allocate memory here directly because \
1638 it may cause buffer/string relocation. */ \
1639 if (!coding->cmp_data \
1640 || (coding->cmp_data->used + COMPOSITION_DATA_MAX_BUNCH_LENGTH \
1641 >= COMPOSITION_DATA_SIZE)) \
1643 coding->result = CODING_FINISH_INSUFFICIENT_CMP; \
1644 goto label_end_of_loop; \
1646 coding->composing = (c1 == '0' ? COMPOSITION_RELATIVE \
1647 : c1 == '2' ? COMPOSITION_WITH_RULE \
1648 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \
1649 : COMPOSITION_WITH_RULE_ALTCHARS); \
1650 CODING_ADD_COMPOSITION_START (coding, coding->produced_char, \
1651 coding->composing); \
1652 coding->composition_rule_follows = 0; \
1656 /* We are already handling a composition. If the method is \
1657 the following two, the codes following the current escape \
1658 sequence are actual characters stored in a buffer. */ \
1659 if (coding->composing == COMPOSITION_WITH_ALTCHARS \
1660 || coding->composing == COMPOSITION_WITH_RULE_ALTCHARS) \
1662 coding->composing = COMPOSITION_RELATIVE; \
1663 coding->composition_rule_follows = 0; \
1668 /* Handle composition end sequence ESC 1. */
1670 #define DECODE_COMPOSITION_END(c1) \
1672 if (! COMPOSING_P (coding)) \
1674 *dst++ = ISO_CODE_ESC; \
1676 coding->produced_char += 2; \
1680 CODING_ADD_COMPOSITION_END (coding, coding->produced_char); \
1681 coding->composing = COMPOSITION_NO; \
1685 /* Decode a composition rule from the byte C1 (and maybe one more byte
1686 from SRC) and store one encoded composition rule in
1687 coding->cmp_data. */
1689 #define DECODE_COMPOSITION_RULE(c1) \
1693 if (c1 < 81) /* old format (before ver.21) */ \
1695 int gref = (c1) / 9; \
1696 int nref = (c1) % 9; \
1697 if (gref == 4) gref = 10; \
1698 if (nref == 4) nref = 10; \
1699 rule = COMPOSITION_ENCODE_RULE (gref, nref); \
1701 else if (c1 < 93) /* new format (after ver.21) */ \
1703 ONE_MORE_BYTE (c2); \
1704 rule = COMPOSITION_ENCODE_RULE (c1 - 81, c2 - 32); \
1706 CODING_ADD_COMPOSITION_COMPONENT (coding, rule); \
1707 coding->composition_rule_follows = 0; \
1711 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
1714 decode_coding_iso2022 (coding
, source
, destination
, src_bytes
, dst_bytes
)
1715 struct coding_system
*coding
;
1716 unsigned char *source
, *destination
;
1717 int src_bytes
, dst_bytes
;
1719 unsigned char *src
= source
;
1720 unsigned char *src_end
= source
+ src_bytes
;
1721 unsigned char *dst
= destination
;
1722 unsigned char *dst_end
= destination
+ dst_bytes
;
1723 /* Charsets invoked to graphic plane 0 and 1 respectively. */
1724 int charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
1725 int charset1
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 1);
1726 /* SRC_BASE remembers the start position in source in each loop.
1727 The loop will be exited when there's not enough source code
1728 (within macro ONE_MORE_BYTE), or when there's not enough
1729 destination area to produce a character (within macro
1731 unsigned char *src_base
;
1733 Lisp_Object translation_table
;
1734 Lisp_Object safe_chars
;
1736 safe_chars
= coding_safe_chars (coding
);
1738 if (NILP (Venable_character_translation
))
1739 translation_table
= Qnil
;
1742 translation_table
= coding
->translation_table_for_decode
;
1743 if (NILP (translation_table
))
1744 translation_table
= Vstandard_translation_table_for_decode
;
1747 coding
->result
= CODING_FINISH_NORMAL
;
1756 /* We produce no character or one character. */
1757 switch (iso_code_class
[c1
])
1759 case ISO_0x20_or_0x7F
:
1760 if (COMPOSING_P (coding
) && coding
->composition_rule_follows
)
1762 DECODE_COMPOSITION_RULE (c1
);
1765 if (charset0
< 0 || CHARSET_CHARS (charset0
) == 94)
1767 /* This is SPACE or DEL. */
1768 charset
= CHARSET_ASCII
;
1771 /* This is a graphic character, we fall down ... */
1773 case ISO_graphic_plane_0
:
1774 if (COMPOSING_P (coding
) && coding
->composition_rule_follows
)
1776 DECODE_COMPOSITION_RULE (c1
);
1782 case ISO_0xA0_or_0xFF
:
1783 if (charset1
< 0 || CHARSET_CHARS (charset1
) == 94
1784 || coding
->flags
& CODING_FLAG_ISO_SEVEN_BITS
)
1785 goto label_invalid_code
;
1786 /* This is a graphic character, we fall down ... */
1788 case ISO_graphic_plane_1
:
1790 goto label_invalid_code
;
1795 if (COMPOSING_P (coding
))
1796 DECODE_COMPOSITION_END ('1');
1798 /* All ISO2022 control characters in this class have the
1799 same representation in Emacs internal format. */
1801 && (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
1802 && (coding
->eol_type
== CODING_EOL_CR
1803 || coding
->eol_type
== CODING_EOL_CRLF
))
1805 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
1806 goto label_end_of_loop
;
1808 charset
= CHARSET_ASCII
;
1812 if (COMPOSING_P (coding
))
1813 DECODE_COMPOSITION_END ('1');
1814 goto label_invalid_code
;
1816 case ISO_carriage_return
:
1817 if (COMPOSING_P (coding
))
1818 DECODE_COMPOSITION_END ('1');
1820 if (coding
->eol_type
== CODING_EOL_CR
)
1822 else if (coding
->eol_type
== CODING_EOL_CRLF
)
1825 if (c1
!= ISO_CODE_LF
)
1827 if (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
1829 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
1830 goto label_end_of_loop
;
1836 charset
= CHARSET_ASCII
;
1840 if (! (coding
->flags
& CODING_FLAG_ISO_LOCKING_SHIFT
)
1841 || CODING_SPEC_ISO_DESIGNATION (coding
, 1) < 0)
1842 goto label_invalid_code
;
1843 CODING_SPEC_ISO_INVOCATION (coding
, 0) = 1;
1844 charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
1848 if (! (coding
->flags
& CODING_FLAG_ISO_LOCKING_SHIFT
))
1849 goto label_invalid_code
;
1850 CODING_SPEC_ISO_INVOCATION (coding
, 0) = 0;
1851 charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
1854 case ISO_single_shift_2_7
:
1855 case ISO_single_shift_2
:
1856 if (! (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
))
1857 goto label_invalid_code
;
1858 /* SS2 is handled as an escape sequence of ESC 'N' */
1860 goto label_escape_sequence
;
1862 case ISO_single_shift_3
:
1863 if (! (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
))
1864 goto label_invalid_code
;
1865 /* SS2 is handled as an escape sequence of ESC 'O' */
1867 goto label_escape_sequence
;
1869 case ISO_control_sequence_introducer
:
1870 /* CSI is handled as an escape sequence of ESC '[' ... */
1872 goto label_escape_sequence
;
1876 label_escape_sequence
:
1877 /* Escape sequences handled by Emacs are invocation,
1878 designation, direction specification, and character
1879 composition specification. */
1882 case '&': /* revision of following character set */
1884 if (!(c1
>= '@' && c1
<= '~'))
1885 goto label_invalid_code
;
1887 if (c1
!= ISO_CODE_ESC
)
1888 goto label_invalid_code
;
1890 goto label_escape_sequence
;
1892 case '$': /* designation of 2-byte character set */
1893 if (! (coding
->flags
& CODING_FLAG_ISO_DESIGNATION
))
1894 goto label_invalid_code
;
1896 if (c1
>= '@' && c1
<= 'B')
1897 { /* designation of JISX0208.1978, GB2312.1980,
1899 DECODE_DESIGNATION (0, 2, 94, c1
);
1901 else if (c1
>= 0x28 && c1
<= 0x2B)
1902 { /* designation of DIMENSION2_CHARS94 character set */
1904 DECODE_DESIGNATION (c1
- 0x28, 2, 94, c2
);
1906 else if (c1
>= 0x2C && c1
<= 0x2F)
1907 { /* designation of DIMENSION2_CHARS96 character set */
1909 DECODE_DESIGNATION (c1
- 0x2C, 2, 96, c2
);
1912 goto label_invalid_code
;
1913 /* We must update these variables now. */
1914 charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
1915 charset1
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 1);
1918 case 'n': /* invocation of locking-shift-2 */
1919 if (! (coding
->flags
& CODING_FLAG_ISO_LOCKING_SHIFT
)
1920 || CODING_SPEC_ISO_DESIGNATION (coding
, 2) < 0)
1921 goto label_invalid_code
;
1922 CODING_SPEC_ISO_INVOCATION (coding
, 0) = 2;
1923 charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
1926 case 'o': /* invocation of locking-shift-3 */
1927 if (! (coding
->flags
& CODING_FLAG_ISO_LOCKING_SHIFT
)
1928 || CODING_SPEC_ISO_DESIGNATION (coding
, 3) < 0)
1929 goto label_invalid_code
;
1930 CODING_SPEC_ISO_INVOCATION (coding
, 0) = 3;
1931 charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
1934 case 'N': /* invocation of single-shift-2 */
1935 if (! (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
)
1936 || CODING_SPEC_ISO_DESIGNATION (coding
, 2) < 0)
1937 goto label_invalid_code
;
1938 charset
= CODING_SPEC_ISO_DESIGNATION (coding
, 2);
1940 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
1941 goto label_invalid_code
;
1944 case 'O': /* invocation of single-shift-3 */
1945 if (! (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
)
1946 || CODING_SPEC_ISO_DESIGNATION (coding
, 3) < 0)
1947 goto label_invalid_code
;
1948 charset
= CODING_SPEC_ISO_DESIGNATION (coding
, 3);
1950 if (c1
< 0x20 || (c1
>= 0x80 && c1
< 0xA0))
1951 goto label_invalid_code
;
1954 case '0': case '2': case '3': case '4': /* start composition */
1955 DECODE_COMPOSITION_START (c1
);
1958 case '1': /* end composition */
1959 DECODE_COMPOSITION_END (c1
);
1962 case '[': /* specification of direction */
1963 if (coding
->flags
& CODING_FLAG_ISO_NO_DIRECTION
)
1964 goto label_invalid_code
;
1965 /* For the moment, nested direction is not supported.
1966 So, `coding->mode & CODING_MODE_DIRECTION' zero means
1967 left-to-right, and nonzero means right-to-left. */
1971 case ']': /* end of the current direction */
1972 coding
->mode
&= ~CODING_MODE_DIRECTION
;
1974 case '0': /* end of the current direction */
1975 case '1': /* start of left-to-right direction */
1978 coding
->mode
&= ~CODING_MODE_DIRECTION
;
1980 goto label_invalid_code
;
1983 case '2': /* start of right-to-left direction */
1986 coding
->mode
|= CODING_MODE_DIRECTION
;
1988 goto label_invalid_code
;
1992 goto label_invalid_code
;
1997 if (! (coding
->flags
& CODING_FLAG_ISO_DESIGNATION
))
1998 goto label_invalid_code
;
1999 if (c1
>= 0x28 && c1
<= 0x2B)
2000 { /* designation of DIMENSION1_CHARS94 character set */
2002 DECODE_DESIGNATION (c1
- 0x28, 1, 94, c2
);
2004 else if (c1
>= 0x2C && c1
<= 0x2F)
2005 { /* designation of DIMENSION1_CHARS96 character set */
2007 DECODE_DESIGNATION (c1
- 0x2C, 1, 96, c2
);
2010 goto label_invalid_code
;
2011 /* We must update these variables now. */
2012 charset0
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 0);
2013 charset1
= CODING_SPEC_ISO_PLANE_CHARSET (coding
, 1);
2018 /* Now we know CHARSET and 1st position code C1 of a character.
2019 Produce a multibyte sequence for that character while getting
2020 2nd position code C2 if necessary. */
2021 if (CHARSET_DIMENSION (charset
) == 2)
2024 if (c1
< 0x80 ? c2
< 0x20 || c2
>= 0x80 : c2
< 0xA0)
2025 /* C2 is not in a valid range. */
2026 goto label_invalid_code
;
2028 c
= DECODE_ISO_CHARACTER (charset
, c1
, c2
);
2034 if (COMPOSING_P (coding
))
2035 DECODE_COMPOSITION_END ('1');
2042 coding
->consumed
= coding
->consumed_char
= src_base
- source
;
2043 coding
->produced
= dst
- destination
;
2048 /* ISO2022 encoding stuff. */
2051 It is not enough to say just "ISO2022" on encoding, we have to
2052 specify more details. In Emacs, each ISO2022 coding system
2053 variant has the following specifications:
2054 1. Initial designation to G0 through G3.
2055 2. Allows short-form designation?
2056 3. ASCII should be designated to G0 before control characters?
2057 4. ASCII should be designated to G0 at end of line?
2058 5. 7-bit environment or 8-bit environment?
2059 6. Use locking-shift?
2060 7. Use Single-shift?
2061 And the following two are only for Japanese:
2062 8. Use ASCII in place of JIS0201-1976-Roman?
2063 9. Use JISX0208-1983 in place of JISX0208-1978?
2064 These specifications are encoded in `coding->flags' as flag bits
2065 defined by macros CODING_FLAG_ISO_XXX. See `coding.h' for more
2069 /* Produce codes (escape sequence) for designating CHARSET to graphic
2070 register REG at DST, and increment DST. If <final-char> of CHARSET is
2071 '@', 'A', or 'B' and the coding system CODING allows, produce
2072 designation sequence of short-form. */
2074 #define ENCODE_DESIGNATION(charset, reg, coding) \
2076 unsigned char final_char = CHARSET_ISO_FINAL_CHAR (charset); \
2077 char *intermediate_char_94 = "()*+"; \
2078 char *intermediate_char_96 = ",-./"; \
2079 int revision = CODING_SPEC_ISO_REVISION_NUMBER(coding, charset); \
2081 if (revision < 255) \
2083 *dst++ = ISO_CODE_ESC; \
2085 *dst++ = '@' + revision; \
2087 *dst++ = ISO_CODE_ESC; \
2088 if (CHARSET_DIMENSION (charset) == 1) \
2090 if (CHARSET_CHARS (charset) == 94) \
2091 *dst++ = (unsigned char) (intermediate_char_94[reg]); \
2093 *dst++ = (unsigned char) (intermediate_char_96[reg]); \
2098 if (CHARSET_CHARS (charset) == 94) \
2100 if (! (coding->flags & CODING_FLAG_ISO_SHORT_FORM) \
2102 || final_char < '@' || final_char > 'B') \
2103 *dst++ = (unsigned char) (intermediate_char_94[reg]); \
2106 *dst++ = (unsigned char) (intermediate_char_96[reg]); \
2108 *dst++ = final_char; \
2109 CODING_SPEC_ISO_DESIGNATION (coding, reg) = charset; \
2112 /* The following two macros produce codes (control character or escape
2113 sequence) for ISO2022 single-shift functions (single-shift-2 and
2116 #define ENCODE_SINGLE_SHIFT_2 \
2118 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \
2119 *dst++ = ISO_CODE_ESC, *dst++ = 'N'; \
2121 *dst++ = ISO_CODE_SS2; \
2122 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 1; \
2125 #define ENCODE_SINGLE_SHIFT_3 \
2127 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \
2128 *dst++ = ISO_CODE_ESC, *dst++ = 'O'; \
2130 *dst++ = ISO_CODE_SS3; \
2131 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 1; \
2134 /* The following four macros produce codes (control character or
2135 escape sequence) for ISO2022 locking-shift functions (shift-in,
2136 shift-out, locking-shift-2, and locking-shift-3). */
2138 #define ENCODE_SHIFT_IN \
2140 *dst++ = ISO_CODE_SI; \
2141 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; \
2144 #define ENCODE_SHIFT_OUT \
2146 *dst++ = ISO_CODE_SO; \
2147 CODING_SPEC_ISO_INVOCATION (coding, 0) = 1; \
2150 #define ENCODE_LOCKING_SHIFT_2 \
2152 *dst++ = ISO_CODE_ESC, *dst++ = 'n'; \
2153 CODING_SPEC_ISO_INVOCATION (coding, 0) = 2; \
2156 #define ENCODE_LOCKING_SHIFT_3 \
2158 *dst++ = ISO_CODE_ESC, *dst++ = 'o'; \
2159 CODING_SPEC_ISO_INVOCATION (coding, 0) = 3; \
2162 /* Produce codes for a DIMENSION1 character whose character set is
2163 CHARSET and whose position-code is C1. Designation and invocation
2164 sequences are also produced in advance if necessary. */
2166 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \
2168 if (CODING_SPEC_ISO_SINGLE_SHIFTING (coding)) \
2170 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \
2171 *dst++ = c1 & 0x7F; \
2173 *dst++ = c1 | 0x80; \
2174 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; \
2177 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 0)) \
2179 *dst++ = c1 & 0x7F; \
2182 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 1)) \
2184 *dst++ = c1 | 0x80; \
2188 /* Since CHARSET is not yet invoked to any graphic planes, we \
2189 must invoke it, or, at first, designate it to some graphic \
2190 register. Then repeat the loop to actually produce the \
2192 dst = encode_invocation_designation (charset, coding, dst); \
2195 /* Produce codes for a DIMENSION2 character whose character set is
2196 CHARSET and whose position-codes are C1 and C2. Designation and
2197 invocation codes are also produced in advance if necessary. */
2199 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \
2201 if (CODING_SPEC_ISO_SINGLE_SHIFTING (coding)) \
2203 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \
2204 *dst++ = c1 & 0x7F, *dst++ = c2 & 0x7F; \
2206 *dst++ = c1 | 0x80, *dst++ = c2 | 0x80; \
2207 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; \
2210 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 0)) \
2212 *dst++ = c1 & 0x7F, *dst++= c2 & 0x7F; \
2215 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 1)) \
2217 *dst++ = c1 | 0x80, *dst++= c2 | 0x80; \
2221 /* Since CHARSET is not yet invoked to any graphic planes, we \
2222 must invoke it, or, at first, designate it to some graphic \
2223 register. Then repeat the loop to actually produce the \
2225 dst = encode_invocation_designation (charset, coding, dst); \
2228 #define ENCODE_ISO_CHARACTER(c) \
2230 int charset, c1, c2; \
2232 SPLIT_CHAR (c, charset, c1, c2); \
2233 if (CHARSET_DEFINED_P (charset)) \
2235 if (CHARSET_DIMENSION (charset) == 1) \
2237 if (charset == CHARSET_ASCII \
2238 && coding->flags & CODING_FLAG_ISO_USE_ROMAN) \
2239 charset = charset_latin_jisx0201; \
2240 ENCODE_ISO_CHARACTER_DIMENSION1 (charset, c1); \
2244 if (charset == charset_jisx0208 \
2245 && coding->flags & CODING_FLAG_ISO_USE_OLDJIS) \
2246 charset = charset_jisx0208_1978; \
2247 ENCODE_ISO_CHARACTER_DIMENSION2 (charset, c1, c2); \
2259 /* Instead of encoding character C, produce one or two `?'s. */
2261 #define ENCODE_UNSAFE_CHARACTER(c) \
2263 ENCODE_ISO_CHARACTER (CODING_INHIBIT_CHARACTER_SUBSTITUTION); \
2264 if (CHARSET_WIDTH (CHAR_CHARSET (c)) > 1) \
2265 ENCODE_ISO_CHARACTER (CODING_INHIBIT_CHARACTER_SUBSTITUTION); \
2269 /* Produce designation and invocation codes at a place pointed by DST
2270 to use CHARSET. The element `spec.iso2022' of *CODING is updated.
2274 encode_invocation_designation (charset
, coding
, dst
)
2276 struct coding_system
*coding
;
2279 int reg
; /* graphic register number */
2281 /* At first, check designations. */
2282 for (reg
= 0; reg
< 4; reg
++)
2283 if (charset
== CODING_SPEC_ISO_DESIGNATION (coding
, reg
))
2288 /* CHARSET is not yet designated to any graphic registers. */
2289 /* At first check the requested designation. */
2290 reg
= CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
);
2291 if (reg
== CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION
)
2292 /* Since CHARSET requests no special designation, designate it
2293 to graphic register 0. */
2296 ENCODE_DESIGNATION (charset
, reg
, coding
);
2299 if (CODING_SPEC_ISO_INVOCATION (coding
, 0) != reg
2300 && CODING_SPEC_ISO_INVOCATION (coding
, 1) != reg
)
2302 /* Since the graphic register REG is not invoked to any graphic
2303 planes, invoke it to graphic plane 0. */
2306 case 0: /* graphic register 0 */
2310 case 1: /* graphic register 1 */
2314 case 2: /* graphic register 2 */
2315 if (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
)
2316 ENCODE_SINGLE_SHIFT_2
;
2318 ENCODE_LOCKING_SHIFT_2
;
2321 case 3: /* graphic register 3 */
2322 if (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
)
2323 ENCODE_SINGLE_SHIFT_3
;
2325 ENCODE_LOCKING_SHIFT_3
;
2333 /* Produce 2-byte codes for encoded composition rule RULE. */
2335 #define ENCODE_COMPOSITION_RULE(rule) \
2338 COMPOSITION_DECODE_RULE (rule, gref, nref); \
2339 *dst++ = 32 + 81 + gref; \
2340 *dst++ = 32 + nref; \
2343 /* Produce codes for indicating the start of a composition sequence
2344 (ESC 0, ESC 3, or ESC 4). DATA points to an array of integers
2345 which specify information about the composition. See the comment
2346 in coding.h for the format of DATA. */
2348 #define ENCODE_COMPOSITION_START(coding, data) \
2350 coding->composing = data[3]; \
2351 *dst++ = ISO_CODE_ESC; \
2352 if (coding->composing == COMPOSITION_RELATIVE) \
2356 *dst++ = (coding->composing == COMPOSITION_WITH_ALTCHARS \
2358 coding->cmp_data_index = coding->cmp_data_start + 4; \
2359 coding->composition_rule_follows = 0; \
2363 /* Produce codes for indicating the end of the current composition. */
2365 #define ENCODE_COMPOSITION_END(coding, data) \
2367 *dst++ = ISO_CODE_ESC; \
2369 coding->cmp_data_start += data[0]; \
2370 coding->composing = COMPOSITION_NO; \
2371 if (coding->cmp_data_start == coding->cmp_data->used \
2372 && coding->cmp_data->next) \
2374 coding->cmp_data = coding->cmp_data->next; \
2375 coding->cmp_data_start = 0; \
2379 /* Produce composition start sequence ESC 0. Here, this sequence
2380 doesn't mean the start of a new composition but means that we have
2381 just produced components (alternate chars and composition rules) of
2382 the composition and the actual text follows in SRC. */
2384 #define ENCODE_COMPOSITION_FAKE_START(coding) \
2386 *dst++ = ISO_CODE_ESC; \
2388 coding->composing = COMPOSITION_RELATIVE; \
2391 /* The following three macros produce codes for indicating direction
2393 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \
2395 if (coding->flags == CODING_FLAG_ISO_SEVEN_BITS) \
2396 *dst++ = ISO_CODE_ESC, *dst++ = '['; \
2398 *dst++ = ISO_CODE_CSI; \
2401 #define ENCODE_DIRECTION_R2L \
2402 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst), *dst++ = '2', *dst++ = ']'
2404 #define ENCODE_DIRECTION_L2R \
2405 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst), *dst++ = '0', *dst++ = ']'
2407 /* Produce codes for designation and invocation to reset the graphic
2408 planes and registers to initial state. */
2409 #define ENCODE_RESET_PLANE_AND_REGISTER \
2412 if (CODING_SPEC_ISO_INVOCATION (coding, 0) != 0) \
2414 for (reg = 0; reg < 4; reg++) \
2415 if (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg) >= 0 \
2416 && (CODING_SPEC_ISO_DESIGNATION (coding, reg) \
2417 != CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg))) \
2418 ENCODE_DESIGNATION \
2419 (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg), reg, coding); \
2422 /* Produce designation sequences of charsets in the line started from
2423 SRC to a place pointed by DST, and return updated DST.
2425 If the current block ends before any end-of-line, we may fail to
2426 find all the necessary designations. */
2428 static unsigned char *
2429 encode_designation_at_bol (coding
, translation_table
, src
, src_end
, dst
)
2430 struct coding_system
*coding
;
2431 Lisp_Object translation_table
;
2432 unsigned char *src
, *src_end
, *dst
;
2434 int charset
, c
, found
= 0, reg
;
2435 /* Table of charsets to be designated to each graphic register. */
2438 for (reg
= 0; reg
< 4; reg
++)
2447 charset
= CHAR_CHARSET (c
);
2448 reg
= CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
);
2449 if (reg
!= CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION
&& r
[reg
] < 0)
2459 for (reg
= 0; reg
< 4; reg
++)
2461 && CODING_SPEC_ISO_DESIGNATION (coding
, reg
) != r
[reg
])
2462 ENCODE_DESIGNATION (r
[reg
], reg
, coding
);
2468 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */
2471 encode_coding_iso2022 (coding
, source
, destination
, src_bytes
, dst_bytes
)
2472 struct coding_system
*coding
;
2473 unsigned char *source
, *destination
;
2474 int src_bytes
, dst_bytes
;
2476 unsigned char *src
= source
;
2477 unsigned char *src_end
= source
+ src_bytes
;
2478 unsigned char *dst
= destination
;
2479 unsigned char *dst_end
= destination
+ dst_bytes
;
2480 /* Since the maximum bytes produced by each loop is 20, we subtract 19
2481 from DST_END to assure overflow checking is necessary only at the
2483 unsigned char *adjusted_dst_end
= dst_end
- 19;
2484 /* SRC_BASE remembers the start position in source in each loop.
2485 The loop will be exited when there's not enough source text to
2486 analyze multi-byte codes (within macro ONE_MORE_CHAR), or when
2487 there's not enough destination area to produce encoded codes
2488 (within macro EMIT_BYTES). */
2489 unsigned char *src_base
;
2491 Lisp_Object translation_table
;
2492 Lisp_Object safe_chars
;
2494 safe_chars
= coding_safe_chars (coding
);
2496 if (NILP (Venable_character_translation
))
2497 translation_table
= Qnil
;
2500 translation_table
= coding
->translation_table_for_encode
;
2501 if (NILP (translation_table
))
2502 translation_table
= Vstandard_translation_table_for_encode
;
2505 coding
->consumed_char
= 0;
2511 if (dst
>= (dst_bytes
? adjusted_dst_end
: (src
- 19)))
2513 coding
->result
= CODING_FINISH_INSUFFICIENT_DST
;
2517 if (coding
->flags
& CODING_FLAG_ISO_DESIGNATE_AT_BOL
2518 && CODING_SPEC_ISO_BOL (coding
))
2520 /* We have to produce designation sequences if any now. */
2521 dst
= encode_designation_at_bol (coding
, translation_table
,
2523 CODING_SPEC_ISO_BOL (coding
) = 0;
2526 /* Check composition start and end. */
2527 if (coding
->composing
!= COMPOSITION_DISABLED
2528 && coding
->cmp_data_start
< coding
->cmp_data
->used
)
2530 struct composition_data
*cmp_data
= coding
->cmp_data
;
2531 int *data
= cmp_data
->data
+ coding
->cmp_data_start
;
2532 int this_pos
= cmp_data
->char_offset
+ coding
->consumed_char
;
2534 if (coding
->composing
== COMPOSITION_RELATIVE
)
2536 if (this_pos
== data
[2])
2538 ENCODE_COMPOSITION_END (coding
, data
);
2539 cmp_data
= coding
->cmp_data
;
2540 data
= cmp_data
->data
+ coding
->cmp_data_start
;
2543 else if (COMPOSING_P (coding
))
2545 /* COMPOSITION_WITH_ALTCHARS or COMPOSITION_WITH_RULE_ALTCHAR */
2546 if (coding
->cmp_data_index
== coding
->cmp_data_start
+ data
[0])
2547 /* We have consumed components of the composition.
2548 What follows in SRC is the composition's base
2550 ENCODE_COMPOSITION_FAKE_START (coding
);
2553 int c
= cmp_data
->data
[coding
->cmp_data_index
++];
2554 if (coding
->composition_rule_follows
)
2556 ENCODE_COMPOSITION_RULE (c
);
2557 coding
->composition_rule_follows
= 0;
2561 if (coding
->flags
& CODING_FLAG_ISO_SAFE
2562 && ! CODING_SAFE_CHAR_P (safe_chars
, c
))
2563 ENCODE_UNSAFE_CHARACTER (c
);
2565 ENCODE_ISO_CHARACTER (c
);
2566 if (coding
->composing
== COMPOSITION_WITH_RULE_ALTCHARS
)
2567 coding
->composition_rule_follows
= 1;
2572 if (!COMPOSING_P (coding
))
2574 if (this_pos
== data
[1])
2576 ENCODE_COMPOSITION_START (coding
, data
);
2584 /* Now encode the character C. */
2585 if (c
< 0x20 || c
== 0x7F)
2589 if (! (coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
))
2591 if (coding
->flags
& CODING_FLAG_ISO_RESET_AT_CNTL
)
2592 ENCODE_RESET_PLANE_AND_REGISTER
;
2596 /* fall down to treat '\r' as '\n' ... */
2601 if (coding
->flags
& CODING_FLAG_ISO_RESET_AT_EOL
)
2602 ENCODE_RESET_PLANE_AND_REGISTER
;
2603 if (coding
->flags
& CODING_FLAG_ISO_INIT_AT_BOL
)
2604 bcopy (coding
->spec
.iso2022
.initial_designation
,
2605 coding
->spec
.iso2022
.current_designation
,
2606 sizeof coding
->spec
.iso2022
.initial_designation
);
2607 if (coding
->eol_type
== CODING_EOL_LF
2608 || coding
->eol_type
== CODING_EOL_UNDECIDED
)
2609 *dst
++ = ISO_CODE_LF
;
2610 else if (coding
->eol_type
== CODING_EOL_CRLF
)
2611 *dst
++ = ISO_CODE_CR
, *dst
++ = ISO_CODE_LF
;
2613 *dst
++ = ISO_CODE_CR
;
2614 CODING_SPEC_ISO_BOL (coding
) = 1;
2618 if (coding
->flags
& CODING_FLAG_ISO_RESET_AT_CNTL
)
2619 ENCODE_RESET_PLANE_AND_REGISTER
;
2623 else if (ASCII_BYTE_P (c
))
2624 ENCODE_ISO_CHARACTER (c
);
2625 else if (SINGLE_BYTE_CHAR_P (c
))
2630 else if (coding
->flags
& CODING_FLAG_ISO_SAFE
2631 && ! CODING_SAFE_CHAR_P (safe_chars
, c
))
2632 ENCODE_UNSAFE_CHARACTER (c
);
2634 ENCODE_ISO_CHARACTER (c
);
2636 coding
->consumed_char
++;
2640 coding
->consumed
= src_base
- source
;
2641 coding
->produced
= coding
->produced_char
= dst
- destination
;
2645 /*** 4. SJIS and BIG5 handlers ***/
2647 /* Although SJIS and BIG5 are not ISO coding systems, they are used
2648 quite widely. So, for the moment, Emacs supports them in the bare
2649 C code. But, in the future, they may be supported only by CCL. */
2651 /* SJIS is a coding system encoding three character sets: ASCII, right
2652 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded
2653 as is. A character of charset katakana-jisx0201 is encoded by
2654 "position-code + 0x80". A character of charset japanese-jisx0208
2655 is encoded in 2-byte but two position-codes are divided and shifted
2656 so that it fits in the range below.
2658 --- CODE RANGE of SJIS ---
2659 (character set) (range)
2661 KATAKANA-JISX0201 0xA1 .. 0xDF
2662 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF
2663 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC
2664 -------------------------------
2668 /* BIG5 is a coding system encoding two character sets: ASCII and
2669 Big5. An ASCII character is encoded as is. Big5 is a two-byte
2670 character set and is encoded in two bytes.
2672 --- CODE RANGE of BIG5 ---
2673 (character set) (range)
2675 Big5 (1st byte) 0xA1 .. 0xFE
2676 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE
2677 --------------------------
2679 Since the number of characters in Big5 is larger than maximum
2680 characters in Emacs' charset (96x96), it can't be handled as one
2681 charset. So, in Emacs, Big5 is divided into two: `charset-big5-1'
2682 and `charset-big5-2'. Both are DIMENSION2 and CHARS94. The former
2683 contains frequently used characters and the latter contains less
2684 frequently used characters. */
2686 /* Macros to decode or encode a character of Big5 in BIG5. B1 and B2
2687 are the 1st and 2nd position-codes of Big5 in BIG5 coding system.
2688 C1 and C2 are the 1st and 2nd position-codes of of Emacs' internal
2689 format. CHARSET is `charset_big5_1' or `charset_big5_2'. */
2691 /* Number of Big5 characters which have the same code in 1st byte. */
2692 #define BIG5_SAME_ROW (0xFF - 0xA1 + 0x7F - 0x40)
2694 #define DECODE_BIG5(b1, b2, charset, c1, c2) \
2697 = (b1 - 0xA1) * BIG5_SAME_ROW + b2 - (b2 < 0x7F ? 0x40 : 0x62); \
2699 charset = charset_big5_1; \
2702 charset = charset_big5_2; \
2703 temp -= (0xC9 - 0xA1) * BIG5_SAME_ROW; \
2705 c1 = temp / (0xFF - 0xA1) + 0x21; \
2706 c2 = temp % (0xFF - 0xA1) + 0x21; \
2709 #define ENCODE_BIG5(charset, c1, c2, b1, b2) \
2711 unsigned int temp = (c1 - 0x21) * (0xFF - 0xA1) + (c2 - 0x21); \
2712 if (charset == charset_big5_2) \
2713 temp += BIG5_SAME_ROW * (0xC9 - 0xA1); \
2714 b1 = temp / BIG5_SAME_ROW + 0xA1; \
2715 b2 = temp % BIG5_SAME_ROW; \
2716 b2 += b2 < 0x3F ? 0x40 : 0x62; \
2719 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2720 Check if a text is encoded in SJIS. If it is, return
2721 CODING_CATEGORY_MASK_SJIS, else return 0. */
2724 detect_coding_sjis (src
, src_end
, multibytep
)
2725 unsigned char *src
, *src_end
;
2729 /* Dummy for ONE_MORE_BYTE. */
2730 struct coding_system dummy_coding
;
2731 struct coding_system
*coding
= &dummy_coding
;
2735 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
2738 if (c
== 0x80 || c
== 0xA0 || c
> 0xEF)
2740 if (c
<= 0x9F || c
>= 0xE0)
2742 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
2743 if (c
< 0x40 || c
== 0x7F || c
> 0xFC)
2748 return CODING_CATEGORY_MASK_SJIS
;
2751 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2752 Check if a text is encoded in BIG5. If it is, return
2753 CODING_CATEGORY_MASK_BIG5, else return 0. */
2756 detect_coding_big5 (src
, src_end
, multibytep
)
2757 unsigned char *src
, *src_end
;
2761 /* Dummy for ONE_MORE_BYTE. */
2762 struct coding_system dummy_coding
;
2763 struct coding_system
*coding
= &dummy_coding
;
2767 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
2770 if (c
< 0xA1 || c
> 0xFE)
2772 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
2773 if (c
< 0x40 || (c
> 0x7F && c
< 0xA1) || c
> 0xFE)
2777 return CODING_CATEGORY_MASK_BIG5
;
2780 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2781 Check if a text is encoded in UTF-8. If it is, return
2782 CODING_CATEGORY_MASK_UTF_8, else return 0. */
2784 #define UTF_8_1_OCTET_P(c) ((c) < 0x80)
2785 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80)
2786 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0)
2787 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0)
2788 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0)
2789 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8)
2790 #define UTF_8_6_OCTET_LEADING_P(c) (((c) & 0xFE) == 0xFC)
2793 detect_coding_utf_8 (src
, src_end
, multibytep
)
2794 unsigned char *src
, *src_end
;
2798 int seq_maybe_bytes
;
2799 /* Dummy for ONE_MORE_BYTE. */
2800 struct coding_system dummy_coding
;
2801 struct coding_system
*coding
= &dummy_coding
;
2805 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
2806 if (UTF_8_1_OCTET_P (c
))
2808 else if (UTF_8_2_OCTET_LEADING_P (c
))
2809 seq_maybe_bytes
= 1;
2810 else if (UTF_8_3_OCTET_LEADING_P (c
))
2811 seq_maybe_bytes
= 2;
2812 else if (UTF_8_4_OCTET_LEADING_P (c
))
2813 seq_maybe_bytes
= 3;
2814 else if (UTF_8_5_OCTET_LEADING_P (c
))
2815 seq_maybe_bytes
= 4;
2816 else if (UTF_8_6_OCTET_LEADING_P (c
))
2817 seq_maybe_bytes
= 5;
2823 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
2824 if (!UTF_8_EXTRA_OCTET_P (c
))
2828 while (seq_maybe_bytes
> 0);
2832 return CODING_CATEGORY_MASK_UTF_8
;
2835 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
2836 Check if a text is encoded in UTF-16 Big Endian (endian == 1) or
2837 Little Endian (otherwise). If it is, return
2838 CODING_CATEGORY_MASK_UTF_16_BE or CODING_CATEGORY_MASK_UTF_16_LE,
2841 #define UTF_16_INVALID_P(val) \
2842 (((val) == 0xFFFE) \
2843 || ((val) == 0xFFFF))
2845 #define UTF_16_HIGH_SURROGATE_P(val) \
2846 (((val) & 0xD800) == 0xD800)
2848 #define UTF_16_LOW_SURROGATE_P(val) \
2849 (((val) & 0xDC00) == 0xDC00)
2852 detect_coding_utf_16 (src
, src_end
, multibytep
)
2853 unsigned char *src
, *src_end
;
2856 unsigned char c1
, c2
;
2857 /* Dummy for TWO_MORE_BYTES. */
2858 struct coding_system dummy_coding
;
2859 struct coding_system
*coding
= &dummy_coding
;
2861 ONE_MORE_BYTE_CHECK_MULTIBYTE (c1
, multibytep
);
2862 ONE_MORE_BYTE_CHECK_MULTIBYTE (c2
, multibytep
);
2864 if ((c1
== 0xFF) && (c2
== 0xFE))
2865 return CODING_CATEGORY_MASK_UTF_16_LE
;
2866 else if ((c1
== 0xFE) && (c2
== 0xFF))
2867 return CODING_CATEGORY_MASK_UTF_16_BE
;
2873 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions".
2874 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */
2877 decode_coding_sjis_big5 (coding
, source
, destination
,
2878 src_bytes
, dst_bytes
, sjis_p
)
2879 struct coding_system
*coding
;
2880 unsigned char *source
, *destination
;
2881 int src_bytes
, dst_bytes
;
2884 unsigned char *src
= source
;
2885 unsigned char *src_end
= source
+ src_bytes
;
2886 unsigned char *dst
= destination
;
2887 unsigned char *dst_end
= destination
+ dst_bytes
;
2888 /* SRC_BASE remembers the start position in source in each loop.
2889 The loop will be exited when there's not enough source code
2890 (within macro ONE_MORE_BYTE), or when there's not enough
2891 destination area to produce a character (within macro
2893 unsigned char *src_base
;
2894 Lisp_Object translation_table
;
2896 if (NILP (Venable_character_translation
))
2897 translation_table
= Qnil
;
2900 translation_table
= coding
->translation_table_for_decode
;
2901 if (NILP (translation_table
))
2902 translation_table
= Vstandard_translation_table_for_decode
;
2905 coding
->produced_char
= 0;
2908 int c
, charset
, c1
, c2
;
2915 charset
= CHARSET_ASCII
;
2920 if (coding
->eol_type
== CODING_EOL_CRLF
)
2925 else if (coding
->mode
2926 & CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
2928 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
2929 goto label_end_of_loop
;
2932 /* To process C2 again, SRC is subtracted by 1. */
2935 else if (coding
->eol_type
== CODING_EOL_CR
)
2939 && (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
2940 && (coding
->eol_type
== CODING_EOL_CR
2941 || coding
->eol_type
== CODING_EOL_CRLF
))
2943 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
2944 goto label_end_of_loop
;
2952 if (c1
== 0x80 || c1
== 0xA0 || c1
> 0xEF)
2953 goto label_invalid_code
;
2954 if (c1
<= 0x9F || c1
>= 0xE0)
2956 /* SJIS -> JISX0208 */
2958 if (c2
< 0x40 || c2
== 0x7F || c2
> 0xFC)
2959 goto label_invalid_code
;
2960 DECODE_SJIS (c1
, c2
, c1
, c2
);
2961 charset
= charset_jisx0208
;
2964 /* SJIS -> JISX0201-Kana */
2965 charset
= charset_katakana_jisx0201
;
2970 if (c1
< 0xA0 || c1
> 0xFE)
2971 goto label_invalid_code
;
2973 if (c2
< 0x40 || (c2
> 0x7E && c2
< 0xA1) || c2
> 0xFE)
2974 goto label_invalid_code
;
2975 DECODE_BIG5 (c1
, c2
, charset
, c1
, c2
);
2979 c
= DECODE_ISO_CHARACTER (charset
, c1
, c2
);
2991 coding
->consumed
= coding
->consumed_char
= src_base
- source
;
2992 coding
->produced
= dst
- destination
;
2996 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions".
2997 This function can encode charsets `ascii', `katakana-jisx0201',
2998 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We
2999 are sure that all these charsets are registered as official charset
3000 (i.e. do not have extended leading-codes). Characters of other
3001 charsets are produced without any encoding. If SJIS_P is 1, encode
3002 SJIS text, else encode BIG5 text. */
3005 encode_coding_sjis_big5 (coding
, source
, destination
,
3006 src_bytes
, dst_bytes
, sjis_p
)
3007 struct coding_system
*coding
;
3008 unsigned char *source
, *destination
;
3009 int src_bytes
, dst_bytes
;
3012 unsigned char *src
= source
;
3013 unsigned char *src_end
= source
+ src_bytes
;
3014 unsigned char *dst
= destination
;
3015 unsigned char *dst_end
= destination
+ dst_bytes
;
3016 /* SRC_BASE remembers the start position in source in each loop.
3017 The loop will be exited when there's not enough source text to
3018 analyze multi-byte codes (within macro ONE_MORE_CHAR), or when
3019 there's not enough destination area to produce encoded codes
3020 (within macro EMIT_BYTES). */
3021 unsigned char *src_base
;
3022 Lisp_Object translation_table
;
3024 if (NILP (Venable_character_translation
))
3025 translation_table
= Qnil
;
3028 translation_table
= coding
->translation_table_for_encode
;
3029 if (NILP (translation_table
))
3030 translation_table
= Vstandard_translation_table_for_encode
;
3035 int c
, charset
, c1
, c2
;
3040 /* Now encode the character C. */
3041 if (SINGLE_BYTE_CHAR_P (c
))
3046 if (!coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
)
3053 if (coding
->eol_type
== CODING_EOL_CRLF
)
3055 EMIT_TWO_BYTES ('\r', c
);
3058 else if (coding
->eol_type
== CODING_EOL_CR
)
3066 SPLIT_CHAR (c
, charset
, c1
, c2
);
3069 if (charset
== charset_jisx0208
3070 || charset
== charset_jisx0208_1978
)
3072 ENCODE_SJIS (c1
, c2
, c1
, c2
);
3073 EMIT_TWO_BYTES (c1
, c2
);
3075 else if (charset
== charset_katakana_jisx0201
)
3076 EMIT_ONE_BYTE (c1
| 0x80);
3077 else if (charset
== charset_latin_jisx0201
)
3080 /* There's no way other than producing the internal
3082 EMIT_BYTES (src_base
, src
);
3086 if (charset
== charset_big5_1
|| charset
== charset_big5_2
)
3088 ENCODE_BIG5 (charset
, c1
, c2
, c1
, c2
);
3089 EMIT_TWO_BYTES (c1
, c2
);
3092 /* There's no way other than producing the internal
3094 EMIT_BYTES (src_base
, src
);
3097 coding
->consumed_char
++;
3101 coding
->consumed
= src_base
- source
;
3102 coding
->produced
= coding
->produced_char
= dst
- destination
;
3106 /*** 5. CCL handlers ***/
3108 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions".
3109 Check if a text is encoded in a coding system of which
3110 encoder/decoder are written in CCL program. If it is, return
3111 CODING_CATEGORY_MASK_CCL, else return 0. */
3114 detect_coding_ccl (src
, src_end
, multibytep
)
3115 unsigned char *src
, *src_end
;
3118 unsigned char *valid
;
3120 /* Dummy for ONE_MORE_BYTE. */
3121 struct coding_system dummy_coding
;
3122 struct coding_system
*coding
= &dummy_coding
;
3124 /* No coding system is assigned to coding-category-ccl. */
3125 if (!coding_system_table
[CODING_CATEGORY_IDX_CCL
])
3128 valid
= coding_system_table
[CODING_CATEGORY_IDX_CCL
]->spec
.ccl
.valid_codes
;
3131 ONE_MORE_BYTE_CHECK_MULTIBYTE (c
, multibytep
);
3136 return CODING_CATEGORY_MASK_CCL
;
3140 /*** 6. End-of-line handlers ***/
3142 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */
3145 decode_eol (coding
, source
, destination
, src_bytes
, dst_bytes
)
3146 struct coding_system
*coding
;
3147 unsigned char *source
, *destination
;
3148 int src_bytes
, dst_bytes
;
3150 unsigned char *src
= source
;
3151 unsigned char *dst
= destination
;
3152 unsigned char *src_end
= src
+ src_bytes
;
3153 unsigned char *dst_end
= dst
+ dst_bytes
;
3154 Lisp_Object translation_table
;
3155 /* SRC_BASE remembers the start position in source in each loop.
3156 The loop will be exited when there's not enough source code
3157 (within macro ONE_MORE_BYTE), or when there's not enough
3158 destination area to produce a character (within macro
3160 unsigned char *src_base
;
3163 translation_table
= Qnil
;
3164 switch (coding
->eol_type
)
3166 case CODING_EOL_CRLF
:
3176 if (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
3178 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
3179 goto label_end_of_loop
;
3186 && (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
))
3188 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
3189 goto label_end_of_loop
;
3202 if (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
3204 coding
->result
= CODING_FINISH_INCONSISTENT_EOL
;
3205 goto label_end_of_loop
;
3214 default: /* no need for EOL handling */
3224 coding
->consumed
= coding
->consumed_char
= src_base
- source
;
3225 coding
->produced
= dst
- destination
;
3229 /* See "GENERAL NOTES about `encode_coding_XXX ()' functions". Encode
3230 format of end-of-line according to `coding->eol_type'. It also
3231 convert multibyte form 8-bit characters to unibyte if
3232 CODING->src_multibyte is nonzero. If `coding->mode &
3233 CODING_MODE_SELECTIVE_DISPLAY' is nonzero, code '\r' in source text
3234 also means end-of-line. */
3237 encode_eol (coding
, source
, destination
, src_bytes
, dst_bytes
)
3238 struct coding_system
*coding
;
3239 unsigned char *source
, *destination
;
3240 int src_bytes
, dst_bytes
;
3242 unsigned char *src
= source
;
3243 unsigned char *dst
= destination
;
3244 unsigned char *src_end
= src
+ src_bytes
;
3245 unsigned char *dst_end
= dst
+ dst_bytes
;
3246 Lisp_Object translation_table
;
3247 /* SRC_BASE remembers the start position in source in each loop.
3248 The loop will be exited when there's not enough source text to
3249 analyze multi-byte codes (within macro ONE_MORE_CHAR), or when
3250 there's not enough destination area to produce encoded codes
3251 (within macro EMIT_BYTES). */
3252 unsigned char *src_base
;
3254 int selective_display
= coding
->mode
& CODING_MODE_SELECTIVE_DISPLAY
;
3256 translation_table
= Qnil
;
3257 if (coding
->src_multibyte
3258 && *(src_end
- 1) == LEADING_CODE_8_BIT_CONTROL
)
3262 coding
->result
= CODING_FINISH_INSUFFICIENT_SRC
;
3265 if (coding
->eol_type
== CODING_EOL_CRLF
)
3267 while (src
< src_end
)
3273 else if (c
== '\n' || (c
== '\r' && selective_display
))
3274 EMIT_TWO_BYTES ('\r', '\n');
3284 if (!dst_bytes
|| src_bytes
<= dst_bytes
)
3286 safe_bcopy (src
, dst
, src_bytes
);
3292 if (coding
->src_multibyte
3293 && *(src
+ dst_bytes
- 1) == LEADING_CODE_8_BIT_CONTROL
)
3295 safe_bcopy (src
, dst
, dst_bytes
);
3296 src_base
= src
+ dst_bytes
;
3297 dst
= destination
+ dst_bytes
;
3298 coding
->result
= CODING_FINISH_INSUFFICIENT_DST
;
3300 if (coding
->eol_type
== CODING_EOL_CR
)
3302 for (src
= destination
; src
< dst
; src
++)
3303 if (*src
== '\n') *src
= '\r';
3305 else if (selective_display
)
3307 for (src
= destination
; src
< dst
; src
++)
3308 if (*src
== '\r') *src
= '\n';
3311 if (coding
->src_multibyte
)
3312 dst
= destination
+ str_as_unibyte (destination
, dst
- destination
);
3314 coding
->consumed
= src_base
- source
;
3315 coding
->produced
= dst
- destination
;
3316 coding
->produced_char
= coding
->produced
;
3320 /*** 7. C library functions ***/
3322 /* In Emacs Lisp, a coding system is represented by a Lisp symbol which
3323 has a property `coding-system'. The value of this property is a
3324 vector of length 5 (called the coding-vector). Among elements of
3325 this vector, the first (element[0]) and the fifth (element[4])
3326 carry important information for decoding/encoding. Before
3327 decoding/encoding, this information should be set in fields of a
3328 structure of type `coding_system'.
3330 The value of the property `coding-system' can be a symbol of another
3331 subsidiary coding-system. In that case, Emacs gets coding-vector
3334 `element[0]' contains information to be set in `coding->type'. The
3335 value and its meaning is as follows:
3337 0 -- coding_type_emacs_mule
3338 1 -- coding_type_sjis
3339 2 -- coding_type_iso2022
3340 3 -- coding_type_big5
3341 4 -- coding_type_ccl encoder/decoder written in CCL
3342 nil -- coding_type_no_conversion
3343 t -- coding_type_undecided (automatic conversion on decoding,
3344 no-conversion on encoding)
3346 `element[4]' contains information to be set in `coding->flags' and
3347 `coding->spec'. The meaning varies by `coding->type'.
3349 If `coding->type' is `coding_type_iso2022', element[4] is a vector
3350 of length 32 (of which the first 13 sub-elements are used now).
3351 Meanings of these sub-elements are:
3353 sub-element[N] where N is 0 through 3: to be set in `coding->spec.iso2022'
3354 If the value is an integer of valid charset, the charset is
3355 assumed to be designated to graphic register N initially.
3357 If the value is minus, it is a minus value of charset which
3358 reserves graphic register N, which means that the charset is
3359 not designated initially but should be designated to graphic
3360 register N just before encoding a character in that charset.
3362 If the value is nil, graphic register N is never used on
3365 sub-element[N] where N is 4 through 11: to be set in `coding->flags'
3366 Each value takes t or nil. See the section ISO2022 of
3367 `coding.h' for more information.
3369 If `coding->type' is `coding_type_big5', element[4] is t to denote
3370 BIG5-ETen or nil to denote BIG5-HKU.
3372 If `coding->type' takes the other value, element[4] is ignored.
3374 Emacs Lisp's coding systems also carry information about format of
3375 end-of-line in a value of property `eol-type'. If the value is
3376 integer, 0 means CODING_EOL_LF, 1 means CODING_EOL_CRLF, and 2
3377 means CODING_EOL_CR. If it is not integer, it should be a vector
3378 of subsidiary coding systems of which property `eol-type' has one
3379 of the above values.
3383 /* Extract information for decoding/encoding from CODING_SYSTEM_SYMBOL
3384 and set it in CODING. If CODING_SYSTEM_SYMBOL is invalid, CODING
3385 is setup so that no conversion is necessary and return -1, else
3389 setup_coding_system (coding_system
, coding
)
3390 Lisp_Object coding_system
;
3391 struct coding_system
*coding
;
3393 Lisp_Object coding_spec
, coding_type
, eol_type
, plist
;
3396 /* At first, zero clear all members. */
3397 bzero (coding
, sizeof (struct coding_system
));
3399 /* Initialize some fields required for all kinds of coding systems. */
3400 coding
->symbol
= coding_system
;
3401 coding
->heading_ascii
= -1;
3402 coding
->post_read_conversion
= coding
->pre_write_conversion
= Qnil
;
3403 coding
->composing
= COMPOSITION_DISABLED
;
3404 coding
->cmp_data
= NULL
;
3406 if (NILP (coding_system
))
3407 goto label_invalid_coding_system
;
3409 coding_spec
= Fget (coding_system
, Qcoding_system
);
3411 if (!VECTORP (coding_spec
)
3412 || XVECTOR (coding_spec
)->size
!= 5
3413 || !CONSP (XVECTOR (coding_spec
)->contents
[3]))
3414 goto label_invalid_coding_system
;
3416 eol_type
= inhibit_eol_conversion
? Qnil
: Fget (coding_system
, Qeol_type
);
3417 if (VECTORP (eol_type
))
3419 coding
->eol_type
= CODING_EOL_UNDECIDED
;
3420 coding
->common_flags
= CODING_REQUIRE_DETECTION_MASK
;
3422 else if (XFASTINT (eol_type
) == 1)
3424 coding
->eol_type
= CODING_EOL_CRLF
;
3425 coding
->common_flags
3426 = CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3428 else if (XFASTINT (eol_type
) == 2)
3430 coding
->eol_type
= CODING_EOL_CR
;
3431 coding
->common_flags
3432 = CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3435 coding
->eol_type
= CODING_EOL_LF
;
3437 coding_type
= XVECTOR (coding_spec
)->contents
[0];
3438 /* Try short cut. */
3439 if (SYMBOLP (coding_type
))
3441 if (EQ (coding_type
, Qt
))
3443 coding
->type
= coding_type_undecided
;
3444 coding
->common_flags
|= CODING_REQUIRE_DETECTION_MASK
;
3447 coding
->type
= coding_type_no_conversion
;
3448 /* Initialize this member. Any thing other than
3449 CODING_CATEGORY_IDX_UTF_16_BE and
3450 CODING_CATEGORY_IDX_UTF_16_LE are ok because they have
3451 special treatment in detect_eol. */
3452 coding
->category_idx
= CODING_CATEGORY_IDX_EMACS_MULE
;
3457 /* Get values of coding system properties:
3458 `post-read-conversion', `pre-write-conversion',
3459 `translation-table-for-decode', `translation-table-for-encode'. */
3460 plist
= XVECTOR (coding_spec
)->contents
[3];
3461 /* Pre & post conversion functions should be disabled if
3462 inhibit_eol_conversion is nonzero. This is the case that a code
3463 conversion function is called while those functions are running. */
3464 if (! inhibit_pre_post_conversion
)
3466 coding
->post_read_conversion
= Fplist_get (plist
, Qpost_read_conversion
);
3467 coding
->pre_write_conversion
= Fplist_get (plist
, Qpre_write_conversion
);
3469 val
= Fplist_get (plist
, Qtranslation_table_for_decode
);
3471 val
= Fget (val
, Qtranslation_table_for_decode
);
3472 coding
->translation_table_for_decode
= CHAR_TABLE_P (val
) ? val
: Qnil
;
3473 val
= Fplist_get (plist
, Qtranslation_table_for_encode
);
3475 val
= Fget (val
, Qtranslation_table_for_encode
);
3476 coding
->translation_table_for_encode
= CHAR_TABLE_P (val
) ? val
: Qnil
;
3477 val
= Fplist_get (plist
, Qcoding_category
);
3480 val
= Fget (val
, Qcoding_category_index
);
3482 coding
->category_idx
= XINT (val
);
3484 goto label_invalid_coding_system
;
3487 goto label_invalid_coding_system
;
3489 /* If the coding system has non-nil `composition' property, enable
3490 composition handling. */
3491 val
= Fplist_get (plist
, Qcomposition
);
3493 coding
->composing
= COMPOSITION_NO
;
3495 switch (XFASTINT (coding_type
))
3498 coding
->type
= coding_type_emacs_mule
;
3499 coding
->common_flags
3500 |= CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3501 coding
->composing
= COMPOSITION_NO
;
3502 if (!NILP (coding
->post_read_conversion
))
3503 coding
->common_flags
|= CODING_REQUIRE_DECODING_MASK
;
3504 if (!NILP (coding
->pre_write_conversion
))
3505 coding
->common_flags
|= CODING_REQUIRE_ENCODING_MASK
;
3509 coding
->type
= coding_type_sjis
;
3510 coding
->common_flags
3511 |= CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3515 coding
->type
= coding_type_iso2022
;
3516 coding
->common_flags
3517 |= CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3519 Lisp_Object val
, temp
;
3521 int i
, charset
, reg_bits
= 0;
3523 val
= XVECTOR (coding_spec
)->contents
[4];
3525 if (!VECTORP (val
) || XVECTOR (val
)->size
!= 32)
3526 goto label_invalid_coding_system
;
3528 flags
= XVECTOR (val
)->contents
;
3530 = ((NILP (flags
[4]) ? 0 : CODING_FLAG_ISO_SHORT_FORM
)
3531 | (NILP (flags
[5]) ? 0 : CODING_FLAG_ISO_RESET_AT_EOL
)
3532 | (NILP (flags
[6]) ? 0 : CODING_FLAG_ISO_RESET_AT_CNTL
)
3533 | (NILP (flags
[7]) ? 0 : CODING_FLAG_ISO_SEVEN_BITS
)
3534 | (NILP (flags
[8]) ? 0 : CODING_FLAG_ISO_LOCKING_SHIFT
)
3535 | (NILP (flags
[9]) ? 0 : CODING_FLAG_ISO_SINGLE_SHIFT
)
3536 | (NILP (flags
[10]) ? 0 : CODING_FLAG_ISO_USE_ROMAN
)
3537 | (NILP (flags
[11]) ? 0 : CODING_FLAG_ISO_USE_OLDJIS
)
3538 | (NILP (flags
[12]) ? 0 : CODING_FLAG_ISO_NO_DIRECTION
)
3539 | (NILP (flags
[13]) ? 0 : CODING_FLAG_ISO_INIT_AT_BOL
)
3540 | (NILP (flags
[14]) ? 0 : CODING_FLAG_ISO_DESIGNATE_AT_BOL
)
3541 | (NILP (flags
[15]) ? 0 : CODING_FLAG_ISO_SAFE
)
3542 | (NILP (flags
[16]) ? 0 : CODING_FLAG_ISO_LATIN_EXTRA
)
3545 /* Invoke graphic register 0 to plane 0. */
3546 CODING_SPEC_ISO_INVOCATION (coding
, 0) = 0;
3547 /* Invoke graphic register 1 to plane 1 if we can use full 8-bit. */
3548 CODING_SPEC_ISO_INVOCATION (coding
, 1)
3549 = (coding
->flags
& CODING_FLAG_ISO_SEVEN_BITS
? -1 : 1);
3550 /* Not single shifting at first. */
3551 CODING_SPEC_ISO_SINGLE_SHIFTING (coding
) = 0;
3552 /* Beginning of buffer should also be regarded as bol. */
3553 CODING_SPEC_ISO_BOL (coding
) = 1;
3555 for (charset
= 0; charset
<= MAX_CHARSET
; charset
++)
3556 CODING_SPEC_ISO_REVISION_NUMBER (coding
, charset
) = 255;
3557 val
= Vcharset_revision_alist
;
3560 charset
= get_charset_id (Fcar_safe (XCAR (val
)));
3562 && (temp
= Fcdr_safe (XCAR (val
)), INTEGERP (temp
))
3563 && (i
= XINT (temp
), (i
>= 0 && (i
+ '@') < 128)))
3564 CODING_SPEC_ISO_REVISION_NUMBER (coding
, charset
) = i
;
3568 /* Checks FLAGS[REG] (REG = 0, 1, 2 3) and decide designations.
3569 FLAGS[REG] can be one of below:
3570 integer CHARSET: CHARSET occupies register I,
3571 t: designate nothing to REG initially, but can be used
3573 list of integer, nil, or t: designate the first
3574 element (if integer) to REG initially, the remaining
3575 elements (if integer) is designated to REG on request,
3576 if an element is t, REG can be used by any charsets,
3577 nil: REG is never used. */
3578 for (charset
= 0; charset
<= MAX_CHARSET
; charset
++)
3579 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
)
3580 = CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION
;
3581 for (i
= 0; i
< 4; i
++)
3583 if ((INTEGERP (flags
[i
])
3584 && (charset
= XINT (flags
[i
]), CHARSET_VALID_P (charset
)))
3585 || (charset
= get_charset_id (flags
[i
])) >= 0)
3587 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, i
) = charset
;
3588 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
) = i
;
3590 else if (EQ (flags
[i
], Qt
))
3592 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, i
) = -1;
3594 coding
->flags
|= CODING_FLAG_ISO_DESIGNATION
;
3596 else if (CONSP (flags
[i
]))
3601 coding
->flags
|= CODING_FLAG_ISO_DESIGNATION
;
3602 if ((INTEGERP (XCAR (tail
))
3603 && (charset
= XINT (XCAR (tail
)),
3604 CHARSET_VALID_P (charset
)))
3605 || (charset
= get_charset_id (XCAR (tail
))) >= 0)
3607 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, i
) = charset
;
3608 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
) =i
;
3611 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, i
) = -1;
3613 while (CONSP (tail
))
3615 if ((INTEGERP (XCAR (tail
))
3616 && (charset
= XINT (XCAR (tail
)),
3617 CHARSET_VALID_P (charset
)))
3618 || (charset
= get_charset_id (XCAR (tail
))) >= 0)
3619 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
)
3621 else if (EQ (XCAR (tail
), Qt
))
3627 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, i
) = -1;
3629 CODING_SPEC_ISO_DESIGNATION (coding
, i
)
3630 = CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, i
);
3633 if (reg_bits
&& ! (coding
->flags
& CODING_FLAG_ISO_LOCKING_SHIFT
))
3635 /* REG 1 can be used only by locking shift in 7-bit env. */
3636 if (coding
->flags
& CODING_FLAG_ISO_SEVEN_BITS
)
3638 if (! (coding
->flags
& CODING_FLAG_ISO_SINGLE_SHIFT
))
3639 /* Without any shifting, only REG 0 and 1 can be used. */
3644 for (charset
= 0; charset
<= MAX_CHARSET
; charset
++)
3646 if (CHARSET_DEFINED_P (charset
)
3647 && (CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
)
3648 == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION
))
3650 /* There exist some default graphic registers to be
3653 /* We had better avoid designating a charset of
3654 CHARS96 to REG 0 as far as possible. */
3655 if (CHARSET_CHARS (charset
) == 96)
3656 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
)
3658 ? 1 : (reg_bits
& 4 ? 2 : (reg_bits
& 8 ? 3 : 0)));
3660 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding
, charset
)
3662 ? 0 : (reg_bits
& 2 ? 1 : (reg_bits
& 4 ? 2 : 3)));
3666 coding
->common_flags
|= CODING_REQUIRE_FLUSHING_MASK
;
3667 coding
->spec
.iso2022
.last_invalid_designation_register
= -1;
3671 coding
->type
= coding_type_big5
;
3672 coding
->common_flags
3673 |= CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3675 = (NILP (XVECTOR (coding_spec
)->contents
[4])
3676 ? CODING_FLAG_BIG5_HKU
3677 : CODING_FLAG_BIG5_ETEN
);
3681 coding
->type
= coding_type_ccl
;
3682 coding
->common_flags
3683 |= CODING_REQUIRE_DECODING_MASK
| CODING_REQUIRE_ENCODING_MASK
;
3685 val
= XVECTOR (coding_spec
)->contents
[4];
3687 || setup_ccl_program (&(coding
->spec
.ccl
.decoder
),
3689 || setup_ccl_program (&(coding
->spec
.ccl
.encoder
),
3691 goto label_invalid_coding_system
;
3693 bzero (coding
->spec
.ccl
.valid_codes
, 256);
3694 val
= Fplist_get (plist
, Qvalid_codes
);
3699 for (; CONSP (val
); val
= XCDR (val
))
3703 && XINT (this) >= 0 && XINT (this) < 256)
3704 coding
->spec
.ccl
.valid_codes
[XINT (this)] = 1;
3705 else if (CONSP (this)
3706 && INTEGERP (XCAR (this))
3707 && INTEGERP (XCDR (this)))
3709 int start
= XINT (XCAR (this));
3710 int end
= XINT (XCDR (this));
3712 if (start
>= 0 && start
<= end
&& end
< 256)
3713 while (start
<= end
)
3714 coding
->spec
.ccl
.valid_codes
[start
++] = 1;
3719 coding
->common_flags
|= CODING_REQUIRE_FLUSHING_MASK
;
3720 coding
->spec
.ccl
.cr_carryover
= 0;
3721 coding
->spec
.ccl
.eight_bit_carryover
[0] = 0;
3725 coding
->type
= coding_type_raw_text
;
3729 goto label_invalid_coding_system
;
3733 label_invalid_coding_system
:
3734 coding
->type
= coding_type_no_conversion
;
3735 coding
->category_idx
= CODING_CATEGORY_IDX_BINARY
;
3736 coding
->common_flags
= 0;
3737 coding
->eol_type
= CODING_EOL_LF
;
3738 coding
->pre_write_conversion
= coding
->post_read_conversion
= Qnil
;
3742 /* Free memory blocks allocated for storing composition information. */
3745 coding_free_composition_data (coding
)
3746 struct coding_system
*coding
;
3748 struct composition_data
*cmp_data
= coding
->cmp_data
, *next
;
3752 /* Memory blocks are chained. At first, rewind to the first, then,
3753 free blocks one by one. */
3754 while (cmp_data
->prev
)
3755 cmp_data
= cmp_data
->prev
;
3758 next
= cmp_data
->next
;
3762 coding
->cmp_data
= NULL
;
3765 /* Set `char_offset' member of all memory blocks pointed by
3766 coding->cmp_data to POS. */
3769 coding_adjust_composition_offset (coding
, pos
)
3770 struct coding_system
*coding
;
3773 struct composition_data
*cmp_data
;
3775 for (cmp_data
= coding
->cmp_data
; cmp_data
; cmp_data
= cmp_data
->next
)
3776 cmp_data
->char_offset
= pos
;
3779 /* Setup raw-text or one of its subsidiaries in the structure
3780 coding_system CODING according to the already setup value eol_type
3781 in CODING. CODING should be setup for some coding system in
3785 setup_raw_text_coding_system (coding
)
3786 struct coding_system
*coding
;
3788 if (coding
->type
!= coding_type_raw_text
)
3790 coding
->symbol
= Qraw_text
;
3791 coding
->type
= coding_type_raw_text
;
3792 if (coding
->eol_type
!= CODING_EOL_UNDECIDED
)
3794 Lisp_Object subsidiaries
;
3795 subsidiaries
= Fget (Qraw_text
, Qeol_type
);
3797 if (VECTORP (subsidiaries
)
3798 && XVECTOR (subsidiaries
)->size
== 3)
3800 = XVECTOR (subsidiaries
)->contents
[coding
->eol_type
];
3802 setup_coding_system (coding
->symbol
, coding
);
3807 /* Emacs has a mechanism to automatically detect a coding system if it
3808 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But,
3809 it's impossible to distinguish some coding systems accurately
3810 because they use the same range of codes. So, at first, coding
3811 systems are categorized into 7, those are:
3813 o coding-category-emacs-mule
3815 The category for a coding system which has the same code range
3816 as Emacs' internal format. Assigned the coding-system (Lisp
3817 symbol) `emacs-mule' by default.
3819 o coding-category-sjis
3821 The category for a coding system which has the same code range
3822 as SJIS. Assigned the coding-system (Lisp
3823 symbol) `japanese-shift-jis' by default.
3825 o coding-category-iso-7
3827 The category for a coding system which has the same code range
3828 as ISO2022 of 7-bit environment. This doesn't use any locking
3829 shift and single shift functions. This can encode/decode all
3830 charsets. Assigned the coding-system (Lisp symbol)
3831 `iso-2022-7bit' by default.
3833 o coding-category-iso-7-tight
3835 Same as coding-category-iso-7 except that this can
3836 encode/decode only the specified charsets.
3838 o coding-category-iso-8-1
3840 The category for a coding system which has the same code range
3841 as ISO2022 of 8-bit environment and graphic plane 1 used only
3842 for DIMENSION1 charset. This doesn't use any locking shift
3843 and single shift functions. Assigned the coding-system (Lisp
3844 symbol) `iso-latin-1' by default.
3846 o coding-category-iso-8-2
3848 The category for a coding system which has the same code range
3849 as ISO2022 of 8-bit environment and graphic plane 1 used only
3850 for DIMENSION2 charset. This doesn't use any locking shift
3851 and single shift functions. Assigned the coding-system (Lisp
3852 symbol) `japanese-iso-8bit' by default.
3854 o coding-category-iso-7-else
3856 The category for a coding system which has the same code range
3857 as ISO2022 of 7-bit environment but uses locking shift or
3858 single shift functions. Assigned the coding-system (Lisp
3859 symbol) `iso-2022-7bit-lock' by default.
3861 o coding-category-iso-8-else
3863 The category for a coding system which has the same code range
3864 as ISO2022 of 8-bit environment but uses locking shift or
3865 single shift functions. Assigned the coding-system (Lisp
3866 symbol) `iso-2022-8bit-ss2' by default.
3868 o coding-category-big5
3870 The category for a coding system which has the same code range
3871 as BIG5. Assigned the coding-system (Lisp symbol)
3872 `cn-big5' by default.
3874 o coding-category-utf-8
3876 The category for a coding system which has the same code range
3877 as UTF-8 (cf. RFC2279). Assigned the coding-system (Lisp
3878 symbol) `utf-8' by default.
3880 o coding-category-utf-16-be
3882 The category for a coding system in which a text has an
3883 Unicode signature (cf. Unicode Standard) in the order of BIG
3884 endian at the head. Assigned the coding-system (Lisp symbol)
3885 `utf-16-be' by default.
3887 o coding-category-utf-16-le
3889 The category for a coding system in which a text has an
3890 Unicode signature (cf. Unicode Standard) in the order of
3891 LITTLE endian at the head. Assigned the coding-system (Lisp
3892 symbol) `utf-16-le' by default.
3894 o coding-category-ccl
3896 The category for a coding system of which encoder/decoder is
3897 written in CCL programs. The default value is nil, i.e., no
3898 coding system is assigned.
3900 o coding-category-binary
3902 The category for a coding system not categorized in any of the
3903 above. Assigned the coding-system (Lisp symbol)
3904 `no-conversion' by default.
3906 Each of them is a Lisp symbol and the value is an actual
3907 `coding-system' (this is also a Lisp symbol) assigned by a user.
3908 What Emacs does actually is to detect a category of coding system.
3909 Then, it uses a `coding-system' assigned to it. If Emacs can't
3910 decide a single possible category, it selects a category of the
3911 highest priority. Priorities of categories are also specified by a
3912 user in a Lisp variable `coding-category-list'.
3917 int ascii_skip_code
[256];
3919 /* Detect how a text of length SRC_BYTES pointed by SOURCE is encoded.
3920 If it detects possible coding systems, return an integer in which
3921 appropriate flag bits are set. Flag bits are defined by macros
3922 CODING_CATEGORY_MASK_XXX in `coding.h'. If PRIORITIES is non-NULL,
3923 it should point the table `coding_priorities'. In that case, only
3924 the flag bit for a coding system of the highest priority is set in
3925 the returned value. If MULTIBYTEP is nonzero, 8-bit codes of the
3926 range 0x80..0x9F are in multibyte form.
3928 How many ASCII characters are at the head is returned as *SKIP. */
3931 detect_coding_mask (source
, src_bytes
, priorities
, skip
, multibytep
)
3932 unsigned char *source
;
3933 int src_bytes
, *priorities
, *skip
;
3936 register unsigned char c
;
3937 unsigned char *src
= source
, *src_end
= source
+ src_bytes
;
3938 unsigned int mask
, utf16_examined_p
, iso2022_examined_p
;
3941 /* At first, skip all ASCII characters and control characters except
3942 for three ISO2022 specific control characters. */
3943 ascii_skip_code
[ISO_CODE_SO
] = 0;
3944 ascii_skip_code
[ISO_CODE_SI
] = 0;
3945 ascii_skip_code
[ISO_CODE_ESC
] = 0;
3947 label_loop_detect_coding
:
3948 while (src
< src_end
&& ascii_skip_code
[*src
]) src
++;
3949 *skip
= src
- source
;
3952 /* We found nothing other than ASCII. There's nothing to do. */
3956 /* The text seems to be encoded in some multilingual coding system.
3957 Now, try to find in which coding system the text is encoded. */
3960 /* i.e. (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) */
3961 /* C is an ISO2022 specific control code of C0. */
3962 mask
= detect_coding_iso2022 (src
, src_end
, multibytep
);
3965 /* No valid ISO2022 code follows C. Try again. */
3967 if (c
== ISO_CODE_ESC
)
3968 ascii_skip_code
[ISO_CODE_ESC
] = 1;
3970 ascii_skip_code
[ISO_CODE_SO
] = ascii_skip_code
[ISO_CODE_SI
] = 1;
3971 goto label_loop_detect_coding
;
3975 for (i
= 0; i
< CODING_CATEGORY_IDX_MAX
; i
++)
3977 if (mask
& priorities
[i
])
3978 return priorities
[i
];
3980 return CODING_CATEGORY_MASK_RAW_TEXT
;
3987 if (multibytep
&& c
== LEADING_CODE_8_BIT_CONTROL
)
3992 /* C is the first byte of SJIS character code,
3993 or a leading-code of Emacs' internal format (emacs-mule),
3994 or the first byte of UTF-16. */
3995 try = (CODING_CATEGORY_MASK_SJIS
3996 | CODING_CATEGORY_MASK_EMACS_MULE
3997 | CODING_CATEGORY_MASK_UTF_16_BE
3998 | CODING_CATEGORY_MASK_UTF_16_LE
);
4000 /* Or, if C is a special latin extra code,
4001 or is an ISO2022 specific control code of C1 (SS2 or SS3),
4002 or is an ISO2022 control-sequence-introducer (CSI),
4003 we should also consider the possibility of ISO2022 codings. */
4004 if ((VECTORP (Vlatin_extra_code_table
)
4005 && !NILP (XVECTOR (Vlatin_extra_code_table
)->contents
[c
]))
4006 || (c
== ISO_CODE_SS2
|| c
== ISO_CODE_SS3
)
4007 || (c
== ISO_CODE_CSI
4010 || ((*src
== '0' || *src
== '1' || *src
== '2')
4011 && src
+ 1 < src_end
4012 && src
[1] == ']')))))
4013 try |= (CODING_CATEGORY_MASK_ISO_8_ELSE
4014 | CODING_CATEGORY_MASK_ISO_8BIT
);
4017 /* C is a character of ISO2022 in graphic plane right,
4018 or a SJIS's 1-byte character code (i.e. JISX0201),
4019 or the first byte of BIG5's 2-byte code,
4020 or the first byte of UTF-8/16. */
4021 try = (CODING_CATEGORY_MASK_ISO_8_ELSE
4022 | CODING_CATEGORY_MASK_ISO_8BIT
4023 | CODING_CATEGORY_MASK_SJIS
4024 | CODING_CATEGORY_MASK_BIG5
4025 | CODING_CATEGORY_MASK_UTF_8
4026 | CODING_CATEGORY_MASK_UTF_16_BE
4027 | CODING_CATEGORY_MASK_UTF_16_LE
);
4029 /* Or, we may have to consider the possibility of CCL. */
4030 if (coding_system_table
[CODING_CATEGORY_IDX_CCL
]
4031 && (coding_system_table
[CODING_CATEGORY_IDX_CCL
]
4032 ->spec
.ccl
.valid_codes
)[c
])
4033 try |= CODING_CATEGORY_MASK_CCL
;
4036 utf16_examined_p
= iso2022_examined_p
= 0;
4039 for (i
= 0; i
< CODING_CATEGORY_IDX_MAX
; i
++)
4041 if (!iso2022_examined_p
4042 && (priorities
[i
] & try & CODING_CATEGORY_MASK_ISO
))
4044 mask
|= detect_coding_iso2022 (src
, src_end
, multibytep
);
4045 iso2022_examined_p
= 1;
4047 else if (priorities
[i
] & try & CODING_CATEGORY_MASK_SJIS
)
4048 mask
|= detect_coding_sjis (src
, src_end
, multibytep
);
4049 else if (priorities
[i
] & try & CODING_CATEGORY_MASK_UTF_8
)
4050 mask
|= detect_coding_utf_8 (src
, src_end
, multibytep
);
4051 else if (!utf16_examined_p
4052 && (priorities
[i
] & try &
4053 CODING_CATEGORY_MASK_UTF_16_BE_LE
))
4055 mask
|= detect_coding_utf_16 (src
, src_end
, multibytep
);
4056 utf16_examined_p
= 1;
4058 else if (priorities
[i
] & try & CODING_CATEGORY_MASK_BIG5
)
4059 mask
|= detect_coding_big5 (src
, src_end
, multibytep
);
4060 else if (priorities
[i
] & try & CODING_CATEGORY_MASK_EMACS_MULE
)
4061 mask
|= detect_coding_emacs_mule (src
, src_end
, multibytep
);
4062 else if (priorities
[i
] & try & CODING_CATEGORY_MASK_CCL
)
4063 mask
|= detect_coding_ccl (src
, src_end
, multibytep
);
4064 else if (priorities
[i
] & CODING_CATEGORY_MASK_RAW_TEXT
)
4065 mask
|= CODING_CATEGORY_MASK_RAW_TEXT
;
4066 else if (priorities
[i
] & CODING_CATEGORY_MASK_BINARY
)
4067 mask
|= CODING_CATEGORY_MASK_BINARY
;
4068 if (mask
& priorities
[i
])
4069 return priorities
[i
];
4071 return CODING_CATEGORY_MASK_RAW_TEXT
;
4073 if (try & CODING_CATEGORY_MASK_ISO
)
4074 mask
|= detect_coding_iso2022 (src
, src_end
, multibytep
);
4075 if (try & CODING_CATEGORY_MASK_SJIS
)
4076 mask
|= detect_coding_sjis (src
, src_end
, multibytep
);
4077 if (try & CODING_CATEGORY_MASK_BIG5
)
4078 mask
|= detect_coding_big5 (src
, src_end
, multibytep
);
4079 if (try & CODING_CATEGORY_MASK_UTF_8
)
4080 mask
|= detect_coding_utf_8 (src
, src_end
, multibytep
);
4081 if (try & CODING_CATEGORY_MASK_UTF_16_BE_LE
)
4082 mask
|= detect_coding_utf_16 (src
, src_end
, multibytep
);
4083 if (try & CODING_CATEGORY_MASK_EMACS_MULE
)
4084 mask
|= detect_coding_emacs_mule (src
, src_end
, multibytep
);
4085 if (try & CODING_CATEGORY_MASK_CCL
)
4086 mask
|= detect_coding_ccl (src
, src_end
, multibytep
);
4088 return (mask
| CODING_CATEGORY_MASK_RAW_TEXT
| CODING_CATEGORY_MASK_BINARY
);
4091 /* Detect how a text of length SRC_BYTES pointed by SRC is encoded.
4092 The information of the detected coding system is set in CODING. */
4095 detect_coding (coding
, src
, src_bytes
)
4096 struct coding_system
*coding
;
4104 val
= Vcoding_category_list
;
4105 mask
= detect_coding_mask (src
, src_bytes
, coding_priorities
, &skip
,
4106 coding
->src_multibyte
);
4107 coding
->heading_ascii
= skip
;
4111 /* We found a single coding system of the highest priority in MASK. */
4113 while (mask
&& ! (mask
& 1)) mask
>>= 1, idx
++;
4115 idx
= CODING_CATEGORY_IDX_RAW_TEXT
;
4117 val
= SYMBOL_VALUE (XVECTOR (Vcoding_category_table
)->contents
[idx
]);
4119 if (coding
->eol_type
!= CODING_EOL_UNDECIDED
)
4123 tmp
= Fget (val
, Qeol_type
);
4125 val
= XVECTOR (tmp
)->contents
[coding
->eol_type
];
4128 /* Setup this new coding system while preserving some slots. */
4130 int src_multibyte
= coding
->src_multibyte
;
4131 int dst_multibyte
= coding
->dst_multibyte
;
4133 setup_coding_system (val
, coding
);
4134 coding
->src_multibyte
= src_multibyte
;
4135 coding
->dst_multibyte
= dst_multibyte
;
4136 coding
->heading_ascii
= skip
;
4140 /* Detect how end-of-line of a text of length SRC_BYTES pointed by
4141 SOURCE is encoded. Return one of CODING_EOL_LF, CODING_EOL_CRLF,
4142 CODING_EOL_CR, and CODING_EOL_UNDECIDED.
4144 How many non-eol characters are at the head is returned as *SKIP. */
4146 #define MAX_EOL_CHECK_COUNT 3
4149 detect_eol_type (source
, src_bytes
, skip
)
4150 unsigned char *source
;
4151 int src_bytes
, *skip
;
4153 unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
4155 int total
= 0; /* How many end-of-lines are found so far. */
4156 int eol_type
= CODING_EOL_UNDECIDED
;
4161 while (src
< src_end
&& total
< MAX_EOL_CHECK_COUNT
)
4164 if (c
== '\n' || c
== '\r')
4167 *skip
= src
- 1 - source
;
4170 this_eol_type
= CODING_EOL_LF
;
4171 else if (src
>= src_end
|| *src
!= '\n')
4172 this_eol_type
= CODING_EOL_CR
;
4174 this_eol_type
= CODING_EOL_CRLF
, src
++;
4176 if (eol_type
== CODING_EOL_UNDECIDED
)
4177 /* This is the first end-of-line. */
4178 eol_type
= this_eol_type
;
4179 else if (eol_type
!= this_eol_type
)
4181 /* The found type is different from what found before. */
4182 eol_type
= CODING_EOL_INCONSISTENT
;
4189 *skip
= src_end
- source
;
4193 /* Like detect_eol_type, but detect EOL type in 2-octet
4194 big-endian/little-endian format for coding systems utf-16-be and
4198 detect_eol_type_in_2_octet_form (source
, src_bytes
, skip
, big_endian_p
)
4199 unsigned char *source
;
4200 int src_bytes
, *skip
, big_endian_p
;
4202 unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
4203 unsigned int c1
, c2
;
4204 int total
= 0; /* How many end-of-lines are found so far. */
4205 int eol_type
= CODING_EOL_UNDECIDED
;
4216 while ((src
+ 1) < src_end
&& total
< MAX_EOL_CHECK_COUNT
)
4218 c1
= (src
[msb
] << 8) | (src
[lsb
]);
4221 if (c1
== '\n' || c1
== '\r')
4224 *skip
= src
- 2 - source
;
4228 this_eol_type
= CODING_EOL_LF
;
4232 if ((src
+ 1) >= src_end
)
4234 this_eol_type
= CODING_EOL_CR
;
4238 c2
= (src
[msb
] << 8) | (src
[lsb
]);
4240 this_eol_type
= CODING_EOL_CRLF
, src
+= 2;
4242 this_eol_type
= CODING_EOL_CR
;
4246 if (eol_type
== CODING_EOL_UNDECIDED
)
4247 /* This is the first end-of-line. */
4248 eol_type
= this_eol_type
;
4249 else if (eol_type
!= this_eol_type
)
4251 /* The found type is different from what found before. */
4252 eol_type
= CODING_EOL_INCONSISTENT
;
4259 *skip
= src_end
- source
;
4263 /* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC
4264 is encoded. If it detects an appropriate format of end-of-line, it
4265 sets the information in *CODING. */
4268 detect_eol (coding
, src
, src_bytes
)
4269 struct coding_system
*coding
;
4277 switch (coding
->category_idx
)
4279 case CODING_CATEGORY_IDX_UTF_16_BE
:
4280 eol_type
= detect_eol_type_in_2_octet_form (src
, src_bytes
, &skip
, 1);
4282 case CODING_CATEGORY_IDX_UTF_16_LE
:
4283 eol_type
= detect_eol_type_in_2_octet_form (src
, src_bytes
, &skip
, 0);
4286 eol_type
= detect_eol_type (src
, src_bytes
, &skip
);
4290 if (coding
->heading_ascii
> skip
)
4291 coding
->heading_ascii
= skip
;
4293 skip
= coding
->heading_ascii
;
4295 if (eol_type
== CODING_EOL_UNDECIDED
)
4297 if (eol_type
== CODING_EOL_INCONSISTENT
)
4300 /* This code is suppressed until we find a better way to
4301 distinguish raw text file and binary file. */
4303 /* If we have already detected that the coding is raw-text, the
4304 coding should actually be no-conversion. */
4305 if (coding
->type
== coding_type_raw_text
)
4307 setup_coding_system (Qno_conversion
, coding
);
4310 /* Else, let's decode only text code anyway. */
4312 eol_type
= CODING_EOL_LF
;
4315 val
= Fget (coding
->symbol
, Qeol_type
);
4316 if (VECTORP (val
) && XVECTOR (val
)->size
== 3)
4318 int src_multibyte
= coding
->src_multibyte
;
4319 int dst_multibyte
= coding
->dst_multibyte
;
4321 setup_coding_system (XVECTOR (val
)->contents
[eol_type
], coding
);
4322 coding
->src_multibyte
= src_multibyte
;
4323 coding
->dst_multibyte
= dst_multibyte
;
4324 coding
->heading_ascii
= skip
;
4328 #define CONVERSION_BUFFER_EXTRA_ROOM 256
4330 #define DECODING_BUFFER_MAG(coding) \
4331 (coding->type == coding_type_iso2022 \
4333 : (coding->type == coding_type_ccl \
4334 ? coding->spec.ccl.decoder.buf_magnification \
4337 /* Return maximum size (bytes) of a buffer enough for decoding
4338 SRC_BYTES of text encoded in CODING. */
4341 decoding_buffer_size (coding
, src_bytes
)
4342 struct coding_system
*coding
;
4345 return (src_bytes
* DECODING_BUFFER_MAG (coding
)
4346 + CONVERSION_BUFFER_EXTRA_ROOM
);
4349 /* Return maximum size (bytes) of a buffer enough for encoding
4350 SRC_BYTES of text to CODING. */
4353 encoding_buffer_size (coding
, src_bytes
)
4354 struct coding_system
*coding
;
4359 if (coding
->type
== coding_type_ccl
)
4360 magnification
= coding
->spec
.ccl
.encoder
.buf_magnification
;
4361 else if (CODING_REQUIRE_ENCODING (coding
))
4366 return (src_bytes
* magnification
+ CONVERSION_BUFFER_EXTRA_ROOM
);
4369 /* Working buffer for code conversion. */
4370 struct conversion_buffer
4372 int size
; /* size of data. */
4373 int on_stack
; /* 1 if allocated by alloca. */
4374 unsigned char *data
;
4377 /* Don't use alloca for allocating memory space larger than this, lest
4378 we overflow their stack. */
4379 #define MAX_ALLOCA 16*1024
4381 /* Allocate LEN bytes of memory for BUF (struct conversion_buffer). */
4382 #define allocate_conversion_buffer(buf, len) \
4384 if (len < MAX_ALLOCA) \
4386 buf.data = (unsigned char *) alloca (len); \
4391 buf.data = (unsigned char *) xmalloc (len); \
4397 /* Double the allocated memory for *BUF. */
4399 extend_conversion_buffer (buf
)
4400 struct conversion_buffer
*buf
;
4404 unsigned char *save
= buf
->data
;
4405 buf
->data
= (unsigned char *) xmalloc (buf
->size
* 2);
4406 bcopy (save
, buf
->data
, buf
->size
);
4411 buf
->data
= (unsigned char *) xrealloc (buf
->data
, buf
->size
* 2);
4416 /* Free the allocated memory for BUF if it is not on stack. */
4418 free_conversion_buffer (buf
)
4419 struct conversion_buffer
*buf
;
4426 ccl_coding_driver (coding
, source
, destination
, src_bytes
, dst_bytes
, encodep
)
4427 struct coding_system
*coding
;
4428 unsigned char *source
, *destination
;
4429 int src_bytes
, dst_bytes
, encodep
;
4431 struct ccl_program
*ccl
4432 = encodep
? &coding
->spec
.ccl
.encoder
: &coding
->spec
.ccl
.decoder
;
4433 unsigned char *dst
= destination
;
4435 ccl
->suppress_error
= coding
->suppress_error
;
4436 ccl
->last_block
= coding
->mode
& CODING_MODE_LAST_BLOCK
;
4439 /* On encoding, EOL format is converted within ccl_driver. For
4440 that, setup proper information in the structure CCL. */
4441 ccl
->eol_type
= coding
->eol_type
;
4442 if (ccl
->eol_type
==CODING_EOL_UNDECIDED
)
4443 ccl
->eol_type
= CODING_EOL_LF
;
4444 ccl
->cr_consumed
= coding
->spec
.ccl
.cr_carryover
;
4446 ccl
->multibyte
= coding
->src_multibyte
;
4447 if (coding
->spec
.ccl
.eight_bit_carryover
[0] != 0)
4449 /* Move carryover bytes to DESTINATION. */
4450 unsigned char *p
= coding
->spec
.ccl
.eight_bit_carryover
;
4453 coding
->spec
.ccl
.eight_bit_carryover
[0] = 0;
4455 dst_bytes
-= dst
- destination
;
4458 coding
->produced
= (ccl_driver (ccl
, source
, dst
, src_bytes
, dst_bytes
,
4459 &(coding
->consumed
))
4460 + dst
- destination
);
4464 coding
->produced_char
= coding
->produced
;
4465 coding
->spec
.ccl
.cr_carryover
= ccl
->cr_consumed
;
4467 else if (!ccl
->eight_bit_control
)
4469 /* The produced bytes forms a valid multibyte sequence. */
4470 coding
->produced_char
4471 = multibyte_chars_in_text (destination
, coding
->produced
);
4472 coding
->spec
.ccl
.eight_bit_carryover
[0] = 0;
4476 /* On decoding, the destination should always multibyte. But,
4477 CCL program might have been generated an invalid multibyte
4478 sequence. Here we make such a sequence valid as
4481 = dst_bytes
? dst_bytes
: source
+ coding
->consumed
- destination
;
4483 if ((coding
->consumed
< src_bytes
4484 || !ccl
->last_block
)
4485 && coding
->produced
>= 1
4486 && destination
[coding
->produced
- 1] >= 0x80)
4488 /* We should not convert the tailing 8-bit codes to
4489 multibyte form even if they doesn't form a valid
4490 multibyte sequence. They may form a valid sequence in
4494 if (destination
[coding
->produced
- 1] < 0xA0)
4496 else if (coding
->produced
>= 2)
4498 if (destination
[coding
->produced
- 2] >= 0x80)
4500 if (destination
[coding
->produced
- 2] < 0xA0)
4502 else if (coding
->produced
>= 3
4503 && destination
[coding
->produced
- 3] >= 0x80
4504 && destination
[coding
->produced
- 3] < 0xA0)
4510 BCOPY_SHORT (destination
+ coding
->produced
- carryover
,
4511 coding
->spec
.ccl
.eight_bit_carryover
,
4513 coding
->spec
.ccl
.eight_bit_carryover
[carryover
] = 0;
4514 coding
->produced
-= carryover
;
4517 coding
->produced
= str_as_multibyte (destination
, bytes
,
4519 &(coding
->produced_char
));
4522 switch (ccl
->status
)
4524 case CCL_STAT_SUSPEND_BY_SRC
:
4525 coding
->result
= CODING_FINISH_INSUFFICIENT_SRC
;
4527 case CCL_STAT_SUSPEND_BY_DST
:
4528 coding
->result
= CODING_FINISH_INSUFFICIENT_DST
;
4531 case CCL_STAT_INVALID_CMD
:
4532 coding
->result
= CODING_FINISH_INTERRUPT
;
4535 coding
->result
= CODING_FINISH_NORMAL
;
4538 return coding
->result
;
4541 /* Decode EOL format of the text at PTR of BYTES length destructively
4542 according to CODING->eol_type. This is called after the CCL
4543 program produced a decoded text at PTR. If we do CRLF->LF
4544 conversion, update CODING->produced and CODING->produced_char. */
4547 decode_eol_post_ccl (coding
, ptr
, bytes
)
4548 struct coding_system
*coding
;
4552 Lisp_Object val
, saved_coding_symbol
;
4553 unsigned char *pend
= ptr
+ bytes
;
4556 /* Remember the current coding system symbol. We set it back when
4557 an inconsistent EOL is found so that `last-coding-system-used' is
4558 set to the coding system that doesn't specify EOL conversion. */
4559 saved_coding_symbol
= coding
->symbol
;
4561 coding
->spec
.ccl
.cr_carryover
= 0;
4562 if (coding
->eol_type
== CODING_EOL_UNDECIDED
)
4564 /* Here, to avoid the call of setup_coding_system, we directly
4565 call detect_eol_type. */
4566 coding
->eol_type
= detect_eol_type (ptr
, bytes
, &dummy
);
4567 if (coding
->eol_type
== CODING_EOL_INCONSISTENT
)
4568 coding
->eol_type
= CODING_EOL_LF
;
4569 if (coding
->eol_type
!= CODING_EOL_UNDECIDED
)
4571 val
= Fget (coding
->symbol
, Qeol_type
);
4572 if (VECTORP (val
) && XVECTOR (val
)->size
== 3)
4573 coding
->symbol
= XVECTOR (val
)->contents
[coding
->eol_type
];
4575 coding
->mode
|= CODING_MODE_INHIBIT_INCONSISTENT_EOL
;
4578 if (coding
->eol_type
== CODING_EOL_LF
4579 || coding
->eol_type
== CODING_EOL_UNDECIDED
)
4581 /* We have nothing to do. */
4584 else if (coding
->eol_type
== CODING_EOL_CRLF
)
4586 unsigned char *pstart
= ptr
, *p
= ptr
;
4588 if (! (coding
->mode
& CODING_MODE_LAST_BLOCK
)
4589 && *(pend
- 1) == '\r')
4591 /* If the last character is CR, we can't handle it here
4592 because LF will be in the not-yet-decoded source text.
4593 Recorded that the CR is not yet processed. */
4594 coding
->spec
.ccl
.cr_carryover
= 1;
4596 coding
->produced_char
--;
4603 if (ptr
+ 1 < pend
&& *(ptr
+ 1) == '\n')
4610 if (coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
4611 goto undo_eol_conversion
;
4615 else if (*ptr
== '\n'
4616 && coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
4617 goto undo_eol_conversion
;
4622 undo_eol_conversion
:
4623 /* We have faced with inconsistent EOL format at PTR.
4624 Convert all LFs before PTR back to CRLFs. */
4625 for (p
--, ptr
--; p
>= pstart
; p
--)
4628 *ptr
-- = '\n', *ptr
-- = '\r';
4632 /* If carryover is recorded, cancel it because we don't
4633 convert CRLF anymore. */
4634 if (coding
->spec
.ccl
.cr_carryover
)
4636 coding
->spec
.ccl
.cr_carryover
= 0;
4638 coding
->produced_char
++;
4642 coding
->eol_type
= CODING_EOL_LF
;
4643 coding
->symbol
= saved_coding_symbol
;
4647 /* As each two-byte sequence CRLF was converted to LF, (PEND
4648 - P) is the number of deleted characters. */
4649 coding
->produced
-= pend
- p
;
4650 coding
->produced_char
-= pend
- p
;
4653 else /* i.e. coding->eol_type == CODING_EOL_CR */
4655 unsigned char *p
= ptr
;
4657 for (; ptr
< pend
; ptr
++)
4661 else if (*ptr
== '\n'
4662 && coding
->mode
& CODING_MODE_INHIBIT_INCONSISTENT_EOL
)
4664 for (; p
< ptr
; p
++)
4670 coding
->eol_type
= CODING_EOL_LF
;
4671 coding
->symbol
= saved_coding_symbol
;
4677 /* See "GENERAL NOTES about `decode_coding_XXX ()' functions". Before
4678 decoding, it may detect coding system and format of end-of-line if
4679 those are not yet decided. The source should be unibyte, the
4680 result is multibyte if CODING->dst_multibyte is nonzero, else
4684 decode_coding (coding
, source
, destination
, src_bytes
, dst_bytes
)
4685 struct coding_system
*coding
;
4686 unsigned char *source
, *destination
;
4687 int src_bytes
, dst_bytes
;
4689 if (coding
->type
== coding_type_undecided
)
4690 detect_coding (coding
, source
, src_bytes
);
4692 if (coding
->eol_type
== CODING_EOL_UNDECIDED
4693 && coding
->type
!= coding_type_ccl
)
4695 detect_eol (coding
, source
, src_bytes
);
4696 /* We had better recover the original eol format if we
4697 encounter an inconsistent eol format while decoding. */
4698 coding
->mode
|= CODING_MODE_INHIBIT_INCONSISTENT_EOL
;
4701 coding
->produced
= coding
->produced_char
= 0;
4702 coding
->consumed
= coding
->consumed_char
= 0;
4704 coding
->result
= CODING_FINISH_NORMAL
;
4706 switch (coding
->type
)
4708 case coding_type_sjis
:
4709 decode_coding_sjis_big5 (coding
, source
, destination
,
4710 src_bytes
, dst_bytes
, 1);
4713 case coding_type_iso2022
:
4714 decode_coding_iso2022 (coding
, source
, destination
,
4715 src_bytes
, dst_bytes
);
4718 case coding_type_big5
:
4719 decode_coding_sjis_big5 (coding
, source
, destination
,
4720 src_bytes
, dst_bytes
, 0);
4723 case coding_type_emacs_mule
:
4724 decode_coding_emacs_mule (coding
, source
, destination
,
4725 src_bytes
, dst_bytes
);
4728 case coding_type_ccl
:
4729 if (coding
->spec
.ccl
.cr_carryover
)
4731 /* Set the CR which is not processed by the previous call of
4732 decode_eol_post_ccl in DESTINATION. */
4733 *destination
= '\r';
4735 coding
->produced_char
++;
4738 ccl_coding_driver (coding
, source
,
4739 destination
+ coding
->spec
.ccl
.cr_carryover
,
4740 src_bytes
, dst_bytes
, 0);
4741 if (coding
->eol_type
!= CODING_EOL_LF
)
4742 decode_eol_post_ccl (coding
, destination
, coding
->produced
);
4746 decode_eol (coding
, source
, destination
, src_bytes
, dst_bytes
);
4749 if (coding
->result
== CODING_FINISH_INSUFFICIENT_SRC
4750 && coding
->mode
& CODING_MODE_LAST_BLOCK
4751 && coding
->consumed
== src_bytes
)
4752 coding
->result
= CODING_FINISH_NORMAL
;
4754 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4755 && coding
->result
== CODING_FINISH_INSUFFICIENT_SRC
)
4757 unsigned char *src
= source
+ coding
->consumed
;
4758 unsigned char *dst
= destination
+ coding
->produced
;
4760 src_bytes
-= coding
->consumed
;
4762 if (COMPOSING_P (coding
))
4763 DECODE_COMPOSITION_END ('1');
4767 dst
+= CHAR_STRING (c
, dst
);
4768 coding
->produced_char
++;
4770 coding
->consumed
= coding
->consumed_char
= src
- source
;
4771 coding
->produced
= dst
- destination
;
4772 coding
->result
= CODING_FINISH_NORMAL
;
4775 if (!coding
->dst_multibyte
)
4777 coding
->produced
= str_as_unibyte (destination
, coding
->produced
);
4778 coding
->produced_char
= coding
->produced
;
4781 return coding
->result
;
4784 /* See "GENERAL NOTES about `encode_coding_XXX ()' functions". The
4785 multibyteness of the source is CODING->src_multibyte, the
4786 multibyteness of the result is always unibyte. */
4789 encode_coding (coding
, source
, destination
, src_bytes
, dst_bytes
)
4790 struct coding_system
*coding
;
4791 unsigned char *source
, *destination
;
4792 int src_bytes
, dst_bytes
;
4794 coding
->produced
= coding
->produced_char
= 0;
4795 coding
->consumed
= coding
->consumed_char
= 0;
4797 coding
->result
= CODING_FINISH_NORMAL
;
4799 switch (coding
->type
)
4801 case coding_type_sjis
:
4802 encode_coding_sjis_big5 (coding
, source
, destination
,
4803 src_bytes
, dst_bytes
, 1);
4806 case coding_type_iso2022
:
4807 encode_coding_iso2022 (coding
, source
, destination
,
4808 src_bytes
, dst_bytes
);
4811 case coding_type_big5
:
4812 encode_coding_sjis_big5 (coding
, source
, destination
,
4813 src_bytes
, dst_bytes
, 0);
4816 case coding_type_emacs_mule
:
4817 encode_coding_emacs_mule (coding
, source
, destination
,
4818 src_bytes
, dst_bytes
);
4821 case coding_type_ccl
:
4822 ccl_coding_driver (coding
, source
, destination
,
4823 src_bytes
, dst_bytes
, 1);
4827 encode_eol (coding
, source
, destination
, src_bytes
, dst_bytes
);
4830 if (coding
->mode
& CODING_MODE_LAST_BLOCK
4831 && coding
->result
== CODING_FINISH_INSUFFICIENT_SRC
)
4833 unsigned char *src
= source
+ coding
->consumed
;
4834 unsigned char *dst
= destination
+ coding
->produced
;
4836 if (coding
->type
== coding_type_iso2022
)
4837 ENCODE_RESET_PLANE_AND_REGISTER
;
4838 if (COMPOSING_P (coding
))
4839 *dst
++ = ISO_CODE_ESC
, *dst
++ = '1';
4840 if (coding
->consumed
< src_bytes
)
4842 int len
= src_bytes
- coding
->consumed
;
4844 BCOPY_SHORT (src
, dst
, len
);
4845 if (coding
->src_multibyte
)
4846 len
= str_as_unibyte (dst
, len
);
4848 coding
->consumed
= src_bytes
;
4850 coding
->produced
= coding
->produced_char
= dst
- destination
;
4851 coding
->result
= CODING_FINISH_NORMAL
;
4854 if (coding
->result
== CODING_FINISH_INSUFFICIENT_SRC
4855 && coding
->consumed
== src_bytes
)
4856 coding
->result
= CODING_FINISH_NORMAL
;
4858 return coding
->result
;
4861 /* Scan text in the region between *BEG and *END (byte positions),
4862 skip characters which we don't have to decode by coding system
4863 CODING at the head and tail, then set *BEG and *END to the region
4864 of the text we actually have to convert. The caller should move
4865 the gap out of the region in advance if the region is from a
4868 If STR is not NULL, *BEG and *END are indices into STR. */
4871 shrink_decoding_region (beg
, end
, coding
, str
)
4873 struct coding_system
*coding
;
4876 unsigned char *begp_orig
, *begp
, *endp_orig
, *endp
, c
;
4878 Lisp_Object translation_table
;
4880 if (coding
->type
== coding_type_ccl
4881 || coding
->type
== coding_type_undecided
4882 || coding
->eol_type
!= CODING_EOL_LF
4883 || !NILP (coding
->post_read_conversion
)
4884 || coding
->composing
!= COMPOSITION_DISABLED
)
4886 /* We can't skip any data. */
4889 if (coding
->type
== coding_type_no_conversion
4890 || coding
->type
== coding_type_raw_text
4891 || coding
->type
== coding_type_emacs_mule
)
4893 /* We need no conversion, but don't have to skip any data here.
4894 Decoding routine handles them effectively anyway. */
4898 translation_table
= coding
->translation_table_for_decode
;
4899 if (NILP (translation_table
) && !NILP (Venable_character_translation
))
4900 translation_table
= Vstandard_translation_table_for_decode
;
4901 if (CHAR_TABLE_P (translation_table
))
4904 for (i
= 0; i
< 128; i
++)
4905 if (!NILP (CHAR_TABLE_REF (translation_table
, i
)))
4908 /* Some ASCII character should be translated. We give up
4913 if (coding
->heading_ascii
>= 0)
4914 /* Detection routine has already found how much we can skip at the
4916 *beg
+= coding
->heading_ascii
;
4920 begp_orig
= begp
= str
+ *beg
;
4921 endp_orig
= endp
= str
+ *end
;
4925 begp_orig
= begp
= BYTE_POS_ADDR (*beg
);
4926 endp_orig
= endp
= begp
+ *end
- *beg
;
4929 eol_conversion
= (coding
->eol_type
== CODING_EOL_CR
4930 || coding
->eol_type
== CODING_EOL_CRLF
);
4932 switch (coding
->type
)
4934 case coding_type_sjis
:
4935 case coding_type_big5
:
4936 /* We can skip all ASCII characters at the head. */
4937 if (coding
->heading_ascii
< 0)
4940 while (begp
< endp
&& *begp
< 0x80 && *begp
!= '\r') begp
++;
4942 while (begp
< endp
&& *begp
< 0x80) begp
++;
4944 /* We can skip all ASCII characters at the tail except for the
4945 second byte of SJIS or BIG5 code. */
4947 while (begp
< endp
&& endp
[-1] < 0x80 && endp
[-1] != '\r') endp
--;
4949 while (begp
< endp
&& endp
[-1] < 0x80) endp
--;
4950 /* Do not consider LF as ascii if preceded by CR, since that
4951 confuses eol decoding. */
4952 if (begp
< endp
&& endp
< endp_orig
&& endp
[-1] == '\r' && endp
[0] == '\n')
4954 if (begp
< endp
&& endp
< endp_orig
&& endp
[-1] >= 0x80)
4958 case coding_type_iso2022
:
4959 if (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, 0) != CHARSET_ASCII
)
4960 /* We can't skip any data. */
4962 if (coding
->heading_ascii
< 0)
4964 /* We can skip all ASCII characters at the head except for a
4965 few control codes. */
4966 while (begp
< endp
&& (c
= *begp
) < 0x80
4967 && c
!= ISO_CODE_CR
&& c
!= ISO_CODE_SO
4968 && c
!= ISO_CODE_SI
&& c
!= ISO_CODE_ESC
4969 && (!eol_conversion
|| c
!= ISO_CODE_LF
))
4972 switch (coding
->category_idx
)
4974 case CODING_CATEGORY_IDX_ISO_8_1
:
4975 case CODING_CATEGORY_IDX_ISO_8_2
:
4976 /* We can skip all ASCII characters at the tail. */
4978 while (begp
< endp
&& (c
= endp
[-1]) < 0x80 && c
!= '\r') endp
--;
4980 while (begp
< endp
&& endp
[-1] < 0x80) endp
--;
4981 /* Do not consider LF as ascii if preceded by CR, since that
4982 confuses eol decoding. */
4983 if (begp
< endp
&& endp
< endp_orig
&& endp
[-1] == '\r' && endp
[0] == '\n')
4987 case CODING_CATEGORY_IDX_ISO_7
:
4988 case CODING_CATEGORY_IDX_ISO_7_TIGHT
:
4990 /* We can skip all characters at the tail except for 8-bit
4991 codes and ESC and the following 2-byte at the tail. */
4992 unsigned char *eight_bit
= NULL
;
4996 && (c
= endp
[-1]) != ISO_CODE_ESC
&& c
!= '\r')
4998 if (!eight_bit
&& c
& 0x80) eight_bit
= endp
;
5003 && (c
= endp
[-1]) != ISO_CODE_ESC
)
5005 if (!eight_bit
&& c
& 0x80) eight_bit
= endp
;
5008 /* Do not consider LF as ascii if preceded by CR, since that
5009 confuses eol decoding. */
5010 if (begp
< endp
&& endp
< endp_orig
5011 && endp
[-1] == '\r' && endp
[0] == '\n')
5013 if (begp
< endp
&& endp
[-1] == ISO_CODE_ESC
)
5015 if (endp
+ 1 < endp_orig
&& end
[0] == '(' && end
[1] == 'B')
5016 /* This is an ASCII designation sequence. We can
5017 surely skip the tail. But, if we have
5018 encountered an 8-bit code, skip only the codes
5020 endp
= eight_bit
? eight_bit
: endp
+ 2;
5022 /* Hmmm, we can't skip the tail. */
5034 *beg
+= begp
- begp_orig
;
5035 *end
+= endp
- endp_orig
;
5039 /* Like shrink_decoding_region but for encoding. */
5042 shrink_encoding_region (beg
, end
, coding
, str
)
5044 struct coding_system
*coding
;
5047 unsigned char *begp_orig
, *begp
, *endp_orig
, *endp
;
5049 Lisp_Object translation_table
;
5051 if (coding
->type
== coding_type_ccl
5052 || coding
->eol_type
== CODING_EOL_CRLF
5053 || coding
->eol_type
== CODING_EOL_CR
5054 || (coding
->cmp_data
&& coding
->cmp_data
->used
> 0))
5056 /* We can't skip any data. */
5059 if (coding
->type
== coding_type_no_conversion
5060 || coding
->type
== coding_type_raw_text
5061 || coding
->type
== coding_type_emacs_mule
5062 || coding
->type
== coding_type_undecided
)
5064 /* We need no conversion, but don't have to skip any data here.
5065 Encoding routine handles them effectively anyway. */
5069 translation_table
= coding
->translation_table_for_encode
;
5070 if (NILP (translation_table
) && !NILP (Venable_character_translation
))
5071 translation_table
= Vstandard_translation_table_for_encode
;
5072 if (CHAR_TABLE_P (translation_table
))
5075 for (i
= 0; i
< 128; i
++)
5076 if (!NILP (CHAR_TABLE_REF (translation_table
, i
)))
5079 /* Some ASCII character should be translated. We give up
5086 begp_orig
= begp
= str
+ *beg
;
5087 endp_orig
= endp
= str
+ *end
;
5091 begp_orig
= begp
= BYTE_POS_ADDR (*beg
);
5092 endp_orig
= endp
= begp
+ *end
- *beg
;
5095 eol_conversion
= (coding
->eol_type
== CODING_EOL_CR
5096 || coding
->eol_type
== CODING_EOL_CRLF
);
5098 /* Here, we don't have to check coding->pre_write_conversion because
5099 the caller is expected to have handled it already. */
5100 switch (coding
->type
)
5102 case coding_type_iso2022
:
5103 if (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding
, 0) != CHARSET_ASCII
)
5104 /* We can't skip any data. */
5106 if (coding
->flags
& CODING_FLAG_ISO_DESIGNATE_AT_BOL
)
5108 unsigned char *bol
= begp
;
5109 while (begp
< endp
&& *begp
< 0x80)
5112 if (begp
[-1] == '\n')
5116 goto label_skip_tail
;
5120 case coding_type_sjis
:
5121 case coding_type_big5
:
5122 /* We can skip all ASCII characters at the head and tail. */
5124 while (begp
< endp
&& *begp
< 0x80 && *begp
!= '\n') begp
++;
5126 while (begp
< endp
&& *begp
< 0x80) begp
++;
5129 while (begp
< endp
&& endp
[-1] < 0x80 && endp
[-1] != '\n') endp
--;
5131 while (begp
< endp
&& *(endp
- 1) < 0x80) endp
--;
5138 *beg
+= begp
- begp_orig
;
5139 *end
+= endp
- endp_orig
;
5143 /* As shrinking conversion region requires some overhead, we don't try
5144 shrinking if the length of conversion region is less than this
5146 static int shrink_conversion_region_threshhold
= 1024;
5148 #define SHRINK_CONVERSION_REGION(beg, end, coding, str, encodep) \
5150 if (*(end) - *(beg) > shrink_conversion_region_threshhold) \
5152 if (encodep) shrink_encoding_region (beg, end, coding, str); \
5153 else shrink_decoding_region (beg, end, coding, str); \
5158 code_convert_region_unwind (dummy
)
5161 inhibit_pre_post_conversion
= 0;
5165 /* Store information about all compositions in the range FROM and TO
5166 of OBJ in memory blocks pointed by CODING->cmp_data. OBJ is a
5167 buffer or a string, defaults to the current buffer. */
5170 coding_save_composition (coding
, from
, to
, obj
)
5171 struct coding_system
*coding
;
5178 if (coding
->composing
== COMPOSITION_DISABLED
)
5180 if (!coding
->cmp_data
)
5181 coding_allocate_composition_data (coding
, from
);
5182 if (!find_composition (from
, to
, &start
, &end
, &prop
, obj
)
5186 && (!find_composition (end
, to
, &start
, &end
, &prop
, obj
)
5189 coding
->composing
= COMPOSITION_NO
;
5192 if (COMPOSITION_VALID_P (start
, end
, prop
))
5194 enum composition_method method
= COMPOSITION_METHOD (prop
);
5195 if (coding
->cmp_data
->used
+ COMPOSITION_DATA_MAX_BUNCH_LENGTH
5196 >= COMPOSITION_DATA_SIZE
)
5197 coding_allocate_composition_data (coding
, from
);
5198 /* For relative composition, we remember start and end
5199 positions, for the other compositions, we also remember
5201 CODING_ADD_COMPOSITION_START (coding
, start
- from
, method
);
5202 if (method
!= COMPOSITION_RELATIVE
)
5204 /* We must store a*/
5205 Lisp_Object val
, ch
;
5207 val
= COMPOSITION_COMPONENTS (prop
);
5211 ch
= XCAR (val
), val
= XCDR (val
);
5212 CODING_ADD_COMPOSITION_COMPONENT (coding
, XINT (ch
));
5214 else if (VECTORP (val
) || STRINGP (val
))
5216 int len
= (VECTORP (val
)
5217 ? XVECTOR (val
)->size
: XSTRING (val
)->size
);
5219 for (i
= 0; i
< len
; i
++)
5222 ? Faref (val
, make_number (i
))
5223 : XVECTOR (val
)->contents
[i
]);
5224 CODING_ADD_COMPOSITION_COMPONENT (coding
, XINT (ch
));
5227 else /* INTEGERP (val) */
5228 CODING_ADD_COMPOSITION_COMPONENT (coding
, XINT (val
));
5230 CODING_ADD_COMPOSITION_END (coding
, end
- from
);
5235 && find_composition (start
, to
, &start
, &end
, &prop
, obj
)
5238 /* Make coding->cmp_data point to the first memory block. */
5239 while (coding
->cmp_data
->prev
)
5240 coding
->cmp_data
= coding
->cmp_data
->prev
;
5241 coding
->cmp_data_start
= 0;
5244 /* Reflect the saved information about compositions to OBJ.
5245 CODING->cmp_data points to a memory block for the information. OBJ
5246 is a buffer or a string, defaults to the current buffer. */
5249 coding_restore_composition (coding
, obj
)
5250 struct coding_system
*coding
;
5253 struct composition_data
*cmp_data
= coding
->cmp_data
;
5258 while (cmp_data
->prev
)
5259 cmp_data
= cmp_data
->prev
;
5265 for (i
= 0; i
< cmp_data
->used
&& cmp_data
->data
[i
] > 0;
5266 i
+= cmp_data
->data
[i
])
5268 int *data
= cmp_data
->data
+ i
;
5269 enum composition_method method
= (enum composition_method
) data
[3];
5270 Lisp_Object components
;
5272 if (method
== COMPOSITION_RELATIVE
)
5276 int len
= data
[0] - 4, j
;
5277 Lisp_Object args
[MAX_COMPOSITION_COMPONENTS
* 2 - 1];
5279 for (j
= 0; j
< len
; j
++)
5280 args
[j
] = make_number (data
[4 + j
]);
5281 components
= (method
== COMPOSITION_WITH_ALTCHARS
5282 ? Fstring (len
, args
) : Fvector (len
, args
));
5284 compose_text (data
[1], data
[2], components
, Qnil
, obj
);
5286 cmp_data
= cmp_data
->next
;
5290 /* Decode (if ENCODEP is zero) or encode (if ENCODEP is nonzero) the
5291 text from FROM to TO (byte positions are FROM_BYTE and TO_BYTE) by
5292 coding system CODING, and return the status code of code conversion
5293 (currently, this value has no meaning).
5295 How many characters (and bytes) are converted to how many
5296 characters (and bytes) are recorded in members of the structure
5299 If REPLACE is nonzero, we do various things as if the original text
5300 is deleted and a new text is inserted. See the comments in
5301 replace_range (insdel.c) to know what we are doing.
5303 If REPLACE is zero, it is assumed that the source text is unibyte.
5304 Otherwise, it is assumed that the source text is multibyte. */
5307 code_convert_region (from
, from_byte
, to
, to_byte
, coding
, encodep
, replace
)
5308 int from
, from_byte
, to
, to_byte
, encodep
, replace
;
5309 struct coding_system
*coding
;
5311 int len
= to
- from
, len_byte
= to_byte
- from_byte
;
5312 int nchars_del
= 0, nbytes_del
= 0;
5313 int require
, inserted
, inserted_byte
;
5314 int head_skip
, tail_skip
, total_skip
= 0;
5315 Lisp_Object saved_coding_symbol
;
5317 unsigned char *src
, *dst
;
5318 Lisp_Object deletion
;
5319 int orig_point
= PT
, orig_len
= len
;
5321 int multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
5324 saved_coding_symbol
= coding
->symbol
;
5326 if (from
< PT
&& PT
< to
)
5328 TEMP_SET_PT_BOTH (from
, from_byte
);
5334 int saved_from
= from
;
5335 int saved_inhibit_modification_hooks
;
5337 prepare_to_modify_buffer (from
, to
, &from
);
5338 if (saved_from
!= from
)
5341 from_byte
= CHAR_TO_BYTE (from
), to_byte
= CHAR_TO_BYTE (to
);
5342 len_byte
= to_byte
- from_byte
;
5345 /* The code conversion routine can not preserve text properties
5346 for now. So, we must remove all text properties in the
5347 region. Here, we must suppress all modification hooks. */
5348 saved_inhibit_modification_hooks
= inhibit_modification_hooks
;
5349 inhibit_modification_hooks
= 1;
5350 Fset_text_properties (make_number (from
), make_number (to
), Qnil
, Qnil
);
5351 inhibit_modification_hooks
= saved_inhibit_modification_hooks
;
5354 if (! encodep
&& CODING_REQUIRE_DETECTION (coding
))
5356 /* We must detect encoding of text and eol format. */
5358 if (from
< GPT
&& to
> GPT
)
5359 move_gap_both (from
, from_byte
);
5360 if (coding
->type
== coding_type_undecided
)
5362 detect_coding (coding
, BYTE_POS_ADDR (from_byte
), len_byte
);
5363 if (coding
->type
== coding_type_undecided
)
5365 /* It seems that the text contains only ASCII, but we
5366 should not leave it undecided because the deeper
5367 decoding routine (decode_coding) tries to detect the
5368 encodings again in vain. */
5369 coding
->type
= coding_type_emacs_mule
;
5370 coding
->category_idx
= CODING_CATEGORY_IDX_EMACS_MULE
;
5371 /* As emacs-mule decoder will handle composition, we
5372 need this setting to allocate coding->cmp_data
5374 coding
->composing
= COMPOSITION_NO
;
5377 if (coding
->eol_type
== CODING_EOL_UNDECIDED
5378 && coding
->type
!= coding_type_ccl
)
5380 detect_eol (coding
, BYTE_POS_ADDR (from_byte
), len_byte
);
5381 if (coding
->eol_type
== CODING_EOL_UNDECIDED
)
5382 coding
->eol_type
= CODING_EOL_LF
;
5383 /* We had better recover the original eol format if we
5384 encounter an inconsistent eol format while decoding. */
5385 coding
->mode
|= CODING_MODE_INHIBIT_INCONSISTENT_EOL
;
5389 /* Now we convert the text. */
5391 /* For encoding, we must process pre-write-conversion in advance. */
5392 if (! inhibit_pre_post_conversion
5394 && SYMBOLP (coding
->pre_write_conversion
)
5395 && ! NILP (Ffboundp (coding
->pre_write_conversion
)))
5397 /* The function in pre-write-conversion may put a new text in a
5399 struct buffer
*prev
= current_buffer
;
5402 record_unwind_protect (code_convert_region_unwind
, Qnil
);
5403 /* We should not call any more pre-write/post-read-conversion
5404 functions while this pre-write-conversion is running. */
5405 inhibit_pre_post_conversion
= 1;
5406 call2 (coding
->pre_write_conversion
,
5407 make_number (from
), make_number (to
));
5408 inhibit_pre_post_conversion
= 0;
5409 /* Discard the unwind protect. */
5412 if (current_buffer
!= prev
)
5415 new = Fcurrent_buffer ();
5416 set_buffer_internal_1 (prev
);
5417 del_range_2 (from
, from_byte
, to
, to_byte
, 0);
5418 TEMP_SET_PT_BOTH (from
, from_byte
);
5419 insert_from_buffer (XBUFFER (new), 1, len
, 0);
5421 if (orig_point
>= to
)
5422 orig_point
+= len
- orig_len
;
5423 else if (orig_point
> from
)
5427 from_byte
= CHAR_TO_BYTE (from
);
5428 to_byte
= CHAR_TO_BYTE (to
);
5429 len_byte
= to_byte
- from_byte
;
5430 TEMP_SET_PT_BOTH (from
, from_byte
);
5436 if (! EQ (current_buffer
->undo_list
, Qt
))
5437 deletion
= make_buffer_string_both (from
, from_byte
, to
, to_byte
, 1);
5440 nchars_del
= to
- from
;
5441 nbytes_del
= to_byte
- from_byte
;
5445 if (coding
->composing
!= COMPOSITION_DISABLED
)
5448 coding_save_composition (coding
, from
, to
, Fcurrent_buffer ());
5450 coding_allocate_composition_data (coding
, from
);
5453 /* Try to skip the heading and tailing ASCIIs. */
5454 if (coding
->type
!= coding_type_ccl
)
5456 int from_byte_orig
= from_byte
, to_byte_orig
= to_byte
;
5458 if (from
< GPT
&& GPT
< to
)
5459 move_gap_both (from
, from_byte
);
5460 SHRINK_CONVERSION_REGION (&from_byte
, &to_byte
, coding
, NULL
, encodep
);
5461 if (from_byte
== to_byte
5462 && (encodep
|| NILP (coding
->post_read_conversion
))
5463 && ! CODING_REQUIRE_FLUSHING (coding
))
5465 coding
->produced
= len_byte
;
5466 coding
->produced_char
= len
;
5468 /* We must record and adjust for this new text now. */
5469 adjust_after_insert (from
, from_byte_orig
, to
, to_byte_orig
, len
);
5473 head_skip
= from_byte
- from_byte_orig
;
5474 tail_skip
= to_byte_orig
- to_byte
;
5475 total_skip
= head_skip
+ tail_skip
;
5478 len
-= total_skip
; len_byte
-= total_skip
;
5481 /* For conversion, we must put the gap before the text in addition to
5482 making the gap larger for efficient decoding. The required gap
5483 size starts from 2000 which is the magic number used in make_gap.
5484 But, after one batch of conversion, it will be incremented if we
5485 find that it is not enough . */
5488 if (GAP_SIZE
< require
)
5489 make_gap (require
- GAP_SIZE
);
5490 move_gap_both (from
, from_byte
);
5492 inserted
= inserted_byte
= 0;
5494 GAP_SIZE
+= len_byte
;
5497 ZV_BYTE
-= len_byte
;
5500 if (GPT
- BEG
< BEG_UNCHANGED
)
5501 BEG_UNCHANGED
= GPT
- BEG
;
5502 if (Z
- GPT
< END_UNCHANGED
)
5503 END_UNCHANGED
= Z
- GPT
;
5505 if (!encodep
&& coding
->src_multibyte
)
5507 /* Decoding routines expects that the source text is unibyte.
5508 We must convert 8-bit characters of multibyte form to
5510 int len_byte_orig
= len_byte
;
5511 len_byte
= str_as_unibyte (GAP_END_ADDR
- len_byte
, len_byte
);
5512 if (len_byte
< len_byte_orig
)
5513 safe_bcopy (GAP_END_ADDR
- len_byte_orig
, GAP_END_ADDR
- len_byte
,
5515 coding
->src_multibyte
= 0;
5522 /* The buffer memory is now:
5523 +--------+converted-text+---------+-------original-text-------+---+
5524 |<-from->|<--inserted-->|---------|<--------len_byte--------->|---|
5525 |<---------------------- GAP ----------------------->| */
5526 src
= GAP_END_ADDR
- len_byte
;
5527 dst
= GPT_ADDR
+ inserted_byte
;
5530 result
= encode_coding (coding
, src
, dst
, len_byte
, 0);
5533 if (coding
->composing
!= COMPOSITION_DISABLED
)
5534 coding
->cmp_data
->char_offset
= from
+ inserted
;
5535 result
= decode_coding (coding
, src
, dst
, len_byte
, 0);
5538 /* The buffer memory is now:
5539 +--------+-------converted-text----+--+------original-text----+---+
5540 |<-from->|<-inserted->|<-produced->|--|<-(len_byte-consumed)->|---|
5541 |<---------------------- GAP ----------------------->| */
5543 inserted
+= coding
->produced_char
;
5544 inserted_byte
+= coding
->produced
;
5545 len_byte
-= coding
->consumed
;
5547 if (result
== CODING_FINISH_INSUFFICIENT_CMP
)
5549 coding_allocate_composition_data (coding
, from
+ inserted
);
5553 src
+= coding
->consumed
;
5554 dst
+= coding
->produced
;
5556 if (result
== CODING_FINISH_NORMAL
)
5561 if (! encodep
&& result
== CODING_FINISH_INCONSISTENT_EOL
)
5563 unsigned char *pend
= dst
, *p
= pend
- inserted_byte
;
5564 Lisp_Object eol_type
;
5566 /* Encode LFs back to the original eol format (CR or CRLF). */
5567 if (coding
->eol_type
== CODING_EOL_CR
)
5569 while (p
< pend
) if (*p
++ == '\n') p
[-1] = '\r';
5575 while (p
< pend
) if (*p
++ == '\n') count
++;
5576 if (src
- dst
< count
)
5578 /* We don't have sufficient room for encoding LFs
5579 back to CRLF. We must record converted and
5580 not-yet-converted text back to the buffer
5581 content, enlarge the gap, then record them out of
5582 the buffer contents again. */
5583 int add
= len_byte
+ inserted_byte
;
5586 ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
5587 GPT
+= inserted_byte
; GPT_BYTE
+= inserted_byte
;
5588 make_gap (count
- GAP_SIZE
);
5590 ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
5591 GPT
-= inserted_byte
; GPT_BYTE
-= inserted_byte
;
5592 /* Don't forget to update SRC, DST, and PEND. */
5593 src
= GAP_END_ADDR
- len_byte
;
5594 dst
= GPT_ADDR
+ inserted_byte
;
5598 inserted_byte
+= count
;
5599 coding
->produced
+= count
;
5600 p
= dst
= pend
+ count
;
5604 if (*p
== '\n') count
--, *--p
= '\r';
5608 /* Suppress eol-format conversion in the further conversion. */
5609 coding
->eol_type
= CODING_EOL_LF
;
5611 /* Set the coding system symbol to that for Unix-like EOL. */
5612 eol_type
= Fget (saved_coding_symbol
, Qeol_type
);
5613 if (VECTORP (eol_type
)
5614 && XVECTOR (eol_type
)->size
== 3
5615 && SYMBOLP (XVECTOR (eol_type
)->contents
[CODING_EOL_LF
]))
5616 coding
->symbol
= XVECTOR (eol_type
)->contents
[CODING_EOL_LF
];
5618 coding
->symbol
= saved_coding_symbol
;
5624 if (coding
->type
!= coding_type_ccl
5625 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
5627 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5630 if (result
== CODING_FINISH_INSUFFICIENT_SRC
)
5632 /* The source text ends in invalid codes. Let's just
5633 make them valid buffer contents, and finish conversion. */
5636 unsigned char *start
= dst
;
5638 inserted
+= len_byte
;
5642 dst
+= CHAR_STRING (c
, dst
);
5645 inserted_byte
+= dst
- start
;
5649 inserted
+= len_byte
;
5650 inserted_byte
+= len_byte
;
5656 if (result
== CODING_FINISH_INTERRUPT
)
5658 /* The conversion procedure was interrupted by a user. */
5661 /* Now RESULT == CODING_FINISH_INSUFFICIENT_DST */
5662 if (coding
->consumed
< 1)
5664 /* It's quite strange to require more memory without
5665 consuming any bytes. Perhaps CCL program bug. */
5670 /* We have just done the first batch of conversion which was
5671 stopped because of insufficient gap. Let's reconsider the
5672 required gap size (i.e. SRT - DST) now.
5674 We have converted ORIG bytes (== coding->consumed) into
5675 NEW bytes (coding->produced). To convert the remaining
5676 LEN bytes, we may need REQUIRE bytes of gap, where:
5677 REQUIRE + LEN_BYTE = LEN_BYTE * (NEW / ORIG)
5678 REQUIRE = LEN_BYTE * (NEW - ORIG) / ORIG
5679 Here, we are sure that NEW >= ORIG. */
5680 float ratio
= coding
->produced
- coding
->consumed
;
5681 ratio
/= coding
->consumed
;
5682 require
= len_byte
* ratio
;
5685 if ((src
- dst
) < (require
+ 2000))
5687 /* See the comment above the previous call of make_gap. */
5688 int add
= len_byte
+ inserted_byte
;
5691 ZV
+= add
; Z
+= add
; ZV_BYTE
+= add
; Z_BYTE
+= add
;
5692 GPT
+= inserted_byte
; GPT_BYTE
+= inserted_byte
;
5693 make_gap (require
+ 2000);
5695 ZV
-= add
; Z
-= add
; ZV_BYTE
-= add
; Z_BYTE
-= add
;
5696 GPT
-= inserted_byte
; GPT_BYTE
-= inserted_byte
;
5699 if (src
- dst
> 0) *dst
= 0; /* Put an anchor. */
5701 if (encodep
&& coding
->dst_multibyte
)
5703 /* The output is unibyte. We must convert 8-bit characters to
5705 if (inserted_byte
* 2 > GAP_SIZE
)
5707 GAP_SIZE
-= inserted_byte
;
5708 ZV
+= inserted_byte
; Z
+= inserted_byte
;
5709 ZV_BYTE
+= inserted_byte
; Z_BYTE
+= inserted_byte
;
5710 GPT
+= inserted_byte
; GPT_BYTE
+= inserted_byte
;
5711 make_gap (inserted_byte
- GAP_SIZE
);
5712 GAP_SIZE
+= inserted_byte
;
5713 ZV
-= inserted_byte
; Z
-= inserted_byte
;
5714 ZV_BYTE
-= inserted_byte
; Z_BYTE
-= inserted_byte
;
5715 GPT
-= inserted_byte
; GPT_BYTE
-= inserted_byte
;
5717 inserted_byte
= str_to_multibyte (GPT_ADDR
, GAP_SIZE
, inserted_byte
);
5720 /* If we shrank the conversion area, adjust it now. */
5724 safe_bcopy (GAP_END_ADDR
, GPT_ADDR
+ inserted_byte
, tail_skip
);
5725 inserted
+= total_skip
; inserted_byte
+= total_skip
;
5726 GAP_SIZE
+= total_skip
;
5727 GPT
-= head_skip
; GPT_BYTE
-= head_skip
;
5728 ZV
-= total_skip
; ZV_BYTE
-= total_skip
;
5729 Z
-= total_skip
; Z_BYTE
-= total_skip
;
5730 from
-= head_skip
; from_byte
-= head_skip
;
5731 to
+= tail_skip
; to_byte
+= tail_skip
;
5735 if (! EQ (current_buffer
->undo_list
, Qt
))
5736 adjust_after_replace (from
, from_byte
, deletion
, inserted
, inserted_byte
);
5738 adjust_after_replace_noundo (from
, from_byte
, nchars_del
, nbytes_del
,
5739 inserted
, inserted_byte
);
5740 inserted
= Z
- prev_Z
;
5742 if (!encodep
&& coding
->cmp_data
&& coding
->cmp_data
->used
)
5743 coding_restore_composition (coding
, Fcurrent_buffer ());
5744 coding_free_composition_data (coding
);
5746 if (! inhibit_pre_post_conversion
5747 && ! encodep
&& ! NILP (coding
->post_read_conversion
))
5752 TEMP_SET_PT_BOTH (from
, from_byte
);
5754 record_unwind_protect (code_convert_region_unwind
, Qnil
);
5755 /* We should not call any more pre-write/post-read-conversion
5756 functions while this post-read-conversion is running. */
5757 inhibit_pre_post_conversion
= 1;
5758 val
= call1 (coding
->post_read_conversion
, make_number (inserted
));
5759 inhibit_pre_post_conversion
= 0;
5760 /* Discard the unwind protect. */
5763 inserted
+= Z
- prev_Z
;
5766 if (orig_point
>= from
)
5768 if (orig_point
>= from
+ orig_len
)
5769 orig_point
+= inserted
- orig_len
;
5772 TEMP_SET_PT (orig_point
);
5777 signal_after_change (from
, to
- from
, inserted
);
5778 update_compositions (from
, from
+ inserted
, CHECK_BORDER
);
5782 coding
->consumed
= to_byte
- from_byte
;
5783 coding
->consumed_char
= to
- from
;
5784 coding
->produced
= inserted_byte
;
5785 coding
->produced_char
= inserted
;
5792 run_pre_post_conversion_on_str (str
, coding
, encodep
)
5794 struct coding_system
*coding
;
5797 int count
= specpdl_ptr
- specpdl
;
5798 struct gcpro gcpro1
;
5799 int multibyte
= STRING_MULTIBYTE (str
);
5803 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
5804 record_unwind_protect (code_convert_region_unwind
, Qnil
);
5807 buffer
= Fget_buffer_create (build_string (" *code-converting-work*"));
5808 buf
= XBUFFER (buffer
);
5810 buf
->directory
= current_buffer
->directory
;
5811 buf
->read_only
= Qnil
;
5812 buf
->filename
= Qnil
;
5813 buf
->undo_list
= Qt
;
5814 buf
->overlays_before
= Qnil
;
5815 buf
->overlays_after
= Qnil
;
5817 set_buffer_internal (buf
);
5818 /* We must insert the contents of STR as is without
5819 unibyte<->multibyte conversion. For that, we adjust the
5820 multibyteness of the working buffer to that of STR. */
5822 buf
->enable_multibyte_characters
= multibyte
? Qt
: Qnil
;
5824 insert_from_string (str
, 0, 0,
5825 XSTRING (str
)->size
, STRING_BYTES (XSTRING (str
)), 0);
5827 inhibit_pre_post_conversion
= 1;
5829 call2 (coding
->pre_write_conversion
, make_number (BEG
), make_number (Z
));
5832 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
5833 call1 (coding
->post_read_conversion
, make_number (Z
- BEG
));
5835 inhibit_pre_post_conversion
= 0;
5836 str
= make_buffer_string (BEG
, Z
, 1);
5837 return unbind_to (count
, str
);
5841 decode_coding_string (str
, coding
, nocopy
)
5843 struct coding_system
*coding
;
5847 struct conversion_buffer buf
;
5849 Lisp_Object saved_coding_symbol
;
5851 int require_decoding
;
5852 int shrinked_bytes
= 0;
5854 int consumed
, consumed_char
, produced
, produced_char
;
5857 to_byte
= STRING_BYTES (XSTRING (str
));
5859 saved_coding_symbol
= coding
->symbol
;
5860 coding
->src_multibyte
= STRING_MULTIBYTE (str
);
5861 coding
->dst_multibyte
= 1;
5862 if (CODING_REQUIRE_DETECTION (coding
))
5864 /* See the comments in code_convert_region. */
5865 if (coding
->type
== coding_type_undecided
)
5867 detect_coding (coding
, XSTRING (str
)->data
, to_byte
);
5868 if (coding
->type
== coding_type_undecided
)
5870 coding
->type
= coding_type_emacs_mule
;
5871 coding
->category_idx
= CODING_CATEGORY_IDX_EMACS_MULE
;
5872 /* As emacs-mule decoder will handle composition, we
5873 need this setting to allocate coding->cmp_data
5875 coding
->composing
= COMPOSITION_NO
;
5878 if (coding
->eol_type
== CODING_EOL_UNDECIDED
5879 && coding
->type
!= coding_type_ccl
)
5881 saved_coding_symbol
= coding
->symbol
;
5882 detect_eol (coding
, XSTRING (str
)->data
, to_byte
);
5883 if (coding
->eol_type
== CODING_EOL_UNDECIDED
)
5884 coding
->eol_type
= CODING_EOL_LF
;
5885 /* We had better recover the original eol format if we
5886 encounter an inconsistent eol format while decoding. */
5887 coding
->mode
|= CODING_MODE_INHIBIT_INCONSISTENT_EOL
;
5891 if (coding
->type
== coding_type_no_conversion
5892 || coding
->type
== coding_type_raw_text
)
5893 coding
->dst_multibyte
= 0;
5895 require_decoding
= CODING_REQUIRE_DECODING (coding
);
5897 if (STRING_MULTIBYTE (str
))
5899 /* Decoding routines expect the source text to be unibyte. */
5900 str
= Fstring_as_unibyte (str
);
5901 to_byte
= STRING_BYTES (XSTRING (str
));
5903 coding
->src_multibyte
= 0;
5906 /* Try to skip the heading and tailing ASCIIs. */
5907 if (require_decoding
&& coding
->type
!= coding_type_ccl
)
5909 SHRINK_CONVERSION_REGION (&from
, &to_byte
, coding
, XSTRING (str
)->data
,
5911 if (from
== to_byte
)
5912 require_decoding
= 0;
5913 shrinked_bytes
= from
+ (STRING_BYTES (XSTRING (str
)) - to_byte
);
5916 if (!require_decoding
)
5918 coding
->consumed
= STRING_BYTES (XSTRING (str
));
5919 coding
->consumed_char
= XSTRING (str
)->size
;
5920 if (coding
->dst_multibyte
)
5922 str
= Fstring_as_multibyte (str
);
5925 coding
->produced
= STRING_BYTES (XSTRING (str
));
5926 coding
->produced_char
= XSTRING (str
)->size
;
5927 return (nocopy
? str
: Fcopy_sequence (str
));
5930 if (coding
->composing
!= COMPOSITION_DISABLED
)
5931 coding_allocate_composition_data (coding
, from
);
5932 len
= decoding_buffer_size (coding
, to_byte
- from
);
5933 allocate_conversion_buffer (buf
, len
);
5935 consumed
= consumed_char
= produced
= produced_char
= 0;
5938 result
= decode_coding (coding
, XSTRING (str
)->data
+ from
+ consumed
,
5939 buf
.data
+ produced
, to_byte
- from
- consumed
,
5940 buf
.size
- produced
);
5941 consumed
+= coding
->consumed
;
5942 consumed_char
+= coding
->consumed_char
;
5943 produced
+= coding
->produced
;
5944 produced_char
+= coding
->produced_char
;
5945 if (result
== CODING_FINISH_NORMAL
5946 || (result
== CODING_FINISH_INSUFFICIENT_SRC
5947 && coding
->consumed
== 0))
5949 if (result
== CODING_FINISH_INSUFFICIENT_CMP
)
5950 coding_allocate_composition_data (coding
, from
+ produced_char
);
5951 else if (result
== CODING_FINISH_INSUFFICIENT_DST
)
5952 extend_conversion_buffer (&buf
);
5953 else if (result
== CODING_FINISH_INCONSISTENT_EOL
)
5955 Lisp_Object eol_type
;
5957 /* Recover the original EOL format. */
5958 if (coding
->eol_type
== CODING_EOL_CR
)
5961 for (p
= buf
.data
; p
< buf
.data
+ produced
; p
++)
5962 if (*p
== '\n') *p
= '\r';
5964 else if (coding
->eol_type
== CODING_EOL_CRLF
)
5967 unsigned char *p0
, *p1
;
5968 for (p0
= buf
.data
, p1
= p0
+ produced
; p0
< p1
; p0
++)
5969 if (*p0
== '\n') num_eol
++;
5970 if (produced
+ num_eol
>= buf
.size
)
5971 extend_conversion_buffer (&buf
);
5972 for (p0
= buf
.data
+ produced
, p1
= p0
+ num_eol
; p0
> buf
.data
;)
5975 if (*p0
== '\n') *--p1
= '\r';
5977 produced
+= num_eol
;
5978 produced_char
+= num_eol
;
5980 /* Suppress eol-format conversion in the further conversion. */
5981 coding
->eol_type
= CODING_EOL_LF
;
5983 /* Set the coding system symbol to that for Unix-like EOL. */
5984 eol_type
= Fget (saved_coding_symbol
, Qeol_type
);
5985 if (VECTORP (eol_type
)
5986 && XVECTOR (eol_type
)->size
== 3
5987 && SYMBOLP (XVECTOR (eol_type
)->contents
[CODING_EOL_LF
]))
5988 coding
->symbol
= XVECTOR (eol_type
)->contents
[CODING_EOL_LF
];
5990 coding
->symbol
= saved_coding_symbol
;
5996 coding
->consumed
= consumed
;
5997 coding
->consumed_char
= consumed_char
;
5998 coding
->produced
= produced
;
5999 coding
->produced_char
= produced_char
;
6001 if (coding
->dst_multibyte
)
6002 newstr
= make_uninit_multibyte_string (produced_char
+ shrinked_bytes
,
6003 produced
+ shrinked_bytes
);
6005 newstr
= make_uninit_string (produced
+ shrinked_bytes
);
6007 bcopy (XSTRING (str
)->data
, XSTRING (newstr
)->data
, from
);
6008 bcopy (buf
.data
, XSTRING (newstr
)->data
+ from
, produced
);
6009 if (shrinked_bytes
> from
)
6010 bcopy (XSTRING (str
)->data
+ to_byte
,
6011 XSTRING (newstr
)->data
+ from
+ produced
,
6012 shrinked_bytes
- from
);
6013 free_conversion_buffer (&buf
);
6015 if (coding
->cmp_data
&& coding
->cmp_data
->used
)
6016 coding_restore_composition (coding
, newstr
);
6017 coding_free_composition_data (coding
);
6019 if (SYMBOLP (coding
->post_read_conversion
)
6020 && !NILP (Ffboundp (coding
->post_read_conversion
)))
6021 newstr
= run_pre_post_conversion_on_str (newstr
, coding
, 0);
6027 encode_coding_string (str
, coding
, nocopy
)
6029 struct coding_system
*coding
;
6033 struct conversion_buffer buf
;
6034 int from
, to
, to_byte
;
6036 int shrinked_bytes
= 0;
6038 int consumed
, consumed_char
, produced
, produced_char
;
6040 if (SYMBOLP (coding
->pre_write_conversion
)
6041 && !NILP (Ffboundp (coding
->pre_write_conversion
)))
6042 str
= run_pre_post_conversion_on_str (str
, coding
, 1);
6045 to
= XSTRING (str
)->size
;
6046 to_byte
= STRING_BYTES (XSTRING (str
));
6048 /* Encoding routines determine the multibyteness of the source text
6049 by coding->src_multibyte. */
6050 coding
->src_multibyte
= STRING_MULTIBYTE (str
);
6051 coding
->dst_multibyte
= 0;
6052 if (! CODING_REQUIRE_ENCODING (coding
))
6054 coding
->consumed
= STRING_BYTES (XSTRING (str
));
6055 coding
->consumed_char
= XSTRING (str
)->size
;
6056 if (STRING_MULTIBYTE (str
))
6058 str
= Fstring_as_unibyte (str
);
6061 coding
->produced
= STRING_BYTES (XSTRING (str
));
6062 coding
->produced_char
= XSTRING (str
)->size
;
6063 return (nocopy
? str
: Fcopy_sequence (str
));
6066 if (coding
->composing
!= COMPOSITION_DISABLED
)
6067 coding_save_composition (coding
, from
, to
, str
);
6069 /* Try to skip the heading and tailing ASCIIs. */
6070 if (coding
->type
!= coding_type_ccl
)
6072 SHRINK_CONVERSION_REGION (&from
, &to_byte
, coding
, XSTRING (str
)->data
,
6074 if (from
== to_byte
)
6075 return (nocopy
? str
: Fcopy_sequence (str
));
6076 shrinked_bytes
= from
+ (STRING_BYTES (XSTRING (str
)) - to_byte
);
6079 len
= encoding_buffer_size (coding
, to_byte
- from
);
6080 allocate_conversion_buffer (buf
, len
);
6082 consumed
= consumed_char
= produced
= produced_char
= 0;
6085 result
= encode_coding (coding
, XSTRING (str
)->data
+ from
+ consumed
,
6086 buf
.data
+ produced
, to_byte
- from
- consumed
,
6087 buf
.size
- produced
);
6088 consumed
+= coding
->consumed
;
6089 consumed_char
+= coding
->consumed_char
;
6090 produced
+= coding
->produced
;
6091 produced_char
+= coding
->produced_char
;
6092 if (result
== CODING_FINISH_NORMAL
6093 || (result
== CODING_FINISH_INSUFFICIENT_SRC
6094 && coding
->consumed
== 0))
6096 /* Now result should be CODING_FINISH_INSUFFICIENT_DST. */
6097 extend_conversion_buffer (&buf
);
6100 coding
->consumed
= consumed
;
6101 coding
->consumed_char
= consumed_char
;
6102 coding
->produced
= produced
;
6103 coding
->produced_char
= produced_char
;
6105 newstr
= make_uninit_string (produced
+ shrinked_bytes
);
6107 bcopy (XSTRING (str
)->data
, XSTRING (newstr
)->data
, from
);
6108 bcopy (buf
.data
, XSTRING (newstr
)->data
+ from
, produced
);
6109 if (shrinked_bytes
> from
)
6110 bcopy (XSTRING (str
)->data
+ to_byte
,
6111 XSTRING (newstr
)->data
+ from
+ produced
,
6112 shrinked_bytes
- from
);
6114 free_conversion_buffer (&buf
);
6115 coding_free_composition_data (coding
);
6122 /*** 8. Emacs Lisp library functions ***/
6124 DEFUN ("coding-system-p", Fcoding_system_p
, Scoding_system_p
, 1, 1, 0,
6125 doc
: /* Return t if OBJECT is nil or a coding-system.
6126 See the documentation of `make-coding-system' for information
6127 about coding-system objects. */)
6135 /* Get coding-spec vector for OBJ. */
6136 obj
= Fget (obj
, Qcoding_system
);
6137 return ((VECTORP (obj
) && XVECTOR (obj
)->size
== 5)
6141 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system
,
6142 Sread_non_nil_coding_system
, 1, 1, 0,
6143 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT. */)
6150 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
6151 Qt
, Qnil
, Qcoding_system_history
, Qnil
, Qnil
);
6153 while (XSTRING (val
)->size
== 0);
6154 return (Fintern (val
, Qnil
));
6157 DEFUN ("read-coding-system", Fread_coding_system
, Sread_coding_system
, 1, 2, 0,
6158 doc
: /* Read a coding system from the minibuffer, prompting with string PROMPT.
6159 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. */)
6160 (prompt
, default_coding_system
)
6161 Lisp_Object prompt
, default_coding_system
;
6164 if (SYMBOLP (default_coding_system
))
6165 XSETSTRING (default_coding_system
, XSYMBOL (default_coding_system
)->name
);
6166 val
= Fcompleting_read (prompt
, Vcoding_system_alist
, Qnil
,
6167 Qt
, Qnil
, Qcoding_system_history
,
6168 default_coding_system
, Qnil
);
6169 return (XSTRING (val
)->size
== 0 ? Qnil
: Fintern (val
, Qnil
));
6172 DEFUN ("check-coding-system", Fcheck_coding_system
, Scheck_coding_system
,
6174 doc
: /* Check validity of CODING-SYSTEM.
6175 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error.
6176 It is valid if it is a symbol with a non-nil `coding-system' property.
6177 The value of property should be a vector of length 5. */)
6179 Lisp_Object coding_system
;
6181 CHECK_SYMBOL (coding_system
);
6182 if (!NILP (Fcoding_system_p (coding_system
)))
6183 return coding_system
;
6185 Fsignal (Qcoding_system_error
, Fcons (coding_system
, Qnil
));
6189 detect_coding_system (src
, src_bytes
, highest
, multibytep
)
6191 int src_bytes
, highest
;
6194 int coding_mask
, eol_type
;
6195 Lisp_Object val
, tmp
;
6198 coding_mask
= detect_coding_mask (src
, src_bytes
, NULL
, &dummy
, multibytep
);
6199 eol_type
= detect_eol_type (src
, src_bytes
, &dummy
);
6200 if (eol_type
== CODING_EOL_INCONSISTENT
)
6201 eol_type
= CODING_EOL_UNDECIDED
;
6206 if (eol_type
!= CODING_EOL_UNDECIDED
)
6209 val2
= Fget (Qundecided
, Qeol_type
);
6211 val
= XVECTOR (val2
)->contents
[eol_type
];
6213 return (highest
? val
: Fcons (val
, Qnil
));
6216 /* At first, gather possible coding systems in VAL. */
6218 for (tmp
= Vcoding_category_list
; CONSP (tmp
); tmp
= XCDR (tmp
))
6220 Lisp_Object category_val
, category_index
;
6222 category_index
= Fget (XCAR (tmp
), Qcoding_category_index
);
6223 category_val
= Fsymbol_value (XCAR (tmp
));
6224 if (!NILP (category_val
)
6225 && NATNUMP (category_index
)
6226 && (coding_mask
& (1 << XFASTINT (category_index
))))
6228 val
= Fcons (category_val
, val
);
6234 val
= Fnreverse (val
);
6236 /* Then, replace the elements with subsidiary coding systems. */
6237 for (tmp
= val
; CONSP (tmp
); tmp
= XCDR (tmp
))
6239 if (eol_type
!= CODING_EOL_UNDECIDED
6240 && eol_type
!= CODING_EOL_INCONSISTENT
)
6243 eol
= Fget (XCAR (tmp
), Qeol_type
);
6245 XSETCAR (tmp
, XVECTOR (eol
)->contents
[eol_type
]);
6248 return (highest
? XCAR (val
) : val
);
6251 DEFUN ("detect-coding-region", Fdetect_coding_region
, Sdetect_coding_region
,
6253 doc
: /* Detect coding system of the text in the region between START and END.
6254 Return a list of possible coding systems ordered by priority.
6256 If only ASCII characters are found, it returns a list of single element
6257 `undecided' or its subsidiary coding system according to a detected
6260 If optional argument HIGHEST is non-nil, return the coding system of
6261 highest priority. */)
6262 (start
, end
, highest
)
6263 Lisp_Object start
, end
, highest
;
6266 int from_byte
, to_byte
;
6267 int include_anchor_byte
= 0;
6269 CHECK_NUMBER_COERCE_MARKER (start
);
6270 CHECK_NUMBER_COERCE_MARKER (end
);
6272 validate_region (&start
, &end
);
6273 from
= XINT (start
), to
= XINT (end
);
6274 from_byte
= CHAR_TO_BYTE (from
);
6275 to_byte
= CHAR_TO_BYTE (to
);
6277 if (from
< GPT
&& to
>= GPT
)
6278 move_gap_both (to
, to_byte
);
6279 /* If we an anchor byte `\0' follows the region, we include it in
6280 the detecting source. Then code detectors can handle the tailing
6281 byte sequence more accurately.
6283 Fix me: This is not an perfect solution. It is better that we
6284 add one more argument, say LAST_BLOCK, to all detect_coding_XXX.
6286 if (to
== Z
|| (to
== GPT
&& GAP_SIZE
> 0))
6287 include_anchor_byte
= 1;
6288 return detect_coding_system (BYTE_POS_ADDR (from_byte
),
6289 to_byte
- from_byte
+ include_anchor_byte
,
6291 !NILP (current_buffer
6292 ->enable_multibyte_characters
));
6295 DEFUN ("detect-coding-string", Fdetect_coding_string
, Sdetect_coding_string
,
6297 doc
: /* Detect coding system of the text in STRING.
6298 Return a list of possible coding systems ordered by priority.
6300 If only ASCII characters are found, it returns a list of single element
6301 `undecided' or its subsidiary coding system according to a detected
6304 If optional argument HIGHEST is non-nil, return the coding system of
6305 highest priority. */)
6307 Lisp_Object string
, highest
;
6309 CHECK_STRING (string
);
6311 return detect_coding_system (XSTRING (string
)->data
,
6312 /* "+ 1" is to include the anchor byte
6313 `\0'. With this, code detectors can
6314 handle the tailing bytes more
6316 STRING_BYTES (XSTRING (string
)) + 1,
6318 STRING_MULTIBYTE (string
));
6321 /* Return an intersection of lists L1 and L2. */
6324 intersection (l1
, l2
)
6329 for (val
= Qnil
; CONSP (l1
); l1
= XCDR (l1
))
6331 if (!NILP (Fmemq (XCAR (l1
), l2
)))
6332 val
= Fcons (XCAR (l1
), val
);
6338 /* Subroutine for Fsafe_coding_systems_region_internal.
6340 Return a list of coding systems that safely encode the multibyte
6341 text between P and PEND. SAFE_CODINGS, if non-nil, is a list of
6342 possible coding systems. If it is nil, it means that we have not
6343 yet found any coding systems.
6345 WORK_TABLE is a copy of the char-table Vchar_coding_system_table. An
6346 element of WORK_TABLE is set to t once the element is looked up.
6348 If a non-ASCII single byte char is found, set
6349 *single_byte_char_found to 1. */
6352 find_safe_codings (p
, pend
, safe_codings
, work_table
, single_byte_char_found
)
6353 unsigned char *p
, *pend
;
6354 Lisp_Object safe_codings
, work_table
;
6355 int *single_byte_char_found
;
6362 c
= STRING_CHAR_AND_LENGTH (p
, pend
- p
, len
);
6364 if (ASCII_BYTE_P (c
))
6365 /* We can ignore ASCII characters here. */
6367 if (SINGLE_BYTE_CHAR_P (c
))
6368 *single_byte_char_found
= 1;
6369 if (NILP (safe_codings
))
6371 /* Check the safe coding systems for C. */
6372 val
= char_table_ref_and_index (work_table
, c
, &idx
);
6374 /* This element was already checked. Ignore it. */
6376 /* Remember that we checked this element. */
6377 CHAR_TABLE_SET (work_table
, make_number (idx
), Qt
);
6379 /* If there are some safe coding systems for C and we have
6380 already found the other set of coding systems for the
6381 different characters, get the intersection of them. */
6382 if (!EQ (safe_codings
, Qt
) && !NILP (val
))
6383 val
= intersection (safe_codings
, val
);
6386 return safe_codings
;
6390 /* Return a list of coding systems that safely encode the text between
6391 START and END. If the text contains only ASCII or is unibyte,
6394 DEFUN ("find-coding-systems-region-internal",
6395 Ffind_coding_systems_region_internal
,
6396 Sfind_coding_systems_region_internal
, 2, 2, 0,
6397 doc
: /* Internal use only. */)
6399 Lisp_Object start
, end
;
6401 Lisp_Object work_table
, safe_codings
;
6402 int non_ascii_p
= 0;
6403 int single_byte_char_found
= 0;
6404 unsigned char *p1
, *p1end
, *p2
, *p2end
, *p
;
6406 if (STRINGP (start
))
6408 if (!STRING_MULTIBYTE (start
))
6410 p1
= XSTRING (start
)->data
, p1end
= p1
+ STRING_BYTES (XSTRING (start
));
6412 if (XSTRING (start
)->size
!= STRING_BYTES (XSTRING (start
)))
6419 CHECK_NUMBER_COERCE_MARKER (start
);
6420 CHECK_NUMBER_COERCE_MARKER (end
);
6421 if (XINT (start
) < BEG
|| XINT (end
) > Z
|| XINT (start
) > XINT (end
))
6422 args_out_of_range (start
, end
);
6423 if (NILP (current_buffer
->enable_multibyte_characters
))
6425 from
= CHAR_TO_BYTE (XINT (start
));
6426 to
= CHAR_TO_BYTE (XINT (end
));
6427 stop
= from
< GPT_BYTE
&& GPT_BYTE
< to
? GPT_BYTE
: to
;
6428 p1
= BYTE_POS_ADDR (from
), p1end
= p1
+ (stop
- from
);
6432 p2
= BYTE_POS_ADDR (stop
), p2end
= p2
+ (to
- stop
);
6433 if (XINT (end
) - XINT (start
) != to
- from
)
6439 /* We are sure that the text contains no multibyte character.
6440 Check if it contains eight-bit-graphic. */
6442 for (p
= p1
; p
< p1end
&& ASCII_BYTE_P (*p
); p
++);
6445 for (p
= p2
; p
< p2end
&& ASCII_BYTE_P (*p
); p
++);
6451 /* The text contains non-ASCII characters. */
6452 work_table
= Fcopy_sequence (Vchar_coding_system_table
);
6453 safe_codings
= find_safe_codings (p1
, p1end
, Qt
, work_table
,
6454 &single_byte_char_found
);
6456 safe_codings
= find_safe_codings (p2
, p2end
, safe_codings
, work_table
,
6457 &single_byte_char_found
);
6459 if (EQ (safe_codings
, Qt
))
6460 ; /* Nothing to be done. */
6461 else if (!single_byte_char_found
)
6463 /* Append generic coding systems. */
6464 Lisp_Object args
[2];
6465 args
[0] = safe_codings
;
6466 args
[1] = Fchar_table_extra_slot (Vchar_coding_system_table
,
6468 safe_codings
= Fappend (2, args
);
6471 safe_codings
= Fcons (Qraw_text
,
6473 Fcons (Qno_conversion
, safe_codings
)));
6474 return safe_codings
;
6479 code_convert_region1 (start
, end
, coding_system
, encodep
)
6480 Lisp_Object start
, end
, coding_system
;
6483 struct coding_system coding
;
6486 CHECK_NUMBER_COERCE_MARKER (start
);
6487 CHECK_NUMBER_COERCE_MARKER (end
);
6488 CHECK_SYMBOL (coding_system
);
6490 validate_region (&start
, &end
);
6491 from
= XFASTINT (start
);
6492 to
= XFASTINT (end
);
6494 if (NILP (coding_system
))
6495 return make_number (to
- from
);
6497 if (setup_coding_system (Fcheck_coding_system (coding_system
), &coding
) < 0)
6498 error ("Invalid coding system: %s", XSYMBOL (coding_system
)->name
->data
);
6500 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6501 coding
.src_multibyte
= coding
.dst_multibyte
6502 = !NILP (current_buffer
->enable_multibyte_characters
);
6503 code_convert_region (from
, CHAR_TO_BYTE (from
), to
, CHAR_TO_BYTE (to
),
6504 &coding
, encodep
, 1);
6505 Vlast_coding_system_used
= coding
.symbol
;
6506 return make_number (coding
.produced_char
);
6509 DEFUN ("decode-coding-region", Fdecode_coding_region
, Sdecode_coding_region
,
6510 3, 3, "r\nzCoding system: ",
6511 doc
: /* Decode the current region from the specified coding system.
6512 When called from a program, takes three arguments:
6513 START, END, and CODING-SYSTEM. START and END are buffer positions.
6514 This function sets `last-coding-system-used' to the precise coding system
6515 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
6516 not fully specified.)
6517 It returns the length of the decoded text. */)
6518 (start
, end
, coding_system
)
6519 Lisp_Object start
, end
, coding_system
;
6521 return code_convert_region1 (start
, end
, coding_system
, 0);
6524 DEFUN ("encode-coding-region", Fencode_coding_region
, Sencode_coding_region
,
6525 3, 3, "r\nzCoding system: ",
6526 doc
: /* Encode the current region into the specified coding system.
6527 When called from a program, takes three arguments:
6528 START, END, and CODING-SYSTEM. START and END are buffer positions.
6529 This function sets `last-coding-system-used' to the precise coding system
6530 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
6531 not fully specified.)
6532 It returns the length of the encoded text. */)
6533 (start
, end
, coding_system
)
6534 Lisp_Object start
, end
, coding_system
;
6536 return code_convert_region1 (start
, end
, coding_system
, 1);
6540 code_convert_string1 (string
, coding_system
, nocopy
, encodep
)
6541 Lisp_Object string
, coding_system
, nocopy
;
6544 struct coding_system coding
;
6546 CHECK_STRING (string
);
6547 CHECK_SYMBOL (coding_system
);
6549 if (NILP (coding_system
))
6550 return (NILP (nocopy
) ? Fcopy_sequence (string
) : string
);
6552 if (setup_coding_system (Fcheck_coding_system (coding_system
), &coding
) < 0)
6553 error ("Invalid coding system: %s", XSYMBOL (coding_system
)->name
->data
);
6555 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6557 ? encode_coding_string (string
, &coding
, !NILP (nocopy
))
6558 : decode_coding_string (string
, &coding
, !NILP (nocopy
)));
6559 Vlast_coding_system_used
= coding
.symbol
;
6564 DEFUN ("decode-coding-string", Fdecode_coding_string
, Sdecode_coding_string
,
6566 doc
: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result.
6567 Optional arg NOCOPY non-nil means it is OK to return STRING itself
6568 if the decoding operation is trivial.
6569 This function sets `last-coding-system-used' to the precise coding system
6570 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
6571 not fully specified.) */)
6572 (string
, coding_system
, nocopy
)
6573 Lisp_Object string
, coding_system
, nocopy
;
6575 return code_convert_string1 (string
, coding_system
, nocopy
, 0);
6578 DEFUN ("encode-coding-string", Fencode_coding_string
, Sencode_coding_string
,
6580 doc
: /* Encode STRING to CODING-SYSTEM, and return the result.
6581 Optional arg NOCOPY non-nil means it is OK to return STRING itself
6582 if the encoding operation is trivial.
6583 This function sets `last-coding-system-used' to the precise coding system
6584 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
6585 not fully specified.) */)
6586 (string
, coding_system
, nocopy
)
6587 Lisp_Object string
, coding_system
, nocopy
;
6589 return code_convert_string1 (string
, coding_system
, nocopy
, 1);
6592 /* Encode or decode STRING according to CODING_SYSTEM.
6593 Do not set Vlast_coding_system_used.
6595 This function is called only from macros DECODE_FILE and
6596 ENCODE_FILE, thus we ignore character composition. */
6599 code_convert_string_norecord (string
, coding_system
, encodep
)
6600 Lisp_Object string
, coding_system
;
6603 struct coding_system coding
;
6605 CHECK_STRING (string
);
6606 CHECK_SYMBOL (coding_system
);
6608 if (NILP (coding_system
))
6611 if (setup_coding_system (Fcheck_coding_system (coding_system
), &coding
) < 0)
6612 error ("Invalid coding system: %s", XSYMBOL (coding_system
)->name
->data
);
6614 coding
.composing
= COMPOSITION_DISABLED
;
6615 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6617 ? encode_coding_string (string
, &coding
, 1)
6618 : decode_coding_string (string
, &coding
, 1));
6621 DEFUN ("decode-sjis-char", Fdecode_sjis_char
, Sdecode_sjis_char
, 1, 1, 0,
6622 doc
: /* Decode a Japanese character which has CODE in shift_jis encoding.
6623 Return the corresponding character. */)
6627 unsigned char c1
, c2
, s1
, s2
;
6630 CHECK_NUMBER (code
);
6631 s1
= (XFASTINT (code
)) >> 8, s2
= (XFASTINT (code
)) & 0xFF;
6635 XSETFASTINT (val
, s2
);
6636 else if (s2
>= 0xA0 || s2
<= 0xDF)
6637 XSETFASTINT (val
, MAKE_CHAR (charset_katakana_jisx0201
, s2
, 0));
6639 error ("Invalid Shift JIS code: %x", XFASTINT (code
));
6643 if ((s1
< 0x80 || (s1
> 0x9F && s1
< 0xE0) || s1
> 0xEF)
6644 || (s2
< 0x40 || s2
== 0x7F || s2
> 0xFC))
6645 error ("Invalid Shift JIS code: %x", XFASTINT (code
));
6646 DECODE_SJIS (s1
, s2
, c1
, c2
);
6647 XSETFASTINT (val
, MAKE_CHAR (charset_jisx0208
, c1
, c2
));
6652 DEFUN ("encode-sjis-char", Fencode_sjis_char
, Sencode_sjis_char
, 1, 1, 0,
6653 doc
: /* Encode a Japanese character CHAR to shift_jis encoding.
6654 Return the corresponding code in SJIS. */)
6658 int charset
, c1
, c2
, s1
, s2
;
6662 SPLIT_CHAR (XFASTINT (ch
), charset
, c1
, c2
);
6663 if (charset
== CHARSET_ASCII
)
6667 else if (charset
== charset_jisx0208
6668 && c1
> 0x20 && c1
< 0x7F && c2
> 0x20 && c2
< 0x7F)
6670 ENCODE_SJIS (c1
, c2
, s1
, s2
);
6671 XSETFASTINT (val
, (s1
<< 8) | s2
);
6673 else if (charset
== charset_katakana_jisx0201
6674 && c1
> 0x20 && c2
< 0xE0)
6676 XSETFASTINT (val
, c1
| 0x80);
6679 error ("Can't encode to shift_jis: %d", XFASTINT (ch
));
6683 DEFUN ("decode-big5-char", Fdecode_big5_char
, Sdecode_big5_char
, 1, 1, 0,
6684 doc
: /* Decode a Big5 character which has CODE in BIG5 coding system.
6685 Return the corresponding character. */)
6690 unsigned char b1
, b2
, c1
, c2
;
6693 CHECK_NUMBER (code
);
6694 b1
= (XFASTINT (code
)) >> 8, b2
= (XFASTINT (code
)) & 0xFF;
6698 error ("Invalid BIG5 code: %x", XFASTINT (code
));
6703 if ((b1
< 0xA1 || b1
> 0xFE)
6704 || (b2
< 0x40 || (b2
> 0x7E && b2
< 0xA1) || b2
> 0xFE))
6705 error ("Invalid BIG5 code: %x", XFASTINT (code
));
6706 DECODE_BIG5 (b1
, b2
, charset
, c1
, c2
);
6707 XSETFASTINT (val
, MAKE_CHAR (charset
, c1
, c2
));
6712 DEFUN ("encode-big5-char", Fencode_big5_char
, Sencode_big5_char
, 1, 1, 0,
6713 doc
: /* Encode the Big5 character CHAR to BIG5 coding system.
6714 Return the corresponding character code in Big5. */)
6718 int charset
, c1
, c2
, b1
, b2
;
6722 SPLIT_CHAR (XFASTINT (ch
), charset
, c1
, c2
);
6723 if (charset
== CHARSET_ASCII
)
6727 else if ((charset
== charset_big5_1
6728 && (XFASTINT (ch
) >= 0x250a1 && XFASTINT (ch
) <= 0x271ec))
6729 || (charset
== charset_big5_2
6730 && XFASTINT (ch
) >= 0x290a1 && XFASTINT (ch
) <= 0x2bdb2))
6732 ENCODE_BIG5 (charset
, c1
, c2
, b1
, b2
);
6733 XSETFASTINT (val
, (b1
<< 8) | b2
);
6736 error ("Can't encode to Big5: %d", XFASTINT (ch
));
6740 DEFUN ("set-terminal-coding-system-internal",
6741 Fset_terminal_coding_system_internal
,
6742 Sset_terminal_coding_system_internal
, 1, 1, 0,
6743 doc
: /* Internal use only. */)
6745 Lisp_Object coding_system
;
6747 CHECK_SYMBOL (coding_system
);
6748 setup_coding_system (Fcheck_coding_system (coding_system
), &terminal_coding
);
6749 /* We had better not send unsafe characters to terminal. */
6750 terminal_coding
.flags
|= CODING_FLAG_ISO_SAFE
;
6751 /* Character composition should be disabled. */
6752 terminal_coding
.composing
= COMPOSITION_DISABLED
;
6753 /* Error notification should be suppressed. */
6754 terminal_coding
.suppress_error
= 1;
6755 terminal_coding
.src_multibyte
= 1;
6756 terminal_coding
.dst_multibyte
= 0;
6760 DEFUN ("set-safe-terminal-coding-system-internal",
6761 Fset_safe_terminal_coding_system_internal
,
6762 Sset_safe_terminal_coding_system_internal
, 1, 1, 0,
6763 doc
: /* Internal use only. */)
6765 Lisp_Object coding_system
;
6767 CHECK_SYMBOL (coding_system
);
6768 setup_coding_system (Fcheck_coding_system (coding_system
),
6769 &safe_terminal_coding
);
6770 /* Character composition should be disabled. */
6771 safe_terminal_coding
.composing
= COMPOSITION_DISABLED
;
6772 /* Error notification should be suppressed. */
6773 terminal_coding
.suppress_error
= 1;
6774 safe_terminal_coding
.src_multibyte
= 1;
6775 safe_terminal_coding
.dst_multibyte
= 0;
6779 DEFUN ("terminal-coding-system",
6780 Fterminal_coding_system
, Sterminal_coding_system
, 0, 0, 0,
6781 doc
: /* Return coding system specified for terminal output. */)
6784 return terminal_coding
.symbol
;
6787 DEFUN ("set-keyboard-coding-system-internal",
6788 Fset_keyboard_coding_system_internal
,
6789 Sset_keyboard_coding_system_internal
, 1, 1, 0,
6790 doc
: /* Internal use only. */)
6792 Lisp_Object coding_system
;
6794 CHECK_SYMBOL (coding_system
);
6795 setup_coding_system (Fcheck_coding_system (coding_system
), &keyboard_coding
);
6796 /* Character composition should be disabled. */
6797 keyboard_coding
.composing
= COMPOSITION_DISABLED
;
6801 DEFUN ("keyboard-coding-system",
6802 Fkeyboard_coding_system
, Skeyboard_coding_system
, 0, 0, 0,
6803 doc
: /* Return coding system specified for decoding keyboard input. */)
6806 return keyboard_coding
.symbol
;
6810 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system
,
6811 Sfind_operation_coding_system
, 1, MANY
, 0,
6812 doc
: /* Choose a coding system for an operation based on the target name.
6813 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
6814 DECODING-SYSTEM is the coding system to use for decoding
6815 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
6816 for encoding (in case OPERATION does encoding).
6818 The first argument OPERATION specifies an I/O primitive:
6819 For file I/O, `insert-file-contents' or `write-region'.
6820 For process I/O, `call-process', `call-process-region', or `start-process'.
6821 For network I/O, `open-network-stream'.
6823 The remaining arguments should be the same arguments that were passed
6824 to the primitive. Depending on which primitive, one of those arguments
6825 is selected as the TARGET. For example, if OPERATION does file I/O,
6826 whichever argument specifies the file name is TARGET.
6828 TARGET has a meaning which depends on OPERATION:
6829 For file I/O, TARGET is a file name.
6830 For process I/O, TARGET is a process name.
6831 For network I/O, TARGET is a service name or a port number
6833 This function looks up what specified for TARGET in,
6834 `file-coding-system-alist', `process-coding-system-alist',
6835 or `network-coding-system-alist' depending on OPERATION.
6836 They may specify a coding system, a cons of coding systems,
6837 or a function symbol to call.
6838 In the last case, we call the function with one argument,
6839 which is a list of all the arguments given to this function.
6841 usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */)
6846 Lisp_Object operation
, target_idx
, target
, val
;
6847 register Lisp_Object chain
;
6850 error ("Too few arguments");
6851 operation
= args
[0];
6852 if (!SYMBOLP (operation
)
6853 || !INTEGERP (target_idx
= Fget (operation
, Qtarget_idx
)))
6854 error ("Invalid first argument");
6855 if (nargs
< 1 + XINT (target_idx
))
6856 error ("Too few arguments for operation: %s",
6857 XSYMBOL (operation
)->name
->data
);
6858 target
= args
[XINT (target_idx
) + 1];
6859 if (!(STRINGP (target
)
6860 || (EQ (operation
, Qopen_network_stream
) && INTEGERP (target
))))
6861 error ("Invalid argument %d", XINT (target_idx
) + 1);
6863 chain
= ((EQ (operation
, Qinsert_file_contents
)
6864 || EQ (operation
, Qwrite_region
))
6865 ? Vfile_coding_system_alist
6866 : (EQ (operation
, Qopen_network_stream
)
6867 ? Vnetwork_coding_system_alist
6868 : Vprocess_coding_system_alist
));
6872 for (; CONSP (chain
); chain
= XCDR (chain
))
6878 && ((STRINGP (target
)
6879 && STRINGP (XCAR (elt
))
6880 && fast_string_match (XCAR (elt
), target
) >= 0)
6881 || (INTEGERP (target
) && EQ (target
, XCAR (elt
)))))
6884 /* Here, if VAL is both a valid coding system and a valid
6885 function symbol, we return VAL as a coding system. */
6888 if (! SYMBOLP (val
))
6890 if (! NILP (Fcoding_system_p (val
)))
6891 return Fcons (val
, val
);
6892 if (! NILP (Ffboundp (val
)))
6894 val
= call1 (val
, Flist (nargs
, args
));
6897 if (SYMBOLP (val
) && ! NILP (Fcoding_system_p (val
)))
6898 return Fcons (val
, val
);
6906 DEFUN ("update-coding-systems-internal", Fupdate_coding_systems_internal
,
6907 Supdate_coding_systems_internal
, 0, 0, 0,
6908 doc
: /* Update internal database for ISO2022 and CCL based coding systems.
6909 When values of any coding categories are changed, you must
6910 call this function. */)
6915 for (i
= CODING_CATEGORY_IDX_EMACS_MULE
; i
< CODING_CATEGORY_IDX_MAX
; i
++)
6919 val
= SYMBOL_VALUE (XVECTOR (Vcoding_category_table
)->contents
[i
]);
6922 if (! coding_system_table
[i
])
6923 coding_system_table
[i
] = ((struct coding_system
*)
6924 xmalloc (sizeof (struct coding_system
)));
6925 setup_coding_system (val
, coding_system_table
[i
]);
6927 else if (coding_system_table
[i
])
6929 xfree (coding_system_table
[i
]);
6930 coding_system_table
[i
] = NULL
;
6937 DEFUN ("set-coding-priority-internal", Fset_coding_priority_internal
,
6938 Sset_coding_priority_internal
, 0, 0, 0,
6939 doc
: /* Update internal database for the current value of `coding-category-list'.
6940 This function is internal use only. */)
6946 val
= Vcoding_category_list
;
6948 while (CONSP (val
) && i
< CODING_CATEGORY_IDX_MAX
)
6950 if (! SYMBOLP (XCAR (val
)))
6952 idx
= XFASTINT (Fget (XCAR (val
), Qcoding_category_index
));
6953 if (idx
>= CODING_CATEGORY_IDX_MAX
)
6955 coding_priorities
[i
++] = (1 << idx
);
6958 /* If coding-category-list is valid and contains all coding
6959 categories, `i' should be CODING_CATEGORY_IDX_MAX now. If not,
6960 the following code saves Emacs from crashing. */
6961 while (i
< CODING_CATEGORY_IDX_MAX
)
6962 coding_priorities
[i
++] = CODING_CATEGORY_MASK_RAW_TEXT
;
6970 /*** 9. Post-amble ***/
6977 /* Emacs' internal format specific initialize routine. */
6978 for (i
= 0; i
<= 0x20; i
++)
6979 emacs_code_class
[i
] = EMACS_control_code
;
6980 emacs_code_class
[0x0A] = EMACS_linefeed_code
;
6981 emacs_code_class
[0x0D] = EMACS_carriage_return_code
;
6982 for (i
= 0x21 ; i
< 0x7F; i
++)
6983 emacs_code_class
[i
] = EMACS_ascii_code
;
6984 emacs_code_class
[0x7F] = EMACS_control_code
;
6985 for (i
= 0x80; i
< 0xFF; i
++)
6986 emacs_code_class
[i
] = EMACS_invalid_code
;
6987 emacs_code_class
[LEADING_CODE_PRIVATE_11
] = EMACS_leading_code_3
;
6988 emacs_code_class
[LEADING_CODE_PRIVATE_12
] = EMACS_leading_code_3
;
6989 emacs_code_class
[LEADING_CODE_PRIVATE_21
] = EMACS_leading_code_4
;
6990 emacs_code_class
[LEADING_CODE_PRIVATE_22
] = EMACS_leading_code_4
;
6992 /* ISO2022 specific initialize routine. */
6993 for (i
= 0; i
< 0x20; i
++)
6994 iso_code_class
[i
] = ISO_control_0
;
6995 for (i
= 0x21; i
< 0x7F; i
++)
6996 iso_code_class
[i
] = ISO_graphic_plane_0
;
6997 for (i
= 0x80; i
< 0xA0; i
++)
6998 iso_code_class
[i
] = ISO_control_1
;
6999 for (i
= 0xA1; i
< 0xFF; i
++)
7000 iso_code_class
[i
] = ISO_graphic_plane_1
;
7001 iso_code_class
[0x20] = iso_code_class
[0x7F] = ISO_0x20_or_0x7F
;
7002 iso_code_class
[0xA0] = iso_code_class
[0xFF] = ISO_0xA0_or_0xFF
;
7003 iso_code_class
[ISO_CODE_CR
] = ISO_carriage_return
;
7004 iso_code_class
[ISO_CODE_SO
] = ISO_shift_out
;
7005 iso_code_class
[ISO_CODE_SI
] = ISO_shift_in
;
7006 iso_code_class
[ISO_CODE_SS2_7
] = ISO_single_shift_2_7
;
7007 iso_code_class
[ISO_CODE_ESC
] = ISO_escape
;
7008 iso_code_class
[ISO_CODE_SS2
] = ISO_single_shift_2
;
7009 iso_code_class
[ISO_CODE_SS3
] = ISO_single_shift_3
;
7010 iso_code_class
[ISO_CODE_CSI
] = ISO_control_sequence_introducer
;
7012 setup_coding_system (Qnil
, &keyboard_coding
);
7013 setup_coding_system (Qnil
, &terminal_coding
);
7014 setup_coding_system (Qnil
, &safe_terminal_coding
);
7015 setup_coding_system (Qnil
, &default_buffer_file_coding
);
7017 bzero (coding_system_table
, sizeof coding_system_table
);
7019 bzero (ascii_skip_code
, sizeof ascii_skip_code
);
7020 for (i
= 0; i
< 128; i
++)
7021 ascii_skip_code
[i
] = 1;
7023 #if defined (MSDOS) || defined (WINDOWSNT)
7024 system_eol_type
= CODING_EOL_CRLF
;
7026 system_eol_type
= CODING_EOL_LF
;
7029 inhibit_pre_post_conversion
= 0;
7037 Qtarget_idx
= intern ("target-idx");
7038 staticpro (&Qtarget_idx
);
7040 Qcoding_system_history
= intern ("coding-system-history");
7041 staticpro (&Qcoding_system_history
);
7042 Fset (Qcoding_system_history
, Qnil
);
7044 /* Target FILENAME is the first argument. */
7045 Fput (Qinsert_file_contents
, Qtarget_idx
, make_number (0));
7046 /* Target FILENAME is the third argument. */
7047 Fput (Qwrite_region
, Qtarget_idx
, make_number (2));
7049 Qcall_process
= intern ("call-process");
7050 staticpro (&Qcall_process
);
7051 /* Target PROGRAM is the first argument. */
7052 Fput (Qcall_process
, Qtarget_idx
, make_number (0));
7054 Qcall_process_region
= intern ("call-process-region");
7055 staticpro (&Qcall_process_region
);
7056 /* Target PROGRAM is the third argument. */
7057 Fput (Qcall_process_region
, Qtarget_idx
, make_number (2));
7059 Qstart_process
= intern ("start-process");
7060 staticpro (&Qstart_process
);
7061 /* Target PROGRAM is the third argument. */
7062 Fput (Qstart_process
, Qtarget_idx
, make_number (2));
7064 Qopen_network_stream
= intern ("open-network-stream");
7065 staticpro (&Qopen_network_stream
);
7066 /* Target SERVICE is the fourth argument. */
7067 Fput (Qopen_network_stream
, Qtarget_idx
, make_number (3));
7069 Qcoding_system
= intern ("coding-system");
7070 staticpro (&Qcoding_system
);
7072 Qeol_type
= intern ("eol-type");
7073 staticpro (&Qeol_type
);
7075 Qbuffer_file_coding_system
= intern ("buffer-file-coding-system");
7076 staticpro (&Qbuffer_file_coding_system
);
7078 Qpost_read_conversion
= intern ("post-read-conversion");
7079 staticpro (&Qpost_read_conversion
);
7081 Qpre_write_conversion
= intern ("pre-write-conversion");
7082 staticpro (&Qpre_write_conversion
);
7084 Qno_conversion
= intern ("no-conversion");
7085 staticpro (&Qno_conversion
);
7087 Qundecided
= intern ("undecided");
7088 staticpro (&Qundecided
);
7090 Qcoding_system_p
= intern ("coding-system-p");
7091 staticpro (&Qcoding_system_p
);
7093 Qcoding_system_error
= intern ("coding-system-error");
7094 staticpro (&Qcoding_system_error
);
7096 Fput (Qcoding_system_error
, Qerror_conditions
,
7097 Fcons (Qcoding_system_error
, Fcons (Qerror
, Qnil
)));
7098 Fput (Qcoding_system_error
, Qerror_message
,
7099 build_string ("Invalid coding system"));
7101 Qcoding_category
= intern ("coding-category");
7102 staticpro (&Qcoding_category
);
7103 Qcoding_category_index
= intern ("coding-category-index");
7104 staticpro (&Qcoding_category_index
);
7106 Vcoding_category_table
7107 = Fmake_vector (make_number (CODING_CATEGORY_IDX_MAX
), Qnil
);
7108 staticpro (&Vcoding_category_table
);
7111 for (i
= 0; i
< CODING_CATEGORY_IDX_MAX
; i
++)
7113 XVECTOR (Vcoding_category_table
)->contents
[i
]
7114 = intern (coding_category_name
[i
]);
7115 Fput (XVECTOR (Vcoding_category_table
)->contents
[i
],
7116 Qcoding_category_index
, make_number (i
));
7120 Qtranslation_table
= intern ("translation-table");
7121 staticpro (&Qtranslation_table
);
7122 Fput (Qtranslation_table
, Qchar_table_extra_slots
, make_number (1));
7124 Qtranslation_table_id
= intern ("translation-table-id");
7125 staticpro (&Qtranslation_table_id
);
7127 Qtranslation_table_for_decode
= intern ("translation-table-for-decode");
7128 staticpro (&Qtranslation_table_for_decode
);
7130 Qtranslation_table_for_encode
= intern ("translation-table-for-encode");
7131 staticpro (&Qtranslation_table_for_encode
);
7133 Qsafe_chars
= intern ("safe-chars");
7134 staticpro (&Qsafe_chars
);
7136 Qchar_coding_system
= intern ("char-coding-system");
7137 staticpro (&Qchar_coding_system
);
7139 /* Intern this now in case it isn't already done.
7140 Setting this variable twice is harmless.
7141 But don't staticpro it here--that is done in alloc.c. */
7142 Qchar_table_extra_slots
= intern ("char-table-extra-slots");
7143 Fput (Qsafe_chars
, Qchar_table_extra_slots
, make_number (0));
7144 Fput (Qchar_coding_system
, Qchar_table_extra_slots
, make_number (2));
7146 Qvalid_codes
= intern ("valid-codes");
7147 staticpro (&Qvalid_codes
);
7149 Qemacs_mule
= intern ("emacs-mule");
7150 staticpro (&Qemacs_mule
);
7152 Qraw_text
= intern ("raw-text");
7153 staticpro (&Qraw_text
);
7155 defsubr (&Scoding_system_p
);
7156 defsubr (&Sread_coding_system
);
7157 defsubr (&Sread_non_nil_coding_system
);
7158 defsubr (&Scheck_coding_system
);
7159 defsubr (&Sdetect_coding_region
);
7160 defsubr (&Sdetect_coding_string
);
7161 defsubr (&Sfind_coding_systems_region_internal
);
7162 defsubr (&Sdecode_coding_region
);
7163 defsubr (&Sencode_coding_region
);
7164 defsubr (&Sdecode_coding_string
);
7165 defsubr (&Sencode_coding_string
);
7166 defsubr (&Sdecode_sjis_char
);
7167 defsubr (&Sencode_sjis_char
);
7168 defsubr (&Sdecode_big5_char
);
7169 defsubr (&Sencode_big5_char
);
7170 defsubr (&Sset_terminal_coding_system_internal
);
7171 defsubr (&Sset_safe_terminal_coding_system_internal
);
7172 defsubr (&Sterminal_coding_system
);
7173 defsubr (&Sset_keyboard_coding_system_internal
);
7174 defsubr (&Skeyboard_coding_system
);
7175 defsubr (&Sfind_operation_coding_system
);
7176 defsubr (&Supdate_coding_systems_internal
);
7177 defsubr (&Sset_coding_priority_internal
);
7179 DEFVAR_LISP ("coding-system-list", &Vcoding_system_list
,
7180 doc
: /* List of coding systems.
7182 Do not alter the value of this variable manually. This variable should be
7183 updated by the functions `make-coding-system' and
7184 `define-coding-system-alias'. */);
7185 Vcoding_system_list
= Qnil
;
7187 DEFVAR_LISP ("coding-system-alist", &Vcoding_system_alist
,
7188 doc
: /* Alist of coding system names.
7189 Each element is one element list of coding system name.
7190 This variable is given to `completing-read' as TABLE argument.
7192 Do not alter the value of this variable manually. This variable should be
7193 updated by the functions `make-coding-system' and
7194 `define-coding-system-alias'. */);
7195 Vcoding_system_alist
= Qnil
;
7197 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list
,
7198 doc
: /* List of coding-categories (symbols) ordered by priority.
7200 On detecting a coding system, Emacs tries code detection algorithms
7201 associated with each coding-category one by one in this order. When
7202 one algorithm agrees with a byte sequence of source text, the coding
7203 system bound to the corresponding coding-category is selected. */);
7207 Vcoding_category_list
= Qnil
;
7208 for (i
= CODING_CATEGORY_IDX_MAX
- 1; i
>= 0; i
--)
7209 Vcoding_category_list
7210 = Fcons (XVECTOR (Vcoding_category_table
)->contents
[i
],
7211 Vcoding_category_list
);
7214 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read
,
7215 doc
: /* Specify the coding system for read operations.
7216 It is useful to bind this variable with `let', but do not set it globally.
7217 If the value is a coding system, it is used for decoding on read operation.
7218 If not, an appropriate element is used from one of the coding system alists:
7219 There are three such tables, `file-coding-system-alist',
7220 `process-coding-system-alist', and `network-coding-system-alist'. */);
7221 Vcoding_system_for_read
= Qnil
;
7223 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write
,
7224 doc
: /* Specify the coding system for write operations.
7225 Programs bind this variable with `let', but you should not set it globally.
7226 If the value is a coding system, it is used for encoding of output,
7227 when writing it to a file and when sending it to a file or subprocess.
7229 If this does not specify a coding system, an appropriate element
7230 is used from one of the coding system alists:
7231 There are three such tables, `file-coding-system-alist',
7232 `process-coding-system-alist', and `network-coding-system-alist'.
7233 For output to files, if the above procedure does not specify a coding system,
7234 the value of `buffer-file-coding-system' is used. */);
7235 Vcoding_system_for_write
= Qnil
;
7237 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used
,
7238 doc
: /* Coding system used in the latest file or process I/O. */);
7239 Vlast_coding_system_used
= Qnil
;
7241 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion
,
7242 doc
: /* *Non-nil means always inhibit code conversion of end-of-line format.
7243 See info node `Coding Systems' and info node `Text and Binary' concerning
7244 such conversion. */);
7245 inhibit_eol_conversion
= 0;
7247 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system
,
7248 doc
: /* Non-nil means process buffer inherits coding system of process output.
7249 Bind it to t if the process output is to be treated as if it were a file
7250 read from some filesystem. */);
7251 inherit_process_coding_system
= 0;
7253 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist
,
7254 doc
: /* Alist to decide a coding system to use for a file I/O operation.
7255 The format is ((PATTERN . VAL) ...),
7256 where PATTERN is a regular expression matching a file name,
7257 VAL is a coding system, a cons of coding systems, or a function symbol.
7258 If VAL is a coding system, it is used for both decoding and encoding
7260 If VAL is a cons of coding systems, the car part is used for decoding,
7261 and the cdr part is used for encoding.
7262 If VAL is a function symbol, the function must return a coding system
7263 or a cons of coding systems which are used as above. The function gets
7264 the arguments with which `find-operation-coding-system' was called.
7266 See also the function `find-operation-coding-system'
7267 and the variable `auto-coding-alist'. */);
7268 Vfile_coding_system_alist
= Qnil
;
7270 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist
,
7271 doc
: /* Alist to decide a coding system to use for a process I/O operation.
7272 The format is ((PATTERN . VAL) ...),
7273 where PATTERN is a regular expression matching a program name,
7274 VAL is a coding system, a cons of coding systems, or a function symbol.
7275 If VAL is a coding system, it is used for both decoding what received
7276 from the program and encoding what sent to the program.
7277 If VAL is a cons of coding systems, the car part is used for decoding,
7278 and the cdr part is used for encoding.
7279 If VAL is a function symbol, the function must return a coding system
7280 or a cons of coding systems which are used as above.
7282 See also the function `find-operation-coding-system'. */);
7283 Vprocess_coding_system_alist
= Qnil
;
7285 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist
,
7286 doc
: /* Alist to decide a coding system to use for a network I/O operation.
7287 The format is ((PATTERN . VAL) ...),
7288 where PATTERN is a regular expression matching a network service name
7289 or is a port number to connect to,
7290 VAL is a coding system, a cons of coding systems, or a function symbol.
7291 If VAL is a coding system, it is used for both decoding what received
7292 from the network stream and encoding what sent to the network stream.
7293 If VAL is a cons of coding systems, the car part is used for decoding,
7294 and the cdr part is used for encoding.
7295 If VAL is a function symbol, the function must return a coding system
7296 or a cons of coding systems which are used as above.
7298 See also the function `find-operation-coding-system'. */);
7299 Vnetwork_coding_system_alist
= Qnil
;
7301 DEFVAR_LISP ("locale-coding-system", &Vlocale_coding_system
,
7302 doc
: /* Coding system to use with system messages.
7303 Also used for decoding keyboard input on X Window system. */);
7304 Vlocale_coding_system
= Qnil
;
7306 /* The eol mnemonics are reset in startup.el system-dependently. */
7307 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix
,
7308 doc
: /* *String displayed in mode line for UNIX-like (LF) end-of-line format. */);
7309 eol_mnemonic_unix
= build_string (":");
7311 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos
,
7312 doc
: /* *String displayed in mode line for DOS-like (CRLF) end-of-line format. */);
7313 eol_mnemonic_dos
= build_string ("\\");
7315 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac
,
7316 doc
: /* *String displayed in mode line for MAC-like (CR) end-of-line format. */);
7317 eol_mnemonic_mac
= build_string ("/");
7319 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided
,
7320 doc
: /* *String displayed in mode line when end-of-line format is not yet determined. */);
7321 eol_mnemonic_undecided
= build_string (":");
7323 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation
,
7324 doc
: /* *Non-nil enables character translation while encoding and decoding. */);
7325 Venable_character_translation
= Qt
;
7327 DEFVAR_LISP ("standard-translation-table-for-decode",
7328 &Vstandard_translation_table_for_decode
,
7329 doc
: /* Table for translating characters while decoding. */);
7330 Vstandard_translation_table_for_decode
= Qnil
;
7332 DEFVAR_LISP ("standard-translation-table-for-encode",
7333 &Vstandard_translation_table_for_encode
,
7334 doc
: /* Table for translating characters while encoding. */);
7335 Vstandard_translation_table_for_encode
= Qnil
;
7337 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_alist
,
7338 doc
: /* Alist of charsets vs revision numbers.
7339 While encoding, if a charset (car part of an element) is found,
7340 designate it with the escape sequence identifying revision (cdr part of the element). */);
7341 Vcharset_revision_alist
= Qnil
;
7343 DEFVAR_LISP ("default-process-coding-system",
7344 &Vdefault_process_coding_system
,
7345 doc
: /* Cons of coding systems used for process I/O by default.
7346 The car part is used for decoding a process output,
7347 the cdr part is used for encoding a text to be sent to a process. */);
7348 Vdefault_process_coding_system
= Qnil
;
7350 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table
,
7351 doc
: /* Table of extra Latin codes in the range 128..159 (inclusive).
7352 This is a vector of length 256.
7353 If Nth element is non-nil, the existence of code N in a file
7354 \(or output of subprocess) doesn't prevent it to be detected as
7355 a coding system of ISO 2022 variant which has a flag
7356 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
7357 or reading output of a subprocess.
7358 Only 128th through 159th elements has a meaning. */);
7359 Vlatin_extra_code_table
= Fmake_vector (make_number (256), Qnil
);
7361 DEFVAR_LISP ("select-safe-coding-system-function",
7362 &Vselect_safe_coding_system_function
,
7363 doc
: /* Function to call to select safe coding system for encoding a text.
7365 If set, this function is called to force a user to select a proper
7366 coding system which can encode the text in the case that a default
7367 coding system used in each operation can't encode the text.
7369 The default value is `select-safe-coding-system' (which see). */);
7370 Vselect_safe_coding_system_function
= Qnil
;
7372 DEFVAR_LISP ("char-coding-system-table", &Vchar_coding_system_table
,
7373 doc
: /* Char-table containing safe coding systems of each characters.
7374 Each element doesn't include such generic coding systems that can
7375 encode any characters. They are in the first extra slot. */);
7376 Vchar_coding_system_table
= Fmake_char_table (Qchar_coding_system
, Qnil
);
7378 DEFVAR_BOOL ("inhibit-iso-escape-detection",
7379 &inhibit_iso_escape_detection
,
7380 doc
: /* If non-nil, Emacs ignores ISO2022's escape sequence on code detection.
7382 By default, on reading a file, Emacs tries to detect how the text is
7383 encoded. This code detection is sensitive to escape sequences. If
7384 the sequence is valid as ISO2022, the code is determined as one of
7385 the ISO2022 encodings, and the file is decoded by the corresponding
7386 coding system (e.g. `iso-2022-7bit').
7388 However, there may be a case that you want to read escape sequences in
7389 a file as is. In such a case, you can set this variable to non-nil.
7390 Then, as the code detection ignores any escape sequences, no file is
7391 detected as encoded in some ISO2022 encoding. The result is that all
7392 escape sequences become visible in a buffer.
7394 The default value is nil, and it is strongly recommended not to change
7395 it. That is because many Emacs Lisp source files that contain
7396 non-ASCII characters are encoded by the coding system `iso-2022-7bit'
7397 in Emacs's distribution, and they won't be decoded correctly on
7398 reading if you suppress escape sequence detection.
7400 The other way to read escape sequences in a file without decoding is
7401 to explicitly specify some coding system that doesn't use ISO2022's
7402 escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argument]. */);
7403 inhibit_iso_escape_detection
= 0;
7407 emacs_strerror (error_number
)
7412 synchronize_system_messages_locale ();
7413 str
= strerror (error_number
);
7415 if (! NILP (Vlocale_coding_system
))
7417 Lisp_Object dec
= code_convert_string_norecord (build_string (str
),
7418 Vlocale_coding_system
,
7420 str
= (char *) XSTRING (dec
)->data
;