2009-05-17 14:28:42 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2007,2008,2009,2010 Red Hat, Inc.
|
|
|
|
* Copyright © 2010 Google, Inc.
|
2009-05-17 14:28:42 +02:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-05-17 14:28:42 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
2010-10-27 23:39:01 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2009-05-17 14:28:42 +02:00
|
|
|
*/
|
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#ifndef HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH
|
|
|
|
#define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
#include "hb-buffer-private.hh"
|
2009-08-03 02:03:12 +02:00
|
|
|
#include "hb-ot-layout-gdef-private.hh"
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
HB_BEGIN_DECLS
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
2010-10-28 05:18:51 +02:00
|
|
|
/* buffer var allocations */
|
|
|
|
#define lig_id() var2.u16[0] /* unique ligature id */
|
|
|
|
#define lig_comp() var2.u16[1] /* component number in the ligature (0 = base) */
|
|
|
|
|
2011-07-25 06:36:01 +02:00
|
|
|
static inline uint16_t allocate_lig_id (hb_buffer_t *buffer) {
|
|
|
|
uint16_t lig_id = buffer->next_serial ();
|
|
|
|
if (unlikely (!lig_id)) lig_id = buffer->next_serial (); /* in case of overflow */
|
|
|
|
return lig_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-28 05:18:51 +02:00
|
|
|
|
2009-08-28 23:14:33 +02:00
|
|
|
#ifndef HB_DEBUG_APPLY
|
2010-11-03 20:11:04 +01:00
|
|
|
#define HB_DEBUG_APPLY (HB_DEBUG+0)
|
2009-08-28 23:14:33 +02:00
|
|
|
#endif
|
|
|
|
|
2010-04-29 07:40:26 +02:00
|
|
|
#define TRACE_APPLY() \
|
2010-05-13 20:18:49 +02:00
|
|
|
hb_trace_t<HB_DEBUG_APPLY> trace (&c->debug_depth, "APPLY", HB_FUNC, this); \
|
2010-04-28 21:15:09 +02:00
|
|
|
|
2009-08-28 23:14:33 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
HB_BEGIN_DECLS
|
|
|
|
|
2010-04-29 08:19:21 +02:00
|
|
|
struct hb_apply_context_t
|
|
|
|
{
|
2010-05-05 07:40:25 +02:00
|
|
|
unsigned int debug_depth;
|
2011-05-11 06:02:02 +02:00
|
|
|
hb_font_t *font;
|
|
|
|
hb_face_t *face;
|
2010-05-05 07:13:09 +02:00
|
|
|
hb_buffer_t *buffer;
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_direction_t direction;
|
2010-05-20 18:26:35 +02:00
|
|
|
hb_mask_t lookup_mask;
|
2010-05-05 07:23:44 +02:00
|
|
|
unsigned int context_length;
|
2010-04-29 08:19:21 +02:00
|
|
|
unsigned int nesting_level_left;
|
2010-10-28 04:07:49 +02:00
|
|
|
unsigned int lookup_props;
|
2010-10-27 23:39:01 +02:00
|
|
|
unsigned int property; /* propety of first glyph */
|
|
|
|
|
|
|
|
|
|
|
|
inline void replace_glyph (hb_codepoint_t glyph_index) const
|
|
|
|
{
|
|
|
|
clear_property ();
|
|
|
|
buffer->replace_glyph (glyph_index);
|
|
|
|
}
|
|
|
|
inline void replace_glyphs_be16 (unsigned int num_in,
|
|
|
|
unsigned int num_out,
|
|
|
|
const uint16_t *glyph_data_be) const
|
|
|
|
{
|
|
|
|
clear_property ();
|
|
|
|
buffer->replace_glyphs_be16 (num_in, num_out, glyph_data_be);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void guess_glyph_class (unsigned int klass)
|
|
|
|
{
|
2010-11-17 18:57:23 +01:00
|
|
|
/* XXX if ! has gdef */
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->info[buffer->idx].props_cache() = klass;
|
2010-10-27 23:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline void clear_property (void) const
|
|
|
|
{
|
2010-11-17 18:57:23 +01:00
|
|
|
/* XXX if has gdef */
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->info[buffer->idx].props_cache() = 0;
|
2010-10-27 23:39:01 +02:00
|
|
|
}
|
2010-04-29 08:19:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-05-05 07:13:09 +02:00
|
|
|
|
2010-05-10 23:47:22 +02:00
|
|
|
typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const USHORT &value, const void *data);
|
2010-05-13 20:18:49 +02:00
|
|
|
typedef bool (*apply_lookup_func_t) (hb_apply_context_t *c, unsigned int lookup_index);
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ContextFuncs
|
|
|
|
{
|
2009-05-18 04:11:30 +02:00
|
|
|
match_func_t match;
|
|
|
|
apply_lookup_func_t apply;
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
|
2010-05-10 23:47:22 +02:00
|
|
|
static inline bool match_glyph (hb_codepoint_t glyph_id, const USHORT &value, const void *data HB_UNUSED)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-18 04:11:30 +02:00
|
|
|
return glyph_id == value;
|
|
|
|
}
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-05-10 23:47:22 +02:00
|
|
|
static inline bool match_class (hb_codepoint_t glyph_id, const USHORT &value, const void *data)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-04 17:38:50 +02:00
|
|
|
const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
|
2009-05-18 04:11:30 +02:00
|
|
|
return class_def.get_class (glyph_id) == value;
|
|
|
|
}
|
|
|
|
|
2010-05-10 23:47:22 +02:00
|
|
|
static inline bool match_coverage (hb_codepoint_t glyph_id, const USHORT &value, const void *data)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-19 00:30:25 +02:00
|
|
|
const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
|
2009-05-18 04:11:30 +02:00
|
|
|
return (data+coverage) (glyph_id) != NOT_COVERED;
|
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool match_input (hb_apply_context_t *c,
|
2009-05-18 09:56:39 +02:00
|
|
|
unsigned int count, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
match_func_t match_func,
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data,
|
2009-05-18 09:56:39 +02:00
|
|
|
unsigned int *context_length_out)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int end = MIN (c->buffer->len, c->buffer->idx + c->context_length);
|
|
|
|
if (unlikely (c->buffer->idx + count > end))
|
2009-05-18 10:09:05 +02:00
|
|
|
return false;
|
2009-05-18 09:56:39 +02:00
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
for (i = 1, j = c->buffer->idx + 1; i < count; i++, j++)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2011-05-11 06:02:02 +02:00
|
|
|
while (_hb_ot_layout_skip_mark (c->face, &c->buffer->info[j], c->lookup_props, NULL))
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (j + count - i == end))
|
2009-05-18 09:56:39 +02:00
|
|
|
return false;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
2010-05-15 04:02:37 +02:00
|
|
|
if (likely (!match_func (c->buffer->info[j].codepoint, input[i - 1], match_data)))
|
2009-05-18 09:56:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
*context_length_out = j - c->buffer->idx;
|
2009-05-18 09:56:39 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool match_backtrack (hb_apply_context_t *c,
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int count,
|
|
|
|
const USHORT backtrack[],
|
|
|
|
match_func_t match_func,
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data)
|
2009-05-18 09:47:31 +02:00
|
|
|
{
|
2011-01-06 20:58:52 +01:00
|
|
|
if (unlikely (c->buffer->backtrack_len () < count))
|
2009-05-18 10:09:05 +02:00
|
|
|
return false;
|
2009-05-18 09:47:31 +02:00
|
|
|
|
2011-01-06 20:58:52 +01:00
|
|
|
for (unsigned int i = 0, j = c->buffer->backtrack_len () - 1; i < count; i++, j--)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2011-05-11 06:02:02 +02:00
|
|
|
while (_hb_ot_layout_skip_mark (c->face, &c->buffer->out_info[j], c->lookup_props, NULL))
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (j + 1 == count - i))
|
2009-05-18 09:47:31 +02:00
|
|
|
return false;
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
|
2010-05-15 04:03:11 +02:00
|
|
|
if (likely (!match_func (c->buffer->out_info[j].codepoint, backtrack[i], match_data)))
|
2009-05-18 09:47:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool match_lookahead (hb_apply_context_t *c,
|
2009-05-18 09:56:39 +02:00
|
|
|
unsigned int count,
|
|
|
|
const USHORT lookahead[],
|
|
|
|
match_func_t match_func,
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data,
|
2009-05-18 09:56:39 +02:00
|
|
|
unsigned int offset)
|
2009-05-18 08:36:18 +02:00
|
|
|
{
|
2009-05-17 14:28:42 +02:00
|
|
|
unsigned int i, j;
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int end = MIN (c->buffer->len, c->buffer->idx + c->context_length);
|
|
|
|
if (unlikely (c->buffer->idx + offset + count > end))
|
2009-05-18 10:09:05 +02:00
|
|
|
return false;
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
for (i = 0, j = c->buffer->idx + offset; i < count; i++, j++)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2011-05-11 06:02:02 +02:00
|
|
|
while (_hb_ot_layout_skip_mark (c->face, &c->buffer->info[j], c->lookup_props, NULL))
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (j + count - i == end))
|
2009-05-17 14:28:42 +02:00
|
|
|
return false;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
2010-05-15 04:02:37 +02:00
|
|
|
if (likely (!match_func (c->buffer->info[j].codepoint, lookahead[i], match_data)))
|
2009-05-17 14:28:42 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
HB_END_DECLS
|
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct LookupRecord
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this);
|
2009-08-04 08:09:34 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
USHORT sequenceIndex; /* Index into current glyph
|
|
|
|
* sequence--first glyph = 0 */
|
|
|
|
USHORT lookupListIndex; /* Lookup to apply to that
|
|
|
|
* position--zero--based */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2009-05-18 08:36:18 +02:00
|
|
|
};
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
|
|
|
HB_BEGIN_DECLS
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool apply_lookup (hb_apply_context_t *c,
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int count, /* Including the first glyph */
|
|
|
|
unsigned int lookupCount,
|
2009-05-18 08:36:18 +02:00
|
|
|
const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */
|
|
|
|
apply_lookup_func_t apply_func)
|
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int end = MIN (c->buffer->len, c->buffer->idx + c->context_length);
|
|
|
|
if (unlikely (count == 0 || c->buffer->idx + count > end))
|
2009-05-18 10:15:25 +02:00
|
|
|
return false;
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2009-05-18 10:09:05 +02:00
|
|
|
/* TODO We don't support lookupRecord arrays that are not increasing:
|
|
|
|
* Should be easy for in_place ones at least. */
|
2009-09-21 19:58:56 +02:00
|
|
|
|
2010-12-13 20:13:35 +01:00
|
|
|
/* Note: If sublookup is reverse, it will underflow after the first loop
|
2009-09-21 19:58:56 +02:00
|
|
|
* and we jump out of it. Not entirely disastrous. So we don't check
|
|
|
|
* for reverse lookup here.
|
|
|
|
*/
|
2009-09-21 19:43:54 +02:00
|
|
|
for (unsigned int i = 0; i < count; /* NOP */)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
while (_hb_ot_layout_skip_mark (c->face, &c->buffer->info[c->buffer->idx], c->lookup_props, NULL))
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
if (unlikely (c->buffer->idx == end))
|
2009-05-18 10:15:25 +02:00
|
|
|
return true;
|
|
|
|
/* No lookup applied for this index */
|
2010-05-13 20:18:49 +02:00
|
|
|
c->buffer->next_glyph ();
|
2009-05-18 10:15:25 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 10:17:47 +02:00
|
|
|
if (lookupCount && i == lookupRecord->sequenceIndex)
|
2009-05-17 14:28:42 +02:00
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int old_pos = c->buffer->idx;
|
2009-05-17 14:28:42 +02:00
|
|
|
|
|
|
|
/* Apply a lookup */
|
2010-05-13 20:18:49 +02:00
|
|
|
bool done = apply_func (c, lookupRecord->lookupListIndex);
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2009-05-18 10:17:47 +02:00
|
|
|
lookupRecord++;
|
|
|
|
lookupCount--;
|
2009-09-21 19:43:54 +02:00
|
|
|
/* Err, this is wrong if the lookup jumped over some glyphs */
|
2011-07-22 17:28:07 +02:00
|
|
|
i += c->buffer->idx - old_pos;
|
|
|
|
if (unlikely (c->buffer->idx == end))
|
2009-05-18 10:37:37 +02:00
|
|
|
return true;
|
2009-05-17 14:28:42 +02:00
|
|
|
|
|
|
|
if (!done)
|
|
|
|
goto not_applied;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
not_applied:
|
|
|
|
/* No lookup applied for this index */
|
2010-05-13 20:18:49 +02:00
|
|
|
c->buffer->next_glyph ();
|
2009-05-17 14:28:42 +02:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-05-18 04:11:30 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
HB_END_DECLS
|
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
|
|
|
|
/* Contextual lookups */
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ContextLookupContext
|
|
|
|
{
|
2009-05-18 08:36:18 +02:00
|
|
|
ContextFuncs funcs;
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data;
|
2009-05-18 08:36:18 +02:00
|
|
|
};
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool context_lookup (hb_apply_context_t *c,
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
2009-05-18 08:36:18 +02:00
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int lookupCount,
|
2009-05-18 08:47:57 +02:00
|
|
|
const LookupRecord lookupRecord[],
|
2009-07-30 00:37:57 +02:00
|
|
|
ContextLookupContext &lookup_context)
|
2009-05-18 08:36:18 +02:00
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
hb_apply_context_t new_context = *c;
|
|
|
|
return match_input (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
inputCount, input,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data,
|
|
|
|
&new_context.context_length)
|
|
|
|
&& apply_lookup (&new_context,
|
|
|
|
inputCount,
|
|
|
|
lookupCount, lookupRecord,
|
|
|
|
lookup_context.funcs.apply);
|
2009-05-18 08:36:18 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct Rule
|
|
|
|
{
|
2009-05-17 14:28:42 +02:00
|
|
|
friend struct RuleSet;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ContextLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-05-07 01:33:31 +02:00
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
|
2010-05-13 20:18:49 +02:00
|
|
|
return context_lookup (c,
|
2009-05-18 11:47:47 +02:00
|
|
|
inputCount, input,
|
2010-05-05 06:32:21 +02:00
|
|
|
lookupCount, lookupRecord,
|
2009-07-30 00:37:57 +02:00
|
|
|
lookup_context);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
public:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return inputCount.sanitize (c)
|
|
|
|
&& lookupCount.sanitize (c)
|
|
|
|
&& c->check_range (input,
|
2010-05-07 01:33:31 +02:00
|
|
|
input[0].static_size * inputCount
|
|
|
|
+ lookupRecordX[0].static_size * lookupCount);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
private:
|
2009-05-18 04:11:30 +02:00
|
|
|
USHORT inputCount; /* Total number of glyphs in input
|
2009-05-17 14:28:42 +02:00
|
|
|
* glyph sequence--includes the first
|
|
|
|
* glyph */
|
2009-05-18 04:11:30 +02:00
|
|
|
USHORT lookupCount; /* Number of LookupRecords */
|
2009-11-03 16:47:29 +01:00
|
|
|
USHORT input[VAR]; /* Array of match inputs--start with
|
2009-05-17 14:28:42 +02:00
|
|
|
* second glyph */
|
2009-11-03 16:47:29 +01:00
|
|
|
LookupRecord lookupRecordX[VAR]; /* Array of LookupRecords--in
|
2009-05-17 14:28:42 +02:00
|
|
|
* design order */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY2 (4, input, lookupRecordX);
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct RuleSet
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ContextLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-17 14:28:42 +02:00
|
|
|
unsigned int num_rules = rule.len;
|
2009-05-20 05:58:54 +02:00
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
if ((this+rule[i]).apply (c, lookup_context))
|
2009-05-17 14:28:42 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return rule.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
private:
|
|
|
|
OffsetArrayOf<Rule>
|
2009-05-18 04:11:30 +02:00
|
|
|
rule; /* Array of Rule tables
|
2009-05-17 14:28:42 +02:00
|
|
|
* ordered by preference */
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, rule);
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ContextFormat1
|
|
|
|
{
|
2009-05-17 14:28:42 +02:00
|
|
|
friend struct Context;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
const RuleSet &rule_set = this+ruleSet[index];
|
2009-07-30 00:37:57 +02:00
|
|
|
struct ContextLookupContext lookup_context = {
|
2009-05-18 04:11:30 +02:00
|
|
|
{match_glyph, apply_func},
|
|
|
|
NULL
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
2010-05-13 20:18:49 +02:00
|
|
|
return rule_set.apply (c, lookup_context);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& ruleSet.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
|
|
|
* beginning of table */
|
|
|
|
OffsetArrayOf<RuleSet>
|
|
|
|
ruleSet; /* Array of RuleSet tables
|
|
|
|
* ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, ruleSet);
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ContextFormat2
|
|
|
|
{
|
2009-05-17 14:28:42 +02:00
|
|
|
friend struct Context;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
const ClassDef &class_def = this+classDef;
|
2011-07-22 17:28:07 +02:00
|
|
|
index = class_def (c->buffer->info[c->buffer->idx].codepoint);
|
2009-05-17 14:28:42 +02:00
|
|
|
const RuleSet &rule_set = this+ruleSet[index];
|
2009-07-30 00:37:57 +02:00
|
|
|
struct ContextLookupContext lookup_context = {
|
2010-05-10 23:47:22 +02:00
|
|
|
{match_class, apply_func},
|
|
|
|
&class_def
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
2010-05-13 20:18:49 +02:00
|
|
|
return rule_set.apply (c, lookup_context);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& classDef.sanitize (c, this)
|
|
|
|
&& ruleSet.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 2 */
|
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
|
|
|
* beginning of table */
|
|
|
|
OffsetTo<ClassDef>
|
|
|
|
classDef; /* Offset to glyph ClassDef table--from
|
|
|
|
* beginning of table */
|
|
|
|
OffsetArrayOf<RuleSet>
|
|
|
|
ruleSet; /* Array of RuleSet tables
|
|
|
|
* ordered by class */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (8, ruleSet);
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ContextFormat3
|
|
|
|
{
|
2009-05-17 14:28:42 +02:00
|
|
|
friend struct Context;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage[0]) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 08:47:57 +02:00
|
|
|
return false;
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-05-07 01:33:31 +02:00
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * glyphCount);
|
2009-07-30 00:37:57 +02:00
|
|
|
struct ContextLookupContext lookup_context = {
|
2009-05-18 04:11:30 +02:00
|
|
|
{match_coverage, apply_func},
|
2010-05-10 23:47:22 +02:00
|
|
|
this
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
2010-05-13 20:18:49 +02:00
|
|
|
return context_lookup (c,
|
2009-05-18 11:47:47 +02:00
|
|
|
glyphCount, (const USHORT *) (coverage + 1),
|
2010-05-05 06:32:21 +02:00
|
|
|
lookupCount, lookupRecord,
|
2009-07-30 00:37:57 +02:00
|
|
|
lookup_context);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!c->check_struct (this)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
unsigned int count = glyphCount;
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!c->check_array (coverage, coverage[0].static_size, count)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!coverage[i].sanitize (c, this)) return false;
|
2010-05-07 01:33:31 +02:00
|
|
|
LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * count);
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 3 */
|
|
|
|
USHORT glyphCount; /* Number of glyphs in the input glyph
|
|
|
|
* sequence */
|
2009-05-18 04:11:30 +02:00
|
|
|
USHORT lookupCount; /* Number of LookupRecords */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetTo<Coverage>
|
2009-11-03 16:47:29 +01:00
|
|
|
coverage[VAR]; /* Array of offsets to Coverage
|
2009-05-18 05:17:56 +02:00
|
|
|
* table in glyph sequence order */
|
2009-11-03 16:47:29 +01:00
|
|
|
LookupRecord lookupRecordX[VAR]; /* Array of LookupRecords--in
|
2009-05-17 14:28:42 +02:00
|
|
|
* design order */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY2 (6, coverage, lookupRecordX);
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct Context
|
|
|
|
{
|
2009-05-17 14:28:42 +02:00
|
|
|
protected:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-17 14:28:42 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c, apply_func);
|
|
|
|
case 2: return u.format2.apply (c, apply_func);
|
|
|
|
case 3: return u.format3.apply (c, apply_func);
|
2009-05-17 14:28:42 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
|
|
|
case 2: return u.format2.sanitize (c);
|
|
|
|
case 3: return u.format3.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
private:
|
|
|
|
union {
|
2009-05-18 01:47:54 +02:00
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
ContextFormat1 format1;
|
|
|
|
ContextFormat2 format2;
|
|
|
|
ContextFormat3 format3;
|
2009-05-17 14:28:42 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
|
|
|
|
/* Chaining Contextual lookups */
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainContextLookupContext
|
|
|
|
{
|
2009-05-18 04:11:30 +02:00
|
|
|
ContextFuncs funcs;
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data[3];
|
2009-05-18 04:11:30 +02:00
|
|
|
};
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool chain_context_lookup (hb_apply_context_t *c,
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int backtrackCount,
|
2009-05-18 08:47:57 +02:00
|
|
|
const USHORT backtrack[],
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
2009-05-18 08:47:57 +02:00
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int lookaheadCount,
|
2009-05-18 08:47:57 +02:00
|
|
|
const USHORT lookahead[],
|
2009-05-18 09:47:31 +02:00
|
|
|
unsigned int lookupCount,
|
2009-05-18 08:47:57 +02:00
|
|
|
const LookupRecord lookupRecord[],
|
2009-07-30 00:37:57 +02:00
|
|
|
ChainContextLookupContext &lookup_context)
|
2009-05-18 08:47:57 +02:00
|
|
|
{
|
2009-05-18 09:47:31 +02:00
|
|
|
/* First guess */
|
2011-01-06 20:58:52 +01:00
|
|
|
if (unlikely (c->buffer->backtrack_len () < backtrackCount ||
|
2011-07-22 17:28:07 +02:00
|
|
|
c->buffer->idx + inputCount + lookaheadCount > c->buffer->len ||
|
2010-05-13 20:18:49 +02:00
|
|
|
inputCount + lookaheadCount > c->context_length))
|
2009-05-18 09:47:31 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
hb_apply_context_t new_context = *c;
|
|
|
|
return match_backtrack (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
backtrackCount, backtrack,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data[0])
|
2010-05-13 20:18:49 +02:00
|
|
|
&& match_input (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
inputCount, input,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data[1],
|
|
|
|
&new_context.context_length)
|
2010-05-13 20:18:49 +02:00
|
|
|
&& match_lookahead (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
lookaheadCount, lookahead,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data[2],
|
|
|
|
new_context.context_length)
|
|
|
|
&& apply_lookup (&new_context,
|
|
|
|
inputCount,
|
|
|
|
lookupCount, lookupRecord,
|
|
|
|
lookup_context.funcs.apply);
|
2009-05-18 08:47:57 +02:00
|
|
|
}
|
2009-05-18 04:11:30 +02:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainRule
|
|
|
|
{
|
2009-05-18 05:17:56 +02:00
|
|
|
friend struct ChainRuleSet;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ChainContextLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-04-21 21:56:11 +02:00
|
|
|
const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
|
|
|
|
const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2010-05-13 20:18:49 +02:00
|
|
|
return chain_context_lookup (c,
|
2010-05-11 00:20:54 +02:00
|
|
|
backtrack.len, backtrack.array,
|
|
|
|
input.len, input.array,
|
|
|
|
lookahead.len, lookahead.array,
|
|
|
|
lookup.len, lookup.array,
|
2009-07-30 00:37:57 +02:00
|
|
|
lookup_context);
|
2009-05-18 05:17:56 +02:00
|
|
|
}
|
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
public:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!backtrack.sanitize (c)) return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!input.sanitize (c)) return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!lookahead.sanitize (c)) return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2010-05-13 20:18:49 +02:00
|
|
|
return lookup.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
2009-05-18 02:48:27 +02:00
|
|
|
|
|
|
|
private:
|
2009-05-18 07:49:57 +02:00
|
|
|
ArrayOf<USHORT>
|
|
|
|
backtrack; /* Array of backtracking values
|
2009-05-18 02:48:27 +02:00
|
|
|
* (to be matched before the input
|
|
|
|
* sequence) */
|
2009-05-18 08:03:58 +02:00
|
|
|
HeadlessArrayOf<USHORT>
|
|
|
|
inputX; /* Array of input values (start with
|
2009-05-18 02:48:27 +02:00
|
|
|
* second glyph) */
|
2009-05-18 07:49:57 +02:00
|
|
|
ArrayOf<USHORT>
|
|
|
|
lookaheadX; /* Array of lookahead values's (to be
|
2009-05-18 04:11:30 +02:00
|
|
|
* matched after the input sequence) */
|
2009-05-18 07:49:57 +02:00
|
|
|
ArrayOf<LookupRecord>
|
2009-05-18 08:47:57 +02:00
|
|
|
lookupX; /* Array of LookupRecords--in
|
2009-05-18 02:48:27 +02:00
|
|
|
* design order) */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-10 23:28:16 +02:00
|
|
|
DEFINE_SIZE_MIN (8);
|
2009-05-18 02:48:27 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainRuleSet
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ChainContextLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 04:11:30 +02:00
|
|
|
unsigned int num_rules = rule.len;
|
2009-05-20 05:58:54 +02:00
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
if ((this+rule[i]).apply (c, lookup_context))
|
2009-05-18 04:11:30 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2009-05-18 02:48:27 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return rule.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
private:
|
2009-05-18 04:11:30 +02:00
|
|
|
OffsetArrayOf<ChainRule>
|
|
|
|
rule; /* Array of ChainRule tables
|
|
|
|
* ordered by preference */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, rule);
|
2009-05-18 02:48:27 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainContextFormat1
|
|
|
|
{
|
2009-05-18 02:48:27 +02:00
|
|
|
friend struct ChainContext;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
2009-05-18 02:48:27 +02:00
|
|
|
|
2009-05-18 05:17:56 +02:00
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[index];
|
2009-07-30 00:37:57 +02:00
|
|
|
struct ChainContextLookupContext lookup_context = {
|
2009-05-18 05:17:56 +02:00
|
|
|
{match_glyph, apply_func},
|
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
2010-05-13 20:18:49 +02:00
|
|
|
return rule_set.apply (c, lookup_context);
|
2009-05-18 05:17:56 +02:00
|
|
|
}
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& ruleSet.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
2009-05-18 04:11:30 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2009-05-18 02:48:27 +02:00
|
|
|
* beginning of table */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetArrayOf<ChainRuleSet>
|
|
|
|
ruleSet; /* Array of ChainRuleSet tables
|
|
|
|
* ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, ruleSet);
|
2009-05-18 02:48:27 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainContextFormat2
|
|
|
|
{
|
2009-05-18 02:48:27 +02:00
|
|
|
friend struct ChainContext;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
const ClassDef &backtrack_class_def = this+backtrackClassDef;
|
|
|
|
const ClassDef &input_class_def = this+inputClassDef;
|
|
|
|
const ClassDef &lookahead_class_def = this+lookaheadClassDef;
|
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
index = input_class_def (c->buffer->info[c->buffer->idx].codepoint);
|
2009-05-18 05:17:56 +02:00
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[index];
|
2009-07-30 00:37:57 +02:00
|
|
|
struct ChainContextLookupContext lookup_context = {
|
2010-05-10 23:47:22 +02:00
|
|
|
{match_class, apply_func},
|
|
|
|
{&backtrack_class_def,
|
|
|
|
&input_class_def,
|
|
|
|
&lookahead_class_def}
|
2009-05-18 05:17:56 +02:00
|
|
|
};
|
2010-05-13 20:18:49 +02:00
|
|
|
return rule_set.apply (c, lookup_context);
|
2009-05-18 02:48:27 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& backtrackClassDef.sanitize (c, this)
|
|
|
|
&& inputClassDef.sanitize (c, this)
|
|
|
|
&& lookaheadClassDef.sanitize (c, this)
|
|
|
|
&& ruleSet.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 2 */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2009-05-18 02:48:27 +02:00
|
|
|
* beginning of table */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
backtrackClassDef; /* Offset to glyph ClassDef table
|
2009-05-18 02:48:27 +02:00
|
|
|
* containing backtrack sequence
|
|
|
|
* data--from beginning of table */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
inputClassDef; /* Offset to glyph ClassDef
|
2009-05-18 02:48:27 +02:00
|
|
|
* table containing input sequence
|
|
|
|
* data--from beginning of table */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
lookaheadClassDef; /* Offset to glyph ClassDef table
|
2009-05-18 02:48:27 +02:00
|
|
|
* containing lookahead sequence
|
|
|
|
* data--from beginning of table */
|
2009-05-18 05:17:56 +02:00
|
|
|
OffsetArrayOf<ChainRuleSet>
|
|
|
|
ruleSet; /* Array of ChainRuleSet tables
|
|
|
|
* ordered by class */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (12, ruleSet);
|
2009-05-18 02:48:27 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainContextFormat3
|
|
|
|
{
|
2009-05-18 02:48:27 +02:00
|
|
|
friend struct ChainContext;
|
|
|
|
|
|
|
|
private:
|
2009-05-18 05:17:56 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-04-21 21:56:11 +02:00
|
|
|
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
2009-05-18 08:47:57 +02:00
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+input[0]) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 08:47:57 +02:00
|
|
|
return false;
|
|
|
|
|
2010-04-21 21:56:11 +02:00
|
|
|
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2009-07-30 00:37:57 +02:00
|
|
|
struct ChainContextLookupContext lookup_context = {
|
2009-05-18 05:17:56 +02:00
|
|
|
{match_coverage, apply_func},
|
2010-05-10 23:47:22 +02:00
|
|
|
{this, this, this}
|
2009-05-18 05:17:56 +02:00
|
|
|
};
|
2010-05-13 20:18:49 +02:00
|
|
|
return chain_context_lookup (c,
|
2010-05-11 00:20:54 +02:00
|
|
|
backtrack.len, (const USHORT *) backtrack.array,
|
|
|
|
input.len, (const USHORT *) input.array + 1,
|
|
|
|
lookahead.len, (const USHORT *) lookahead.array,
|
|
|
|
lookup.len, lookup.array,
|
2009-07-30 00:37:57 +02:00
|
|
|
lookup_context);
|
2009-05-18 05:17:56 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!backtrack.sanitize (c, this)) return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!input.sanitize (c, this)) return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!lookahead.sanitize (c, this)) return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2010-05-13 20:18:49 +02:00
|
|
|
return lookup.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 3 */
|
2009-05-18 07:49:57 +02:00
|
|
|
OffsetArrayOf<Coverage>
|
2009-05-18 08:14:37 +02:00
|
|
|
backtrack; /* Array of coverage tables
|
2009-05-18 02:48:27 +02:00
|
|
|
* in backtracking sequence, in glyph
|
|
|
|
* sequence order */
|
2009-05-18 07:49:57 +02:00
|
|
|
OffsetArrayOf<Coverage>
|
2009-05-18 08:14:37 +02:00
|
|
|
inputX ; /* Array of coverage
|
2009-05-18 02:48:27 +02:00
|
|
|
* tables in input sequence, in glyph
|
|
|
|
* sequence order */
|
2009-05-18 07:49:57 +02:00
|
|
|
OffsetArrayOf<Coverage>
|
2009-05-18 08:14:37 +02:00
|
|
|
lookaheadX; /* Array of coverage tables
|
2009-05-18 02:48:27 +02:00
|
|
|
* in lookahead sequence, in glyph
|
|
|
|
* sequence order */
|
2009-05-18 07:49:57 +02:00
|
|
|
ArrayOf<LookupRecord>
|
2009-05-18 08:47:57 +02:00
|
|
|
lookupX; /* Array of LookupRecords--in
|
2009-05-18 07:49:57 +02:00
|
|
|
* design order) */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-10 23:28:16 +02:00
|
|
|
DEFINE_SIZE_MIN (10);
|
2009-05-18 02:48:27 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct ChainContext
|
|
|
|
{
|
2009-05-18 02:48:27 +02:00
|
|
|
protected:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 02:48:27 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c, apply_func);
|
|
|
|
case 2: return u.format2.apply (c, apply_func);
|
|
|
|
case 3: return u.format3.apply (c, apply_func);
|
2009-05-18 02:48:27 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
|
|
|
case 2: return u.format2.sanitize (c);
|
|
|
|
case 3: return u.format3.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
private:
|
|
|
|
union {
|
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
ChainContextFormat1 format1;
|
|
|
|
ChainContextFormat2 format2;
|
|
|
|
ChainContextFormat3 format3;
|
2009-05-18 02:48:27 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-22 04:31:33 +02:00
|
|
|
struct ExtensionFormat1
|
|
|
|
{
|
|
|
|
friend struct Extension;
|
|
|
|
|
2009-08-04 20:27:56 +02:00
|
|
|
protected:
|
2009-05-22 04:31:33 +02:00
|
|
|
inline unsigned int get_type (void) const { return extensionLookupType; }
|
2010-04-22 22:51:42 +02:00
|
|
|
inline unsigned int get_offset (void) const { return extensionOffset; }
|
2009-05-22 04:31:33 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-22 04:31:33 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier. Set to 1. */
|
|
|
|
USHORT extensionLookupType; /* Lookup type of subtable referenced
|
|
|
|
* by ExtensionOffset (i.e. the
|
|
|
|
* extension subtable). */
|
2010-04-22 06:58:49 +02:00
|
|
|
ULONG extensionOffset; /* Offset to the extension subtable,
|
|
|
|
* of lookup type subtable. */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
2009-05-22 04:31:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Extension
|
|
|
|
{
|
|
|
|
inline unsigned int get_type (void) const
|
|
|
|
{
|
|
|
|
switch (u.format) {
|
2010-05-11 01:45:41 +02:00
|
|
|
case 1: return u.format1.get_type ();
|
2009-05-22 04:31:33 +02:00
|
|
|
default:return 0;
|
|
|
|
}
|
|
|
|
}
|
2010-04-22 22:51:42 +02:00
|
|
|
inline unsigned int get_offset (void) const
|
2009-05-22 04:31:33 +02:00
|
|
|
{
|
|
|
|
switch (u.format) {
|
2010-05-11 01:45:41 +02:00
|
|
|
case 1: return u.format1.get_offset ();
|
2010-04-22 22:51:42 +02:00
|
|
|
default:return 0;
|
2009-05-22 04:31:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-22 04:31:33 +02:00
|
|
|
private:
|
|
|
|
union {
|
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
ExtensionFormat1 format1;
|
2009-05-22 04:31:33 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-18 02:13:02 +02:00
|
|
|
/*
|
|
|
|
* GSUB/GPOS Common
|
|
|
|
*/
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct GSUBGPOS
|
|
|
|
{
|
2009-08-05 02:27:05 +02:00
|
|
|
static const hb_tag_t GSUBTag = HB_OT_TAG_GSUB;
|
|
|
|
static const hb_tag_t GPOSTag = HB_OT_TAG_GPOS;
|
2009-05-18 02:13:02 +02:00
|
|
|
|
2009-08-08 01:46:30 +02:00
|
|
|
inline unsigned int get_script_count (void) const
|
|
|
|
{ return (this+scriptList).len; }
|
|
|
|
inline const Tag& get_script_tag (unsigned int i) const
|
|
|
|
{ return (this+scriptList).get_tag (i); }
|
2009-11-04 22:36:14 +01:00
|
|
|
inline unsigned int get_script_tags (unsigned int start_offset,
|
|
|
|
unsigned int *script_count /* IN/OUT */,
|
|
|
|
hb_tag_t *script_tags /* OUT */) const
|
|
|
|
{ return (this+scriptList).get_tags (start_offset, script_count, script_tags); }
|
2009-08-08 01:46:30 +02:00
|
|
|
inline const Script& get_script (unsigned int i) const
|
|
|
|
{ return (this+scriptList)[i]; }
|
|
|
|
inline bool find_script_index (hb_tag_t tag, unsigned int *index) const
|
|
|
|
{ return (this+scriptList).find_index (tag, index); }
|
|
|
|
|
|
|
|
inline unsigned int get_feature_count (void) const
|
|
|
|
{ return (this+featureList).len; }
|
|
|
|
inline const Tag& get_feature_tag (unsigned int i) const
|
|
|
|
{ return (this+featureList).get_tag (i); }
|
2009-11-04 22:36:14 +01:00
|
|
|
inline unsigned int get_feature_tags (unsigned int start_offset,
|
|
|
|
unsigned int *feature_count /* IN/OUT */,
|
|
|
|
hb_tag_t *feature_tags /* OUT */) const
|
|
|
|
{ return (this+featureList).get_tags (start_offset, feature_count, feature_tags); }
|
2009-08-08 01:46:30 +02:00
|
|
|
inline const Feature& get_feature (unsigned int i) const
|
|
|
|
{ return (this+featureList)[i]; }
|
|
|
|
inline bool find_feature_index (hb_tag_t tag, unsigned int *index) const
|
|
|
|
{ return (this+featureList).find_index (tag, index); }
|
|
|
|
|
|
|
|
inline unsigned int get_lookup_count (void) const
|
|
|
|
{ return (this+lookupList).len; }
|
|
|
|
inline const Lookup& get_lookup (unsigned int i) const
|
|
|
|
{ return (this+lookupList)[i]; }
|
2009-05-18 02:13:02 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return version.sanitize (c) && likely (version.major == 1)
|
|
|
|
&& scriptList.sanitize (c, this)
|
|
|
|
&& featureList.sanitize (c, this)
|
|
|
|
&& lookupList.sanitize (c, this);
|
2009-08-04 08:09:34 +02:00
|
|
|
}
|
|
|
|
|
2009-05-24 06:50:27 +02:00
|
|
|
protected:
|
2009-05-24 07:03:24 +02:00
|
|
|
FixedVersion version; /* Version of the GSUB/GPOS table--initially set
|
2009-05-18 02:13:02 +02:00
|
|
|
* to 0x00010000 */
|
|
|
|
OffsetTo<ScriptList>
|
|
|
|
scriptList; /* ScriptList table */
|
|
|
|
OffsetTo<FeatureList>
|
|
|
|
featureList; /* FeatureList table */
|
|
|
|
OffsetTo<LookupList>
|
|
|
|
lookupList; /* LookupList table */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (10);
|
2009-05-18 02:13:02 +02:00
|
|
|
};
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
HB_END_DECLS
|
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#endif /* HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH */
|