summaryrefslogtreecommitdiff
path: root/pcl/pcommand.h
blob: fe2d3e7e3306cf8ae6123519edcd0220509977fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/* Portions Copyright (C) 2001 artofcode LLC.
   Portions Copyright (C) 1996, 2001 Artifex Software Inc.
   Portions Copyright (C) 1988, 2000 Aladdin Enterprises.
   This software is based in part on the work of the Independent JPEG Group.
   All Rights Reserved.

   This software is distributed under license and may not be copied, modified
   or distributed except as expressly authorized under the terms of that
   license.  Refer to licensing information at http://www.artifex.com/ or
   contact Artifex Software, Inc., 101 Lucas Valley Road #110,
   San Rafael, CA  94903, (415)492-9861, for further information. */
/*$Id$ */

/* pcommand.h */
/* Definitions for PCL5 commands */

#ifndef pcommand_INCLUDED
#  define pcommand_INCLUDED

#include "memory_.h"
#include "gx.h"
#include "gserrors.h"

/* Define a PCL value (PCL command parameter). */
/* The 16+16 representation is required to match the PCL5 documentation. */
#if arch_sizeof_int == 4
typedef int int32;
typedef uint uint32;
#else
# if arch_sizeof_long == 4
typedef long int32;
typedef ulong uint32;
# endif
#endif

typedef enum {
  pcv_none = 0,
	/* The following masks merge together: */
  pcv_int = 1,
  pcv_float = 2,
  pcv_neg = 4,
  pcv_pos = 8
} pcl_value_type_t;
#define value_is_present(pv)\
  ((pv)->type != pcv_none)
#define value_is_float(pv)\
  ((pv)->type & pcv_float)
#define value_is_neg(pv)\
  ((pv)->type & pcv_neg)
#define value_is_signed(pv)\
  ((pv)->type & (pcv_neg | pcv_pos))
typedef struct pcl_value_s {
	pcl_value_type_t type;
	uint i;			/* integer part */
	float fraction;
} pcl_value_t;
#define value_set_uint(pv, ui)\
  ((pv)->type = pcv_int, (pv)->i = (ui))
#define value_set_float(pv, in, fr)\
  ((pv)->type = pcv_float, (pv)->i = (in), (pv)->fraction = (fr))
#define _vshift 16
typedef int32 pcl_fixed;	/* sign + 15 int + 16 fraction */
typedef uint32 pcl_ufixed;	/* 16 int + 16 fraction */
/* Get a command argument as an int, uint, or float. */
int int_value(const pcl_value_t *);
uint uint_value(const pcl_value_t *);
float float_value(const pcl_value_t *);

/* Convert a 32-bit IEEE float to the local representation. */
float word2float(uint32 word);

/* Define the argument passed to PCL commands. */
typedef struct pcl_args_s {
  pcl_value_t value;		/* PCL5 command argument */
  byte *data;			/* data following the command */
  bool data_on_heap;		/* if true, data is allocated on heap */
  char command;			/* (last) command character */
} pcl_args_t;
#define int_arg(pargs) int_value(&(pargs)->value)
#define uint_arg(pargs) uint_value(&(pargs)->value)
#define float_arg(pargs) float_value(&(pargs)->value)
#define arg_data(pargs) ((pargs)->data)
#define arg_data_size(pargs) uint_arg(pargs)	/* data size */
#define arg_is_present(pargs) value_is_present(&(pargs)->value)
#define arg_is_signed(pargs) value_is_signed(&(pargs)->value)
#define arg_set_uint(pargs, ui) value_set_uint(&(pargs)->value, ui)
#define arg_set_float(pargs, in, fr) value_set_float(&(pargs)->value, in, fr)
/* Define an opaque type for the PCL state. */
#ifndef pcl_state_DEFINED
#  define pcl_state_DEFINED
typedef struct pcl_state_s pcl_state_t;
#endif

#ifndef pcl_parser_state_DEFINED
#  define pcl_parser_state_DEFINED
typedef struct pcl_parser_state_s pcl_parser_state_t;
#endif

#ifndef hpgl_parser_state_DEFINED
#  define hpgl_parser_state_DEFINED
typedef struct hpgl_args_s hpgl_parser_state_t;
#endif

/* Define a command processing procedure. */
#define pcl_command_proc(proc)\
  int proc(pcl_args_t *, pcl_state_t *)
typedef pcl_command_proc((*pcl_command_proc_t));

/* Define a few exported processing procedures. */
pcl_command_proc(pcl_disable_display_functions);
uint pcl_status_read(byte *data, uint max_data, pcl_state_t *pcs);
/* Process a string of plain (printable) text. */
int pcl_text(const byte *str, uint size, pcl_state_t *pcs, bool literal);
/* Process a single text character.  This is almost never called. */
pcl_command_proc(pcl_plain_char);

/* Define error returns. */
#define e_Range (0)		/* ignore range errors */
#define e_Syntax (-18)		/* gs_error_syntaxerror */
#define e_Memory gs_error_VMerror
#define e_Unimplemented (105)	/* ignore unimplemented commands */
#define e_ExitLanguage (-102)	/* e_InterpreterExit */

/* Define a command definition. */
typedef struct {
  pcl_command_proc_t proc;
  byte/*pcl_command_action_t*/ actions;
#ifdef DEBUG
  const char *cname;
#  define PCL_COMMAND(cname, proc, actions) { proc, actions, cname }
#else
#  define PCL_COMMAND(cname, proc, actions) { proc, actions }
#endif
} pcl_command_definition_t;
/* Define actions associated with a command. */
typedef enum {
  /* Negative arguments may be clamped to 0, give an error, cause the */
  /* command to be ignored, or be passed to the command. */
  pca_neg_action = 3,
    pca_neg_clamp = 0,
    pca_neg_error = 1,
    pca_neg_ignore = 2,
    pca_neg_ok = 3,
  /* Arguments in the range 32K to 64K-1 may be clamped, give an error, */
  /* cause the command to be ignored, or be passed to the command. */
  pca_big_action = 0xc,
    pca_big_clamp = 0,
    pca_big_error = 4,
    pca_big_ignore = 8,
    pca_big_ok = 0xc,
  /* Indicate whether the command is followed by data bytes. */
  pca_byte_data = 0x10,
    pca_bytes = pca_neg_error | pca_big_ok | pca_byte_data,
  /* Indicate whether the command is allowed in raster graphics mode. */
  pca_raster_graphics = 0x20,
  /* Indicate whether the command should be called while defining a macro. */
  pca_in_macro = 0x40,
  /* Indicate whether the command is allowed in rtl mode */
  pca_in_rtl = 0x80
} pcl_command_action_t;

/* Define a table of command definitions. */
typedef struct {
  char group;
  char command;
  pcl_command_definition_t defn;
} pcl_grouped_command_definition_t;

/* Register (a) command definition(s). */
void pcl_define_control_command(int/*char*/,
                                const pcl_command_definition_t *, pcl_parser_state_t *);
#define DEFINE_CONTROL(chr, cname, proc)\
{ static const pcl_command_definition_t defn_ = PCL_COMMAND(cname, proc, 0);\
  pcl_define_control_command(chr, &defn_, pcl_parser_state);\
}
void pcl_define_escape_command(int/*char*/,
                               const pcl_command_definition_t *, pcl_parser_state_t *);
#define DEFINE_ESCAPE_ARGS(chr, cname, proc, acts)\
{ static const pcl_command_definition_t defn_ = PCL_COMMAND(cname, proc, acts);\
  pcl_define_escape_command(chr, &defn_, pcl_parser_state);\
}
#define DEFINE_ESCAPE(chr, cname, proc)\
  DEFINE_ESCAPE_ARGS(chr, cname, proc, 0)
void pcl_define_class_command(int/*char*/, int/*char*/, int/*char*/,
                              const pcl_command_definition_t *, pcl_parser_state_t *);
#define DEFINE_CLASS_COMMAND_ARGS(cls, group, chr, cname, proc, acts)\
{ static const pcl_command_definition_t defn_ = PCL_COMMAND(cname, proc, acts);\
  pcl_define_class_command(cls, group, chr, &defn_, pcl_parser_state);\
}
#define DEFINE_CLASS_COMMAND(cls, group, chr, cname, proc)\
  DEFINE_CLASS_COMMAND_ARGS(cls, group, chr, cname, proc, 0)
void pcl_define_class_commands(int/*char*/,
                               const pcl_grouped_command_definition_t *,
                               pcl_parser_state_t *);
#define DEFINE_CLASS(cls)\
{ const byte class_ = cls;\
  static const pcl_grouped_command_definition_t defs_[] = {
#define END_CLASS\
    {0, 0}\
  };\
  pcl_define_class_commands(class_, defs_, pcl_parser_state);\
}

/*
 * Define the different kinds of reset that may occur during execution.
 * Some of them are only of interest to HPGL.  We define them as bit masks
 * rather than as ordinals so that if it turns out to be useful, we can
 * defer HPGL resets until we enter HPGL mode.
 */
typedef enum {
  pcl_reset_none = 0,
  pcl_reset_initial = 1,
  pcl_reset_cold = 2,
  pcl_reset_printer = 4,
  pcl_reset_overlay = 8,
  pcl_reset_page_params = 0x10,
  pcl_reset_picture_frame = 0x20,
  pcl_reset_anchor_point = 0x40,
  pcl_reset_plot_size = 0x80,
  /* define a special reset to be used to free permanent and internal
     objects: fonts, symbol sets and macros */
  pcl_reset_permanent = 0x100
} pcl_reset_type_t;
/*
 * Define the different kinds of state copying operation that are required
 * for macro call and overlay.
 */
typedef enum {
  pcl_copy_none = 0,
  pcl_copy_before_call = 1,
  pcl_copy_after_call = 2,
  pcl_copy_before_overlay = 4,
  pcl_copy_after_overlay = 8,
  pcl_copy_after = pcl_copy_after_call | pcl_copy_after_overlay
} pcl_copy_operation_t;
/* Define the structure for per-module implementation procedures. */
typedef struct pcl_init_s {
	/* Register commands */
    int (*do_registration)(pcl_parser_state_t *pcl_parser_state,
                           gs_memory_t *mem);
	/* Initialize state at startup, printer reset, and other times. */
    void (*do_reset)(pcl_state_t *pcs, pcl_reset_type_t type);
	/* Partially copy the state for macro call, overlay, and exit. */
    int (*do_copy)(pcl_state_t *psaved, const pcl_state_t *pcs,
                   pcl_copy_operation_t operation);
} pcl_init_t;
/* Define the table of pointers to init structures (in pcjob.c). */
extern const pcl_init_t *pcl_init_table[];

/* run the init code */
int pcl_do_registrations(pcl_state_t *pcs, pcl_parser_state_t *pst);

/* Run the reset code of all the modules. */
int pcl_do_resets(pcl_state_t *pcs, pcl_reset_type_t type);

/* Define stored entity storage status. */
/* Note that this is a mask, not an ordinal. */
typedef enum {
  pcds_temporary = 1,
  pcds_permanent = 2,
  pcds_downloaded = pcds_temporary | pcds_permanent,
  pcds_internal = 4
#define pcds_cartridge_shift 3
#define pcds_cartridge_max 8
#define pcds_all_cartridges\
  ( ((1 << pcds_cartridge_max) - 1) << pcds_cartridge_shift )
#define pcds_simm_shift (pcds_cartridge_shift + pcds_cartridge_max)
#define pcds_simm_max 8
#define pcds_all_simms\
  ( ((1 << pcds_simm_max) - 1) << pcds_simm_shift )
} pcl_data_storage_t;

/* Define the control characters. */
#define BS 0x8
#define HT 0x9
#define LF 0xa
#define VERT_TAB 0xb
#define FF 0xc
#define CR 0xd
#define SO 0xe
#define SI 0xf
#define ESC 0x1b
#define SP 0x20

#endif				/* pcommand_INCLUDED */