zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
gxvmorx1.c
Go to the documentation of this file.
1 /***************************************************************************/
2 /* */
3 /* gxvmorx1.c */
4 /* */
5 /* TrueTypeGX/AAT morx table validation */
6 /* body for type1 (Contextual Substitution) subtable. */
7 /* */
8 /* Copyright 2005, 2007 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */
9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* */
11 /* This file is part of the FreeType project, and may only be used, */
12 /* modified, and distributed under the terms of the FreeType project */
13 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
14 /* this file you indicate that you have read the license and */
15 /* understand and accept it fully. */
16 /* */
17 /***************************************************************************/
18 
19 /***************************************************************************/
20 /* */
21 /* gxvalid is derived from both gxlayout module and otvalid module. */
22 /* Development of gxlayout is supported by the Information-technology */
23 /* Promotion Agency(IPA), Japan. */
24 /* */
25 /***************************************************************************/
26 
27 
28 #include "gxvmorx.h"
29 
30 
31  /*************************************************************************/
32  /* */
33  /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
34  /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
35  /* messages during execution. */
36  /* */
37 #undef FT_COMPONENT
38 #define FT_COMPONENT trace_gxvmorx
39 
40 
41  typedef struct GXV_morx_subtable_type1_StateOptRec_
42  {
43  FT_ULong substitutionTable;
44  FT_ULong substitutionTable_length;
45  FT_UShort substitutionTable_num_lookupTables;
46 
49 
50 
51 #define GXV_MORX_SUBTABLE_TYPE1_HEADER_SIZE \
52  ( GXV_STATETABLE_HEADER_SIZE + 2 )
53 
54 
55  static void
58  GXV_Validator valid )
59  {
60  FT_Bytes p = table;
61 
64 
65 
66  GXV_LIMIT_CHECK( 2 );
67  optdata->substitutionTable = FT_NEXT_USHORT( p );
68  }
69 
70 
71  static void
73  FT_ULong classTable,
74  FT_ULong stateArray,
75  FT_ULong entryTable,
76  FT_ULong* classTable_length_p,
77  FT_ULong* stateArray_length_p,
78  FT_ULong* entryTable_length_p,
79  GXV_Validator valid )
80  {
81  FT_ULong o[4];
82  FT_ULong *l[4];
83  FT_ULong buff[5];
84 
87 
88 
89  o[0] = classTable;
90  o[1] = stateArray;
91  o[2] = entryTable;
92  o[3] = optdata->substitutionTable;
93  l[0] = classTable_length_p;
94  l[1] = stateArray_length_p;
95  l[2] = entryTable_length_p;
96  l[3] = &(optdata->substitutionTable_length);
97 
98  gxv_set_length_by_ulong_offset( o, l, buff, 4, table_size, valid );
99  }
100 
101 
102  static void
104  FT_UShort state,
106  GXV_StateTable_GlyphOffsetCPtr glyphOffset_p,
107  FT_Bytes table,
108  FT_Bytes limit,
109  GXV_Validator valid )
110  {
111 #ifdef GXV_LOAD_TRACE_VARS
112  FT_UShort setMark;
113  FT_UShort dontAdvance;
114 #endif
115  FT_UShort reserved;
116  FT_Short markIndex;
117  FT_Short currentIndex;
118 
121 
122  FT_UNUSED( state );
123  FT_UNUSED( table );
124  FT_UNUSED( limit );
125 
126 
127 #ifdef GXV_LOAD_TRACE_VARS
128  setMark = (FT_UShort)( ( flags >> 15 ) & 1 );
129  dontAdvance = (FT_UShort)( ( flags >> 14 ) & 1 );
130 #endif
131 
132  reserved = (FT_UShort)( flags & 0x3FFF );
133 
134  markIndex = (FT_Short)( glyphOffset_p->ul >> 16 );
135  currentIndex = (FT_Short)( glyphOffset_p->ul );
136 
137  GXV_TRACE(( " setMark=%01d dontAdvance=%01d\n",
138  setMark, dontAdvance ));
139 
140  if ( 0 < reserved )
141  {
142  GXV_TRACE(( " non-zero bits found in reserved range\n" ));
144  }
145 
146  GXV_TRACE(( "markIndex = %d, currentIndex = %d\n",
147  markIndex, currentIndex ));
148 
149  if ( optdata->substitutionTable_num_lookupTables < markIndex + 1 )
150  optdata->substitutionTable_num_lookupTables =
151  (FT_Short)( markIndex + 1 );
152 
153  if ( optdata->substitutionTable_num_lookupTables < currentIndex + 1 )
154  optdata->substitutionTable_num_lookupTables =
155  (FT_Short)( currentIndex + 1 );
156  }
157 
158 
159  static void
161  GXV_LookupValueCPtr value_p,
162  GXV_Validator valid )
163  {
164  FT_UNUSED( glyph ); /* for the non-debugging case */
165 
166  GXV_TRACE(( "morx subtable type1 subst.: %d -> %d\n", glyph, value_p->u ));
167 
168  if ( value_p->u > valid->face->num_glyphs )
170  }
171 
172 
173  static GXV_LookupValueDesc
175  FT_UShort relative_gindex,
176  GXV_LookupValueCPtr base_value_p,
177  FT_Bytes lookuptbl_limit,
178  GXV_Validator valid )
179  {
180  FT_Bytes p;
181  FT_Bytes limit;
184 
185  /* XXX: check range? */
186  offset = (FT_UShort)( base_value_p->u +
187  relative_gindex * sizeof ( FT_UShort ) );
188 
189  p = valid->lookuptbl_head + offset;
190  limit = lookuptbl_limit;
191 
192  GXV_LIMIT_CHECK ( 2 );
193  value.u = FT_NEXT_USHORT( p );
194 
195  return value;
196  }
197 
198 
199  /*
200  * TODO: length should be limit?
201  **/
202  static void
204  FT_Bytes limit,
205  GXV_Validator valid )
206  {
207  FT_Bytes p = table;
208  FT_UShort i;
209 
212 
213 
214  /* TODO: calculate offset/length for each lookupTables */
218 
219  for ( i = 0; i < optdata->substitutionTable_num_lookupTables; i++ )
220  {
222 
223 
224  GXV_LIMIT_CHECK( 4 );
225  offset = FT_NEXT_ULONG( p );
226 
227  gxv_LookupTable_validate( table + offset, limit, valid );
228  }
229 
230  /* TODO: overlapping of lookupTables in substitutionTable */
231  }
232 
233 
234  /*
235  * subtable for Contextual glyph substitution is a modified StateTable.
236  * In addition to classTable, stateArray, entryTable, the field
237  * `substitutionTable' is added.
238  */
239  FT_LOCAL_DEF( void )
241  FT_Bytes limit,
242  GXV_Validator valid )
243  {
244  FT_Bytes p = table;
245 
247 
248 
249  GXV_NAME_ENTER( "morx chain subtable type1 (Contextual Glyph Subst)" );
250 
252 
253  st_rec.substitutionTable_num_lookupTables = 0;
254 
255  valid->xstatetable.optdata =
256  &st_rec;
257  valid->xstatetable.optdata_load_func =
259  valid->xstatetable.subtable_setup_func =
261  valid->xstatetable.entry_glyphoffset_fmt =
263  valid->xstatetable.entry_validate_func =
265 
266  gxv_XStateTable_validate( p, limit, valid );
267 
269  table + st_rec.substitutionTable,
270  table + st_rec.substitutionTable + st_rec.substitutionTable_length,
271  valid );
272 
273  GXV_EXIT;
274  }
275 
276 
277 /* END */
GLenum GLsizei GLenum GLenum const GLvoid * table
Definition: glew.h:4422
unsigned long FT_ULong
Definition: fttypes.h:249
#define GXV_NAME_ENTER(name)
Definition: gxvcommn.h:301
#define GXV_TRACE(s)
Definition: gxvcommn.h:304
gxv_XStateTable_validate(FT_Bytes table, FT_Bytes limit, GXV_Validator valid)
Definition: gxvcommn.c:1558
#define GXV_SET_ERR_IF_PARANOID(err)
Definition: gxvcommn.h:66
static void gxv_morx_subtable_type1_entry_validate(FT_UShort state, FT_UShort flags, GXV_StateTable_GlyphOffsetCPtr glyphOffset_p, FT_Bytes table, FT_Bytes limit, GXV_Validator valid)
Definition: gxvmorx1.c:103
static void gxv_morx_subtable_type1_substitutionTable_load(FT_Bytes table, FT_Bytes limit, GXV_Validator valid)
Definition: gxvmorx1.c:56
gxv_morx_subtable_type1_validate(FT_Bytes table, FT_Bytes limit, GXV_Validator valid)
Definition: gxvmorx1.c:240
#define GXV_EXIT
Definition: gxvcommn.h:302
#define FT_LOCAL_DEF(x)
Definition: ftconfig.h:467
FT_Bytes lookuptbl_head
Definition: gxvcommn.h:249
for(;;)
GLfloat GLfloat p
Definition: glew.h:14938
struct GXV_morx_subtable_type1_StateOptRec_ GXV_morx_subtable_type1_StateOptRec
GLint limit
Definition: glew.h:11829
GXV_XStateTable_ValidatorRec xstatetable
Definition: gxvcommn.h:255
const FT_Byte * FT_Bytes
Definition: fttypes.h:161
signed short FT_Short
Definition: fttypes.h:194
gxv_LookupTable_validate(FT_Bytes table, FT_Bytes limit, GXV_Validator valid)
Definition: gxvcommn.c:755
struct GXV_morx_subtable_type1_StateOptRec_ * GXV_morx_subtable_type1_StateOptRecData
static void gxv_morx_subtable_type1_LookupValue_validate(FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator valid)
Definition: gxvmorx1.c:160
sizeof(FT_AutofitterRec)
#define FT_NEXT_USHORT(buffer)
Definition: ftstream.h:233
GLdouble l
Definition: glew.h:8383
EGLSurface EGLint void ** value
Definition: eglext.h:301
static GXV_LookupValueDesc gxv_morx_subtable_type1_LookupFmt4_transit(FT_UShort relative_gindex, GXV_LookupValueCPtr base_value_p, FT_Bytes lookuptbl_limit, GXV_Validator valid)
Definition: gxvmorx1.c:174
GLintptr offset
Definition: glew.h:1668
static void gxv_morx_subtable_type1_subtable_setup(FT_ULong table_size, FT_ULong classTable, FT_ULong stateArray, FT_ULong entryTable, FT_ULong *classTable_length_p, FT_ULong *stateArray_length_p, FT_ULong *entryTable_length_p, GXV_Validator valid)
Definition: gxvmorx1.c:72
GLenum GLsizei GLsizei GLsizei GLsizei GLbitfield flags
Definition: glew.h:2767
FT_Long num_glyphs
Definition: freetype.h:920
#define GXV_MORX_SUBTABLE_TYPE1_HEADER_SIZE
Definition: gxvmorx1.c:51
#define FT_NEXT_ULONG(buffer)
Definition: ftstream.h:245
GXV_Lookup_Fmt4_Transit_Func lookupfmt4_trans
Definition: gxvcommn.h:248
#define FT_INVALID_DATA
Definition: ftvalid.h:141
#define FT_INVALID_GLYPH_ID
Definition: ftvalid.h:137
int i
Definition: pngrutil.c:1377
GXV_Lookup_Value_Validate_Func lookupval_func
Definition: gxvcommn.h:247
GXV_LookupValue_SignSpec lookupval_sign
Definition: gxvcommn.h:246
unsigned short FT_UShort
Definition: fttypes.h:205
#define FT_UNUSED(arg)
Definition: ftconfig.h:101
gxv_set_length_by_ulong_offset(FT_ULong *offset, FT_ULong **length, FT_ULong *buff, FT_UInt nmemb, FT_ULong limit, GXV_Validator valid)
Definition: gxvcommn.c:128
#define GXV_LIMIT_CHECK(_count)
Definition: gxvcommn.h:272
static void gxv_morx_subtable_type1_substitutionTable_validate(FT_Bytes table, FT_Bytes limit, GXV_Validator valid)
Definition: gxvmorx1.c:203