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