Mercurial > emacs
annotate src/coding.h @ 28021:e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
(CODING_CATEGORY_IDX_UTF_16_BE)
(CODING_CATEGORY_IDX_UTF_16_LE): New macros
(CODING_CATEGORY_IDX_RAW_TEXT) (CODING_CATEGORY_IDX_BINARY)
(CODING_CATEGORY_IDX_MAX): Re-numbered.
(CODING_CATEGORY_MASK_UTF_8) (CODING_CATEGORY_MASK_UTF_16_BE)
(CODING_CATEGORY_MASK_UTF_16_LE): New macros.
(CODING_CATEGORY_MASK_ANY): Include them.
(CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Tue, 07 Mar 2000 06:17:10 +0000 |
| parents | 1a0f5960e65e |
| children | 01292435daaf |
| rev | line source |
|---|---|
| 17052 | 1 /* Header for coding system handler. |
|
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18181
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
|
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18181
diff
changeset
|
3 Licensed to the Free Software Foundation. |
| 17052 | 4 |
| 17071 | 5 This file is part of GNU Emacs. |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 17052 | 11 |
| 17071 | 12 GNU Emacs is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 17052 | 16 |
| 17071 | 17 You should have received a copy of the GNU General Public License |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 20 Boston, MA 02111-1307, USA. */ | |
| 17052 | 21 |
| 22 #ifndef _CODING_H | |
| 23 #define _CODING_H | |
| 24 | |
| 25 #ifndef _CCL_H | |
|
25378
2d5cc3c9d8dc
Include "ccl.h" instead of "../src/ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
24201
diff
changeset
|
26 #include "ccl.h" |
| 17052 | 27 #endif |
| 28 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
29 /*** EMACS' INTERNAL FORMAT (emacs-mule) section ***/ |
| 17052 | 30 |
| 31 /* All code (1-byte) of Emacs' internal format is classified into one | |
| 32 of the followings. See also `charset.h'. */ | |
| 33 enum emacs_code_class_type | |
| 34 { | |
| 35 EMACS_control_code, /* Control codes in the range | |
| 36 0x00..0x1F and 0x7F except for the | |
| 37 following two codes. */ | |
| 38 EMACS_linefeed_code, /* 0x0A (linefeed) to denote | |
| 39 end-of-line. */ | |
| 40 EMACS_carriage_return_code, /* 0x0D (carriage-return) to be used | |
| 41 in selective display mode. */ | |
| 42 EMACS_ascii_code, /* ASCII characters. */ | |
| 43 EMACS_leading_code_2, /* Base leading code of official | |
| 44 TYPE9N character. */ | |
| 45 EMACS_leading_code_3, /* Base leading code of private TYPE9N | |
| 46 or official TYPE9Nx9N character. */ | |
| 47 EMACS_leading_code_4, /* Base leading code of private | |
| 48 TYPE9Nx9N character. */ | |
| 49 EMACS_invalid_code /* Invalid code, i.e. a base leading | |
| 50 code not yet assigned to any | |
| 51 charset, or a code of the range | |
| 52 0xA0..0xFF. */ | |
| 53 }; | |
| 54 | |
| 55 extern enum emacs_code_class_type emacs_code_class[256]; | |
| 56 | |
| 57 /*** ISO2022 section ***/ | |
| 58 | |
| 59 /* Macros to define code of control characters for ISO2022's functions. */ | |
| 60 /* code */ /* function */ | |
| 61 #define ISO_CODE_LF 0x0A /* line-feed */ | |
| 62 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
| 63 #define ISO_CODE_SO 0x0E /* shift-out */ | |
| 64 #define ISO_CODE_SI 0x0F /* shift-in */ | |
| 65 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
| 66 #define ISO_CODE_ESC 0x1B /* escape */ | |
| 67 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
| 68 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
| 69 #define ISO_CODE_CSI 0x9B /* control-sequence-introduce */ | |
| 70 | |
| 71 /* All code (1-byte) of ISO2022 is classified into one of the | |
| 72 followings. */ | |
| 73 enum iso_code_class_type | |
| 74 { | |
| 75 ISO_control_code, /* Control codes in the range | |
| 76 0x00..0x1F, 0x7F, and 0x80..0x9F, | |
| 77 except for the following seven | |
| 78 codes. */ | |
| 79 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */ | |
| 80 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
| 81 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
| 82 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
| 83 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
| 84 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
| 85 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
| 86 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
| 87 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
| 88 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
| 89 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
| 90 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
| 91 }; | |
| 92 | |
| 93 /** The macros CODING_FLAG_ISO_XXX defines a flag bit of the `flags' | |
| 94 element in the structure `coding_system'. This information is used | |
| 95 while encoding a text to ISO2022. **/ | |
| 96 | |
| 97 /* If set, produce short-form designation sequence (e.g. ESC $ A) | |
| 98 instead of long-form sequence (e.g. ESC $ ( A). */ | |
| 99 #define CODING_FLAG_ISO_SHORT_FORM 0x0001 | |
| 100 | |
| 101 /* If set, reset graphic planes and registers at end-of-line to the | |
| 102 initial state. */ | |
| 103 #define CODING_FLAG_ISO_RESET_AT_EOL 0x0002 | |
| 104 | |
| 105 /* If set, reset graphic planes and registers before any control | |
| 106 characters to the initial state. */ | |
| 107 #define CODING_FLAG_ISO_RESET_AT_CNTL 0x0004 | |
| 108 | |
| 109 /* If set, encode by 7-bit environment. */ | |
| 110 #define CODING_FLAG_ISO_SEVEN_BITS 0x0008 | |
| 111 | |
| 112 /* If set, use locking-shift function. */ | |
| 113 #define CODING_FLAG_ISO_LOCKING_SHIFT 0x0010 | |
| 114 | |
| 115 /* If set, use single-shift function. Overwrite | |
| 116 CODING_FLAG_ISO_LOCKING_SHIFT. */ | |
| 117 #define CODING_FLAG_ISO_SINGLE_SHIFT 0x0020 | |
| 118 | |
| 119 /* If set, designate JISX0201-Roman instead of ASCII. */ | |
| 120 #define CODING_FLAG_ISO_USE_ROMAN 0x0040 | |
| 121 | |
| 122 /* If set, designate JISX0208-1978 instead of JISX0208-1983. */ | |
| 123 #define CODING_FLAG_ISO_USE_OLDJIS 0x0080 | |
| 124 | |
| 125 /* If set, do not produce ISO6429's direction specifying sequence. */ | |
| 126 #define CODING_FLAG_ISO_NO_DIRECTION 0x0100 | |
| 127 | |
|
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
128 /* If set, assume designation states are reset at beginning of line on |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
129 output. */ |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
130 #define CODING_FLAG_ISO_INIT_AT_BOL 0x0200 |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
131 |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
132 /* If set, designation sequence should be placed at beginning of line |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
133 on output. */ |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
134 #define CODING_FLAG_ISO_DESIGNATE_AT_BOL 0x0400 |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
135 |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
136 /* If set, do not encode unsafe charactes on output. */ |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
137 #define CODING_FLAG_ISO_SAFE 0x0800 |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
138 |
|
19364
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
139 /* If set, extra latin codes (128..159) are accepted as a valid code |
|
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
140 on input. */ |
|
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
141 #define CODING_FLAG_ISO_LATIN_EXTRA 0x1000 |
|
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
142 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
143 /* If set, use designation escape sequence. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
144 #define CODING_FLAG_ISO_DESIGNATION 0x10000 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
145 |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
146 /* A character to be produced on output if encoding of the original |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
147 character is prohibited by CODING_FLAG_ISO_SAFE. */ |
|
19364
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
148 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION 077 /* 077 == `?' */ |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
149 |
| 17052 | 150 /* Structure of the field `spec.iso2022' in the structure `coding_system'. */ |
| 151 struct iso2022_spec | |
| 152 { | |
| 153 /* The current graphic register invoked to each graphic plane. */ | |
| 154 int current_invocation[2]; | |
| 155 | |
| 156 /* The current charset designated to each graphic register. */ | |
| 157 int current_designation[4]; | |
| 158 | |
| 159 /* A charset initially designated to each graphic register. */ | |
| 160 int initial_designation[4]; | |
| 161 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
162 /* If not -1, it is a graphic register specified in an invalid |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
163 designation sequence. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
164 int last_invalid_designation_register; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
165 |
| 17052 | 166 /* A graphic register to which each charset should be designated. */ |
|
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
167 unsigned char requested_designation[MAX_CHARSET + 1]; |
| 17052 | 168 |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
169 /* A revision number to be specified for each charset on encoding. |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
170 The value 255 means no revision number for the corresponding |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
171 charset. */ |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
172 unsigned char charset_revision_number[MAX_CHARSET + 1]; |
|
19284
dd1d7096f59d
(struct iso2022_spec): New member expected_charsets.
Kenichi Handa <handa@m17n.org>
parents:
19279
diff
changeset
|
173 |
| 17052 | 174 /* Set to 1 temporarily only when graphic register 2 or 3 is invoked |
| 175 by single-shift while encoding. */ | |
| 176 int single_shifting; | |
|
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
177 |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
178 /* Set to 1 temporarily only when processing at beginning of line. */ |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
179 int bol; |
| 17052 | 180 }; |
| 181 | |
| 182 /* Macros to access each field in the structure `spec.iso2022'. */ | |
| 183 #define CODING_SPEC_ISO_INVOCATION(coding, plane) \ | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
184 (coding)->spec.iso2022.current_invocation[plane] |
| 17052 | 185 #define CODING_SPEC_ISO_DESIGNATION(coding, reg) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
186 (coding)->spec.iso2022.current_designation[reg] |
| 17052 | 187 #define CODING_SPEC_ISO_INITIAL_DESIGNATION(coding, reg) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
188 (coding)->spec.iso2022.initial_designation[reg] |
| 17052 | 189 #define CODING_SPEC_ISO_REQUESTED_DESIGNATION(coding, charset) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
190 (coding)->spec.iso2022.requested_designation[charset] |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
191 #define CODING_SPEC_ISO_REVISION_NUMBER(coding, charset) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
192 (coding)->spec.iso2022.charset_revision_number[charset] |
| 17052 | 193 #define CODING_SPEC_ISO_SINGLE_SHIFTING(coding) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
194 (coding)->spec.iso2022.single_shifting |
|
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
195 #define CODING_SPEC_ISO_BOL(coding) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
196 (coding)->spec.iso2022.bol |
| 17052 | 197 |
|
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
198 /* A value which may appear in |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
199 coding->spec.iso2022.requested_designation indicating that the |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
200 corresponding charset does not request any graphic register to be |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
201 designated. */ |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
202 #define CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION 4 |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
203 |
| 17052 | 204 /* Return a charset which is currently designated to the graphic plane |
| 205 PLANE in the coding-system CODING. */ | |
|
17724
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
206 #define CODING_SPEC_ISO_PLANE_CHARSET(coding, plane) \ |
|
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
207 ((CODING_SPEC_ISO_INVOCATION (coding, plane) < 0) \ |
|
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
208 ? -1 \ |
|
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
209 : CODING_SPEC_ISO_DESIGNATION (coding, \ |
|
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
210 CODING_SPEC_ISO_INVOCATION (coding, plane))) |
| 17052 | 211 |
| 212 /*** BIG5 section ***/ | |
| 213 | |
| 214 /* Macros to denote each type of BIG5 coding system. */ | |
| 215 #define CODING_FLAG_BIG5_HKU 0x00 /* BIG5-HKU is one of variants of | |
| 216 BIG5 developed by Hong Kong | |
| 217 University. */ | |
| 218 #define CODING_FLAG_BIG5_ETEN 0x01 /* BIG5_ETen is one of variants | |
| 219 of BIG5 developed by the | |
| 220 company ETen in Taiwan. */ | |
| 221 | |
| 222 /*** GENERAL section ***/ | |
| 223 | |
| 224 /* Types of coding system. */ | |
| 225 enum coding_type | |
| 226 { | |
| 227 coding_type_no_conversion, /* A coding system which requires no | |
| 228 conversion for reading and writing | |
| 229 including end-of-line format. */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
230 coding_type_emacs_mule, /* A coding system used in Emacs' |
| 17052 | 231 buffer and string. Requires no |
| 232 conversion for reading and writing | |
| 233 except for end-of-line format. */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
234 coding_type_undecided, /* A coding system which requires |
| 17052 | 235 automatic detection of a real |
| 236 coding system. */ | |
| 237 coding_type_sjis, /* SJIS coding system for Japanese. */ | |
| 238 coding_type_iso2022, /* Any coding system of ISO2022 | |
| 239 variants. */ | |
| 240 coding_type_big5, /* BIG5 coding system for Chinese. */ | |
|
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
241 coding_type_ccl, /* The coding system of which decoder |
| 17052 | 242 and encoder are written in CCL. */ |
|
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
243 coding_type_raw_text /* A coding system for a text |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
244 containing ramdom 8-bit code which |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
245 does not require code conversion |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
246 except for end-of-line format. */ |
| 17052 | 247 }; |
| 248 | |
| 249 /* Formats of end-of-line. */ | |
| 250 #define CODING_EOL_LF 0 /* Line-feed only, same as Emacs' | |
| 251 internal format. */ | |
| 252 #define CODING_EOL_CRLF 1 /* Sequence of carriage-return and | |
| 253 line-feed. */ | |
| 254 #define CODING_EOL_CR 2 /* Carriage-return only. */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
255 #define CODING_EOL_UNDECIDED 3 /* This value is used to denote the |
| 17052 | 256 eol-type is not yet decided. */ |
|
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
257 #define CODING_EOL_INCONSISTENT 4 /* This value is used to denote the |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
258 eol-type is not consistent |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
259 through the file. */ |
| 17052 | 260 |
|
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
261 /* 1 iff composing. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
262 #define COMPOSING_P(coding) ((int) coding->composing > (int) COMPOSITION_NO) |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
263 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
264 #define COMPOSITION_DATA_SIZE 4080 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
265 #define COMPOSITION_DATA_MAX_BUNCH_LENGTH (4 + MAX_COMPOSITION_COMPONENTS*2) |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
266 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
267 /* Data structure to hold information about compositions of text that |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
268 is being decoded or encode. ISO 2022 base code conversion routines |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
269 handle special ESC sequences for composition specification. But, |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
270 they can't get/put such information directly from/to a buffer in |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
271 the deepest place. So, they store or retrieve the information |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
272 through this structure. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
273 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
274 The encoder stores the information in this structure when it meets |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
275 ESC sequences for composition while encoding codes, then, after all |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
276 text codes are encoded, puts `composition' properties on the text |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
277 by refering the structure. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
278 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
279 The decoder at first stores the information of a text to be |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
280 decoded, then, while decoding codes, generates ESC sequences for |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
281 composition at proper places by refering the structure. */ |
| 17052 | 282 |
|
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
283 struct composition_data |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
284 { |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
285 /* The character position of the first character to be encoded or |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
286 decoded. START and END (see below) are relative to this |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
287 position. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
288 int char_offset; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
289 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
290 /* The composition data. These elements are repeated for each |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
291 composition: |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
292 LENGTH START END METHOD [ COMPONENT ... ] |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
293 where, |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
294 LENGTH is the number of elements for this composition. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
295 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
296 START and END are starting and ending character positions of |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
297 the composition relative to `char_offset'. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
298 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
299 METHOD is one of `enum cmposing_status' specifying the way of |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
300 composition. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
301 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
302 COMPONENT is a character or an encoded composition rule. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
303 int data[COMPOSITION_DATA_SIZE]; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
304 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
305 /* The number of elements in `data' currently used. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
306 int used; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
307 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
308 /* Pointers to the previous and next structures. When `data' is |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
309 filled up, another structure is allocated and linked in `next'. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
310 The new struture has backward link to this struture in `prev'. |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
311 The number of chaind structures depends on how many compositions |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
312 the text being encoded or decoded contains. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
313 struct composition_data *prev, *next; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
314 }; |
| 17052 | 315 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
316 /* Macros used for the member finish_status of the struct |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
317 coding_system. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
318 #define CODING_FINISH_NORMAL 0 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
319 #define CODING_FINISH_INSUFFICIENT_SRC 1 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
320 #define CODING_FINISH_INSUFFICIENT_DST 2 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
321 #define CODING_FINISH_INCONSISTENT_EOL 3 |
|
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
322 #define CODING_FINISH_INSUFFICIENT_CMP 4 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
323 #define CODING_FINISH_INTERRUPT 5 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
324 |
| 21031 | 325 /* Macros used for the member `mode' of the struct coding_system. */ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
326 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
327 /* If set, recover the original CR or LF of the already decoded text |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
328 when the decoding routine encounters an inconsistent eol format. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
329 #define CODING_MODE_INHIBIT_INCONSISTENT_EOL 0x01 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
330 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
331 /* If set, the decoding/encoding routines treat the current data as |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
332 the last block of the whole text to be converted, and do |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
333 appropriate fisishing job. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
334 #define CODING_MODE_LAST_BLOCK 0x02 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
335 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
336 /* If set, it means that the current source text is in a buffer which |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
337 enables selective display. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
338 #define CODING_MODE_SELECTIVE_DISPLAY 0x04 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
339 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
340 /* This flag is used by the decoding/encoding routines on the fly. If |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
341 set, it means that right-to-left text is being processed. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
342 #define CODING_MODE_DIRECTION 0x08 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
343 |
| 17052 | 344 struct coding_system |
| 345 { | |
| 346 /* Type of the coding system. */ | |
| 347 enum coding_type type; | |
| 348 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
349 /* Type of end-of-line format (LF, CRLF, or CR) of the coding system. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
350 int eol_type; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
351 |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
352 /* Flag bits of the coding system. The meaning of each bit is common |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
353 to all types of coding systems. */ |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
354 unsigned int common_flags; |
| 17052 | 355 |
| 356 /* Flag bits of the coding system. The meaning of each bit depends | |
| 357 on the type of the coding system. */ | |
| 358 unsigned int flags; | |
| 359 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
360 /* Mode bits of the coding system. See the comments of the macros |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
361 CODING_MODE_XXX. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
362 unsigned int mode; |
| 17052 | 363 |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
364 /* Table of safe character sets for this coding system. If the Nth |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
365 element is 0, the charset of ID N is not a safe character set. |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
366 Such a character set is not encoded when CODING_ISO_FLAG_SAFE is |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
367 set. */ |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
368 unsigned char safe_charsets[MAX_CHARSET + 1]; |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
369 |
|
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
370 /* The current status of composition handling. */ |
| 17052 | 371 int composing; |
| 372 | |
|
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
373 /* 1 iff the next character is a composition rule. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
374 int composition_rule_follows; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
375 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
376 /* Information of compositions are stored here on decoding and set |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
377 in advance on encoding. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
378 struct composition_data *cmp_data; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
379 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
380 /* Index to cmp_data->data for the first element for the current |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
381 composition. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
382 int cmp_data_start; |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
383 |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
384 /* Index to cmp_data->data for the current element for the current |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
385 composition. */ |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
386 int cmp_data_index; |
|
23324
4c5f12c6041c
(struct coding_system): New member composed_chars.
Kenichi Handa <handa@m17n.org>
parents:
23278
diff
changeset
|
387 |
| 17052 | 388 /* Detailed information specific to each type of coding system. */ |
| 389 union spec | |
| 390 { | |
| 391 struct iso2022_spec iso2022; | |
| 392 struct ccl_spec ccl; /* Defined in ccl.h. */ | |
| 393 } spec; | |
| 394 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
395 /* Index number of coding category of the coding system. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
396 int category_idx; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
397 |
|
21320
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
398 /* How may heading bytes we can skip for decoding. This is set to |
|
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
399 -1 in setup_coding_system, and updated by detect_coding. So, |
|
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
400 when this is equal to the byte length of the text being |
|
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
401 converted, we can skip the actual conversion process. */ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
402 int heading_ascii; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
403 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
404 /* The following members are set by encoding/decoding routine. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
405 int produced, produced_char, consumed, consumed_char; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
406 |
|
20930
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
407 /* Encoding routines set this to 1 when they produce a byte sequence |
|
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
408 which can be parsed as a multibyte character. Decoding routines |
|
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
409 set this to 1 when they encounter an invalid code and, as the |
|
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
410 result, produce an unexpected multibyte character. */ |
|
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
411 int fake_multibyte; |
|
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
412 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
413 /* The following members are all Lisp symbols. We don't have to |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
414 protect them from GC because the current garbage collection |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
415 doesn't relocate Lisp symbols. But, when it is changed, we must |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
416 find a way to protect them. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
417 |
| 17052 | 418 /* Backward pointer to the Lisp symbol of the coding system. */ |
| 419 Lisp_Object symbol; | |
| 420 | |
| 421 /* Lisp function (symbol) to be called after decoding to do | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
422 additional conversion, or nil. */ |
| 17052 | 423 Lisp_Object post_read_conversion; |
| 424 | |
| 425 /* Lisp function (symbol) to be called before encoding to do | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
426 additional conversion, or nil. */ |
| 17052 | 427 Lisp_Object pre_write_conversion; |
| 428 | |
|
22118
42e2ffa98618
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21901
diff
changeset
|
429 /* Character translation tables to look up, or nil. */ |
|
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
430 Lisp_Object translation_table_for_decode; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
431 Lisp_Object translation_table_for_encode; |
| 17052 | 432 }; |
| 433 | |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
434 #define CODING_REQUIRE_FLUSHING_MASK 1 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
435 #define CODING_REQUIRE_DECODING_MASK 2 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
436 #define CODING_REQUIRE_ENCODING_MASK 4 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
437 #define CODING_REQUIRE_DETECTION_MASK 8 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
438 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
439 /* Return 1 if the coding system CODING requires specific code to be |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
440 attached at the tail of converted text. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
441 #define CODING_REQUIRE_FLUSHING(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
442 ((coding)->common_flags & CODING_REQUIRE_FLUSHING_MASK) |
| 17052 | 443 |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
444 /* Return 1 if the coding system CODING requires code conversion on |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
445 decoding. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
446 #define CODING_REQUIRE_DECODING(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
447 ((coding)->common_flags & CODING_REQUIRE_DECODING_MASK) |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
448 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
449 /* Return 1 if the coding system CODING requires code conversion on |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
450 encoding. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
451 #define CODING_REQUIRE_ENCODING(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
452 ((coding)->common_flags & CODING_REQUIRE_ENCODING_MASK) |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
453 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
454 /* Return 1 if the coding system CODING requires some kind of code |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
455 detection. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
456 #define CODING_REQUIRE_DETECTION(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
457 ((coding)->common_flags & CODING_REQUIRE_DETECTION_MASK) |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
458 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
459 #define CODING_MAY_REQUIRE_DECODING(coding) \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
460 ((coding)->common_flags \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
461 & (CODING_REQUIRE_DETECTION_MASK | CODING_REQUIRE_DECODING_MASK)) |
| 17052 | 462 |
| 463 /* Index for each coding category in `coding_category_table' */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
464 #define CODING_CATEGORY_IDX_EMACS_MULE 0 |
| 17052 | 465 #define CODING_CATEGORY_IDX_SJIS 1 |
| 466 #define CODING_CATEGORY_IDX_ISO_7 2 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
467 #define CODING_CATEGORY_IDX_ISO_7_TIGHT 3 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
468 #define CODING_CATEGORY_IDX_ISO_8_1 4 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
469 #define CODING_CATEGORY_IDX_ISO_8_2 5 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
470 #define CODING_CATEGORY_IDX_ISO_7_ELSE 6 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
471 #define CODING_CATEGORY_IDX_ISO_8_ELSE 7 |
|
22873
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
472 #define CODING_CATEGORY_IDX_CCL 8 |
|
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
473 #define CODING_CATEGORY_IDX_BIG5 9 |
|
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
474 #define CODING_CATEGORY_IDX_UTF_8 10 |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
475 #define CODING_CATEGORY_IDX_UTF_16_BE 11 |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
476 #define CODING_CATEGORY_IDX_UTF_16_LE 12 |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
477 #define CODING_CATEGORY_IDX_RAW_TEXT 13 |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
478 #define CODING_CATEGORY_IDX_BINARY 14 |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
479 #define CODING_CATEGORY_IDX_MAX 15 |
| 17052 | 480 |
| 481 /* Definitions of flag bits returned by the function | |
| 482 detect_coding_mask (). */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
483 #define CODING_CATEGORY_MASK_EMACS_MULE (1 << CODING_CATEGORY_IDX_EMACS_MULE) |
| 17052 | 484 #define CODING_CATEGORY_MASK_SJIS (1 << CODING_CATEGORY_IDX_SJIS) |
| 485 #define CODING_CATEGORY_MASK_ISO_7 (1 << CODING_CATEGORY_IDX_ISO_7) | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
486 #define CODING_CATEGORY_MASK_ISO_7_TIGHT (1 << CODING_CATEGORY_IDX_ISO_7_TIGHT) |
| 17052 | 487 #define CODING_CATEGORY_MASK_ISO_8_1 (1 << CODING_CATEGORY_IDX_ISO_8_1) |
| 488 #define CODING_CATEGORY_MASK_ISO_8_2 (1 << CODING_CATEGORY_IDX_ISO_8_2) | |
|
18786
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
489 #define CODING_CATEGORY_MASK_ISO_7_ELSE (1 << CODING_CATEGORY_IDX_ISO_7_ELSE) |
|
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
490 #define CODING_CATEGORY_MASK_ISO_8_ELSE (1 << CODING_CATEGORY_IDX_ISO_8_ELSE) |
|
22873
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
491 #define CODING_CATEGORY_MASK_CCL (1 << CODING_CATEGORY_IDX_CCL) |
|
19689
08b92fab92af
Minor reordering of macros.
Richard M. Stallman <rms@gnu.org>
parents:
19611
diff
changeset
|
492 #define CODING_CATEGORY_MASK_BIG5 (1 << CODING_CATEGORY_IDX_BIG5) |
|
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
493 #define CODING_CATEGORY_MASK_UTF_8 (1 << CODING_CATEGORY_IDX_UTF_8) |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
494 #define CODING_CATEGORY_MASK_UTF_16_BE (1 << CODING_CATEGORY_IDX_UTF_16_BE) |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
495 #define CODING_CATEGORY_MASK_UTF_16_LE (1 << CODING_CATEGORY_IDX_UTF_16_LE) |
|
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
496 #define CODING_CATEGORY_MASK_RAW_TEXT (1 << CODING_CATEGORY_IDX_RAW_TEXT) |
|
19096
0724276f0e01
(CODING_CATEGORY_MASK_BINARY): New macro.
Kenichi Handa <handa@m17n.org>
parents:
18975
diff
changeset
|
497 #define CODING_CATEGORY_MASK_BINARY (1 << CODING_CATEGORY_IDX_BINARY) |
| 17052 | 498 |
| 499 /* This value is returned if detect_coding_mask () find nothing other | |
| 500 than ASCII characters. */ | |
| 501 #define CODING_CATEGORY_MASK_ANY \ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
502 ( CODING_CATEGORY_MASK_EMACS_MULE \ |
| 17052 | 503 | CODING_CATEGORY_MASK_SJIS \ |
| 504 | CODING_CATEGORY_MASK_ISO_7 \ | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
505 | CODING_CATEGORY_MASK_ISO_7_TIGHT \ |
| 17052 | 506 | CODING_CATEGORY_MASK_ISO_8_1 \ |
| 507 | CODING_CATEGORY_MASK_ISO_8_2 \ | |
|
18786
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
508 | CODING_CATEGORY_MASK_ISO_7_ELSE \ |
|
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
509 | CODING_CATEGORY_MASK_ISO_8_ELSE \ |
|
22873
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
510 | CODING_CATEGORY_MASK_CCL \ |
|
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
511 | CODING_CATEGORY_MASK_BIG5 \ |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
512 | CODING_CATEGORY_MASK_UTF_8 \ |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
513 | CODING_CATEGORY_MASK_UTF_16_BE \ |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
514 | CODING_CATEGORY_MASK_UTF_16_LE) |
| 17052 | 515 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
516 #define CODING_CATEGORY_MASK_ISO_7BIT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
517 (CODING_CATEGORY_MASK_ISO_7 | CODING_CATEGORY_MASK_ISO_7_TIGHT) |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
518 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
519 #define CODING_CATEGORY_MASK_ISO_8BIT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
520 (CODING_CATEGORY_MASK_ISO_8_1 | CODING_CATEGORY_MASK_ISO_8_2) |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
521 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
522 #define CODING_CATEGORY_MASK_ISO_SHIFT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
523 (CODING_CATEGORY_MASK_ISO_7_ELSE | CODING_CATEGORY_MASK_ISO_8_ELSE) |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
524 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
525 #define CODING_CATEGORY_MASK_ISO \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
526 ( CODING_CATEGORY_MASK_ISO_7BIT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
527 | CODING_CATEGORY_MASK_ISO_SHIFT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
528 | CODING_CATEGORY_MASK_ISO_8BIT) |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
529 |
|
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
530 #define CODING_CATEGORY_MASK_UTF_16_BE_LE \ |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
531 (CODING_CATEGORY_MASK_UTF_16_BE | CODING_CATEGORY_MASK_UTF_16_LE) |
|
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
532 |
| 17052 | 533 /* Macros to decode or encode a character of JISX0208 in SJIS. S1 and |
| 534 S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding | |
| 535 system. C1 and C2 are the 1st and 2nd position codes of Emacs' | |
| 536 internal format. */ | |
| 537 | |
| 538 #define DECODE_SJIS(s1, s2, c1, c2) \ | |
| 539 do { \ | |
| 540 if (s2 >= 0x9F) \ | |
| 541 c1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \ | |
| 542 c2 = s2 - 0x7E; \ | |
| 543 else \ | |
| 544 c1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \ | |
| 545 c2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F); \ | |
| 546 } while (0) | |
| 547 | |
| 548 #define ENCODE_SJIS(c1, c2, s1, s2) \ | |
| 549 do { \ | |
| 550 if (c1 & 1) \ | |
| 551 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x71 : 0xB1), \ | |
| 552 s2 = c2 + ((c2 >= 0x60) ? 0x20 : 0x1F); \ | |
| 553 else \ | |
| 554 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x70 : 0xB0), \ | |
| 555 s2 = c2 + 0x7E; \ | |
| 556 } while (0) | |
| 557 | |
|
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
558 /* Encode the file name NAME using the specified coding system |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
559 for file names, if any. */ |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
560 #define ENCODE_FILE(name) \ |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
561 (! NILP (Vfile_name_coding_system) \ |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
562 && XFASTINT (Vfile_name_coding_system) != 0 \ |
| 22342 | 563 ? code_convert_string_norecord (name, Vfile_name_coding_system, 1) \ |
|
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
564 : (! NILP (Vdefault_file_name_coding_system) \ |
| 22342 | 565 && XFASTINT (Vdefault_file_name_coding_system) != 0 \ |
| 566 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 1) \ | |
|
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
567 : name)) |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
568 |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
569 /* Decode the file name NAME using the specified coding system |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
570 for file names, if any. */ |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
571 #define DECODE_FILE(name) \ |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
572 (! NILP (Vfile_name_coding_system) \ |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
573 && XFASTINT (Vfile_name_coding_system) != 0 \ |
| 22342 | 574 ? code_convert_string_norecord (name, Vfile_name_coding_system, 0) \ |
|
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
575 : (! NILP (Vdefault_file_name_coding_system) \ |
| 22342 | 576 && XFASTINT (Vdefault_file_name_coding_system) != 0 \ |
| 577 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 0) \ | |
|
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
578 : name)) |
|
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
579 |
| 17052 | 580 /* Extern declarations. */ |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
581 extern int decode_coding P_ ((struct coding_system *, unsigned char *, |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
582 unsigned char *, int, int)); |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
583 extern int encode_coding P_ ((struct coding_system *, unsigned char *, |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
584 unsigned char *, int, int)); |
|
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
585 extern void coding_save_composition P_ ((struct coding_system *, int, int, |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
586 Lisp_Object)); |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
587 extern void coding_free_composition_data P_ ((struct coding_system *)); |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
588 extern void coding_adjust_composition_offset P_ ((struct coding_system *, |
|
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
589 int)); |
| 21515 | 590 extern int code_convert_region P_ ((int, int, int, int, struct coding_system *, |
| 591 int, int)); | |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
592 extern int decoding_buffer_size P_ ((struct coding_system *, int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
593 extern int encoding_buffer_size P_ ((struct coding_system *, int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
594 extern void detect_coding P_ ((struct coding_system *, unsigned char *, int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
595 extern void detect_eol P_ ((struct coding_system *, unsigned char *, int)); |
| 17052 | 596 extern int conversion_buffer_size; |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
597 extern char *conversion_buffer; |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
598 extern char *get_conversion_buffer P_ ((int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
599 extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *)); |
|
22615
bad8b17b0524
(setup_raw_text_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22342
diff
changeset
|
600 extern void setup_raw_text_coding_system P_ ((struct coding_system *)); |
| 17052 | 601 extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
| 22620 | 602 extern Lisp_Object Qraw_text, Qemacs_mule; |
| 17052 | 603 extern Lisp_Object Qbuffer_file_coding_system; |
| 604 extern Lisp_Object Vcoding_category_list; | |
| 605 | |
|
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
606 extern Lisp_Object Qtranslation_table; |
|
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
607 extern Lisp_Object Qtranslation_table_id; |
|
22118
42e2ffa98618
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21901
diff
changeset
|
608 |
|
24201
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
609 /* Mnemonic strings to indicate each type of end-of-line. */ |
|
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
610 extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
|
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
611 /* Mnemonic string to indicate type of end-of-line is not yet decided. */ |
|
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
612 extern Lisp_Object eol_mnemonic_undecided; |
| 17052 | 613 |
| 614 #ifdef emacs | |
| 615 extern Lisp_Object Qfile_coding_system; | |
| 616 extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
| 617 extern Lisp_Object Qstart_process, Qopen_network_stream; | |
| 618 | |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
619 extern char *emacs_strerror P_ ((int)); |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
620 |
| 17052 | 621 /* Coding-system for reading files and receiving data from process. */ |
| 622 extern Lisp_Object Vcoding_system_for_read; | |
| 623 /* Coding-system for writing files and sending data to process. */ | |
| 624 extern Lisp_Object Vcoding_system_for_write; | |
| 625 /* Coding-system actually used in the latest I/O. */ | |
| 626 extern Lisp_Object Vlast_coding_system_used; | |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
627 /* Coding-system to use with system messages (e.g. strerror). */ |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
628 extern Lisp_Object Vlocale_coding_system; |
| 17052 | 629 |
|
21573
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
630 /* If non-zero, process buffer inherits the coding system used to decode |
|
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
631 the subprocess output. */ |
|
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
632 extern int inherit_process_coding_system; |
|
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
633 |
| 17052 | 634 /* Coding-system to be used for encoding terminal output. This |
| 635 structure contains information of a coding-system specified by the | |
| 636 function `set-terminal-coding-system'. */ | |
| 637 extern struct coding_system terminal_coding; | |
| 638 | |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
639 /* Coding system to be used to encode text for terminal display when |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
640 terminal coding system is nil. */ |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
641 extern struct coding_system safe_terminal_coding; |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
642 |
| 17052 | 643 /* Coding-system of what is sent from terminal keyboard. This |
| 644 structure contains information of a coding-system specified by the | |
| 645 function `set-keyboard-coding-system'. */ | |
| 646 extern struct coding_system keyboard_coding; | |
| 647 | |
|
22978
6535413fa872
(default_buffer_file_coding): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22873
diff
changeset
|
648 /* Default coding system to be used to write a file. */ |
|
6535413fa872
(default_buffer_file_coding): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22873
diff
changeset
|
649 extern struct coding_system default_buffer_file_coding; |
|
6535413fa872
(default_buffer_file_coding): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22873
diff
changeset
|
650 |
|
18181
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
651 /* Default coding systems used for process I/O. */ |
|
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
652 extern Lisp_Object Vdefault_process_coding_system; |
| 17052 | 653 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
654 /* Function to call to force a user to force select a propert coding |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
655 system. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
656 extern Lisp_Object Vselect_safe_coding_system_function; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
657 |
|
21901
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
658 /* Coding system for file names, or nil if none. */ |
|
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
659 extern Lisp_Object Vfile_name_coding_system; |
|
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
660 |
|
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
661 /* Coding system for file names used only when |
|
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
662 Vfile_name_coding_system is nil. */ |
|
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
663 extern Lisp_Object Vdefault_file_name_coding_system; |
| 17052 | 664 #endif |
| 665 | |
| 666 #endif /* _CODING_H */ |
