1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/* Copyright (C) 1997, 2000 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.
*/
/*$RCSfile$ $Revision$ */
/* Internal CMap structure definitions */
/* This file should be called gxcmap.h, except that name is already used. */
#ifndef gxfcmap_INCLUDED
# define gxfcmap_INCLUDED
#include "gsfcmap.h"
#include "gsuid.h"
#include "gxcid.h"
/*
* A CMap has 3 separate parts, each designed for a different function:
*
* - The code space, used for parsing the input string.
*
* - Two key maps, one for defined characters, one for notdefs.
* Each of these maps a parsed character to an index in a value table.
*
* - Two value tables in which each entry specifies a string, a name,
* or a CID.
*
* We separate the value tables from the key maps so that large, closely
* related CMaps such as UniCNS-UCS2-H and UniCNS-UTF8-H can (someday)
* share the value tables but not the code space or key maps.
*/
/*
* A code space is a non-empty array of code space ranges. The array is
* sorted lexicographically. Ranges must not overlap. In each range,
* first[i] <= last[i] for 0 <= i < num_bytes.
*/
#define MAX_CMAP_CODE_SIZE 4
typedef struct gx_code_space_range_s {
byte first[MAX_CMAP_CODE_SIZE];
byte last[MAX_CMAP_CODE_SIZE];
int size; /* 1 .. MAX_CMAP_CODE_SIZE */
} gx_code_space_range_t;
typedef struct gx_code_space_s {
gx_code_space_range_t *ranges;
int num_ranges;
} gx_code_space_t;
/*
* A lookup table is a non-empty array of lookup ranges. Each range has an
* associated sorted lookup table, indexed by the num_key_bytes low-order
* code bytes. If key_is_range is true, each key is a range (2 x key_size
* bytes); if false, each key is a single code (key_size bytes).
*
* The only difference between CODE_VALUE_CID and CODE_VALUE_NOTDEF is
* that after looking up a CID in a table, for CODE_VALUE_CID the result
* is incremented by the difference between the input code and the key
* (i.e., a single CODE_VALUE_CID entry actually represents a range of
* CIDs), whereas for CODE_VALUE_NOTDEF, the result is not incremented.
* The defined-character map for a CMap uses the former behavior; the
* notdef map uses the latter.
*
* CODE_VALUE_GLYPH and CODE_VALUE_CHARS are reserved for
* rearranged font CMaps, which are not implemented yet.
*
*/
typedef enum {
CODE_VALUE_CID, /* CIDs */
CODE_VALUE_GLYPH, /* glyphs */
CODE_VALUE_CHARS, /* character(s) */
CODE_VALUE_NOTDEF /* CID - for notdef(char|range) dst */
#define CODE_VALUE_MAX CODE_VALUE_NOTDEF
} gx_code_value_type_t;
/* The strings in this structure are all const after initialization. */
typedef struct gx_code_lookup_range_s {
gs_cmap_t *cmap; /* back pointer for glyph marking */
/* Keys */
byte key_prefix[MAX_CMAP_CODE_SIZE];
int key_prefix_size; /* 0 .. MAX_CMAP_CODE_SIZE */
int key_size; /* 0 .. MAX_CMAP_CODE_SIZE - key_prefix_s' */
int num_keys;
bool key_is_range;
gs_string keys; /* [num_keys * key_size * (key_is_range+1)] */
/* Values */
gx_code_value_type_t value_type;
int value_size; /* bytes per value */
gs_string values; /* [num_keys * value_size] */
int font_index;
} gx_code_lookup_range_t;
/*
* The GC descriptor for lookup ranges is complex, because it must mark
* names.
*/
extern_st(st_code_lookup_range_element);
#define public_st_code_lookup_range() /* in gsfcmap.c */\
gs_public_st_composite(st_code_lookup_range, gx_code_lookup_range_t,\
"gx_code_lookup_range_t", code_lookup_range_enum_ptrs,\
code_lookup_range_reloc_ptrs)
#define public_st_code_lookup_range_element() /* in gsfcmap.c */\
gs_public_st_element(st_code_lookup_range_element, gx_code_lookup_range_t,\
"gx_code_lookup_range_t[]", code_lookup_range_elt_enum_ptrs,\
code_lookup_range_elt_reloc_ptrs, st_code_lookup_range)
/*
* The main body of data in a CMap is two code maps, one for defined
* characters, one for notdefs.
*/
typedef struct gx_code_map_s {
gx_code_lookup_range_t *lookup;
int num_lookup;
} gx_code_map_t;
/* A CMap proper is relatively simple. */
struct gs_cmap_s {
/*
* The following entries are common to all CMapTypes, and must
* come first.
*/
int CMapType; /* must be first; must be 0 or 1 */
gs_id id; /* internal ID (no relation to UID) */
/*
* End of common entries.
*/
gs_const_string CMapName;
gs_cid_system_info_t *CIDSystemInfo; /* [num_fonts] */
int num_fonts;
float CMapVersion;
gs_uid uid; /* XUID or nothing */
long UIDOffset;
int WMode;
gx_code_space_t code_space;
gx_code_map_t def; /* defined characters */
gx_code_map_t notdef; /* notdef characters */
gs_glyph_mark_proc_t mark_glyph; /* glyph marking procedure for GC */
void *mark_glyph_data; /* closure data */
gs_glyph_name_proc_t glyph_name; /* glyph name procedure for printing */
void *glyph_name_data; /* closure data */
};
extern_st(st_cmap);
#define public_st_cmap() /* in gsfcmap.c */\
BASIC_PTRS(cmap_ptrs) {\
GC_CONST_STRING_ELT(gs_cmap_t, CMapName),\
GC_OBJ_ELT3(gs_cmap_t, CIDSystemInfo, uid.xvalues, code_space.ranges),\
GC_OBJ_ELT2(gs_cmap_t, def.lookup, notdef.lookup),\
GC_OBJ_ELT2(gs_cmap_t, mark_glyph_data, glyph_name_data)\
};\
gs_public_st_basic(st_cmap, gs_cmap_t, "gs_cmap",\
cmap_ptrs, cmap_data)
/*
* Initialize a just-allocated CMap, to ensure that all pointers are clean
* for the GC.
*/
void gs_cmap_init(P1(gs_cmap_t *));
/*
* Create an Identity CMap.
*/
int gs_cmap_create_identity(P4(gs_cmap_t **ppcmap, int num_bytes, int wmode,
gs_memory_t *mem));
#endif /* gxfcmap_INCLUDED */
|