/* Copyright (C) 1993, 1994 Aladdin Enterprises. All rights reserved. This file is part of Aladdin Ghostscript. Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or distributor accepts any responsibility for the consequences of using it, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Refer to the Aladdin Ghostscript Free Public License (the "License") for full details. Every copy of Aladdin Ghostscript must include a copy of the License, normally in a plain ASCII text file named PUBLIC. The License grants you the right to copy, modify and redistribute Aladdin Ghostscript, but only under certain conditions described in the License. Among other things, the License requires that the copyright notice and this notice be preserved on all copies. */ /* sfilter.h */ /* Definitions for simple Ghostscript streams */ /* Requires scommon.h; should require strimpl.h only if any templates */ /* are referenced, but some compilers always require strimpl.h. */ #include "gstypes.h" /* for gs_[const_]string */ /* * Define the processing states of all the simple Ghostscript streams, * i.e., all except CCITTFax, LZW, and DCT filters. We use abbreviations * for the stream names so as not to exceed the 31-character limit * that some compilers put on identifiers. * * The processing state of a stream has three logical sections: * parameters set by the client before the stream is opened, * values computed from the parameters at initialization time, * and values that change dynamically. Unless otherwise indicated, * all structure members change dynamically. */ /* ASCII85Encode */ /* (no state) */ extern const stream_template s_A85E_template; /* ASCII85Decode */ typedef struct stream_A85D_state_s { stream_state_common; int odd; /* # of odd digits */ ulong word; /* word being accumulated */ } stream_A85D_state; #define private_st_A85D_state() /* in sfilter2.c */\ gs_private_st_simple(st_A85D_state, stream_A85D_state,\ "ASCII85Decode state") /* We define the initialization procedure here, so that the scanner */ /* can avoid a procedure call. */ #define s_A85D_init_inline(ss)\ ((ss)->word = 0, (ss)->odd = 0) extern const stream_template s_A85D_template; /* ASCIIHexEncode */ /* (no state) */ extern const stream_template s_AXE_template; /* ASCIIHexDecode */ typedef struct stream_AXD_state_s { stream_state_common; int odd; /* odd digit */ } stream_AXD_state; #define private_st_AXD_state() /* in saxx.c */\ gs_private_st_simple(st_AXD_state, stream_AXD_state,\ "ASCIIHexDecode state") /* We define the initialization procedure here, so that the scanner */ /* can avoid a procedure call. */ #define s_AXD_init_inline(ss)\ ((ss)->odd = -1, 0) extern const stream_template s_AXD_template; /* (T)BCPEncode */ /* (no state) */ extern const stream_template s_BCPE_template; extern const stream_template s_TBCPE_template; /* (T)BCPDecode */ typedef struct stream_BCPD_state_s { stream_state_common; /* The client sets the following before initialization. */ int (*signal_interrupt)(P1(stream_state *)); int (*request_status)(P1(stream_state *)); /* The following are updated dynamically. */ bool escaped; int matched; /* TBCP only */ int copy_count; /* TBCP only */ const byte _ds *copy_ptr; /* TBCP only */ } stream_BCPD_state; #define private_st_BCPD_state() /* in sbcp.c */\ gs_private_st_simple(st_BCPD_state, stream_BCPD_state, "(T)BCPDecode state") extern const stream_template s_BCPD_template; extern const stream_template s_TBCPD_template; /* eexecEncode */ typedef struct stream_exE_state_s { stream_state_common; /* The following parameters are set by the client. */ ushort cstate; /* encryption state */ } stream_exE_state; #define private_st_exE_state() /* in sfilter1.c */\ gs_private_st_simple(st_exE_state, stream_exE_state, "eexecEncode state") extern const stream_template s_exE_template; /* eexecDecode */ typedef struct stream_PFBD_state_s stream_PFBD_state; typedef struct stream_exD_state_s { stream_state_common; /* The following parameters are set by the client. */ ushort cstate; /* encryption state */ stream_PFBD_state *pfb_state; /* state of underlying */ /* PFBDecode stream, if any */ /* The following change dynamically. */ int binary; /* 1=binary, 0=hex, -1=don't know yet */ int odd; /* odd digit */ long record_left; /* data left in binary record in .PFB file, */ /* max_long if not reading a .PFB file */ int skip; /* # of decoded bytes to skip */ } stream_exD_state; #define private_st_exD_state() /* in seexec.c */\ gs_private_st_ptrs1(st_exD_state, stream_exD_state, "eexecDecode state",\ exd_enum_ptrs, exd_reloc_ptrs, pfb_state) extern const stream_template s_exD_template; /* NullEncode/Decode */ /* (no state) */ extern const stream_template s_Null_template; #define s_NullE_template s_Null_template #define s_NullD_template s_Null_template /* PFBDecode */ /* The typedef for the state appears under eexecDecode above. */ /*typedef*/ struct stream_PFBD_state_s { stream_state_common; /* The following parameters are set by the client. */ int binary_to_hex; /* The following change dynamically. */ int record_type; ulong record_left; /* bytes left in current record */ } /*stream_PFBD_state*/; #define private_st_PFBD_state() /* in sfilter1.c */\ gs_private_st_simple(st_PFBD_state, stream_PFBD_state, "PFBDecode state") extern const stream_template s_PFBD_template; /* PSStringDecode */ typedef struct stream_PSSD_state_s { stream_state_common; /* The following are set by the client. */ bool from_string; /* true if using Level 1 \ convention */ /* The following change dynamically. */ int depth; } stream_PSSD_state; #define private_st_PSSD_state() /* in sstring.c */\ gs_private_st_simple(st_PSSD_state, stream_PSSD_state, "PSStringDecode state") /* We define the initialization procedure here, so that the scanner */ /* can avoid a procedure call. */ #define s_PSSD_init_inline(ss)\ ((ss)->depth = 0) extern const stream_template s_PSSD_template; /* PSStringEncode */ /* (no state) */ extern const stream_template s_PSSE_template; /* SubFileDecode */ typedef struct stream_SFD_state_s { stream_state_common; /* The following parameters are set by the client. */ long count; /* # of EODs to scan over */ gs_const_string eod; /* The following change dynamically. */ uint match; /* # of matched chars not copied to output */ uint copy_count; /* # of matched characters left to copy */ uint copy_ptr; /* index of next character to copy */ } stream_SFD_state; #define private_st_SFD_state() /* in sfilter1.c */\ gs_private_st_composite(st_SFD_state, stream_SFD_state,\ "SubFileDecode state", sfd_enum_ptrs, sfd_reloc_ptrs) extern const stream_template s_SFD_template;