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
|
/* Copyright (C) 2001-2023 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
/* pjparsei.c PJL parser implementation glue file (To pjparse.c) */
#include "string_.h"
#include "gserrors.h"
#include "pjtop.h"
#include "pjparse.h"
#include "plparse.h"
#include "plver.h"
static int
pjl_detect_language(const char *s, int len)
{
/* We will accept a single CRLF before the @PJL
* string. This is a break with the spec, but is
* required to cope with Bug 693269. We believe
* this should be harmless in real world usage. */
if (len && *s == '\r')
s++, len--;
if (len && *s == '\n')
s++, len--;
if (len < 4)
return 0;
if (memcmp(s, "@PJL", 4) == 0)
return 100;
return 0;
}
/* Get implementation's characteristics */
static const pl_interp_characteristics_t * /* always returns a descriptor */
pjl_impl_characteristics(const pl_interp_implementation_t * impl) /* implementation of interpreter to alloc */
{
static const pl_interp_characteristics_t pjl_characteristics = {
"PJL",
pjl_detect_language,
};
return &pjl_characteristics;
}
/* Do per-instance interpreter allocation/init. No device is set yet */
static int /* ret 0 ok, else -ve error code */
pjl_impl_allocate_interp_instance(pl_interp_implementation_t *impl,
gs_memory_t * mem /* allocator to allocate instance from */
)
{
pjl_parser_state *pjls = pjl_process_init(mem);
impl->interp_client_data = pjls;
if (pjls == NULL)
return gs_error_VMerror;
/* Return success */
return 0;
}
/* Prepare interp instance for the next "job" */
static int /* ret 0 ok, else -ve error code */
pjl_impl_init_job(pl_interp_implementation_t *impl, /* interp instance to start job in */
gx_device *device)
{
pjl_parser_state *pjls = impl->interp_client_data;
if (pjls == NULL)
return gs_error_VMerror;
/* copy the default state to the initial state */
return pjl_set_init_from_defaults(pjls);
}
static int
pjl_impl_process_begin(pl_interp_implementation_t *impl /* interp instance to process data job in */)
{
return 0;
}
/* Parse a cursor-full of data */
/* The parser reads data from the input
* buffer and returns either:
* >=0 - OK, more input is needed.
* e_ExitLanguage - Non-PJL was detected.
* <0 value - an error was detected.
*/
static int
pjl_impl_process(pl_interp_implementation_t *impl, /* interp instance to process data job in */
stream_cursor_read * cursor /* data to process */
)
{
pjl_parser_state *pjls = impl->interp_client_data;
int code = pjl_process(pjls, NULL, cursor);
return code == 1 ? e_ExitLanguage : code;
}
static int
pjl_impl_process_end(pl_interp_implementation_t *impl /* interp instance to process data job in */)
{
return 0;
}
/* Skip to end of job ret 1 if done, 0 ok but EOJ not found, else -ve error code */
static int
pjl_impl_flush_to_eoj(pl_interp_implementation_t * impl, /* interp impl to flush for */
stream_cursor_read * cursor /* data to process */
)
{
return pjl_skip_to_uel(cursor) ? 1 : 0;
}
/* Parser action for end-of-file */
static int /* ret 0 or +ve if ok, else -ve error code */
pjl_impl_process_eof(pl_interp_implementation_t * impl /* interp impl to process data job in */
)
{
return 0;
}
/* Report any errors after running a job */
static int /* ret 0 ok, else -ve error code */
pjl_impl_report_errors(pl_interp_implementation_t * impl, /* interp impl to wrap up job in */
int code, /* prev termination status */
long file_position, /* file position of error, -1 if unknown */
bool force_to_cout /* force errors to cout */
)
{
return 0;
}
/* Wrap up interp impl after a "job" */
static int /* ret 0 ok, else -ve error code */
pjl_impl_dnit_job(pl_interp_implementation_t * impl /* interp impl to wrap up job in */
)
{
return 0;
}
/* Deallocate a interpreter impl */
static int /* ret 0 ok, else -ve error code */
pjl_impl_deallocate_interp_instance(pl_interp_implementation_t * impl /* impl to dealloc */
)
{
pjl_parser_state *pjls = impl->interp_client_data;
pjl_process_destroy(pjls);
return 0;
}
/* Parser implementation descriptor */
pl_interp_implementation_t pjl_implementation = {
pjl_impl_characteristics,
pjl_impl_allocate_interp_instance,
NULL, /* get_device_memory */
NULL, /* set_param */
NULL, /* add_path */
NULL, /* post_args_init */
pjl_impl_init_job,
NULL, /* run_prefix_commands */
NULL, /* process_file */
pjl_impl_process_begin,
pjl_impl_process,
pjl_impl_process_end,
pjl_impl_flush_to_eoj,
pjl_impl_process_eof,
pjl_impl_report_errors,
pjl_impl_dnit_job,
pjl_impl_deallocate_interp_instance,
NULL, /* pjl_impl_reset */
NULL, /* interp_client_data */
};
|