/* 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. */ /* this is the ps interpreter interface to the jbig2decode filter used for (1bpp) scanned image compression. PDF only specifies a decoder filter, and we don't currently implement anything else */ #include "memory_.h" #include "ghost.h" #include "oper.h" #include "gsstruct.h" #include "gstypes.h" #include "ialloc.h" #include "idict.h" #include "store.h" #include "stream.h" #include "strimpl.h" #include "ifilter.h" #include "sjbig2.h" /* We define a structure, s_jbig2_global_data_t, allocated in the postscript memory space, to hold a pointer to the global decoder context (which is allocated by libjbig2). This allows us to pass the reference through postscript code to the filter initializer. The opaque data pointer is not enumerated and will not be garbage collected. We use a finalize method to deallocate it when the reference is no longer in use. */ static void jbig2_global_data_finalize(const gs_memory_t *cmem, void *vptr); gs_private_st_simple_final(st_jbig2_global_data_t, s_jbig2_global_data_t, "jbig2globaldata", jbig2_global_data_finalize); /* /JBIG2Decode */ /* /JBIG2Decode */ static int z_jbig2decode(i_ctx_t * i_ctx_p) { os_ptr op = osp; ref *sop = NULL; s_jbig2_global_data_t *gref; stream_jbig2decode_state state; /* Extract the global context reference, if any, from the parameter dictionary and embed it in our stream state. The original object ref is under the JBIG2Globals key. We expect the postscript code to resolve this and call z_jbig2makeglobalctx() below to create an astruct wrapping the global decoder data and store it under the .jbig2globalctx key */ s_jbig2decode_set_global_data((stream_state*)&state, NULL, NULL); if (r_has_type(op, t_dictionary)) { check_dict_read(*op); if ( dict_find_string(op, ".jbig2globalctx", &sop) > 0) { if (!r_is_struct(sop) || !r_has_stype(sop, imemory, st_jbig2_global_data_t)) return_error(gs_error_typecheck); gref = r_ptr(sop, s_jbig2_global_data_t); s_jbig2decode_set_global_data((stream_state*)&state, gref, gref->data); } } /* we pass npop=0, since we've no arguments left to consume */ return filter_read(i_ctx_p, 0, &s_jbig2decode_template, (stream_state *) & state, (sop ? r_space(sop) : 0)); } /* .jbig2makeglobalctx */ /* we call this from ps code to instantiate a jbig2_global_context object which the JBIG2Decode filter uses if available. The pointer to the global context is stored in an astruct object and returned that way since it lives outside the interpreters memory management */ static int z_jbig2makeglobalctx(i_ctx_t * i_ctx_p) { void *global = NULL; s_jbig2_global_data_t *st; os_ptr op = osp; byte *data; int size; int code = 0; check_type(*op, t_astruct); size = gs_object_size(imemory, op->value.pstruct); data = r_ptr(op, byte); code = s_jbig2decode_make_global_data(imemory->non_gc_memory, data, size, &global); if (size > 0 && global == NULL) { dmlprintf(imemory, "failed to create parsed JBIG2GLOBALS object."); return_error(gs_error_unknownerror); } st = ialloc_struct(s_jbig2_global_data_t, &st_jbig2_global_data_t, "jbig2decode parsed global context"); if (st == NULL) return_error(gs_error_VMerror); st->data = global; make_astruct(op, a_readonly | icurrent_space, (byte*)st); return code; } /* free our referenced global context data */ static void jbig2_global_data_finalize(const gs_memory_t *cmem, void *vptr) { s_jbig2_global_data_t *st = vptr; (void)cmem; /* unused */ if (st->data) s_jbig2decode_free_global_data(st->data); st->data = NULL; } /* Match the above routine to the corresponding filter name. This is how our static routines get called externally. */ const op_def zfjbig2_op_defs[] = { {"1.jbig2makeglobalctx", z_jbig2makeglobalctx}, op_def_begin_filter(), {"2JBIG2Decode", z_jbig2decode}, op_def_end(0) };