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.
*/
#include "ghostpdf.h"
#include "pdf_types.h"
#include "pdf_stack.h"
#include "pdf_deref.h"
#include "pdf_array.h"
#include "pdf_loop_detect.h"
* called, would require some surgery.
*/
void pdfi_free_array(pdf_obj *o)
{
pdf_array *a = (pdf_array *)o;
int i;
for (i=0;i < a->size;i++) {
if (a->values[i] != NULL)
pdfi_countdown(a->values[i]);
}
gs_free_object(OBJ_MEMORY(a), a->values, "pdf interpreter free array contents");
gs_free_object(OBJ_MEMORY(a), a, "pdf interpreter free array");
}
int pdfi_array_alloc(pdf_context *ctx, uint64_t size, pdf_array **a)
{
int code, i;
*a = NULL;
code = pdfi_object_alloc(ctx, PDF_ARRAY, size, (pdf_obj **)a);
if (code < 0)
return code;
(*a)->size = size;
if (size > 0) {
* array_put will replace tehm. This ensures we always have a valid
* object for every entry. pdfi_array_from_stack() doesn't do this
* initialisation because we know how many obejcts there are in the array
* and we have valid objects for each entry on the stack already created.
*/
for (i=0;i<size;i++){
(*a)->values[i] = PDF_NULL_OBJ;
}
}
return 0;
}
* pdf_dict.c, because we needed to be able to create dictionaries for images. We don't have
* that need, but its less confusing to have the array_from_stack function defined in
* here, similarly to the dictionary routine.
*/
int pdfi_array_from_stack(pdf_context *ctx, uint32_t indirect_num, uint32_t indirect_gen)
{
uint64_t index = 0;
pdf_array *a = NULL;
pdf_obj *o;
int code;
code = pdfi_count_to_mark(ctx, &index);
if (code < 0)
return code;
code = pdfi_array_alloc(ctx, index, &a);
if (code < 0)
return code;
while (index) {
o = ctx->stack_top[-1];
code = pdfi_array_put(ctx, a, --index, o);
if (code < 0) {
(void)pdfi_clear_to_mark(ctx);
return code;
}
pdfi_pop(ctx, 1);
}
code = pdfi_clear_to_mark(ctx);
if (code < 0)
return code;
if (ctx->args.pdfdebug)
dmprintf (ctx->memory, " ]\n");
a->indirect_num = indirect_num;
a->indirect_gen = indirect_gen;
code = pdfi_push(ctx, (pdf_obj *)a);
if (code < 0)
pdfi_free_array((pdf_obj *)a);
return code;
}
int pdfi_array_fetch_recursing(pdf_context *ctx, pdf_array *a, uint64_t index, pdf_obj **o, bool setref, bool cache)
{
int code;
pdf_obj *obj;
*o = NULL;
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
if (index >= a->size)
return_error(gs_error_rangecheck);
obj = a->values[index];
if (pdfi_type_of(obj) == PDF_INDIRECT) {
pdf_obj *o1 = NULL;
pdf_indirect_ref *r = (pdf_indirect_ref *)obj;
if (r->ref_object_num == a->object_num)
return_error(gs_error_circular_reference);
if (cache)
code = pdfi_deref_loop_detect(ctx, r->ref_object_num, r->ref_generation_num, &o1);
else
code = pdfi_deref_loop_detect_nocache(ctx, r->ref_object_num, r->ref_generation_num, &o1);
if (code < 0)
return code;
if (setref)
(void)pdfi_array_put(ctx, a, index, o1);
obj = o1;
} else {
if (ctx->loop_detection != NULL && (uintptr_t)obj > TOKEN__LAST_KEY && obj->object_num != 0)
if (pdfi_loop_detector_check_object(ctx, obj->object_num))
return gs_note_error(gs_error_circular_reference);
pdfi_countup(obj);
}
*o = obj;
return 0;
}
* setref -- indicates whether to replace indirect ref with the object
*/
int pdfi_array_fetch(pdf_context *ctx, pdf_array *a, uint64_t index, pdf_obj **o, bool setref, bool cache)
{
int code;
pdf_obj *obj;
*o = NULL;
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
if (index >= a->size)
return_error(gs_error_rangecheck);
obj = a->values[index];
if (pdfi_type_of(obj) == PDF_INDIRECT) {
pdf_obj *o1 = NULL;
pdf_indirect_ref *r = (pdf_indirect_ref *)obj;
if (r->ref_object_num == a->object_num)
return_error(gs_error_circular_reference);
if (cache)
code = pdfi_deref_loop_detect(ctx, r->ref_object_num, r->ref_generation_num, &o1);
else
code = pdfi_deref_loop_detect_nocache(ctx, r->ref_object_num, r->ref_generation_num, &o1);
if (code < 0)
return code;
if (setref)
(void)pdfi_array_put(ctx, a, index, o1);
obj = o1;
} else {
pdfi_countup(obj);
}
*o = obj;
return 0;
}
* It looks to me like some usages need to do the checking themselves to
* avoid circular references? Can remove this if not really needed.
*/
int pdfi_array_get_no_deref(pdf_context *ctx, pdf_array *a, uint64_t index, pdf_obj **o)
{
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
if (index >= a->size)
return_error(gs_error_rangecheck);
*o = a->values[index];
pdfi_countup(*o);
return 0;
}
*/
int pdfi_array_get_no_store_R(pdf_context *ctx, pdf_array *a, uint64_t index, pdf_obj **o)
{
int code;
code = pdfi_array_fetch(ctx, a, index, o, false, false);
if (code < 0) return code;
return 0;
}
* Handles type-checking and resolving indirect references.
*/
int pdfi_array_get_type(pdf_context *ctx, pdf_array *a, uint64_t index,
pdf_obj_type type, pdf_obj **o)
{
int code;
code = pdfi_array_get(ctx, a, index, o);
if (code < 0)
return code;
if (pdfi_type_of(*o) != type) {
pdfi_countdown(*o);
*o = NULL;
return_error(gs_error_typecheck);
}
return 0;
}
int pdfi_array_get_int(pdf_context *ctx, pdf_array *a, uint64_t index, int64_t *i)
{
int code;
pdf_obj *n;
code = pdfi_array_get(ctx, a, index, &n);
if (code < 0)
return code;
code = pdfi_obj_to_int(ctx, n, i);
pdfi_countdown(n);
return code;
}
int pdfi_array_get_number(pdf_context *ctx, pdf_array *a, uint64_t index, double *d)
{
int code;
pdf_obj *n;
code = pdfi_array_get(ctx, a, index, &n);
if (code < 0)
return code;
code = pdfi_obj_to_real(ctx, n, d);
pdfi_countdown(n);
return code;
}
* If index is not NULL, fill it in with the index of the object.
* Note that this will resolve indirect references if needed.
*/
bool pdfi_array_known(pdf_context *ctx, pdf_array *a, pdf_obj *o, int *index)
{
int i;
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
for (i=0; i < a->size; i++) {
pdf_obj *val;
int code;
code = pdfi_array_fetch(ctx, a, i, &val, true, true);
if (code < 0)
continue;
if (pdf_object_num(val) == pdf_object_num(o)) {
if (index != NULL) *index = i;
pdfi_countdown(val);
return true;
}
pdfi_countdown(val);
}
return false;
}
int pdfi_array_put(pdf_context *ctx, pdf_array *a, uint64_t index, pdf_obj *o)
{
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
if (index >= a->size)
return_error(gs_error_rangecheck);
pdfi_countdown(a->values[index]);
a->values[index] = o;
pdfi_countup(o);
return 0;
}
int pdfi_array_put_int(pdf_context *ctx, pdf_array *a, uint64_t index, int64_t val)
{
int code;
pdf_num *obj;
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
code = pdfi_object_alloc(ctx, PDF_INT, 0, (pdf_obj **)&obj);
obj->value.i = val;
if (code < 0)
return code;
return pdfi_array_put(ctx, a, index, (pdf_obj *)obj);
}
int pdfi_array_put_real(pdf_context *ctx, pdf_array *a, uint64_t index, double val)
{
int code;
pdf_num *obj;
if (pdfi_type_of(a) != PDF_ARRAY)
return_error(gs_error_typecheck);
code = pdfi_object_alloc(ctx, PDF_REAL, 0, (pdf_obj **)&obj);
obj->value.d = val;
if (code < 0)
return code;
return pdfi_array_put(ctx, a, index, (pdf_obj *)obj);
}
* processing, but its very likely that any time we want to use it, the
* rectangle will have come from a PDF array in a PDF file so it makes
* sense to have it here.
*/
void pdfi_normalize_rect(pdf_context *ctx, gs_rect *rect)
{
double temp;
if (rect->p.x > rect->q.x) {
temp = rect->p.x;
rect->p.x = rect->q.x;
rect->q.x = temp;
}
if (rect->p.y > rect->q.y) {
temp = rect->p.y;
rect->p.y = rect->q.y;
rect->q.y = temp;
}
}
* Turn an Array into a gs_rect. If Array is NULL, makes a tiny rect
*/
int pdfi_array_to_gs_rect(pdf_context *ctx, pdf_array *array, gs_rect *rect)
{
double number;
int code = 0;
rect->p.x = 0.0;
rect->p.y = 0.0;
rect->q.x = 1.0;
rect->q.y = 1.0;
if (array == NULL || pdfi_type_of(array) != PDF_ARRAY) {
return 0;
}
if (pdfi_array_size(array) != 4) {
return_error(gs_error_rangecheck);
}
code = pdfi_array_get_number(ctx, array, 0, &number);
if (code < 0) goto errorExit;
rect->p.x = (float)number;
code = pdfi_array_get_number(ctx, array, 1, &number);
if (code < 0) goto errorExit;
rect->p.y = (float)number;
code = pdfi_array_get_number(ctx, array, 2, &number);
if (code < 0) goto errorExit;
rect->q.x = (float)number;
code = pdfi_array_get_number(ctx, array, 3, &number);
if (code < 0) goto errorExit;
rect->q.y = (float)number;
return 0;
errorExit:
return code;
}
* gs_rect to it.
*/
int pdfi_gs_rect_to_array(pdf_context *ctx, gs_rect *rect, pdf_array **new_array)
{
pdf_num *num = NULL;
int code = 0;
code = pdfi_array_alloc(ctx, 4, new_array);
if (code < 0)
return code;
pdfi_countup(*new_array);
code = pdfi_num_alloc(ctx, rect->p.x, &num);
if (code < 0)
goto error;
code = pdfi_array_put(ctx, *new_array, 0, (pdf_obj *)num);
if (code < 0)
goto error;
code = pdfi_num_alloc(ctx, rect->p.y, &num);
if (code < 0)
goto error;
code = pdfi_array_put(ctx, *new_array, 1, (pdf_obj *)num);
if (code < 0)
goto error;
code = pdfi_num_alloc(ctx, rect->q.x, &num);
if (code < 0)
goto error;
code = pdfi_array_put(ctx, *new_array, 2, (pdf_obj *)num);
if (code < 0)
goto error;
code = pdfi_num_alloc(ctx, rect->q.y, &num);
if (code < 0)
goto error;
code = pdfi_array_put(ctx, *new_array, 3, (pdf_obj *)num);
if (code < 0)
goto error;
return 0;
error:
pdfi_countdown(new_array);
return code;
}
int pdfi_array_to_gs_matrix(pdf_context *ctx, pdf_array *array, gs_matrix *mat)
{
double number;
int code = 0;
mat->xx = 1.0;
mat->xy = 0.0;
mat->yx = 0.0;
mat->yy = 1.0;
mat->tx = 0.0;
mat->ty = 0.0;
if (array == NULL || pdfi_type_of(array) != PDF_ARRAY) {
return 0;
}
if (pdfi_array_size(array) != 6) {
return_error(gs_error_rangecheck);
}
code = pdfi_array_get_number(ctx, array, 0, &number);
if (code < 0) goto errorExit;
mat->xx = (float)number;
code = pdfi_array_get_number(ctx, array, 1, &number);
if (code < 0) goto errorExit;
mat->xy = (float)number;
code = pdfi_array_get_number(ctx, array, 2, &number);
if (code < 0) goto errorExit;
mat->yx = (float)number;
code = pdfi_array_get_number(ctx, array, 3, &number);
if (code < 0) goto errorExit;
mat->yy = (float)number;
code = pdfi_array_get_number(ctx, array, 4, &number);
if (code < 0) goto errorExit;
mat->tx = (float)number;
code = pdfi_array_get_number(ctx, array, 5, &number);
if (code < 0) goto errorExit;
mat->ty = (float)number;
return 0;
errorExit:
return code;
}
int pdfi_array_to_num_array(pdf_context *ctx, pdf_array *array, double *out, int offset, int size)
{
int i;
int code;
double num;
for (i=0; i<size; i++) {
code = pdfi_array_get_number(ctx, array, offset+i, &num);
if (code < 0)
return code;
out[i] = num;
}
return 0;
}
void
pdfi_bbox_transform(pdf_context *ctx, gs_rect *bbox, gs_matrix *matrix)
{
gs_point aa, az, za, zz;
double temp;
gs_point_transform(bbox->p.x, bbox->p.y, matrix, &aa);
gs_point_transform(bbox->p.x, bbox->q.y, matrix, &az);
gs_point_transform(bbox->q.x, bbox->p.y, matrix, &za);
gs_point_transform(bbox->q.x, bbox->q.y, matrix, &zz);
if ( aa.x > az.x)
temp = aa.x, aa.x = az.x, az.x = temp;
if ( za.x > zz.x)
temp = za.x, za.x = zz.x, zz.x = temp;
if ( za.x < aa.x)
aa.x = za.x;
if ( az.x > zz.x)
zz.x = az.x;
if ( aa.y > az.y)
temp = aa.y, aa.y = az.y, az.y = temp;
if ( za.y > zz.y)
temp = za.y, za.y = zz.y, zz.y = temp;
if ( za.y < aa.y)
aa.y = za.y;
if ( az.y > zz.y)
zz.y = az.y;
bbox->p.x = aa.x;
bbox->p.y = aa.y;
bbox->q.x = zz.x;
bbox->q.y = zz.y;
}