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.
*/
#ifndef iscan_INCLUDED
# define iscan_INCLUDED
#include "sa85x.h"
#include "sstring.h"
#include "inamestr.h"
#include "iref.h"
* Define the state of the scanner. Before first calling gs_scan_token,
* the caller must initialize the state by calling scanner_state_init.
* Most of the state is only used if scanning is suspended because of
* an interrupt or a callout.
*
* Note that the scanner state includes a reference to the stream being
* scanned. We do this primarily for Adobe compatibility, so that we can
* remove the source object from the operand stack after the initial checks.
*
* We expose the entire state definition to the caller so that
* the state can normally be allocated on the stack.
*/
typedef struct scanner_state_s scanner_state;
* Define a structure for dynamically growable strings.
* If is_dynamic is true, base/next/limit point to a string on the heap;
* if is_dynamic is false, base/next/limit point either to the local buffer
* or (only while control is inside gs_scan_token) into the source stream
* buffer.
*/
#define max_comment_line 255
typedef struct dynamic_area_s {
byte *base;
byte *next;
byte *limit;
bool is_dynamic;
byte buf[max_name_string];
gs_memory_t *memory;
} dynamic_area;
#define da_size(pda) ((uint)((pda)->limit - (pda)->base))
typedef dynamic_area *da_ptr;
typedef struct scan_binary_state_s {
int num_format;
int (*cont)(i_ctx_t *, ref *, scanner_state *);
ref bin_array;
uint index;
uint max_array_index;
uint min_string_index;
uint top_size;
uint size;
int token_type;
ulong lsize;
} scan_binary_state;
struct scanner_state_s {
ref s_file;
uint s_pstack;
uint s_pdepth;
int s_options;
enum {
scanning_none,
scanning_binary,
scanning_comment,
scanning_name,
scanning_string
} s_scan_type;
dynamic_area s_da;
union sss_ {
scan_binary_state binary;
struct sns_ {
int s_name_type;
bool s_try_number;
} s_name;
stream_state st;
stream_A85D_state a85d;
stream_AXD_state axd;
stream_PSSD_state pssd;
} s_ss;
struct se_ {
ref object;
bool is_name;
#define SCANNER_MAX_ERROR_STRING 120
char string[SCANNER_MAX_ERROR_STRING+1];
} s_error;
#define SCAN_INIT_ERROR(pstate)\
(make_t(&(pstate)->s_error.object, t__invalid),\
(pstate)->s_error.is_name = false,\
(pstate)->s_error.string[0] = 0)
};
typedef struct scanner_state_dynamic_s {
scanner_state state;
gs_memory_t *mem;
} scanner_state_dynamic;
extern_st(st_scanner_state_dynamic);
#define public_st_scanner_state_dynamic() \
gs_public_st_complex_only(st_scanner_state_dynamic, scanner_state_dynamic, "scanner state",\
scanner_clear_marks, scanner_enum_ptrs, scanner_reloc_ptrs, 0)
#define SCAN_FROM_STRING 1
#define SCAN_CHECK_ONLY 2
#define SCAN_PROCESS_COMMENTS 4
#define SCAN_PROCESS_DSC_COMMENTS 8
#define SCAN_PDF_RULES 16
#define SCAN_PDF_INV_NUM 32
#define SCAN_PDF_UNSIGNED 64
#define SCAN_CPSI_MODE 128
void gs_scanner_init_options(scanner_state *sstate, const ref *fop,
int options);
#define gs_scanner_init(sstate, fop)\
gs_scanner_init_options(sstate, fop, 0)
void gs_scanner_init_stream_options(scanner_state *sstate, stream *s,
int options);
#define gs_scanner_init_stream(sstate, s)\
gs_scanner_init_stream_options(sstate, s, 0)
* Read a token from a stream. As usual, 0 is a normal return,
* <0 is an error. There are also some special return codes:
*/
#define scan_BOS 1
#define scan_EOF 2
#define scan_Refill 3
#define scan_Comment 4
#define scan_DSC_Comment 5
int gs_scan_token(i_ctx_t *i_ctx_p, ref * pref, scanner_state * pstate);
* Read a token from a string. Return like gs_scan_token, but also
* update the string to move past the token (if no error).
*/
int gs_scan_string_token_options(i_ctx_t *i_ctx_p, ref * pstr, ref * pref,
int options);
#define gs_scan_string_token(i_ctx_p, pstr, pref)\
gs_scan_string_token_options(i_ctx_p, pstr, pref, 0)
* Return the "error object" to be stored in $error.command instead of
* --token--, if any, or -1 if no special error object is required.
*/
int gs_scanner_error_object(i_ctx_t *i_ctx_p, const scanner_state *pstate,
ref *pseo);
* Handle a scan_Refill return from gs_scan_token.
* This may return o_push_estack, 0 (meaning just call gs_scan_token
* again), or an error code.
*/
int gs_scan_handle_refill(i_ctx_t *i_ctx_p, scanner_state * pstate,
bool save, op_proc_t cont);
#endif