/* Copyright (C) 1989, 1995, 1998, 2001 Aladdin Enterprises. 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. For more information about licensing, please refer to http://www.ghostscript.com/licensing/. For information on commercial licensing, go to http://www.artifex.com/licensing/ or contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. */ /* $Id: gstypes.h,v 1.7 2005/09/05 13:58:55 leonardo Exp $ */ /* Miscellaneous common types for Ghostscript library */ #ifndef gstypes_INCLUDED # define gstypes_INCLUDED /* * Define a type used internally for unique IDs of various kinds * (primarily, but not exclusively, character and halftone bitmaps). * These IDs bear no relation to any other ID space; we generate them all * ourselves. */ typedef ulong gs_id; #define gs_no_id 0L /* * Define a sensible representation of a string, as opposed to * the C char * type (which can't store arbitrary data, represent * substrings, or perform concatenation without destroying aliases). * * If a byte * pointer P is the result of allocating a string of size N, * then any substring of [P .. P+N) is a valid gs_string, i.e., any * gs_string S is valid (until the string is deallocated) if it has P <= * S.data and S.data + S.size <= P + N. */ #define GS_STRING_COMMON\ byte *data;\ uint size typedef struct gs_string_s { GS_STRING_COMMON; } gs_string; #define GS_CONST_STRING_COMMON\ const byte *data;\ uint size typedef struct gs_const_string_s { GS_CONST_STRING_COMMON; } gs_const_string; typedef struct gs_param_string_s { GS_CONST_STRING_COMMON; bool persistent; } gs_param_string; /* * Since strings are allocated differently from ordinary objects, define a * structure that can reference either a string or a byte object. If bytes * == 0, data and size are the same as for a gs_string. If bytes != 0, data * and size point within the object addressed by bytes (i.e., the bytes * member plays the role of P in the consistency condition given for * gs_string above). Thus in either case, code can process the string using * only data and size: bytes is only relevant for garbage collection. * * Note: for garbage collection purposes, the string_common members must * come first. */ typedef struct gs_bytestring_s { GS_STRING_COMMON; byte *bytes; /* see above */ } gs_bytestring; typedef struct gs_const_bytestring_s { GS_CONST_STRING_COMMON; const byte *bytes; /* see above */ } gs_const_bytestring; #define gs_bytestring_from_string(pbs, dat, siz)\ ((pbs)->data = (dat), (pbs)->size = (siz), (pbs)->bytes = 0) #define gs_bytestring_from_bytes(pbs, byts, offset, siz)\ ((pbs)->data = ((pbs)->bytes = (byts)) + (offset), (pbs)->size = (siz)) /* * Define types for Cartesian points. */ typedef struct gs_point_s { double x, y; } gs_point; typedef struct gs_int_point_s { int x, y; } gs_int_point; /* * Define a scale for oversampling. Clients don't actually use this, * but this seemed like the handiest place for it. */ typedef struct gs_log2_scale_point_s { int x, y; } gs_log2_scale_point; /* * Define types for rectangles in the Cartesian plane. * Note that rectangles are half-open, i.e.: their width is * q.x-p.x and their height is q.y-p.y; they include the points * (x,y) such that p.x<=x