* process.h (PSET): Remove.
[emacs.git] / src / ccl.h
blob71139175be5e8b0071b1be8c1267a5c795b2f494
1 /* Header for CCL (Code Conversion Language) interpreter.
2 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H14PRO021
6 Copyright (C) 2003
7 National Institute of Advanced Industrial Science and Technology (AIST)
8 Registration Number H13PRO009
10 This file is part of GNU Emacs.
12 GNU Emacs is free software: you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation, either version 3 of the License, or
15 (at your option) any later version.
17 GNU Emacs is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 #ifndef EMACS_CCL_H
27 #define EMACS_CCL_H
29 /* Macros for exit status of CCL program. */
30 #define CCL_STAT_SUCCESS 0 /* Terminated successfully. */
31 #define CCL_STAT_SUSPEND_BY_SRC 1 /* Terminated by empty input. */
32 #define CCL_STAT_SUSPEND_BY_DST 2 /* Terminated by output buffer full. */
33 #define CCL_STAT_INVALID_CMD 3 /* Terminated because of invalid
34 command. */
35 #define CCL_STAT_QUIT 4 /* Terminated because of quit. */
37 /* Structure to hold information about running CCL code. Read
38 comments in the file ccl.c for the detail of each field. */
39 struct ccl_program {
40 ptrdiff_t idx; /* Index number of the CCL program.
41 -1 means that the program was given
42 by a vector, not by a program
43 name. */
44 int size; /* Size of the compiled code. */
45 Lisp_Object *prog; /* Pointer into the compiled code. */
46 int ic; /* Instruction Counter (index for PROG). */
47 int eof_ic; /* Instruction Counter for end-of-file
48 processing code. */
49 int reg[8]; /* CCL registers, reg[7] is used for
50 condition flag of relational
51 operations. */
52 int private_state; /* CCL instruction may use this
53 for private use, mainly for saving
54 internal states on suspending.
55 This variable is set to 0 when ccl is
56 set up. */
57 int last_block; /* Set to 1 while processing the last
58 block. */
59 int status; /* Exit status of the CCL program. */
60 int buf_magnification; /* Output buffer magnification. How
61 many times bigger the output buffer
62 should be than the input buffer. */
63 int stack_idx; /* How deep the call of CCL_Call is nested. */
64 int src_multibyte; /* 1 if the input buffer is multibyte. */
65 int dst_multibyte; /* 1 if the output buffer is multibyte. */
66 int cr_consumed; /* Flag for encoding DOS-like EOL
67 format when the CCL program is used
68 for encoding by a coding
69 system. */
70 int consumed;
71 int produced;
72 int suppress_error; /* If nonzero, don't insert error
73 message in the output. */
74 int eight_bit_control; /* If nonzero, ccl_driver counts all
75 eight-bit-control bytes written by
76 CCL_WRITE_CHAR. After execution,
77 if no such byte is written, set
78 this value to zero. */
79 int quit_silently; /* If nonzero, don't append "CCL:
80 Quitted" to the generated text when
81 CCL program is quitted. */
84 /* This data type is used for the spec field of the structure
85 coding_system. */
87 struct ccl_spec {
88 struct ccl_program ccl;
89 int cr_carryover; /* CR carryover flag. */
90 unsigned char eight_bit_carryover[MAX_MULTIBYTE_LENGTH];
93 #define CODING_SPEC_CCL_PROGRAM(coding) ((coding)->spec.ccl.ccl)
95 /* Setup fields of the structure pointed by CCL appropriately for the
96 execution of ccl program CCL_PROG (symbol or vector). */
97 extern int setup_ccl_program (struct ccl_program *, Lisp_Object);
99 extern void ccl_driver (struct ccl_program *, int *, int *, int, int,
100 Lisp_Object);
102 extern Lisp_Object Qccl, Qcclp;
104 #define CHECK_CCL_PROGRAM(x) \
105 do { \
106 if (NILP (Fccl_program_p (x))) \
107 wrong_type_argument (Qcclp, (x)); \
108 } while (0);
110 #endif /* EMACS_CCL_H */