1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00
emacs/src/coding.h

687 lines
26 KiB
C
Raw Normal View History

1997-02-20 07:02:49 +00:00
/* Header for coding system handler.
1997-06-20 06:30:29 +00:00
Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN.
Licensed to the Free Software Foundation.
1997-02-20 07:02:49 +00:00
1997-02-23 09:20:52 +00:00
This file is part of GNU Emacs.
GNU Emacs is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
1997-02-20 07:02:49 +00:00
1997-02-23 09:20:52 +00:00
GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
1997-02-20 07:02:49 +00:00
1997-02-23 09:20:52 +00:00
You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
1997-02-20 07:02:49 +00:00
#ifndef _CODING_H
#define _CODING_H
#ifndef _CCL_H
#include "ccl.h"
1997-02-20 07:02:49 +00:00
#endif
/*** EMACS' INTERNAL FORMAT (emacs-mule) section ***/
1997-02-20 07:02:49 +00:00
/* All code (1-byte) of Emacs' internal format is classified into one
of the followings. See also `charset.h'. */
enum emacs_code_class_type
{
EMACS_control_code, /* Control codes in the range
0x00..0x1F and 0x7F except for the
following two codes. */
EMACS_linefeed_code, /* 0x0A (linefeed) to denote
end-of-line. */
EMACS_carriage_return_code, /* 0x0D (carriage-return) to be used
in selective display mode. */
EMACS_ascii_code, /* ASCII characters. */
EMACS_leading_code_2, /* Base leading code of official
TYPE9N character. */
EMACS_leading_code_3, /* Base leading code of private TYPE9N
or official TYPE9Nx9N character. */
EMACS_leading_code_4, /* Base leading code of private
TYPE9Nx9N character. */
EMACS_invalid_code /* Invalid code, i.e. a base leading
code not yet assigned to any
charset, or a code of the range
0xA0..0xFF. */
};
extern enum emacs_code_class_type emacs_code_class[256];
/*** ISO2022 section ***/
/* Macros to define code of control characters for ISO2022's functions. */
/* code */ /* function */
#define ISO_CODE_LF 0x0A /* line-feed */
#define ISO_CODE_CR 0x0D /* carriage-return */
#define ISO_CODE_SO 0x0E /* shift-out */
#define ISO_CODE_SI 0x0F /* shift-in */
#define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */
#define ISO_CODE_ESC 0x1B /* escape */
#define ISO_CODE_SS2 0x8E /* single-shift-2 */
#define ISO_CODE_SS3 0x8F /* single-shift-3 */
#define ISO_CODE_CSI 0x9B /* control-sequence-introduce */
/* All code (1-byte) of ISO2022 is classified into one of the
followings. */
enum iso_code_class_type
{
ISO_control_0, /* Control codes in the range
0x00..0x1F and 0x7F, except for the
following 5 codes. */
1997-02-20 07:02:49 +00:00
ISO_carriage_return, /* ISO_CODE_CR (0x0D) */
ISO_shift_out, /* ISO_CODE_SO (0x0E) */
ISO_shift_in, /* ISO_CODE_SI (0x0F) */
ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */
ISO_escape, /* ISO_CODE_SO (0x1B) */
ISO_control_1, /* Control codes in the range
0x80..0x9F, except for the
following 3 codes. */
1997-02-20 07:02:49 +00:00
ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */
ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */
ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */
ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */
ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */
ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */
ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */
};
/** The macros CODING_FLAG_ISO_XXX defines a flag bit of the `flags'
element in the structure `coding_system'. This information is used
while encoding a text to ISO2022. **/
/* If set, produce short-form designation sequence (e.g. ESC $ A)
instead of long-form sequence (e.g. ESC $ ( A). */
#define CODING_FLAG_ISO_SHORT_FORM 0x0001
/* If set, reset graphic planes and registers at end-of-line to the
initial state. */
#define CODING_FLAG_ISO_RESET_AT_EOL 0x0002
/* If set, reset graphic planes and registers before any control
characters to the initial state. */
#define CODING_FLAG_ISO_RESET_AT_CNTL 0x0004
/* If set, encode by 7-bit environment. */
#define CODING_FLAG_ISO_SEVEN_BITS 0x0008
/* If set, use locking-shift function. */
#define CODING_FLAG_ISO_LOCKING_SHIFT 0x0010
/* If set, use single-shift function. Overwrite
CODING_FLAG_ISO_LOCKING_SHIFT. */
#define CODING_FLAG_ISO_SINGLE_SHIFT 0x0020
/* If set, designate JISX0201-Roman instead of ASCII. */
#define CODING_FLAG_ISO_USE_ROMAN 0x0040
/* If set, designate JISX0208-1978 instead of JISX0208-1983. */
#define CODING_FLAG_ISO_USE_OLDJIS 0x0080
/* If set, do not produce ISO6429's direction specifying sequence. */
#define CODING_FLAG_ISO_NO_DIRECTION 0x0100
/* If set, assume designation states are reset at beginning of line on
output. */
#define CODING_FLAG_ISO_INIT_AT_BOL 0x0200
/* If set, designation sequence should be placed at beginning of line
on output. */
#define CODING_FLAG_ISO_DESIGNATE_AT_BOL 0x0400
/* If set, do not encode unsafe charactes on output. */
#define CODING_FLAG_ISO_SAFE 0x0800
/* If set, extra latin codes (128..159) are accepted as a valid code
on input. */
#define CODING_FLAG_ISO_LATIN_EXTRA 0x1000
/* If set, use designation escape sequence. */
#define CODING_FLAG_ISO_DESIGNATION 0x10000
/* A character to be produced on output if encoding of the original
character is prohibited by CODING_FLAG_ISO_SAFE. */
#define CODING_INHIBIT_CHARACTER_SUBSTITUTION 077 /* 077 == `?' */
1997-02-20 07:02:49 +00:00
/* Structure of the field `spec.iso2022' in the structure `coding_system'. */
struct iso2022_spec
{
/* The current graphic register invoked to each graphic plane. */
int current_invocation[2];
/* The current charset designated to each graphic register. */
int current_designation[4];
/* A charset initially designated to each graphic register. */
int initial_designation[4];
/* If not -1, it is a graphic register specified in an invalid
designation sequence. */
int last_invalid_designation_register;
1997-02-20 07:02:49 +00:00
/* A graphic register to which each charset should be designated. */
unsigned char requested_designation[MAX_CHARSET + 1];
1997-02-20 07:02:49 +00:00
/* A revision number to be specified for each charset on encoding.
The value 255 means no revision number for the corresponding
charset. */
unsigned char charset_revision_number[MAX_CHARSET + 1];
1997-02-20 07:02:49 +00:00
/* Set to 1 temporarily only when graphic register 2 or 3 is invoked
by single-shift while encoding. */
int single_shifting;
/* Set to 1 temporarily only when processing at beginning of line. */
int bol;
1997-02-20 07:02:49 +00:00
};
/* Macros to access each field in the structure `spec.iso2022'. */
#define CODING_SPEC_ISO_INVOCATION(coding, plane) \
(coding)->spec.iso2022.current_invocation[plane]
1997-02-20 07:02:49 +00:00
#define CODING_SPEC_ISO_DESIGNATION(coding, reg) \
(coding)->spec.iso2022.current_designation[reg]
1997-02-20 07:02:49 +00:00
#define CODING_SPEC_ISO_INITIAL_DESIGNATION(coding, reg) \
(coding)->spec.iso2022.initial_designation[reg]
1997-02-20 07:02:49 +00:00
#define CODING_SPEC_ISO_REQUESTED_DESIGNATION(coding, charset) \
(coding)->spec.iso2022.requested_designation[charset]
#define CODING_SPEC_ISO_REVISION_NUMBER(coding, charset) \
(coding)->spec.iso2022.charset_revision_number[charset]
1997-02-20 07:02:49 +00:00
#define CODING_SPEC_ISO_SINGLE_SHIFTING(coding) \
(coding)->spec.iso2022.single_shifting
#define CODING_SPEC_ISO_BOL(coding) \
(coding)->spec.iso2022.bol
1997-02-20 07:02:49 +00:00
/* A value which may appear in
coding->spec.iso2022.requested_designation indicating that the
corresponding charset does not request any graphic register to be
designated. */
#define CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION 4
1997-02-20 07:02:49 +00:00
/* Return a charset which is currently designated to the graphic plane
PLANE in the coding-system CODING. */
#define CODING_SPEC_ISO_PLANE_CHARSET(coding, plane) \
((CODING_SPEC_ISO_INVOCATION (coding, plane) < 0) \
? -1 \
: CODING_SPEC_ISO_DESIGNATION (coding, \
CODING_SPEC_ISO_INVOCATION (coding, plane)))
1997-02-20 07:02:49 +00:00
/*** BIG5 section ***/
/* Macros to denote each type of BIG5 coding system. */
#define CODING_FLAG_BIG5_HKU 0x00 /* BIG5-HKU is one of variants of
BIG5 developed by Hong Kong
University. */
#define CODING_FLAG_BIG5_ETEN 0x01 /* BIG5_ETen is one of variants
of BIG5 developed by the
company ETen in Taiwan. */
/*** GENERAL section ***/
/* Types of coding system. */
enum coding_type
{
coding_type_no_conversion, /* A coding system which requires no
conversion for reading and writing
including end-of-line format. */
coding_type_emacs_mule, /* A coding system used in Emacs'
1997-02-20 07:02:49 +00:00
buffer and string. Requires no
conversion for reading and writing
except for end-of-line format. */
coding_type_undecided, /* A coding system which requires
1997-02-20 07:02:49 +00:00
automatic detection of a real
coding system. */
coding_type_sjis, /* SJIS coding system for Japanese. */
coding_type_iso2022, /* Any coding system of ISO2022
variants. */
coding_type_big5, /* BIG5 coding system for Chinese. */
coding_type_ccl, /* The coding system of which decoder
1997-02-20 07:02:49 +00:00
and encoder are written in CCL. */
coding_type_raw_text /* A coding system for a text
containing ramdom 8-bit code which
does not require code conversion
except for end-of-line format. */
1997-02-20 07:02:49 +00:00
};
/* Formats of end-of-line. */
#define CODING_EOL_LF 0 /* Line-feed only, same as Emacs'
internal format. */
#define CODING_EOL_CRLF 1 /* Sequence of carriage-return and
line-feed. */
#define CODING_EOL_CR 2 /* Carriage-return only. */
#define CODING_EOL_UNDECIDED 3 /* This value is used to denote the
1997-02-20 07:02:49 +00:00
eol-type is not yet decided. */
#define CODING_EOL_INCONSISTENT 4 /* This value is used to denote the
eol-type is not consistent
through the file. */
1997-02-20 07:02:49 +00:00
/* 1 iff composing. */
#define COMPOSING_P(coding) ((int) coding->composing > (int) COMPOSITION_NO)
#define COMPOSITION_DATA_SIZE 4080
#define COMPOSITION_DATA_MAX_BUNCH_LENGTH (4 + MAX_COMPOSITION_COMPONENTS*2)
/* Data structure to hold information about compositions of text that
is being decoded or encode. ISO 2022 base code conversion routines
handle special ESC sequences for composition specification. But,
they can't get/put such information directly from/to a buffer in
the deepest place. So, they store or retrieve the information
through this structure.
The encoder stores the information in this structure when it meets
ESC sequences for composition while encoding codes, then, after all
text codes are encoded, puts `composition' properties on the text
by refering the structure.
The decoder at first stores the information of a text to be
decoded, then, while decoding codes, generates ESC sequences for
composition at proper places by refering the structure. */
struct composition_data
{
/* The character position of the first character to be encoded or
decoded. START and END (see below) are relative to this
position. */
int char_offset;
/* The composition data. These elements are repeated for each
composition:
LENGTH START END METHOD [ COMPONENT ... ]
where,
LENGTH is the number of elements for this composition.
START and END are starting and ending character positions of
the composition relative to `char_offset'.
METHOD is one of `enum cmposing_status' specifying the way of
composition.
COMPONENT is a character or an encoded composition rule. */
int data[COMPOSITION_DATA_SIZE];
/* The number of elements in `data' currently used. */
int used;
/* Pointers to the previous and next structures. When `data' is
filled up, another structure is allocated and linked in `next'.
The new struture has backward link to this struture in `prev'.
The number of chaind structures depends on how many compositions
the text being encoded or decoded contains. */
struct composition_data *prev, *next;
};
1997-02-20 07:02:49 +00:00
/* Macros used for the member finish_status of the struct
coding_system. */
#define CODING_FINISH_NORMAL 0
#define CODING_FINISH_INSUFFICIENT_SRC 1
#define CODING_FINISH_INSUFFICIENT_DST 2
#define CODING_FINISH_INCONSISTENT_EOL 3
#define CODING_FINISH_INSUFFICIENT_CMP 4
#define CODING_FINISH_INTERRUPT 5
1998-03-03 01:29:16 +00:00
/* Macros used for the member `mode' of the struct coding_system. */
/* If set, recover the original CR or LF of the already decoded text
when the decoding routine encounters an inconsistent eol format. */
#define CODING_MODE_INHIBIT_INCONSISTENT_EOL 0x01
/* If set, the decoding/encoding routines treat the current data as
the last block of the whole text to be converted, and do
appropriate fisishing job. */
#define CODING_MODE_LAST_BLOCK 0x02
/* If set, it means that the current source text is in a buffer which
enables selective display. */
#define CODING_MODE_SELECTIVE_DISPLAY 0x04
/* This flag is used by the decoding/encoding routines on the fly. If
set, it means that right-to-left text is being processed. */
#define CODING_MODE_DIRECTION 0x08
1997-02-20 07:02:49 +00:00
struct coding_system
{
/* Type of the coding system. */
enum coding_type type;
/* Type of end-of-line format (LF, CRLF, or CR) of the coding system. */
int eol_type;
/* Flag bits of the coding system. The meaning of each bit is common
to all types of coding systems. */
unsigned int common_flags;
1997-02-20 07:02:49 +00:00
/* Flag bits of the coding system. The meaning of each bit depends
on the type of the coding system. */
unsigned int flags;
/* Mode bits of the coding system. See the comments of the macros
CODING_MODE_XXX. */
unsigned int mode;
1997-02-20 07:02:49 +00:00
/* Table of safe character sets for this coding system. If the Nth
element is 0, the charset of ID N is not a safe character set.
Such a character set is not encoded when CODING_ISO_FLAG_SAFE is
set. */
unsigned char safe_charsets[MAX_CHARSET + 1];
/* The current status of composition handling. */
1997-02-20 07:02:49 +00:00
int composing;
/* 1 iff the next character is a composition rule. */
int composition_rule_follows;
/* Information of compositions are stored here on decoding and set
in advance on encoding. */
struct composition_data *cmp_data;
/* Index to cmp_data->data for the first element for the current
composition. */
int cmp_data_start;
/* Index to cmp_data->data for the current element for the current
composition. */
int cmp_data_index;
1997-02-20 07:02:49 +00:00
/* Detailed information specific to each type of coding system. */
union spec
{
struct iso2022_spec iso2022;
struct ccl_spec ccl; /* Defined in ccl.h. */
} spec;
/* Index number of coding category of the coding system. */
int category_idx;
/* The following two members specify how characters 128..159 are
represented in source and destination text respectively. 1 means
they are represented by 2-byte sequence, 0 means they are
represented by 1-byte as is (see the comment in charset.h). */
unsigned src_multibyte : 1;
unsigned dst_multibyte : 1;
/* How may heading bytes we can skip for decoding. This is set to
-1 in setup_coding_system, and updated by detect_coding. So,
when this is equal to the byte length of the text being
converted, we can skip the actual conversion process. */
int heading_ascii;
/* The following members are set by encoding/decoding routine. */
int produced, produced_char, consumed, consumed_char;
/* Number of error source data found in a decoding routine. */
int errors;
/* Finish status of code conversion. It should be one of macros
CODING_FINISH_XXXX. */
int result;
/* The following members are all Lisp symbols. We don't have to
protect them from GC because the current garbage collection
doesn't relocate Lisp symbols. But, when it is changed, we must
find a way to protect them. */
1997-02-20 07:02:49 +00:00
/* Backward pointer to the Lisp symbol of the coding system. */
Lisp_Object symbol;
/* Lisp function (symbol) to be called after decoding to do
additional conversion, or nil. */
1997-02-20 07:02:49 +00:00
Lisp_Object post_read_conversion;
/* Lisp function (symbol) to be called before encoding to do
additional conversion, or nil. */
1997-02-20 07:02:49 +00:00
Lisp_Object pre_write_conversion;
/* Character translation tables to look up, or nil. */
Lisp_Object translation_table_for_decode;
Lisp_Object translation_table_for_encode;
1997-02-20 07:02:49 +00:00
};
#define CODING_REQUIRE_FLUSHING_MASK 1
#define CODING_REQUIRE_DECODING_MASK 2
#define CODING_REQUIRE_ENCODING_MASK 4
#define CODING_REQUIRE_DETECTION_MASK 8
/* Return 1 if the coding system CODING requires specific code to be
attached at the tail of converted text. */
#define CODING_REQUIRE_FLUSHING(coding) \
((coding)->common_flags & CODING_REQUIRE_FLUSHING_MASK)
/* Return 1 if the coding system CODING requires code conversion on
decoding. */
#define CODING_REQUIRE_DECODING(coding) \
((coding)->dst_multibyte \
|| (coding)->common_flags & CODING_REQUIRE_DECODING_MASK)
/* Return 1 if the coding system CODING requires code conversion on
encoding. */
#define CODING_REQUIRE_ENCODING(coding) \
((coding)->src_multibyte \
|| (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK)
/* Return 1 if the coding system CODING requires some kind of code
detection. */
#define CODING_REQUIRE_DETECTION(coding) \
((coding)->common_flags & CODING_REQUIRE_DETECTION_MASK)
/* Return 1 if the coding system CODING requires code conversion on
decoding or some kind of code detection. */
#define CODING_MAY_REQUIRE_DECODING(coding) \
(CODING_REQUIRE_DECODING (coding) \
|| CODING_REQUIRE_DETECTION (coding))
1997-02-20 07:02:49 +00:00
/* Index for each coding category in `coding_category_table' */
#define CODING_CATEGORY_IDX_EMACS_MULE 0
1997-02-20 07:02:49 +00:00
#define CODING_CATEGORY_IDX_SJIS 1
#define CODING_CATEGORY_IDX_ISO_7 2
#define CODING_CATEGORY_IDX_ISO_7_TIGHT 3
#define CODING_CATEGORY_IDX_ISO_8_1 4
#define CODING_CATEGORY_IDX_ISO_8_2 5
#define CODING_CATEGORY_IDX_ISO_7_ELSE 6
#define CODING_CATEGORY_IDX_ISO_8_ELSE 7
#define CODING_CATEGORY_IDX_CCL 8
#define CODING_CATEGORY_IDX_BIG5 9
#define CODING_CATEGORY_IDX_UTF_8 10
#define CODING_CATEGORY_IDX_UTF_16_BE 11
#define CODING_CATEGORY_IDX_UTF_16_LE 12
#define CODING_CATEGORY_IDX_RAW_TEXT 13
#define CODING_CATEGORY_IDX_BINARY 14
#define CODING_CATEGORY_IDX_MAX 15
1997-02-20 07:02:49 +00:00
/* Definitions of flag bits returned by the function
detect_coding_mask (). */
#define CODING_CATEGORY_MASK_EMACS_MULE (1 << CODING_CATEGORY_IDX_EMACS_MULE)
1997-02-20 07:02:49 +00:00
#define CODING_CATEGORY_MASK_SJIS (1 << CODING_CATEGORY_IDX_SJIS)
#define CODING_CATEGORY_MASK_ISO_7 (1 << CODING_CATEGORY_IDX_ISO_7)
#define CODING_CATEGORY_MASK_ISO_7_TIGHT (1 << CODING_CATEGORY_IDX_ISO_7_TIGHT)
1997-02-20 07:02:49 +00:00
#define CODING_CATEGORY_MASK_ISO_8_1 (1 << CODING_CATEGORY_IDX_ISO_8_1)
#define CODING_CATEGORY_MASK_ISO_8_2 (1 << CODING_CATEGORY_IDX_ISO_8_2)
#define CODING_CATEGORY_MASK_ISO_7_ELSE (1 << CODING_CATEGORY_IDX_ISO_7_ELSE)
#define CODING_CATEGORY_MASK_ISO_8_ELSE (1 << CODING_CATEGORY_IDX_ISO_8_ELSE)
#define CODING_CATEGORY_MASK_CCL (1 << CODING_CATEGORY_IDX_CCL)
1997-02-20 07:02:49 +00:00
#define CODING_CATEGORY_MASK_BIG5 (1 << CODING_CATEGORY_IDX_BIG5)
#define CODING_CATEGORY_MASK_UTF_8 (1 << CODING_CATEGORY_IDX_UTF_8)
#define CODING_CATEGORY_MASK_UTF_16_BE (1 << CODING_CATEGORY_IDX_UTF_16_BE)
#define CODING_CATEGORY_MASK_UTF_16_LE (1 << CODING_CATEGORY_IDX_UTF_16_LE)
1997-09-02 20:56:22 +00:00
#define CODING_CATEGORY_MASK_RAW_TEXT (1 << CODING_CATEGORY_IDX_RAW_TEXT)
#define CODING_CATEGORY_MASK_BINARY (1 << CODING_CATEGORY_IDX_BINARY)
1997-02-20 07:02:49 +00:00
/* This value is returned if detect_coding_mask () find nothing other
than ASCII characters. */
#define CODING_CATEGORY_MASK_ANY \
( CODING_CATEGORY_MASK_EMACS_MULE \
1997-02-20 07:02:49 +00:00
| CODING_CATEGORY_MASK_SJIS \
| CODING_CATEGORY_MASK_ISO_7 \
| CODING_CATEGORY_MASK_ISO_7_TIGHT \
1997-02-20 07:02:49 +00:00
| CODING_CATEGORY_MASK_ISO_8_1 \
| CODING_CATEGORY_MASK_ISO_8_2 \
| CODING_CATEGORY_MASK_ISO_7_ELSE \
| CODING_CATEGORY_MASK_ISO_8_ELSE \
| CODING_CATEGORY_MASK_CCL \
| CODING_CATEGORY_MASK_BIG5 \
| CODING_CATEGORY_MASK_UTF_8 \
| CODING_CATEGORY_MASK_UTF_16_BE \
| CODING_CATEGORY_MASK_UTF_16_LE)
1997-02-20 07:02:49 +00:00
#define CODING_CATEGORY_MASK_ISO_7BIT \
(CODING_CATEGORY_MASK_ISO_7 | CODING_CATEGORY_MASK_ISO_7_TIGHT)
#define CODING_CATEGORY_MASK_ISO_8BIT \
(CODING_CATEGORY_MASK_ISO_8_1 | CODING_CATEGORY_MASK_ISO_8_2)
#define CODING_CATEGORY_MASK_ISO_SHIFT \
(CODING_CATEGORY_MASK_ISO_7_ELSE | CODING_CATEGORY_MASK_ISO_8_ELSE)
#define CODING_CATEGORY_MASK_ISO \
( CODING_CATEGORY_MASK_ISO_7BIT \
| CODING_CATEGORY_MASK_ISO_SHIFT \
| CODING_CATEGORY_MASK_ISO_8BIT)
#define CODING_CATEGORY_MASK_UTF_16_BE_LE \
(CODING_CATEGORY_MASK_UTF_16_BE | CODING_CATEGORY_MASK_UTF_16_LE)
1997-02-20 07:02:49 +00:00
/* Macros to decode or encode a character of JISX0208 in SJIS. S1 and
S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding
system. C1 and C2 are the 1st and 2nd position codes of Emacs'
internal format. */
#define DECODE_SJIS(s1, s2, c1, c2) \
do { \
if (s2 >= 0x9F) \
c1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \
c2 = s2 - 0x7E; \
else \
c1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \
c2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F); \
} while (0)
#define ENCODE_SJIS(c1, c2, s1, s2) \
do { \
if (c1 & 1) \
s1 = c1 / 2 + ((c1 < 0x5F) ? 0x71 : 0xB1), \
s2 = c2 + ((c2 >= 0x60) ? 0x20 : 0x1F); \
else \
s1 = c1 / 2 + ((c1 < 0x5F) ? 0x70 : 0xB0), \
s2 = c2 + 0x7E; \
} while (0)
/* Encode the file name NAME using the specified coding system
for file names, if any. */
#define ENCODE_FILE(name) \
(! NILP (Vfile_name_coding_system) \
&& XFASTINT (Vfile_name_coding_system) != 0 \
? code_convert_string_norecord (name, Vfile_name_coding_system, 1) \
: (! NILP (Vdefault_file_name_coding_system) \
&& XFASTINT (Vdefault_file_name_coding_system) != 0 \
? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 1) \
: name))
/* Decode the file name NAME using the specified coding system
for file names, if any. */
#define DECODE_FILE(name) \
(! NILP (Vfile_name_coding_system) \
&& XFASTINT (Vfile_name_coding_system) != 0 \
? code_convert_string_norecord (name, Vfile_name_coding_system, 0) \
: (! NILP (Vdefault_file_name_coding_system) \
&& XFASTINT (Vdefault_file_name_coding_system) != 0 \
? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 0) \
: name))
1997-02-20 07:02:49 +00:00
/* Extern declarations. */
extern int decode_coding P_ ((struct coding_system *, unsigned char *,
unsigned char *, int, int));
extern int encode_coding P_ ((struct coding_system *, unsigned char *,
unsigned char *, int, int));
extern void coding_save_composition P_ ((struct coding_system *, int, int,
Lisp_Object));
extern void coding_free_composition_data P_ ((struct coding_system *));
extern void coding_adjust_composition_offset P_ ((struct coding_system *,
int));
extern void coding_allocate_composition_data P_ ((struct coding_system *,
int));
extern void coding_restore_composition P_ ((struct coding_system *,
Lisp_Object));
1998-04-14 12:33:47 +00:00
extern int code_convert_region P_ ((int, int, int, int, struct coding_system *,
int, int));
extern int decoding_buffer_size P_ ((struct coding_system *, int));
extern int encoding_buffer_size P_ ((struct coding_system *, int));
extern void detect_coding P_ ((struct coding_system *, unsigned char *, int));
extern void detect_eol P_ ((struct coding_system *, unsigned char *, int));
1997-02-20 07:02:49 +00:00
extern int conversion_buffer_size;
extern char *conversion_buffer;
extern char *get_conversion_buffer P_ ((int));
extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *));
extern Lisp_Object code_convert_string P_ ((Lisp_Object,
struct coding_system *, int, int));
extern void setup_raw_text_coding_system P_ ((struct coding_system *));
1997-02-20 07:02:49 +00:00
extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index;
1998-06-26 04:14:52 +00:00
extern Lisp_Object Qraw_text, Qemacs_mule;
1997-02-20 07:02:49 +00:00
extern Lisp_Object Qbuffer_file_coding_system;
extern Lisp_Object Vcoding_category_list;
extern Lisp_Object Qtranslation_table;
extern Lisp_Object Qtranslation_table_id;
/* Mnemonic strings to indicate each type of end-of-line. */
extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac;
/* Mnemonic string to indicate type of end-of-line is not yet decided. */
extern Lisp_Object eol_mnemonic_undecided;
1997-02-20 07:02:49 +00:00
#ifdef emacs
extern Lisp_Object Qfile_coding_system;
extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument;
extern Lisp_Object Qstart_process, Qopen_network_stream;
Add support for large files, 64-bit Solaris, system locale codings. * Makefile.in (emacs): Set the LC_ALL environment variable to "C" when dumping, so that the dumped Emacs doesn't have stray locale info. (dired.o): Depend on systime.h. (editfns.o): Depend on coding.h. * alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c, dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c, keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c, unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c, w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Include <config.h> before any system include files. * alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c, m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Do not include <stdlib.h>, as <config.h> does this now. * callproc.c (Fcall_process): Synchronize messages locale before invoking strerror. Decode resulting string with locale-coding-system. * coding.c (Vlocale_coding_system): New var. (syms_of_coding): Adjust to above change. (emacs_strerror): New function. * coding.h (emacs_strerror, Vlocale_coding_system): New decls. * config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING, HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN, HAVE_STRSIGNAL): New macros. (BITS_PER_LONG): Default to 64 if _LP64 is defined. <stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't. * dired.c: Include "systime.h". (Ffile_attributes): Do not cast s.st_size to int; this loses information if int is 32 bits but st_size and EMACS_INT are larger. Treat large device numbers like large inode numbers. * dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available. * editfns.c: Include coding.h. (emacs_strftime): Remove decl. (emacs_strftimeu): New decl. (emacs_memftimeu): Renamed from emacs_memftime; new arg UT. Use emacs_strftimeu instead of emacs_strftime. (Fformat_time_string): Convert format string using Vlocale_coding_system, and convert result back. Synchronize time locale before invoking lower level function. Invoke emacs_memftimeu, passing ut, instead of emacs_memftime. * emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined. (Vmessages_locale, Vprevious_messages_locale, Vtime_locale, Vprevious_time_locale): New variables. (main): Invoke setlocale early, so that initial error messages are localized properly. But skip locale-setting if LC_ALL is "C". Fix up locale when it's safe to do so. (fixup_locale): Moved here from xterm.c. (synchronize_locale, synchronize_time_locale, synchronize_messages_locale): New functions. (syms_of_emacs): Accommodate above changes. * fileio.c (report_file_error): Convert strerror output according to Vlocale_coding_system. (Finsert_file_contents): Check for arithmetic overflow in computations that depend on file size. Report IO errors with emacs_strerror, not strerror. * fns.c (Fgethash): Declare dflt parameter. * gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H is defined; that's config.h's job. * lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64, default these values to long, BITS_PER_LONG, and unsigned long. (VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT. (PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int. (code_convert_string_norecord, fixup_locale, synchronize_messages_locale, synchronize_time_locale, emacs_open, emacs_close, emacs_read, emacs_write): New decls. All Emacs callers of open, close, read, write changed to use emacs_open, emacs_close, emacs_read, emacs_write. * lread.c (file_offset, file_tell): New macros. All uses of ftell changed to file_tell. (saved_doc_string_position, prev_saved_doc_string_position): Now of type file_offset. (init_lread): Do not fix locale here; fixup_locale now does this. * m/amdahl.h, s/usg5-4.h: (NSIG): Remove. (NSIG_MINIMUM): New macro. * m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h, m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/umips.h, s/usg5-4.h: (SIGIO): Do not undef. (BROKEN_SIGIO): New macro. * m/ustation.h: (SIGTSTP): Do not undef. (BROKEN_SIGTSTP): New macro. * s/gnu-linux.h: (SIGPOLL, SIGURG): Do not undef. (BROKEN_SIGPOLL, BROKEN_SIGURG): New macros. * s/ptx4.h: (SIGINFO): Do not undef. (BROKEN_SIGINFO): New macros. * m/delta.h, s/ptx.h, s/template.h: Doc fix. * mktime.c, strftime.c: Update to glibc 2.1.2 version, with some Emacs-related changes merged. * print.c (float_to_string): Prepend "-" to representation of a NaN if the NaN is negative. * process.c (sys_siglist): Omit if HAVE_STRSIGNAL. (wait_reading_process_input): Use emacs_strerror, not strerror. * process.c (status_message, sigchld_handler): Synchronize locale, then use strsignal istead of sys_siglist. * w32proc.c (sys_wait): Likewise. * s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h, s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h, s/usg5-3.h, s/xenix.h: (open, close, read, write, INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove. * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros. * sysdep.c (sys_read, sys_write, read, write, sys_close, close, sys_open, open): Remove. (emacs_open, emacs_close, emacs_read, emacs_write): Always define; the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO macros are no longer used. (emacs_open): Renamed from sys_open. Merge BSD4_1 version. (emacs_close): Renamed from sys_close. (emacs_read): Renamed from sys_read. (emacs_write): Renamed from sys_write. (sys_siglist): Do not declare if HAVE_STRSIGNAL. (dup2): Do not print error on failure; the real dup2 doesn't. (strsignal): New function, defined if !HAVE_STRSIGNAL. * syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO is defined. (SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise. (NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM. (strsignal): Declare if !HAVE_STRSIGNAL. * unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros. (ElfW): Define in terms of ElfExpandBitsW. * w32proc.c (sys_siglist): Remove decl. * xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply with ANSI C. (display_string): Declare face_string_pos arg. * xfns.c (Fx_show_tip): Declare timeout param. * xterm.c: No need to include locale.h. (x_alloc_lighter_color, x_setup_relief_color): Pass arg as double, not float, for compatibility with ANSI C. (fixup_locale): Move to emacs.c. (x_term_init): Do not setlocale or fixup locale; the main program does this now.
1999-10-19 07:25:11 +00:00
extern char *emacs_strerror P_ ((int));
1997-02-20 07:02:49 +00:00
/* Coding-system for reading files and receiving data from process. */
extern Lisp_Object Vcoding_system_for_read;
/* Coding-system for writing files and sending data to process. */
extern Lisp_Object Vcoding_system_for_write;
/* Coding-system actually used in the latest I/O. */
extern Lisp_Object Vlast_coding_system_used;
Add support for large files, 64-bit Solaris, system locale codings. * Makefile.in (emacs): Set the LC_ALL environment variable to "C" when dumping, so that the dumped Emacs doesn't have stray locale info. (dired.o): Depend on systime.h. (editfns.o): Depend on coding.h. * alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c, dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c, keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c, unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c, w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Include <config.h> before any system include files. * alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c, m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Do not include <stdlib.h>, as <config.h> does this now. * callproc.c (Fcall_process): Synchronize messages locale before invoking strerror. Decode resulting string with locale-coding-system. * coding.c (Vlocale_coding_system): New var. (syms_of_coding): Adjust to above change. (emacs_strerror): New function. * coding.h (emacs_strerror, Vlocale_coding_system): New decls. * config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING, HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN, HAVE_STRSIGNAL): New macros. (BITS_PER_LONG): Default to 64 if _LP64 is defined. <stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't. * dired.c: Include "systime.h". (Ffile_attributes): Do not cast s.st_size to int; this loses information if int is 32 bits but st_size and EMACS_INT are larger. Treat large device numbers like large inode numbers. * dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available. * editfns.c: Include coding.h. (emacs_strftime): Remove decl. (emacs_strftimeu): New decl. (emacs_memftimeu): Renamed from emacs_memftime; new arg UT. Use emacs_strftimeu instead of emacs_strftime. (Fformat_time_string): Convert format string using Vlocale_coding_system, and convert result back. Synchronize time locale before invoking lower level function. Invoke emacs_memftimeu, passing ut, instead of emacs_memftime. * emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined. (Vmessages_locale, Vprevious_messages_locale, Vtime_locale, Vprevious_time_locale): New variables. (main): Invoke setlocale early, so that initial error messages are localized properly. But skip locale-setting if LC_ALL is "C". Fix up locale when it's safe to do so. (fixup_locale): Moved here from xterm.c. (synchronize_locale, synchronize_time_locale, synchronize_messages_locale): New functions. (syms_of_emacs): Accommodate above changes. * fileio.c (report_file_error): Convert strerror output according to Vlocale_coding_system. (Finsert_file_contents): Check for arithmetic overflow in computations that depend on file size. Report IO errors with emacs_strerror, not strerror. * fns.c (Fgethash): Declare dflt parameter. * gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H is defined; that's config.h's job. * lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64, default these values to long, BITS_PER_LONG, and unsigned long. (VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT. (PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int. (code_convert_string_norecord, fixup_locale, synchronize_messages_locale, synchronize_time_locale, emacs_open, emacs_close, emacs_read, emacs_write): New decls. All Emacs callers of open, close, read, write changed to use emacs_open, emacs_close, emacs_read, emacs_write. * lread.c (file_offset, file_tell): New macros. All uses of ftell changed to file_tell. (saved_doc_string_position, prev_saved_doc_string_position): Now of type file_offset. (init_lread): Do not fix locale here; fixup_locale now does this. * m/amdahl.h, s/usg5-4.h: (NSIG): Remove. (NSIG_MINIMUM): New macro. * m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h, m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/umips.h, s/usg5-4.h: (SIGIO): Do not undef. (BROKEN_SIGIO): New macro. * m/ustation.h: (SIGTSTP): Do not undef. (BROKEN_SIGTSTP): New macro. * s/gnu-linux.h: (SIGPOLL, SIGURG): Do not undef. (BROKEN_SIGPOLL, BROKEN_SIGURG): New macros. * s/ptx4.h: (SIGINFO): Do not undef. (BROKEN_SIGINFO): New macros. * m/delta.h, s/ptx.h, s/template.h: Doc fix. * mktime.c, strftime.c: Update to glibc 2.1.2 version, with some Emacs-related changes merged. * print.c (float_to_string): Prepend "-" to representation of a NaN if the NaN is negative. * process.c (sys_siglist): Omit if HAVE_STRSIGNAL. (wait_reading_process_input): Use emacs_strerror, not strerror. * process.c (status_message, sigchld_handler): Synchronize locale, then use strsignal istead of sys_siglist. * w32proc.c (sys_wait): Likewise. * s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h, s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h, s/usg5-3.h, s/xenix.h: (open, close, read, write, INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove. * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros. * sysdep.c (sys_read, sys_write, read, write, sys_close, close, sys_open, open): Remove. (emacs_open, emacs_close, emacs_read, emacs_write): Always define; the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO macros are no longer used. (emacs_open): Renamed from sys_open. Merge BSD4_1 version. (emacs_close): Renamed from sys_close. (emacs_read): Renamed from sys_read. (emacs_write): Renamed from sys_write. (sys_siglist): Do not declare if HAVE_STRSIGNAL. (dup2): Do not print error on failure; the real dup2 doesn't. (strsignal): New function, defined if !HAVE_STRSIGNAL. * syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO is defined. (SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise. (NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM. (strsignal): Declare if !HAVE_STRSIGNAL. * unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros. (ElfW): Define in terms of ElfExpandBitsW. * w32proc.c (sys_siglist): Remove decl. * xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply with ANSI C. (display_string): Declare face_string_pos arg. * xfns.c (Fx_show_tip): Declare timeout param. * xterm.c: No need to include locale.h. (x_alloc_lighter_color, x_setup_relief_color): Pass arg as double, not float, for compatibility with ANSI C. (fixup_locale): Move to emacs.c. (x_term_init): Do not setlocale or fixup locale; the main program does this now.
1999-10-19 07:25:11 +00:00
/* Coding-system to use with system messages (e.g. strerror). */
extern Lisp_Object Vlocale_coding_system;
1997-02-20 07:02:49 +00:00
1998-04-15 15:48:45 +00:00
/* If non-zero, process buffer inherits the coding system used to decode
the subprocess output. */
extern int inherit_process_coding_system;
1997-02-20 07:02:49 +00:00
/* Coding-system to be used for encoding terminal output. This
structure contains information of a coding-system specified by the
function `set-terminal-coding-system'. */
extern struct coding_system terminal_coding;
/* Coding system to be used to encode text for terminal display when
terminal coding system is nil. */
extern struct coding_system safe_terminal_coding;
1997-02-20 07:02:49 +00:00
/* Coding-system of what is sent from terminal keyboard. This
structure contains information of a coding-system specified by the
function `set-keyboard-coding-system'. */
extern struct coding_system keyboard_coding;
/* Default coding system to be used to write a file. */
extern struct coding_system default_buffer_file_coding;
/* Default coding systems used for process I/O. */
extern Lisp_Object Vdefault_process_coding_system;
1997-02-20 07:02:49 +00:00
/* Function to call to force a user to force select a propert coding
system. */
extern Lisp_Object Vselect_safe_coding_system_function;
/* Coding system for file names, or nil if none. */
extern Lisp_Object Vfile_name_coding_system;
/* Coding system for file names used only when
Vfile_name_coding_system is nil. */
extern Lisp_Object Vdefault_file_name_coding_system;
1997-02-20 07:02:49 +00:00
#endif
#endif /* _CODING_H */