]> code.delx.au - gnu-emacs/blob - src/coding.h
(Vdefault_process_coding_system): Extern it.
[gnu-emacs] / src / coding.h
1 /* Header for coding system handler.
2 Ver.1.0
3 Copyright (C) 1995 Free Software Foundation, Inc.
4 Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
5
6 This file is part of GNU Emacs.
7
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)
11 any later version.
12
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.
17
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. */
22
23 #ifndef _CODING_H
24 #define _CODING_H
25
26 #ifndef _CCL_H
27 #include "../src/ccl.h"
28 #endif
29
30 /*** EMACS' INTERNAL FORMAT (emacs-mule) section ***/
31
32 /* All code (1-byte) of Emacs' internal format is classified into one
33 of the followings. See also `charset.h'. */
34 enum emacs_code_class_type
35 {
36 EMACS_control_code, /* Control codes in the range
37 0x00..0x1F and 0x7F except for the
38 following two codes. */
39 EMACS_linefeed_code, /* 0x0A (linefeed) to denote
40 end-of-line. */
41 EMACS_carriage_return_code, /* 0x0D (carriage-return) to be used
42 in selective display mode. */
43 EMACS_ascii_code, /* ASCII characters. */
44 EMACS_leading_code_composition, /* Leading code of a composite
45 character. */
46 EMACS_leading_code_2, /* Base leading code of official
47 TYPE9N character. */
48 EMACS_leading_code_3, /* Base leading code of private TYPE9N
49 or official TYPE9Nx9N character. */
50 EMACS_leading_code_4, /* Base leading code of private
51 TYPE9Nx9N character. */
52 EMACS_invalid_code /* Invalid code, i.e. a base leading
53 code not yet assigned to any
54 charset, or a code of the range
55 0xA0..0xFF. */
56 };
57
58 extern enum emacs_code_class_type emacs_code_class[256];
59
60 /*** ISO2022 section ***/
61
62 /* Macros to define code of control characters for ISO2022's functions. */
63 /* code */ /* function */
64 #define ISO_CODE_LF 0x0A /* line-feed */
65 #define ISO_CODE_CR 0x0D /* carriage-return */
66 #define ISO_CODE_SO 0x0E /* shift-out */
67 #define ISO_CODE_SI 0x0F /* shift-in */
68 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
69 #define ISO_CODE_ESC 0x1B /* escape */
70 #define ISO_CODE_SS2 0x8E /* single-shift-2 */
71 #define ISO_CODE_SS3 0x8F /* single-shift-3 */
72 #define ISO_CODE_CSI 0x9B /* control-sequence-introduce */
73
74 /* All code (1-byte) of ISO2022 is classified into one of the
75 followings. */
76 enum iso_code_class_type
77 {
78 ISO_control_code, /* Control codes in the range
79 0x00..0x1F, 0x7F, and 0x80..0x9F,
80 except for the following seven
81 codes. */
82 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */
83 ISO_shift_out, /* ISO_CODE_SO (0x0E) */
84 ISO_shift_in, /* ISO_CODE_SI (0x0F) */
85 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */
86 ISO_escape, /* ISO_CODE_SO (0x1B) */
87 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */
88 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */
89 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */
90 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */
91 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */
92 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */
93 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */
94 };
95
96 /** The macros CODING_FLAG_ISO_XXX defines a flag bit of the `flags'
97 element in the structure `coding_system'. This information is used
98 while encoding a text to ISO2022. **/
99
100 /* If set, produce short-form designation sequence (e.g. ESC $ A)
101 instead of long-form sequence (e.g. ESC $ ( A). */
102 #define CODING_FLAG_ISO_SHORT_FORM 0x0001
103
104 /* If set, reset graphic planes and registers at end-of-line to the
105 initial state. */
106 #define CODING_FLAG_ISO_RESET_AT_EOL 0x0002
107
108 /* If set, reset graphic planes and registers before any control
109 characters to the initial state. */
110 #define CODING_FLAG_ISO_RESET_AT_CNTL 0x0004
111
112 /* If set, encode by 7-bit environment. */
113 #define CODING_FLAG_ISO_SEVEN_BITS 0x0008
114
115 /* If set, use locking-shift function. */
116 #define CODING_FLAG_ISO_LOCKING_SHIFT 0x0010
117
118 /* If set, use single-shift function. Overwrite
119 CODING_FLAG_ISO_LOCKING_SHIFT. */
120 #define CODING_FLAG_ISO_SINGLE_SHIFT 0x0020
121
122 /* If set, designate JISX0201-Roman instead of ASCII. */
123 #define CODING_FLAG_ISO_USE_ROMAN 0x0040
124
125 /* If set, designate JISX0208-1978 instead of JISX0208-1983. */
126 #define CODING_FLAG_ISO_USE_OLDJIS 0x0080
127
128 /* If set, do not produce ISO6429's direction specifying sequence. */
129 #define CODING_FLAG_ISO_NO_DIRECTION 0x0100
130
131 /* If set, assume designation states are reset at beginning of line on
132 output. */
133 #define CODING_FLAG_ISO_INIT_AT_BOL 0x0200
134
135 /* If set, designation sequence should be placed at beginning of line
136 on output. */
137 #define CODING_FLAG_ISO_DESIGNATE_AT_BOL 0x0400
138
139 /* Structure of the field `spec.iso2022' in the structure `coding_system'. */
140 struct iso2022_spec
141 {
142 /* The current graphic register invoked to each graphic plane. */
143 int current_invocation[2];
144
145 /* The current charset designated to each graphic register. */
146 int current_designation[4];
147
148 /* A charset initially designated to each graphic register. */
149 int initial_designation[4];
150
151 /* A graphic register to which each charset should be designated. */
152 unsigned char requested_designation[MAX_CHARSET + 1];
153
154 /* Set to 1 temporarily only when graphic register 2 or 3 is invoked
155 by single-shift while encoding. */
156 int single_shifting;
157
158 /* Set to 1 temporarily only when processing at beginning of line. */
159 int bol;
160 };
161
162 /* Macros to access each field in the structure `spec.iso2022'. */
163 #define CODING_SPEC_ISO_INVOCATION(coding, plane) \
164 coding->spec.iso2022.current_invocation[plane]
165 #define CODING_SPEC_ISO_DESIGNATION(coding, reg) \
166 coding->spec.iso2022.current_designation[reg]
167 #define CODING_SPEC_ISO_INITIAL_DESIGNATION(coding, reg) \
168 coding->spec.iso2022.initial_designation[reg]
169 #define CODING_SPEC_ISO_REQUESTED_DESIGNATION(coding, charset) \
170 coding->spec.iso2022.requested_designation[charset]
171 #define CODING_SPEC_ISO_SINGLE_SHIFTING(coding) \
172 coding->spec.iso2022.single_shifting
173 #define CODING_SPEC_ISO_BOL(coding) \
174 coding->spec.iso2022.bol
175
176 /* A value which may appear in
177 coding->spec.iso2022.requested_designation indicating that the
178 corresponding charset does not request any graphic register to be
179 designated. */
180 #define CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION 4
181
182 /* Return a charset which is currently designated to the graphic plane
183 PLANE in the coding-system CODING. */
184 #define CODING_SPEC_ISO_PLANE_CHARSET(coding, plane) \
185 ((CODING_SPEC_ISO_INVOCATION (coding, plane) < 0) \
186 ? -1 \
187 : CODING_SPEC_ISO_DESIGNATION (coding, \
188 CODING_SPEC_ISO_INVOCATION (coding, plane)))
189
190 /*** BIG5 section ***/
191
192 /* Macros to denote each type of BIG5 coding system. */
193 #define CODING_FLAG_BIG5_HKU 0x00 /* BIG5-HKU is one of variants of
194 BIG5 developed by Hong Kong
195 University. */
196 #define CODING_FLAG_BIG5_ETEN 0x01 /* BIG5_ETen is one of variants
197 of BIG5 developed by the
198 company ETen in Taiwan. */
199
200 /*** GENERAL section ***/
201
202 /* Types of coding system. */
203 enum coding_type
204 {
205 coding_type_no_conversion, /* A coding system which requires no
206 conversion for reading and writing
207 including end-of-line format. */
208 coding_type_emacs_mule, /* A coding system used in Emacs'
209 buffer and string. Requires no
210 conversion for reading and writing
211 except for end-of-line format. */
212 coding_type_undecided, /* A coding system which requires
213 automatic detection of a real
214 coding system. */
215 coding_type_sjis, /* SJIS coding system for Japanese. */
216 coding_type_iso2022, /* Any coding system of ISO2022
217 variants. */
218 coding_type_big5, /* BIG5 coding system for Chinese. */
219 coding_type_ccl /* The coding system of which decoder
220 and encoder are written in CCL. */
221 };
222
223 /* Formats of end-of-line. */
224 #define CODING_EOL_LF 0 /* Line-feed only, same as Emacs'
225 internal format. */
226 #define CODING_EOL_CRLF 1 /* Sequence of carriage-return and
227 line-feed. */
228 #define CODING_EOL_CR 2 /* Carriage-return only. */
229 #define CODING_EOL_UNDECIDED 3 /* This value is used to denote the
230 eol-type is not yet decided. */
231
232 /* Character composition status while encoding/decoding. */
233 #define COMPOSING_NO 0 /* not composing */
234 #define COMPOSING_WITH_RULE_HEAD 1 /* 1st char of with-rule composing follow */
235 #define COMPOSING_NO_RULE_HEAD 2 /* 1st char of no-rule composing follow */
236 #define COMPOSING_WITH_RULE_TAIL 3 /* Nth char of with-rule composing follow */
237 #define COMPOSING_NO_RULE_TAIL 4 /* Nth char of no-rule composing follow */
238 #define COMPOSING_WITH_RULE_RULE 5 /* composition rule follow */
239
240 /* 1 iff composing. */
241 #define COMPOSING_P(composing) (composing)
242 /* 1 iff 1st char of composing element follows. */
243 #define COMPOSING_HEAD_P(composing) \
244 ((composing) && (composing) <= COMPOSING_NO_RULE_HEAD)
245 /* 1 iff composing with embeded composition rule. */
246 #define COMPOSING_WITH_RULE_P(composing) ((composing) & 1)
247
248 struct coding_system
249 {
250 /* Type of the coding system. */
251 enum coding_type type;
252
253 /* If the coding system requires specific code to be attached at the
254 tail of converted text, this value should be set to `1'. */
255 int require_flushing;
256
257 /* Flag bits of the coding system. The meaning of each bit depends
258 on the type of the coding system. */
259 unsigned int flags;
260
261 /* Type of end-of-line format (LF, CRLF, or CR) of the coding system. */
262 int eol_type;
263
264 /* Non-zero means that the current source text is the last block of the
265 whole text to be converted. */
266 int last_block;
267
268 /* Non-zero means that characters are being composed currently while
269 decoding or encoding. See macros COMPOSING_XXXX above for the
270 meaing of each non-zero value. */
271 int composing;
272
273 /* 0 (left-to-right) or 1 (right-to-left): the direction of the text
274 being processed currently. */
275 int direction;
276
277 /* Non-zero means that the current source text is in a buffer which
278 enables selective display. */
279 int selective;
280
281 /* Detailed information specific to each type of coding system. */
282 union spec
283 {
284 struct iso2022_spec iso2022;
285 struct ccl_spec ccl; /* Defined in ccl.h. */
286 } spec;
287
288 /* Backward pointer to the Lisp symbol of the coding system. */
289 Lisp_Object symbol;
290
291 /* Lisp function (symbol) to be called after decoding to do
292 additional conversion. */
293 Lisp_Object post_read_conversion;
294
295 /* Lisp function (symbol) to be called before encoding to do
296 additional conversion. */
297 Lisp_Object pre_write_conversion;
298
299 /* Character unification table to look up, or nil. */
300 Lisp_Object character_unification_table;
301
302 /* Carryover yielded by decoding/encoding incomplete source. No
303 coding-system yields more than 7-byte of carryover. This does
304 not include a text which is not processed because of short of
305 output buffer. */
306 char carryover[8];
307
308 /* Actual data length in the above array. */
309 int carryover_size;
310 };
311
312 /* Return 1 if the coding-system CODING requires conversion of
313 representation of a visible character (text). */
314 #define CODING_REQUIRE_TEXT_CONVERSION(coding) \
315 ((coding)->type != coding_type_no_conversion \
316 && (coding)->type != coding_type_emacs_mule)
317
318 /* Return 1 if the coding-system CODING requires conversion of the
319 format of end-of-line. */
320 #define CODING_REQUIRE_EOL_CONVERSION(coding) \
321 ((coding)->eol_type != CODING_EOL_UNDECIDED \
322 && (coding)->eol_type != CODING_EOL_LF)
323
324 /* Return 1 if the coding-system CODING requires some conversion. */
325 #define CODING_REQUIRE_CONVERSION(coding) \
326 (CODING_REQUIRE_TEXT_CONVERSION (coding) \
327 || CODING_REQUIRE_EOL_CONVERSION (coding))
328
329 /* Index for each coding category in `coding_category_table' */
330 #define CODING_CATEGORY_IDX_EMACS_MULE 0
331 #define CODING_CATEGORY_IDX_SJIS 1
332 #define CODING_CATEGORY_IDX_ISO_7 2
333 #define CODING_CATEGORY_IDX_ISO_8_1 3
334 #define CODING_CATEGORY_IDX_ISO_8_2 4
335 #define CODING_CATEGORY_IDX_ISO_ELSE 5
336 #define CODING_CATEGORY_IDX_BIG5 6
337 #define CODING_CATEGORY_IDX_BINARY 7
338 #define CODING_CATEGORY_IDX_MAX 8
339
340 /* Definitions of flag bits returned by the function
341 detect_coding_mask (). */
342 #define CODING_CATEGORY_MASK_EMACS_MULE (1 << CODING_CATEGORY_IDX_EMACS_MULE)
343 #define CODING_CATEGORY_MASK_SJIS (1 << CODING_CATEGORY_IDX_SJIS)
344 #define CODING_CATEGORY_MASK_ISO_7 (1 << CODING_CATEGORY_IDX_ISO_7)
345 #define CODING_CATEGORY_MASK_ISO_8_1 (1 << CODING_CATEGORY_IDX_ISO_8_1)
346 #define CODING_CATEGORY_MASK_ISO_8_2 (1 << CODING_CATEGORY_IDX_ISO_8_2)
347 #define CODING_CATEGORY_MASK_ISO_ELSE (1 << CODING_CATEGORY_IDX_ISO_ELSE)
348 #define CODING_CATEGORY_MASK_BIG5 (1 << CODING_CATEGORY_IDX_BIG5)
349
350 /* This value is returned if detect_coding_mask () find nothing other
351 than ASCII characters. */
352 #define CODING_CATEGORY_MASK_ANY \
353 ( CODING_CATEGORY_MASK_EMACS_MULE \
354 | CODING_CATEGORY_MASK_SJIS \
355 | CODING_CATEGORY_MASK_ISO_7 \
356 | CODING_CATEGORY_MASK_ISO_8_1 \
357 | CODING_CATEGORY_MASK_ISO_8_2 \
358 | CODING_CATEGORY_MASK_ISO_ELSE \
359 | CODING_CATEGORY_MASK_BIG5)
360
361 /* Macros to decode or encode a character of JISX0208 in SJIS. S1 and
362 S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding
363 system. C1 and C2 are the 1st and 2nd position codes of Emacs'
364 internal format. */
365
366 #define DECODE_SJIS(s1, s2, c1, c2) \
367 do { \
368 if (s2 >= 0x9F) \
369 c1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \
370 c2 = s2 - 0x7E; \
371 else \
372 c1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \
373 c2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F); \
374 } while (0)
375
376 #define ENCODE_SJIS(c1, c2, s1, s2) \
377 do { \
378 if (c1 & 1) \
379 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x71 : 0xB1), \
380 s2 = c2 + ((c2 >= 0x60) ? 0x20 : 0x1F); \
381 else \
382 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x70 : 0xB0), \
383 s2 = c2 + 0x7E; \
384 } while (0)
385
386 /* Extern declarations. */
387 extern int decode_coding (), encode_coding ();
388 extern int decoding_buffer_size (), encoding_buffer_size ();
389 extern int conversion_buffer_size;
390 extern char *conversion_buffer, *get_conversion_buffer ();
391 extern Lisp_Object Fcheck_coding_system ();
392 extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index;
393 extern Lisp_Object Qbuffer_file_coding_system;
394 extern Lisp_Object Vcoding_category_list;
395
396 /* Mnemonic character to indicate each type of end-of-line. */
397 extern int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac;
398 /* Mnemonic character to indicate type of end-of-line is not yet decided. */
399 extern int eol_mnemonic_undecided;
400
401 /* Table of coding-systems currently assigned to each coding-category. */
402 extern Lisp_Object coding_category_table[CODING_CATEGORY_IDX_MAX];
403 /* Table of names of symbol for each coding-category. */
404 extern char *coding_category_name[CODING_CATEGORY_IDX_MAX];
405
406 #ifdef emacs
407 extern Lisp_Object Qfile_coding_system;
408 extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument;
409 extern Lisp_Object Qstart_process, Qopen_network_stream;
410
411 /* Coding-system for reading files and receiving data from process. */
412 extern Lisp_Object Vcoding_system_for_read;
413 /* Coding-system for writing files and sending data to process. */
414 extern Lisp_Object Vcoding_system_for_write;
415 /* Coding-system actually used in the latest I/O. */
416 extern Lisp_Object Vlast_coding_system_used;
417
418 /* Coding-system to be used for encoding terminal output. This
419 structure contains information of a coding-system specified by the
420 function `set-terminal-coding-system'. */
421 extern struct coding_system terminal_coding;
422
423 /* Coding-system of what is sent from terminal keyboard. This
424 structure contains information of a coding-system specified by the
425 function `set-keyboard-coding-system'. */
426 extern struct coding_system keyboard_coding;
427
428 /* Default coding systems used for process I/O. */
429 extern Lisp_Object Vdefault_process_coding_system;
430
431 #endif
432
433 #endif /* _CODING_H */