2009-05-17 14:28:42 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2007,2008,2009,2010 Red Hat, Inc.
|
2012-04-24 04:26:13 +02:00
|
|
|
* Copyright © 2010,2012 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"
|
2011-08-17 14:19:59 +02:00
|
|
|
#include "hb-ot-layout-gdef-table.hh"
|
2012-08-02 03:46:36 +02:00
|
|
|
#include "hb-set-private.hh"
|
2012-04-23 19:04:38 +02:00
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2012-08-28 23:57:49 +02:00
|
|
|
namespace OT {
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2012-11-23 21:06:59 +01:00
|
|
|
|
2012-11-23 22:40:04 +01:00
|
|
|
#define TRACE_PROCESS(this) \
|
|
|
|
hb_auto_trace_t<context_t::max_debug_depth, typename context_t::return_t> trace \
|
|
|
|
(&c->debug_depth, c->get_name (), this, HB_FUNC, \
|
|
|
|
"");
|
|
|
|
|
|
|
|
|
2012-04-23 19:04:38 +02:00
|
|
|
#ifndef HB_DEBUG_CLOSURE
|
|
|
|
#define HB_DEBUG_CLOSURE (HB_DEBUG+0)
|
|
|
|
#endif
|
|
|
|
|
2012-11-23 21:32:14 +01:00
|
|
|
#define TRACE_CLOSURE(this) \
|
2012-12-05 22:49:47 +01:00
|
|
|
hb_auto_trace_t<HB_DEBUG_CLOSURE, hb_void_t> trace \
|
2012-11-23 23:29:05 +01:00
|
|
|
(&c->debug_depth, c->get_name (), this, HB_FUNC, \
|
2012-11-23 21:06:59 +01:00
|
|
|
"");
|
2012-04-23 19:04:38 +02:00
|
|
|
|
|
|
|
struct hb_closure_context_t
|
|
|
|
{
|
2012-11-23 22:40:04 +01:00
|
|
|
inline const char *get_name (void) { return "CLOSURE"; }
|
|
|
|
static const unsigned int max_debug_depth = HB_DEBUG_CLOSURE;
|
2012-12-05 22:49:47 +01:00
|
|
|
typedef hb_void_t return_t;
|
2012-11-22 05:33:13 +01:00
|
|
|
typedef return_t (*recurse_func_t) (hb_closure_context_t *c, unsigned int lookup_index);
|
|
|
|
template <typename T>
|
2012-12-05 22:49:47 +01:00
|
|
|
inline return_t process (const T &obj) { obj.closure (this); return HB_VOID; }
|
|
|
|
static return_t default_return_value (void) { return HB_VOID; }
|
2013-01-04 08:25:27 +01:00
|
|
|
bool stop_sublookup_iteration (return_t r HB_UNUSED) const { return false; }
|
2012-11-22 05:33:13 +01:00
|
|
|
return_t recurse (unsigned int lookup_index)
|
|
|
|
{
|
2012-11-23 23:55:40 +01:00
|
|
|
if (unlikely (nesting_level_left == 0 || !recurse_func))
|
2012-11-22 20:38:10 +01:00
|
|
|
return default_return_value ();
|
2012-11-22 05:33:13 +01:00
|
|
|
|
|
|
|
nesting_level_left--;
|
|
|
|
recurse_func (this, lookup_index);
|
|
|
|
nesting_level_left++;
|
2012-12-05 22:49:47 +01:00
|
|
|
return HB_VOID;
|
2012-11-22 05:33:13 +01:00
|
|
|
}
|
|
|
|
|
2012-04-23 19:04:38 +02:00
|
|
|
hb_face_t *face;
|
2012-04-24 04:23:17 +02:00
|
|
|
hb_set_t *glyphs;
|
2012-11-22 05:33:13 +01:00
|
|
|
recurse_func_t recurse_func;
|
2012-04-23 19:04:38 +02:00
|
|
|
unsigned int nesting_level_left;
|
|
|
|
unsigned int debug_depth;
|
|
|
|
|
|
|
|
hb_closure_context_t (hb_face_t *face_,
|
2012-04-24 04:23:17 +02:00
|
|
|
hb_set_t *glyphs_,
|
2012-04-23 19:04:38 +02:00
|
|
|
unsigned int nesting_level_left_ = MAX_NESTING_LEVEL) :
|
2012-07-19 20:35:23 +02:00
|
|
|
face (face_),
|
|
|
|
glyphs (glyphs_),
|
2012-11-23 23:55:40 +01:00
|
|
|
recurse_func (NULL),
|
2012-04-23 19:04:38 +02:00
|
|
|
nesting_level_left (nesting_level_left_),
|
|
|
|
debug_depth (0) {}
|
2012-11-23 23:55:40 +01:00
|
|
|
|
|
|
|
void set_recurse_func (recurse_func_t func) { recurse_func = func; }
|
2012-04-23 19:04:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-08 04:25:24 +02:00
|
|
|
#ifndef HB_DEBUG_WOULD_APPLY
|
|
|
|
#define HB_DEBUG_WOULD_APPLY (HB_DEBUG+0)
|
|
|
|
#endif
|
|
|
|
|
2012-11-23 21:32:14 +01:00
|
|
|
#define TRACE_WOULD_APPLY(this) \
|
2012-11-23 21:06:59 +01:00
|
|
|
hb_auto_trace_t<HB_DEBUG_WOULD_APPLY, bool> trace \
|
2012-11-23 23:29:05 +01:00
|
|
|
(&c->debug_depth, c->get_name (), this, HB_FUNC, \
|
2012-11-23 21:06:59 +01:00
|
|
|
"%d glyphs", c->len);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
|
|
|
struct hb_would_apply_context_t
|
|
|
|
{
|
2012-11-23 22:40:04 +01:00
|
|
|
inline const char *get_name (void) { return "WOULD_APPLY"; }
|
|
|
|
static const unsigned int max_debug_depth = HB_DEBUG_WOULD_APPLY;
|
2012-11-22 22:47:53 +01:00
|
|
|
typedef bool return_t;
|
|
|
|
template <typename T>
|
|
|
|
inline return_t process (const T &obj) { return obj.would_apply (this); }
|
|
|
|
static return_t default_return_value (void) { return false; }
|
2013-01-04 08:25:27 +01:00
|
|
|
bool stop_sublookup_iteration (return_t r) const { return r; }
|
2012-11-22 22:47:53 +01:00
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
hb_face_t *face;
|
2012-08-08 04:25:24 +02:00
|
|
|
const hb_codepoint_t *glyphs;
|
2012-07-19 20:35:23 +02:00
|
|
|
unsigned int len;
|
2012-08-23 22:22:28 +02:00
|
|
|
bool zero_context;
|
2012-07-19 20:35:23 +02:00
|
|
|
unsigned int debug_depth;
|
|
|
|
|
|
|
|
hb_would_apply_context_t (hb_face_t *face_,
|
2012-08-08 04:25:24 +02:00
|
|
|
const hb_codepoint_t *glyphs_,
|
|
|
|
unsigned int len_,
|
2012-09-04 21:15:19 +02:00
|
|
|
bool zero_context_) :
|
2012-07-19 20:35:23 +02:00
|
|
|
face (face_),
|
2012-08-08 04:25:24 +02:00
|
|
|
glyphs (glyphs_),
|
|
|
|
len (len_),
|
2012-08-23 22:22:28 +02:00
|
|
|
zero_context (zero_context_),
|
2012-11-23 22:40:04 +01:00
|
|
|
debug_depth (0) {}
|
2012-07-19 20:35:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-11-17 04:07:06 +01:00
|
|
|
|
|
|
|
#ifndef HB_DEBUG_COLLECT_GLYPHS
|
|
|
|
#define HB_DEBUG_COLLECT_GLYPHS (HB_DEBUG+0)
|
|
|
|
#endif
|
|
|
|
|
2012-11-23 21:32:14 +01:00
|
|
|
#define TRACE_COLLECT_GLYPHS(this) \
|
2012-12-05 22:49:47 +01:00
|
|
|
hb_auto_trace_t<HB_DEBUG_COLLECT_GLYPHS, hb_void_t> trace \
|
2012-11-23 23:29:05 +01:00
|
|
|
(&c->debug_depth, c->get_name (), this, HB_FUNC, \
|
2012-11-23 21:06:59 +01:00
|
|
|
"");
|
2012-11-17 04:07:06 +01:00
|
|
|
|
|
|
|
struct hb_collect_glyphs_context_t
|
|
|
|
{
|
2012-11-23 22:40:04 +01:00
|
|
|
inline const char *get_name (void) { return "COLLECT_GLYPHS"; }
|
|
|
|
static const unsigned int max_debug_depth = HB_DEBUG_COLLECT_GLYPHS;
|
2012-12-05 22:49:47 +01:00
|
|
|
typedef hb_void_t return_t;
|
2012-11-24 00:13:48 +01:00
|
|
|
typedef return_t (*recurse_func_t) (hb_collect_glyphs_context_t *c, unsigned int lookup_index);
|
2012-11-22 22:47:53 +01:00
|
|
|
template <typename T>
|
2012-12-05 22:49:47 +01:00
|
|
|
inline return_t process (const T &obj) { obj.collect_glyphs (this); return HB_VOID; }
|
|
|
|
static return_t default_return_value (void) { return HB_VOID; }
|
2013-01-04 08:25:27 +01:00
|
|
|
bool stop_sublookup_iteration (return_t r HB_UNUSED) const { return false; }
|
2012-11-22 22:47:53 +01:00
|
|
|
return_t recurse (unsigned int lookup_index)
|
|
|
|
{
|
2012-11-24 00:13:48 +01:00
|
|
|
if (unlikely (nesting_level_left == 0 || !recurse_func))
|
|
|
|
return default_return_value ();
|
|
|
|
|
2012-12-04 22:58:09 +01:00
|
|
|
/* Note that GPOS sets recurse_func to NULL already, so it doesn't get
|
|
|
|
* past the previous check. For GSUB, we only want to collect the output
|
2012-12-04 23:13:09 +01:00
|
|
|
* glyphs in the recursion. If output is not requested, we can go home now. */
|
|
|
|
|
|
|
|
if (output == hb_set_get_empty ())
|
2012-12-05 22:49:47 +01:00
|
|
|
return HB_VOID;
|
2012-12-04 23:13:09 +01:00
|
|
|
|
|
|
|
hb_set_t *old_before = before;
|
|
|
|
hb_set_t *old_input = input;
|
|
|
|
hb_set_t *old_after = after;
|
|
|
|
before = input = after = hb_set_get_empty ();
|
2012-12-04 22:58:09 +01:00
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
nesting_level_left--;
|
2012-12-04 23:13:09 +01:00
|
|
|
recurse_func (this, lookup_index);
|
2012-11-24 00:13:48 +01:00
|
|
|
nesting_level_left++;
|
2012-12-04 23:13:09 +01:00
|
|
|
|
|
|
|
before = old_before;
|
|
|
|
input = old_input;
|
|
|
|
after = old_after;
|
|
|
|
|
2012-12-05 22:49:47 +01:00
|
|
|
return HB_VOID;
|
2012-11-22 22:47:53 +01:00
|
|
|
}
|
|
|
|
|
2012-11-17 04:07:06 +01:00
|
|
|
hb_face_t *face;
|
2012-12-04 23:08:41 +01:00
|
|
|
hb_set_t *before;
|
|
|
|
hb_set_t *input;
|
|
|
|
hb_set_t *after;
|
|
|
|
hb_set_t *output;
|
2012-11-24 00:13:48 +01:00
|
|
|
recurse_func_t recurse_func;
|
|
|
|
unsigned int nesting_level_left;
|
2012-11-17 04:07:06 +01:00
|
|
|
unsigned int debug_depth;
|
|
|
|
|
|
|
|
hb_collect_glyphs_context_t (hb_face_t *face_,
|
|
|
|
hb_set_t *glyphs_before, /* OUT. May be NULL */
|
|
|
|
hb_set_t *glyphs_input, /* OUT. May be NULL */
|
|
|
|
hb_set_t *glyphs_after, /* OUT. May be NULL */
|
2012-11-24 00:13:48 +01:00
|
|
|
hb_set_t *glyphs_output, /* OUT. May be NULL */
|
|
|
|
unsigned int nesting_level_left_ = MAX_NESTING_LEVEL) :
|
2012-11-17 04:07:06 +01:00
|
|
|
face (face_),
|
2012-12-04 23:08:41 +01:00
|
|
|
before (glyphs_before ? glyphs_before : hb_set_get_empty ()),
|
|
|
|
input (glyphs_input ? glyphs_input : hb_set_get_empty ()),
|
|
|
|
after (glyphs_after ? glyphs_after : hb_set_get_empty ()),
|
|
|
|
output (glyphs_output ? glyphs_output : hb_set_get_empty ()),
|
2012-11-24 00:13:48 +01:00
|
|
|
recurse_func (NULL),
|
|
|
|
nesting_level_left (nesting_level_left_),
|
2012-11-23 22:40:04 +01:00
|
|
|
debug_depth (0) {}
|
2012-11-24 00:13:48 +01:00
|
|
|
|
|
|
|
void set_recurse_func (recurse_func_t func) { recurse_func = func; }
|
2012-11-17 04:07:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-11-22 20:38:10 +01:00
|
|
|
struct hb_get_coverage_context_t
|
|
|
|
{
|
2012-11-23 22:40:04 +01:00
|
|
|
inline const char *get_name (void) { return "GET_COVERAGE"; }
|
|
|
|
static const unsigned int max_debug_depth = 0;
|
2012-11-22 20:38:10 +01:00
|
|
|
typedef const Coverage &return_t;
|
|
|
|
template <typename T>
|
|
|
|
inline return_t process (const T &obj) { return obj.get_coverage (); }
|
2012-11-23 22:40:04 +01:00
|
|
|
static return_t default_return_value (void) { return Null(Coverage); }
|
2012-11-22 22:47:53 +01:00
|
|
|
|
2012-11-23 22:40:04 +01:00
|
|
|
hb_get_coverage_context_t (void) :
|
|
|
|
debug_depth (0) {}
|
|
|
|
|
|
|
|
unsigned int debug_depth;
|
2012-11-22 20:38:10 +01: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
|
|
|
|
|
2012-11-23 21:32:14 +01:00
|
|
|
#define TRACE_APPLY(this) \
|
2012-11-23 21:06:59 +01:00
|
|
|
hb_auto_trace_t<HB_DEBUG_APPLY, bool> trace \
|
2012-11-23 23:29:05 +01:00
|
|
|
(&c->debug_depth, c->get_name (), this, HB_FUNC, \
|
2012-11-23 21:06:59 +01:00
|
|
|
"idx %d codepoint %u", c->buffer->idx, c->buffer->cur().codepoint);
|
2009-08-28 23:14:33 +02:00
|
|
|
|
2010-04-29 08:19:21 +02:00
|
|
|
struct hb_apply_context_t
|
|
|
|
{
|
2012-11-23 22:40:04 +01:00
|
|
|
inline const char *get_name (void) { return "APPLY"; }
|
|
|
|
static const unsigned int max_debug_depth = HB_DEBUG_APPLY;
|
2012-11-22 22:05:59 +01:00
|
|
|
typedef bool return_t;
|
|
|
|
typedef return_t (*recurse_func_t) (hb_apply_context_t *c, unsigned int lookup_index);
|
|
|
|
template <typename T>
|
|
|
|
inline return_t process (const T &obj) { return obj.apply (this); }
|
2012-11-23 20:21:35 +01:00
|
|
|
static return_t default_return_value (void) { return false; }
|
2013-01-04 08:25:27 +01:00
|
|
|
bool stop_sublookup_iteration (return_t r) const { return r; }
|
2012-11-22 22:05:59 +01:00
|
|
|
return_t recurse (unsigned int lookup_index)
|
|
|
|
{
|
|
|
|
if (unlikely (nesting_level_left == 0 || !recurse_func))
|
|
|
|
return default_return_value ();
|
|
|
|
|
2012-11-24 07:13:20 +01:00
|
|
|
nesting_level_left--;
|
2012-11-30 07:07:06 +01:00
|
|
|
bool ret = recurse_func (this, lookup_index);
|
2012-11-24 07:13:20 +01:00
|
|
|
nesting_level_left++;
|
2012-11-30 07:07:06 +01:00
|
|
|
return ret;
|
2012-11-22 22:05:59 +01:00
|
|
|
}
|
|
|
|
|
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;
|
2012-11-22 22:05:59 +01:00
|
|
|
recurse_func_t recurse_func;
|
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 */
|
2012-07-31 01:30:01 +02:00
|
|
|
const GDEF &gdef;
|
2012-07-31 01:37:44 +02:00
|
|
|
bool has_glyph_classes;
|
2012-11-23 22:40:04 +01:00
|
|
|
unsigned int debug_depth;
|
2010-10-27 23:39:01 +02:00
|
|
|
|
2012-04-11 23:11:05 +02:00
|
|
|
|
|
|
|
hb_apply_context_t (hb_font_t *font_,
|
|
|
|
hb_buffer_t *buffer_,
|
2012-09-04 21:15:19 +02:00
|
|
|
hb_mask_t lookup_mask_) :
|
2012-08-02 14:36:40 +02:00
|
|
|
font (font_), face (font->face), buffer (buffer_),
|
2012-04-11 23:11:05 +02:00
|
|
|
direction (buffer_->props.direction),
|
|
|
|
lookup_mask (lookup_mask_),
|
2012-11-22 22:05:59 +01:00
|
|
|
recurse_func (NULL),
|
2012-05-13 15:21:06 +02:00
|
|
|
nesting_level_left (MAX_NESTING_LEVEL),
|
2012-11-23 22:40:04 +01:00
|
|
|
lookup_props (0), property (0),
|
2012-08-02 14:36:40 +02:00
|
|
|
gdef (*hb_ot_layout_from_face (face)->gdef),
|
2012-11-23 22:40:04 +01:00
|
|
|
has_glyph_classes (gdef.has_glyph_classes ()),
|
|
|
|
debug_depth (0) {}
|
2012-04-11 23:11:05 +02:00
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
void set_recurse_func (recurse_func_t func) { recurse_func = func; }
|
|
|
|
void set_lookup_props (unsigned int lookup_props_) { lookup_props = lookup_props_; }
|
|
|
|
void set_lookup (const Lookup &l) { lookup_props = l.get_props (); }
|
2012-04-11 23:11:05 +02:00
|
|
|
|
2013-02-11 19:14:15 +01:00
|
|
|
struct skipping_forward_iterator_t
|
2012-01-17 04:05:08 +01:00
|
|
|
{
|
2013-02-11 19:14:15 +01:00
|
|
|
inline skipping_forward_iterator_t (hb_apply_context_t *c_,
|
|
|
|
unsigned int start_index_,
|
|
|
|
unsigned int num_items_,
|
|
|
|
bool context_match = false)
|
2012-01-17 04:05:08 +01:00
|
|
|
{
|
|
|
|
c = c_;
|
|
|
|
idx = start_index_;
|
|
|
|
num_items = num_items_;
|
2012-05-13 15:04:00 +02:00
|
|
|
mask = context_match ? -1 : c->lookup_mask;
|
2012-05-13 15:45:18 +02:00
|
|
|
syllable = context_match ? 0 : c->buffer->cur().syllable ();
|
2012-05-13 15:17:51 +02:00
|
|
|
end = c->buffer->len;
|
2012-01-17 04:05:08 +01:00
|
|
|
}
|
|
|
|
inline bool has_no_chance (void) const
|
|
|
|
{
|
|
|
|
return unlikely (num_items && idx + num_items >= end);
|
|
|
|
}
|
2012-06-09 09:05:20 +02:00
|
|
|
inline void reject (void)
|
2012-06-09 04:04:23 +02:00
|
|
|
{
|
|
|
|
num_items++;
|
|
|
|
}
|
2012-01-17 04:05:08 +01:00
|
|
|
inline bool next (unsigned int *property_out,
|
2012-07-20 03:02:38 +02:00
|
|
|
unsigned int lookup_props)
|
2012-01-17 04:05:08 +01:00
|
|
|
{
|
2012-01-18 22:07:53 +01:00
|
|
|
assert (num_items > 0);
|
2012-01-17 04:05:08 +01:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if (has_no_chance ())
|
|
|
|
return false;
|
2012-01-18 00:08:41 +01:00
|
|
|
idx++;
|
2013-02-11 19:27:17 +01:00
|
|
|
} while (c->should_skip (&c->buffer->info[idx], lookup_props, property_out));
|
2012-01-17 04:05:08 +01:00
|
|
|
num_items--;
|
2012-05-11 17:29:40 +02:00
|
|
|
return (c->buffer->info[idx].mask & mask) && (!syllable || syllable == c->buffer->info[idx].syllable ());
|
2012-01-17 04:05:08 +01:00
|
|
|
}
|
|
|
|
inline bool next (unsigned int *property_out = NULL)
|
|
|
|
{
|
|
|
|
return next (property_out, c->lookup_props);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int idx;
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2012-01-17 04:05:08 +01:00
|
|
|
hb_apply_context_t *c;
|
|
|
|
unsigned int num_items;
|
2012-05-11 16:01:44 +02:00
|
|
|
hb_mask_t mask;
|
2012-05-11 17:29:40 +02:00
|
|
|
uint8_t syllable;
|
2012-01-17 04:05:08 +01:00
|
|
|
unsigned int end;
|
|
|
|
};
|
|
|
|
|
2013-02-11 19:14:15 +01:00
|
|
|
struct skipping_backward_iterator_t
|
2012-01-17 04:05:08 +01:00
|
|
|
{
|
2013-02-11 19:14:15 +01:00
|
|
|
inline skipping_backward_iterator_t (hb_apply_context_t *c_,
|
|
|
|
unsigned int start_index_,
|
|
|
|
unsigned int num_items_,
|
|
|
|
hb_mask_t mask_ = 0,
|
|
|
|
bool match_syllable_ = true)
|
2012-01-17 04:05:08 +01:00
|
|
|
{
|
|
|
|
c = c_;
|
|
|
|
idx = start_index_;
|
|
|
|
num_items = num_items_;
|
2012-05-11 16:01:44 +02:00
|
|
|
mask = mask_ ? mask_ : c->lookup_mask;
|
2012-05-13 15:45:18 +02:00
|
|
|
syllable = match_syllable_ ? c->buffer->cur().syllable () : 0;
|
2012-01-17 04:05:08 +01:00
|
|
|
}
|
|
|
|
inline bool has_no_chance (void) const
|
|
|
|
{
|
2012-01-18 22:07:53 +01:00
|
|
|
return unlikely (idx < num_items);
|
2012-01-17 04:05:08 +01:00
|
|
|
}
|
2012-06-09 09:05:20 +02:00
|
|
|
inline void reject (void)
|
2012-06-09 04:04:23 +02:00
|
|
|
{
|
|
|
|
num_items++;
|
|
|
|
}
|
2012-01-17 04:05:08 +01:00
|
|
|
inline bool prev (unsigned int *property_out,
|
2012-07-20 03:02:38 +02:00
|
|
|
unsigned int lookup_props)
|
2012-01-17 04:05:08 +01:00
|
|
|
{
|
2012-01-18 22:07:53 +01:00
|
|
|
assert (num_items > 0);
|
2012-01-17 04:05:08 +01:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if (has_no_chance ())
|
|
|
|
return false;
|
|
|
|
idx--;
|
2013-02-11 19:27:17 +01:00
|
|
|
} while (c->should_skip (&c->buffer->out_info[idx], lookup_props, property_out));
|
2012-01-17 04:05:08 +01:00
|
|
|
num_items--;
|
2012-05-11 17:29:40 +02:00
|
|
|
return (c->buffer->out_info[idx].mask & mask) && (!syllable || syllable == c->buffer->out_info[idx].syllable ());
|
2012-01-17 04:05:08 +01:00
|
|
|
}
|
|
|
|
inline bool prev (unsigned int *property_out = NULL)
|
|
|
|
{
|
|
|
|
return prev (property_out, c->lookup_props);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int idx;
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2012-01-17 04:05:08 +01:00
|
|
|
hb_apply_context_t *c;
|
|
|
|
unsigned int num_items;
|
2012-05-11 16:01:44 +02:00
|
|
|
hb_mask_t mask;
|
2012-05-11 17:29:40 +02:00
|
|
|
uint8_t syllable;
|
2012-01-17 04:05:08 +01:00
|
|
|
};
|
|
|
|
|
2012-07-31 01:47:53 +02:00
|
|
|
inline bool
|
|
|
|
match_properties_mark (hb_codepoint_t glyph,
|
|
|
|
unsigned int glyph_props,
|
|
|
|
unsigned int lookup_props) const
|
|
|
|
{
|
|
|
|
/* If using mark filtering sets, the high short of
|
|
|
|
* lookup_props has the set index.
|
|
|
|
*/
|
|
|
|
if (lookup_props & LookupFlag::UseMarkFilteringSet)
|
|
|
|
return gdef.mark_set_covers (lookup_props >> 16, glyph);
|
|
|
|
|
|
|
|
/* The second byte of lookup_props has the meaning
|
|
|
|
* "ignore marks of attachment type different than
|
|
|
|
* the attachment type specified."
|
|
|
|
*/
|
|
|
|
if (lookup_props & LookupFlag::MarkAttachmentType)
|
|
|
|
return (lookup_props & LookupFlag::MarkAttachmentType) == (glyph_props & LookupFlag::MarkAttachmentType);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
match_properties (hb_codepoint_t glyph,
|
|
|
|
unsigned int glyph_props,
|
|
|
|
unsigned int lookup_props) const
|
|
|
|
{
|
|
|
|
/* Not covered, if, for example, glyph class is ligature and
|
|
|
|
* lookup_props includes LookupFlags::IgnoreLigatures
|
|
|
|
*/
|
|
|
|
if (glyph_props & lookup_props & LookupFlag::IgnoreFlags)
|
|
|
|
return false;
|
|
|
|
|
2012-11-16 22:34:29 +01:00
|
|
|
if (unlikely (glyph_props & HB_OT_LAYOUT_GLYPH_PROPS_MARK))
|
2012-07-31 01:47:53 +02:00
|
|
|
return match_properties_mark (glyph, glyph_props, lookup_props);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
check_glyph_property (hb_glyph_info_t *info,
|
|
|
|
unsigned int lookup_props,
|
|
|
|
unsigned int *property_out) const
|
2012-01-19 03:19:32 +01:00
|
|
|
{
|
2012-06-09 07:10:26 +02:00
|
|
|
unsigned int property;
|
2012-07-31 01:47:53 +02:00
|
|
|
|
2012-07-31 01:54:50 +02:00
|
|
|
property = info->glyph_props();
|
2012-07-31 01:47:53 +02:00
|
|
|
*property_out = property;
|
|
|
|
|
|
|
|
return match_properties (info->codepoint, property, lookup_props);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
2013-02-11 19:27:17 +01:00
|
|
|
should_skip (hb_glyph_info_t *info,
|
|
|
|
unsigned int lookup_props,
|
|
|
|
unsigned int *property_out) const
|
2012-07-31 01:47:53 +02:00
|
|
|
{
|
|
|
|
unsigned int property;
|
|
|
|
|
2012-07-31 01:54:50 +02:00
|
|
|
property = info->glyph_props();
|
2012-07-31 01:47:53 +02:00
|
|
|
if (property_out)
|
|
|
|
*property_out = property;
|
|
|
|
|
2013-02-11 19:27:17 +01:00
|
|
|
return !match_properties (info->codepoint, property, lookup_props);
|
2012-07-31 01:47:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-11 19:27:17 +01:00
|
|
|
inline bool should_skip_current_glyph (void) const
|
2012-07-31 01:47:53 +02:00
|
|
|
{
|
2013-02-11 19:27:17 +01:00
|
|
|
return should_skip (&buffer->cur(), lookup_props, NULL);
|
2012-01-19 03:19:32 +01:00
|
|
|
}
|
2012-01-17 04:05:08 +01:00
|
|
|
|
2012-07-31 01:30:01 +02:00
|
|
|
inline void set_class (hb_codepoint_t glyph_index, unsigned int class_guess) const
|
2012-07-16 22:13:32 +02:00
|
|
|
{
|
2012-07-31 00:46:41 +02:00
|
|
|
if (likely (has_glyph_classes))
|
2012-07-31 01:54:50 +02:00
|
|
|
buffer->cur().glyph_props() = gdef.get_glyph_props (glyph_index);
|
2012-07-31 01:30:01 +02:00
|
|
|
else if (class_guess)
|
2012-07-31 01:54:50 +02:00
|
|
|
buffer->cur().glyph_props() = class_guess;
|
2012-07-16 22:13:32 +02:00
|
|
|
}
|
2012-01-17 04:05:08 +01:00
|
|
|
|
2012-06-09 03:44:06 +02:00
|
|
|
inline void output_glyph (hb_codepoint_t glyph_index,
|
2012-07-31 01:30:01 +02:00
|
|
|
unsigned int class_guess = 0) const
|
2012-06-09 03:44:06 +02:00
|
|
|
{
|
2012-07-31 01:30:01 +02:00
|
|
|
set_class (glyph_index, class_guess);
|
2012-06-09 03:44:06 +02:00
|
|
|
buffer->output_glyph (glyph_index);
|
|
|
|
}
|
2012-05-23 04:12:22 +02:00
|
|
|
inline void replace_glyph (hb_codepoint_t glyph_index,
|
2012-07-31 01:30:01 +02:00
|
|
|
unsigned int class_guess = 0) const
|
2010-10-27 23:39:01 +02:00
|
|
|
{
|
2012-07-31 01:30:01 +02:00
|
|
|
set_class (glyph_index, class_guess);
|
2010-10-27 23:39:01 +02:00
|
|
|
buffer->replace_glyph (glyph_index);
|
|
|
|
}
|
2012-07-31 00:36:42 +02:00
|
|
|
inline void replace_glyph_inplace (hb_codepoint_t glyph_index,
|
2012-07-31 01:30:01 +02:00
|
|
|
unsigned int class_guess = 0) const
|
2012-07-31 00:36:42 +02:00
|
|
|
{
|
2012-07-31 01:30:01 +02:00
|
|
|
set_class (glyph_index, class_guess);
|
2012-07-31 00:36:42 +02:00
|
|
|
buffer->cur().codepoint = glyph_index;
|
|
|
|
}
|
2010-04-29 08:19:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2010-05-05 07:13:09 +02:00
|
|
|
|
2012-04-24 04:23:17 +02:00
|
|
|
typedef bool (*intersects_func_t) (hb_set_t *glyphs, const USHORT &value, const void *data);
|
2012-11-24 00:54:59 +01:00
|
|
|
typedef void (*collect_glyphs_func_t) (hb_set_t *glyphs, const USHORT &value, const void *data);
|
2010-05-10 23:47:22 +02:00
|
|
|
typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const USHORT &value, const void *data);
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextClosureFuncs
|
|
|
|
{
|
|
|
|
intersects_func_t intersects;
|
|
|
|
};
|
2012-11-24 00:54:59 +01:00
|
|
|
struct ContextCollectGlyphsFuncs
|
|
|
|
{
|
|
|
|
collect_glyphs_func_t collect;
|
|
|
|
};
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextApplyFuncs
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-18 04:11:30 +02:00
|
|
|
match_func_t match;
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
|
2012-04-24 04:23:17 +02:00
|
|
|
static inline bool intersects_glyph (hb_set_t *glyphs, const USHORT &value, const void *data HB_UNUSED)
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
|
|
|
return glyphs->has (value);
|
|
|
|
}
|
2012-04-24 04:23:17 +02:00
|
|
|
static inline bool intersects_class (hb_set_t *glyphs, const USHORT &value, const void *data)
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
|
|
|
const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
|
|
|
|
return class_def.intersects_class (glyphs, value);
|
|
|
|
}
|
2012-04-24 04:23:17 +02:00
|
|
|
static inline bool intersects_coverage (hb_set_t *glyphs, const USHORT &value, const void *data)
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
|
|
|
const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
|
|
|
|
return (data+coverage).intersects (glyphs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool intersects_array (hb_closure_context_t *c,
|
|
|
|
unsigned int count,
|
|
|
|
const USHORT values[],
|
|
|
|
intersects_func_t intersects_func,
|
|
|
|
const void *intersects_data)
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (likely (!intersects_func (c->glyphs, values[i], intersects_data)))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
static inline void collect_glyph (hb_set_t *glyphs, const USHORT &value, const void *data HB_UNUSED)
|
|
|
|
{
|
|
|
|
glyphs->add (value);
|
|
|
|
}
|
|
|
|
static inline void collect_class (hb_set_t *glyphs, const USHORT &value, const void *data)
|
|
|
|
{
|
|
|
|
const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
|
|
|
|
class_def.add_class (glyphs, value);
|
|
|
|
}
|
|
|
|
static inline void collect_coverage (hb_set_t *glyphs, const USHORT &value, const void *data)
|
|
|
|
{
|
|
|
|
const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
|
|
|
|
(data+coverage).add_coverage (glyphs);
|
|
|
|
}
|
2012-12-06 00:46:04 +01:00
|
|
|
static inline void collect_array (hb_collect_glyphs_context_t *c HB_UNUSED,
|
2012-11-24 07:55:34 +01:00
|
|
|
hb_set_t *glyphs,
|
2012-11-24 00:54:59 +01:00
|
|
|
unsigned int count,
|
|
|
|
const USHORT values[],
|
|
|
|
collect_glyphs_func_t collect_func,
|
|
|
|
const void *collect_data)
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2012-11-24 07:55:34 +01:00
|
|
|
collect_func (glyphs, values[i], collect_data);
|
2012-11-24 00:54:59 +01: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;
|
|
|
|
}
|
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;
|
2012-04-23 22:54:58 +02:00
|
|
|
return (data+coverage).get_coverage (glyph_id) != NOT_COVERED;
|
2009-05-18 04:11:30 +02:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
static inline bool would_match_input (hb_would_apply_context_t *c,
|
|
|
|
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,
|
|
|
|
const void *match_data)
|
|
|
|
{
|
|
|
|
if (count != c->len)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (unsigned int i = 1; i < count; i++)
|
2012-08-08 04:25:24 +02:00
|
|
|
if (likely (!match_func (c->glyphs[i], input[i - 1], match_data)))
|
2012-07-19 20:35:23 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
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,
|
2012-08-29 04:58:55 +02:00
|
|
|
unsigned int *end_offset = NULL,
|
|
|
|
bool *p_is_mark_ligature = NULL,
|
|
|
|
unsigned int *p_total_component_count = NULL)
|
2009-05-18 09:56:39 +02:00
|
|
|
{
|
2012-11-23 21:34:11 +01:00
|
|
|
TRACE_APPLY (NULL);
|
2012-08-29 04:24:51 +02:00
|
|
|
|
2013-02-11 19:14:15 +01:00
|
|
|
hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, c->buffer->idx, count - 1);
|
2012-08-29 04:24:51 +02:00
|
|
|
if (skippy_iter.has_no_chance ()) return TRACE_RETURN (false);
|
|
|
|
|
2012-08-29 04:58:55 +02:00
|
|
|
/*
|
|
|
|
* This is perhaps the trickiest part of OpenType... Remarks:
|
|
|
|
*
|
|
|
|
* - If all components of the ligature were marks, we call this a mark ligature.
|
|
|
|
*
|
|
|
|
* - If there is no GDEF, and the ligature is NOT a mark ligature, we categorize
|
|
|
|
* it as a ligature glyph.
|
|
|
|
*
|
|
|
|
* - Ligatures cannot be formed across glyphs attached to different components
|
|
|
|
* of previous ligatures. Eg. the sequence is LAM,SHADDA,LAM,FATHA,HEH, and
|
|
|
|
* LAM,LAM,HEH form a ligature, leaving SHADDA,FATHA next to eachother.
|
|
|
|
* However, it would be wrong to ligate that SHADDA,FATHA sequence.o
|
|
|
|
* There is an exception to this: If a ligature tries ligating with marks that
|
|
|
|
* belong to it itself, go ahead, assuming that the font designer knows what
|
|
|
|
* they are doing (otherwise it can break Indic stuff when a matra wants to
|
|
|
|
* ligate with a conjunct...)
|
|
|
|
*/
|
|
|
|
|
2012-11-16 22:34:29 +01:00
|
|
|
bool is_mark_ligature = !!(c->property & HB_OT_LAYOUT_GLYPH_PROPS_MARK);
|
2012-08-29 04:24:51 +02:00
|
|
|
|
|
|
|
unsigned int total_component_count = 0;
|
|
|
|
total_component_count += get_lig_num_comps (c->buffer->cur());
|
|
|
|
|
|
|
|
unsigned int first_lig_id = get_lig_id (c->buffer->cur());
|
|
|
|
unsigned int first_lig_comp = get_lig_comp (c->buffer->cur());
|
2009-05-18 09:56:39 +02:00
|
|
|
|
2012-01-16 23:03:55 +01:00
|
|
|
for (unsigned int i = 1; i < count; i++)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-08-29 04:24:51 +02:00
|
|
|
unsigned int property;
|
2009-05-18 09:56:39 +02:00
|
|
|
|
2012-08-29 04:24:51 +02:00
|
|
|
if (!skippy_iter.next (&property)) return TRACE_RETURN (false);
|
|
|
|
|
2012-10-30 05:51:56 +01:00
|
|
|
if (likely (!match_func (c->buffer->info[skippy_iter.idx].codepoint, input[i - 1], match_data))) return TRACE_RETURN (false);
|
2012-08-29 04:24:51 +02:00
|
|
|
|
|
|
|
unsigned int this_lig_id = get_lig_id (c->buffer->info[skippy_iter.idx]);
|
|
|
|
unsigned int this_lig_comp = get_lig_comp (c->buffer->info[skippy_iter.idx]);
|
|
|
|
|
|
|
|
if (first_lig_id && first_lig_comp) {
|
|
|
|
/* If first component was attached to a previous ligature component,
|
|
|
|
* all subsequent components should be attached to the same ligature
|
|
|
|
* component, otherwise we shouldn't ligate them. */
|
|
|
|
if (first_lig_id != this_lig_id || first_lig_comp != this_lig_comp)
|
|
|
|
return TRACE_RETURN (false);
|
|
|
|
} else {
|
|
|
|
/* If first component was NOT attached to a previous ligature component,
|
|
|
|
* all subsequent components should also NOT be attached to any ligature
|
|
|
|
* component, unless they are attached to the first component itself! */
|
|
|
|
if (this_lig_id && this_lig_comp && (this_lig_id != first_lig_id))
|
|
|
|
return TRACE_RETURN (false);
|
|
|
|
}
|
|
|
|
|
2012-11-16 22:34:29 +01:00
|
|
|
is_mark_ligature = is_mark_ligature && (property & HB_OT_LAYOUT_GLYPH_PROPS_MARK);
|
2012-08-29 04:24:51 +02:00
|
|
|
total_component_count += get_lig_num_comps (c->buffer->info[skippy_iter.idx]);
|
2009-05-18 09:56:39 +02:00
|
|
|
}
|
|
|
|
|
2012-05-13 15:17:51 +02:00
|
|
|
if (end_offset)
|
|
|
|
*end_offset = skippy_iter.idx - c->buffer->idx + 1;
|
2009-05-18 09:56:39 +02:00
|
|
|
|
2012-08-29 04:58:55 +02:00
|
|
|
if (p_is_mark_ligature)
|
|
|
|
*p_is_mark_ligature = is_mark_ligature;
|
|
|
|
|
|
|
|
if (p_total_component_count)
|
|
|
|
*p_total_component_count = total_component_count;
|
|
|
|
|
2012-10-30 03:03:55 +01:00
|
|
|
return TRACE_RETURN (true);
|
2009-05-18 09:56:39 +02:00
|
|
|
}
|
2012-08-29 05:18:22 +02:00
|
|
|
static inline void ligate_input (hb_apply_context_t *c,
|
|
|
|
unsigned int count, /* Including the first glyph (not matched) */
|
2012-12-06 00:46:04 +01:00
|
|
|
const USHORT input[] HB_UNUSED, /* Array of input values--start with second glyph */
|
2012-08-29 05:18:22 +02:00
|
|
|
hb_codepoint_t lig_glyph,
|
2012-12-06 00:46:04 +01:00
|
|
|
match_func_t match_func HB_UNUSED,
|
|
|
|
const void *match_data HB_UNUSED,
|
2012-08-29 05:18:22 +02:00
|
|
|
bool is_mark_ligature,
|
|
|
|
unsigned int total_component_count)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* - If it *is* a mark ligature, we don't allocate a new ligature id, and leave
|
|
|
|
* the ligature to keep its old ligature id. This will allow it to attach to
|
|
|
|
* a base ligature in GPOS. Eg. if the sequence is: LAM,LAM,SHADDA,FATHA,HEH,
|
|
|
|
* and LAM,LAM,HEH for a ligature, they will leave SHADDA and FATHA wit a
|
|
|
|
* ligature id and component value of 2. Then if SHADDA,FATHA form a ligature
|
|
|
|
* later, we don't want them to lose their ligature id/component, otherwise
|
|
|
|
* GPOS will fail to correctly position the mark ligature on top of the
|
|
|
|
* LAM,LAM,HEH ligature. See:
|
|
|
|
* https://bugzilla.gnome.org/show_bug.cgi?id=676343
|
|
|
|
*
|
|
|
|
* - If a ligature is formed of components that some of which are also ligatures
|
|
|
|
* themselves, and those ligature components had marks attached to *their*
|
|
|
|
* components, we have to attach the marks to the new ligature component
|
|
|
|
* positions! Now *that*'s tricky! And these marks may be following the
|
|
|
|
* last component of the whole sequence, so we should loop forward looking
|
|
|
|
* for them and update them.
|
|
|
|
*
|
|
|
|
* Eg. the sequence is LAM,LAM,SHADDA,FATHA,HEH, and the font first forms a
|
|
|
|
* 'calt' ligature of LAM,HEH, leaving the SHADDA and FATHA with a ligature
|
|
|
|
* id and component == 1. Now, during 'liga', the LAM and the LAM-HEH ligature
|
|
|
|
* form a LAM-LAM-HEH ligature. We need to reassign the SHADDA and FATHA to
|
|
|
|
* the new ligature with a component value of 2.
|
|
|
|
*
|
|
|
|
* This in fact happened to a font... See:
|
|
|
|
* https://bugzilla.gnome.org/show_bug.cgi?id=437633
|
|
|
|
*/
|
|
|
|
|
2012-11-16 22:34:29 +01:00
|
|
|
unsigned int klass = is_mark_ligature ? 0 : HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE;
|
2012-08-29 05:18:22 +02:00
|
|
|
unsigned int lig_id = is_mark_ligature ? 0 : allocate_lig_id (c->buffer);
|
|
|
|
unsigned int last_lig_id = get_lig_id (c->buffer->cur());
|
|
|
|
unsigned int last_num_components = get_lig_num_comps (c->buffer->cur());
|
|
|
|
unsigned int components_so_far = last_num_components;
|
|
|
|
|
|
|
|
if (!is_mark_ligature)
|
|
|
|
set_lig_props_for_ligature (c->buffer->cur(), lig_id, total_component_count);
|
|
|
|
c->replace_glyph (lig_glyph, klass);
|
|
|
|
|
|
|
|
for (unsigned int i = 1; i < count; i++)
|
|
|
|
{
|
2013-02-11 19:27:17 +01:00
|
|
|
while (c->should_skip_current_glyph ())
|
2012-08-29 05:18:22 +02:00
|
|
|
{
|
|
|
|
if (!is_mark_ligature) {
|
|
|
|
unsigned int new_lig_comp = components_so_far - last_num_components +
|
|
|
|
MIN (MAX (get_lig_comp (c->buffer->cur()), 1u), last_num_components);
|
|
|
|
set_lig_props_for_mark (c->buffer->cur(), lig_id, new_lig_comp);
|
|
|
|
}
|
|
|
|
c->buffer->next_glyph ();
|
|
|
|
}
|
|
|
|
|
|
|
|
last_lig_id = get_lig_id (c->buffer->cur());
|
|
|
|
last_num_components = get_lig_num_comps (c->buffer->cur());
|
|
|
|
components_so_far += last_num_components;
|
|
|
|
|
|
|
|
/* Skip the base glyph */
|
|
|
|
c->buffer->idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_mark_ligature && last_lig_id) {
|
|
|
|
/* Re-adjust components for any marks following. */
|
|
|
|
for (unsigned int i = c->buffer->idx; i < c->buffer->len; i++) {
|
|
|
|
if (last_lig_id == get_lig_id (c->buffer->info[i])) {
|
|
|
|
unsigned int new_lig_comp = components_so_far - last_num_components +
|
|
|
|
MIN (MAX (get_lig_comp (c->buffer->info[i]), 1u), last_num_components);
|
|
|
|
set_lig_props_for_mark (c->buffer->info[i], lig_id, new_lig_comp);
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-18 09:56:39 +02:00
|
|
|
|
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
|
|
|
{
|
2012-11-23 21:34:11 +01:00
|
|
|
TRACE_APPLY (NULL);
|
2012-08-29 04:24:51 +02:00
|
|
|
|
2013-02-11 19:14:15 +01:00
|
|
|
hb_apply_context_t::skipping_backward_iterator_t skippy_iter (c, c->buffer->backtrack_len (), count, true);
|
2012-01-17 04:05:08 +01:00
|
|
|
if (skippy_iter.has_no_chance ())
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-18 09:47:31 +02:00
|
|
|
|
2012-01-16 22:43:26 +01:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-01-17 04:05:08 +01:00
|
|
|
if (!skippy_iter.prev ())
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-18 09:47:31 +02:00
|
|
|
|
2012-01-17 04:05:08 +01:00
|
|
|
if (likely (!match_func (c->buffer->out_info[skippy_iter.idx].codepoint, backtrack[i], match_data)))
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-18 09:47:31 +02:00
|
|
|
}
|
|
|
|
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (true);
|
2009-05-18 09:47:31 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2012-11-23 21:34:11 +01:00
|
|
|
TRACE_APPLY (NULL);
|
2012-08-29 04:24:51 +02:00
|
|
|
|
2013-02-11 19:14:15 +01:00
|
|
|
hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, c->buffer->idx + offset - 1, count, true);
|
2012-01-17 04:05:08 +01:00
|
|
|
if (skippy_iter.has_no_chance ())
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2012-01-16 23:03:55 +01:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-01-17 04:05:08 +01:00
|
|
|
if (!skippy_iter.next ())
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-17 14:28:42 +02:00
|
|
|
|
2012-01-17 04:05:08 +01:00
|
|
|
if (likely (!match_func (c->buffer->info[skippy_iter.idx].codepoint, lookahead[i], match_data)))
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
|
|
|
|
2012-08-29 04:24:51 +02:00
|
|
|
return TRACE_RETURN (true);
|
2009-05-18 08:36:18 +02:00
|
|
|
}
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_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
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
template <typename context_t>
|
|
|
|
static inline void recurse_lookups (context_t *c,
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[] /* Array of LookupRecords--in design order */)
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < lookupCount; i++)
|
2012-11-22 05:33:13 +01:00
|
|
|
c->recurse (lookupRecord->lookupListIndex);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
2010-07-23 21:11:18 +02:00
|
|
|
|
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,
|
2012-11-22 22:05:59 +01:00
|
|
|
const LookupRecord lookupRecord[] /* Array of LookupRecords--in design order */)
|
2009-05-18 08:36:18 +02:00
|
|
|
{
|
2012-11-23 21:34:11 +01:00
|
|
|
TRACE_APPLY (NULL);
|
2012-11-23 21:06:59 +01:00
|
|
|
|
2012-05-13 15:17:51 +02:00
|
|
|
unsigned int end = c->buffer->len;
|
2011-07-22 17:28:07 +02:00
|
|
|
if (unlikely (count == 0 || c->buffer->idx + count > end))
|
2012-10-30 05:51:56 +01:00
|
|
|
return TRACE_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
|
|
|
{
|
2012-01-19 03:28:34 +01:00
|
|
|
if (unlikely (c->buffer->idx == end))
|
2012-10-30 05:51:56 +01:00
|
|
|
return TRACE_RETURN (true);
|
2013-02-11 19:27:17 +01:00
|
|
|
while (c->should_skip_current_glyph ())
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-18 10:15:25 +02:00
|
|
|
/* No lookup applied for this index */
|
2010-05-13 20:18:49 +02:00
|
|
|
c->buffer->next_glyph ();
|
2012-01-19 03:28:34 +01:00
|
|
|
if (unlikely (c->buffer->idx == end))
|
2012-10-30 05:51:56 +01:00
|
|
|
return TRACE_RETURN (true);
|
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 */
|
2012-11-22 22:05:59 +01:00
|
|
|
bool done = c->recurse (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))
|
2012-10-30 05:51:56 +01:00
|
|
|
return TRACE_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++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-30 05:51:56 +01:00
|
|
|
return TRACE_RETURN (true);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
2009-05-18 04:11:30 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2009-05-18 08:36:18 +02:00
|
|
|
|
|
|
|
/* Contextual lookups */
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextClosureLookupContext
|
|
|
|
{
|
|
|
|
ContextClosureFuncs funcs;
|
|
|
|
const void *intersects_data;
|
|
|
|
};
|
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
struct ContextCollectGlyphsLookupContext
|
|
|
|
{
|
|
|
|
ContextCollectGlyphsFuncs funcs;
|
|
|
|
const void *collect_data;
|
|
|
|
};
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextApplyLookupContext
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
ContextApplyFuncs funcs;
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data;
|
2009-05-18 08:36:18 +02:00
|
|
|
};
|
|
|
|
|
2012-04-24 05:03:12 +02:00
|
|
|
static inline void context_closure_lookup (hb_closure_context_t *c,
|
2012-04-23 22:54:58 +02:00
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[],
|
|
|
|
ContextClosureLookupContext &lookup_context)
|
|
|
|
{
|
2012-04-24 05:03:12 +02:00
|
|
|
if (intersects_array (c,
|
|
|
|
inputCount ? inputCount - 1 : 0, input,
|
|
|
|
lookup_context.funcs.intersects, lookup_context.intersects_data))
|
2012-11-24 00:54:59 +01:00
|
|
|
recurse_lookups (c,
|
|
|
|
lookupCount, lookupRecord);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
static inline void context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c,
|
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[],
|
|
|
|
ContextCollectGlyphsLookupContext &lookup_context)
|
|
|
|
{
|
2012-12-04 23:08:41 +01:00
|
|
|
collect_array (c, c->input,
|
2012-11-24 00:54:59 +01:00
|
|
|
inputCount ? inputCount - 1 : 0, input,
|
|
|
|
lookup_context.funcs.collect, lookup_context.collect_data);
|
|
|
|
recurse_lookups (c,
|
|
|
|
lookupCount, lookupRecord);
|
|
|
|
}
|
2012-04-23 22:54:58 +02:00
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
static inline bool context_would_apply_lookup (hb_would_apply_context_t *c,
|
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
2012-12-06 00:46:04 +01:00
|
|
|
unsigned int lookupCount HB_UNUSED,
|
|
|
|
const LookupRecord lookupRecord[] HB_UNUSED,
|
2012-07-19 20:35:23 +02:00
|
|
|
ContextApplyLookupContext &lookup_context)
|
|
|
|
{
|
|
|
|
return would_match_input (c,
|
|
|
|
inputCount, input,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data);
|
|
|
|
}
|
2012-04-23 22:54:58 +02:00
|
|
|
static inline bool context_apply_lookup (hb_apply_context_t *c,
|
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[],
|
|
|
|
ContextApplyLookupContext &lookup_context)
|
2009-05-18 08:36:18 +02:00
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
return match_input (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
inputCount, input,
|
2012-05-13 15:17:51 +02:00
|
|
|
lookup_context.funcs.match, lookup_context.match_data)
|
|
|
|
&& apply_lookup (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
inputCount,
|
2012-11-22 22:05:59 +01:00
|
|
|
lookupCount, lookupRecord);
|
2009-05-18 08:36:18 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct Rule
|
|
|
|
{
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
|
2012-04-24 05:03:12 +02:00
|
|
|
context_closure_lookup (c,
|
|
|
|
inputCount, input,
|
|
|
|
lookupCount, lookupRecord,
|
|
|
|
lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const
|
|
|
|
{
|
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
|
|
|
|
context_collect_glyphs_lookup (c,
|
|
|
|
inputCount, input,
|
|
|
|
lookupCount, lookupRecord,
|
|
|
|
lookup_context);
|
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
|
|
|
|
return TRACE_RETURN (context_would_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2010-05-07 01:33:31 +02:00
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (context_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, 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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2010-05-13 20:18:49 +02:00
|
|
|
return inputCount.sanitize (c)
|
|
|
|
&& lookupCount.sanitize (c)
|
|
|
|
&& c->check_range (input,
|
2012-04-23 19:04:38 +02:00
|
|
|
input[0].static_size * inputCount
|
|
|
|
+ lookupRecordX[0].static_size * lookupCount);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-18 04:11:30 +02:00
|
|
|
USHORT inputCount; /* Total number of glyphs in input
|
2012-04-23 22:54:58 +02:00
|
|
|
* glyph sequence--includes the first
|
2009-05-17 14:28:42 +02:00
|
|
|
* 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
|
|
|
|
{
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
unsigned int num_rules = rule.len;
|
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
2012-04-24 05:03:12 +02:00
|
|
|
(this+rule[i]).closure (c, lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:54:59 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const
|
|
|
|
{
|
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
|
|
|
unsigned int num_rules = rule.len;
|
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
|
|
|
(this+rule[i]).collect_glyphs (c, lookup_context);
|
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
unsigned int num_rules = rule.len;
|
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
|
|
|
{
|
|
|
|
if ((this+rule[i]).would_apply (c, lookup_context))
|
|
|
|
return TRACE_RETURN (true);
|
|
|
|
}
|
|
|
|
return TRACE_RETURN (false);
|
|
|
|
}
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
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))
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (true);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-17 14:28:42 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (rule.sanitize (c, this));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 14:28:42 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
inline void closure (hb_closure_context_t *c) const
|
2012-04-23 19:04:38 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
|
|
|
|
const Coverage &cov = (this+coverage);
|
|
|
|
|
|
|
|
struct ContextClosureLookupContext lookup_context = {
|
2012-11-22 05:33:13 +01:00
|
|
|
{intersects_glyph},
|
2012-04-23 22:54:58 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (cov.intersects_coverage (c->glyphs, i)) {
|
|
|
|
const RuleSet &rule_set = this+ruleSet[i];
|
2012-04-24 05:03:12 +02:00
|
|
|
rule_set.closure (c, lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
2012-04-23 19:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
|
|
|
|
{
|
2012-11-24 00:54:59 +01:00
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
2012-12-04 23:08:41 +01:00
|
|
|
(this+coverage).add_coverage (c->input);
|
2012-11-24 00:54:59 +01:00
|
|
|
|
|
|
|
struct ContextCollectGlyphsLookupContext lookup_context = {
|
|
|
|
{collect_glyph},
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2012-11-24 07:55:34 +01:00
|
|
|
(this+ruleSet[i]).collect_glyphs (c, lookup_context);
|
2012-11-24 00:13:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
2012-11-25 01:13:55 +01:00
|
|
|
const RuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])];
|
2012-07-19 20:35:23 +02:00
|
|
|
struct ContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_glyph},
|
2012-07-19 20:35:23 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
return TRACE_RETURN (rule_set.would_apply (c, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-11-22 05:33:13 +01:00
|
|
|
inline const Coverage &get_coverage (void) const
|
|
|
|
{
|
|
|
|
return this+coverage;
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-18 05:17:56 +02:00
|
|
|
|
2009-05-17 14:28:42 +02:00
|
|
|
const RuleSet &rule_set = this+ruleSet[index];
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_glyph},
|
2009-05-18 04:11:30 +02:00
|
|
|
NULL
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (coverage.sanitize (c, this) && ruleSet.sanitize (c, this));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 14:28:42 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
inline void closure (hb_closure_context_t *c) const
|
2012-04-23 19:04:38 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
if (!(this+coverage).intersects (c->glyphs))
|
2012-04-24 05:03:12 +02:00
|
|
|
return;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
|
|
|
const ClassDef &class_def = this+classDef;
|
|
|
|
|
|
|
|
struct ContextClosureLookupContext lookup_context = {
|
2012-11-22 05:33:13 +01:00
|
|
|
{intersects_class},
|
2013-01-03 06:36:37 +01:00
|
|
|
&class_def
|
2012-04-23 22:54:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (class_def.intersects_class (c->glyphs, i)) {
|
|
|
|
const RuleSet &rule_set = this+ruleSet[i];
|
2012-04-24 05:03:12 +02:00
|
|
|
rule_set.closure (c, lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
2012-04-23 19:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
|
|
|
|
{
|
2012-11-24 00:54:59 +01:00
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
2012-12-04 23:08:41 +01:00
|
|
|
(this+coverage).add_coverage (c->input);
|
2012-11-24 00:54:59 +01:00
|
|
|
|
2013-01-03 06:36:37 +01:00
|
|
|
const ClassDef &class_def = this+classDef;
|
2012-11-24 00:54:59 +01:00
|
|
|
struct ContextCollectGlyphsLookupContext lookup_context = {
|
|
|
|
{collect_class},
|
2013-01-03 06:36:37 +01:00
|
|
|
&class_def
|
2012-11-24 00:54:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2012-11-24 07:55:34 +01:00
|
|
|
(this+ruleSet[i]).collect_glyphs (c, lookup_context);
|
2012-11-24 00:13:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
|
|
|
const ClassDef &class_def = this+classDef;
|
2012-11-25 01:16:34 +01:00
|
|
|
unsigned int index = class_def.get_class (c->glyphs[0]);
|
2012-07-19 20:35:23 +02:00
|
|
|
const RuleSet &rule_set = this+ruleSet[index];
|
|
|
|
struct ContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_class},
|
2012-07-19 20:35:23 +02:00
|
|
|
&class_def
|
|
|
|
};
|
|
|
|
return TRACE_RETURN (rule_set.would_apply (c, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-11-22 05:33:13 +01:00
|
|
|
inline const Coverage &get_coverage (void) const
|
|
|
|
{
|
|
|
|
return this+coverage;
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
|
2012-05-11 02:33:11 +02:00
|
|
|
if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
|
2009-05-18 05:17:56 +02:00
|
|
|
|
|
|
|
const ClassDef &class_def = this+classDef;
|
2012-11-25 01:16:34 +01:00
|
|
|
index = class_def.get_class (c->buffer->cur().codepoint);
|
2009-05-17 14:28:42 +02:00
|
|
|
const RuleSet &rule_set = this+ruleSet[index];
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_class},
|
2010-05-10 23:47:22 +02:00
|
|
|
&class_def
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (coverage.sanitize (c, this) && classDef.sanitize (c, this) && ruleSet.sanitize (c, this));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 14:28:42 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
inline void closure (hb_closure_context_t *c) const
|
2012-04-23 19:04:38 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
if (!(this+coverage[0]).intersects (c->glyphs))
|
2012-04-24 05:03:12 +02:00
|
|
|
return;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * glyphCount);
|
|
|
|
struct ContextClosureLookupContext lookup_context = {
|
2012-11-22 05:33:13 +01:00
|
|
|
{intersects_coverage},
|
2012-04-23 22:54:58 +02:00
|
|
|
this
|
|
|
|
};
|
2012-04-24 05:03:12 +02:00
|
|
|
context_closure_lookup (c,
|
|
|
|
glyphCount, (const USHORT *) (coverage + 1),
|
|
|
|
lookupCount, lookupRecord,
|
|
|
|
lookup_context);
|
2012-04-23 19:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
|
|
|
|
{
|
2012-11-24 00:54:59 +01:00
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
2012-12-04 23:08:41 +01:00
|
|
|
(this+coverage[0]).add_coverage (c->input);
|
2012-11-24 00:54:59 +01:00
|
|
|
|
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * glyphCount);
|
|
|
|
struct ContextCollectGlyphsLookupContext lookup_context = {
|
|
|
|
{collect_coverage},
|
2012-11-30 07:38:24 +01:00
|
|
|
this
|
2012-11-24 00:54:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
context_collect_glyphs_lookup (c,
|
|
|
|
glyphCount, (const USHORT *) (coverage + 1),
|
|
|
|
lookupCount, lookupRecord,
|
|
|
|
lookup_context);
|
2012-11-24 00:13:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
|
|
|
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * glyphCount);
|
|
|
|
struct ContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_coverage},
|
2012-07-19 20:35:23 +02:00
|
|
|
this
|
|
|
|
};
|
|
|
|
return TRACE_RETURN (context_would_apply_lookup (c, glyphCount, (const USHORT *) (coverage + 1), lookupCount, lookupRecord, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-11-22 05:33:13 +01:00
|
|
|
inline const Coverage &get_coverage (void) const
|
|
|
|
{
|
|
|
|
return this+coverage[0];
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage[0]).get_coverage (c->buffer->cur().codepoint);
|
2012-05-11 02:33:11 +02:00
|
|
|
if (likely (index == NOT_COVERED)) return TRACE_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);
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_coverage},
|
2010-05-10 23:47:22 +02:00
|
|
|
this
|
2009-05-17 14:28:42 +02:00
|
|
|
};
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (context_apply_lookup (c, glyphCount, (const USHORT *) (coverage + 1), lookupCount, lookupRecord, 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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!c->check_struct (this)) return TRACE_RETURN (false);
|
2009-08-04 06:58:28 +02:00
|
|
|
unsigned int count = glyphCount;
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!c->check_array (coverage, coverage[0].static_size, count)) return TRACE_RETURN (false);
|
2009-08-04 06:58:28 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!coverage[i].sanitize (c, this)) return TRACE_RETURN (false);
|
2010-05-07 01:33:31 +02:00
|
|
|
LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * count);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 14:28:42 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
template <typename context_t>
|
|
|
|
inline typename context_t::return_t process (context_t *c) const
|
2012-11-17 04:07:06 +01:00
|
|
|
{
|
2012-11-23 23:23:41 +01:00
|
|
|
TRACE_PROCESS (this);
|
2012-11-17 04:07:06 +01:00
|
|
|
switch (u.format) {
|
2012-11-23 23:23:41 +01:00
|
|
|
case 1: return TRACE_RETURN (c->process (u.format1));
|
|
|
|
case 2: return TRACE_RETURN (c->process (u.format2));
|
|
|
|
case 3: return TRACE_RETURN (c->process (u.format3));
|
|
|
|
default:return TRACE_RETURN (c->default_return_value ());
|
2012-07-19 20:35:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!u.format.sanitize (c)) return TRACE_RETURN (false);
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2012-05-11 01:25:34 +02:00
|
|
|
case 1: return TRACE_RETURN (u.format1.sanitize (c));
|
|
|
|
case 2: return TRACE_RETURN (u.format2.sanitize (c));
|
|
|
|
case 3: return TRACE_RETURN (u.format3.sanitize (c));
|
|
|
|
default:return TRACE_RETURN (true);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 14:28:42 +02:00
|
|
|
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 */
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ChainContextClosureLookupContext
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
ContextClosureFuncs funcs;
|
|
|
|
const void *intersects_data[3];
|
|
|
|
};
|
|
|
|
|
2012-11-24 07:55:34 +01:00
|
|
|
struct ChainContextCollectGlyphsLookupContext
|
|
|
|
{
|
|
|
|
ContextCollectGlyphsFuncs funcs;
|
|
|
|
const void *collect_data[3];
|
|
|
|
};
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ChainContextApplyLookupContext
|
|
|
|
{
|
|
|
|
ContextApplyFuncs funcs;
|
2010-05-10 23:47:22 +02:00
|
|
|
const void *match_data[3];
|
2009-05-18 04:11:30 +02:00
|
|
|
};
|
|
|
|
|
2012-04-24 05:03:12 +02:00
|
|
|
static inline void chain_context_closure_lookup (hb_closure_context_t *c,
|
2012-04-23 22:54:58 +02:00
|
|
|
unsigned int backtrackCount,
|
|
|
|
const USHORT backtrack[],
|
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookaheadCount,
|
|
|
|
const USHORT lookahead[],
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[],
|
|
|
|
ChainContextClosureLookupContext &lookup_context)
|
|
|
|
{
|
2012-04-24 05:03:12 +02:00
|
|
|
if (intersects_array (c,
|
|
|
|
backtrackCount, backtrack,
|
|
|
|
lookup_context.funcs.intersects, lookup_context.intersects_data[0])
|
|
|
|
&& intersects_array (c,
|
|
|
|
inputCount ? inputCount - 1 : 0, input,
|
|
|
|
lookup_context.funcs.intersects, lookup_context.intersects_data[1])
|
|
|
|
&& intersects_array (c,
|
|
|
|
lookaheadCount, lookahead,
|
|
|
|
lookup_context.funcs.intersects, lookup_context.intersects_data[2]))
|
2012-11-24 00:54:59 +01:00
|
|
|
recurse_lookups (c,
|
|
|
|
lookupCount, lookupRecord);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 07:55:34 +01:00
|
|
|
static inline void chain_context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c,
|
|
|
|
unsigned int backtrackCount,
|
|
|
|
const USHORT backtrack[],
|
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookaheadCount,
|
|
|
|
const USHORT lookahead[],
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[],
|
|
|
|
ChainContextCollectGlyphsLookupContext &lookup_context)
|
|
|
|
{
|
2012-12-04 23:08:41 +01:00
|
|
|
collect_array (c, c->before,
|
2012-11-24 07:55:34 +01:00
|
|
|
backtrackCount, backtrack,
|
|
|
|
lookup_context.funcs.collect, lookup_context.collect_data[0]);
|
2012-12-04 23:08:41 +01:00
|
|
|
collect_array (c, c->input,
|
2012-11-24 07:55:34 +01:00
|
|
|
inputCount ? inputCount - 1 : 0, input,
|
|
|
|
lookup_context.funcs.collect, lookup_context.collect_data[1]);
|
2012-12-04 23:08:41 +01:00
|
|
|
collect_array (c, c->after,
|
2012-11-24 07:55:34 +01:00
|
|
|
lookaheadCount, lookahead,
|
|
|
|
lookup_context.funcs.collect, lookup_context.collect_data[2]);
|
|
|
|
recurse_lookups (c,
|
|
|
|
lookupCount, lookupRecord);
|
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
static inline bool chain_context_would_apply_lookup (hb_would_apply_context_t *c,
|
|
|
|
unsigned int backtrackCount,
|
2012-12-06 00:46:04 +01:00
|
|
|
const USHORT backtrack[] HB_UNUSED,
|
2012-07-19 20:35:23 +02:00
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookaheadCount,
|
2012-12-06 00:46:04 +01:00
|
|
|
const USHORT lookahead[] HB_UNUSED,
|
|
|
|
unsigned int lookupCount HB_UNUSED,
|
|
|
|
const LookupRecord lookupRecord[] HB_UNUSED,
|
2012-07-19 20:35:23 +02:00
|
|
|
ChainContextApplyLookupContext &lookup_context)
|
|
|
|
{
|
2012-08-23 22:22:28 +02:00
|
|
|
return (c->zero_context ? !backtrackCount && !lookaheadCount : true)
|
2012-08-23 22:10:37 +02:00
|
|
|
&& would_match_input (c,
|
2012-07-19 20:35:23 +02:00
|
|
|
inputCount, input,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data[1]);
|
|
|
|
}
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
static inline bool chain_context_apply_lookup (hb_apply_context_t *c,
|
|
|
|
unsigned int backtrackCount,
|
|
|
|
const USHORT backtrack[],
|
|
|
|
unsigned int inputCount, /* Including the first glyph (not matched) */
|
|
|
|
const USHORT input[], /* Array of input values--start with second glyph */
|
|
|
|
unsigned int lookaheadCount,
|
|
|
|
const USHORT lookahead[],
|
|
|
|
unsigned int lookupCount,
|
|
|
|
const LookupRecord lookupRecord[],
|
|
|
|
ChainContextApplyLookupContext &lookup_context)
|
2009-05-18 08:47:57 +02:00
|
|
|
{
|
2012-11-23 20:07:24 +01:00
|
|
|
unsigned int lookahead_offset = 0;
|
2012-06-09 08:26:57 +02:00
|
|
|
return match_input (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
inputCount, input,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data[1],
|
2012-05-13 15:17:51 +02:00
|
|
|
&lookahead_offset)
|
2012-06-09 08:26:57 +02:00
|
|
|
&& match_backtrack (c,
|
|
|
|
backtrackCount, backtrack,
|
|
|
|
lookup_context.funcs.match, lookup_context.match_data[0])
|
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],
|
2012-05-13 15:17:51 +02:00
|
|
|
lookahead_offset)
|
|
|
|
&& apply_lookup (c,
|
2010-05-05 07:37:58 +02:00
|
|
|
inputCount,
|
2012-11-22 22:05:59 +01:00
|
|
|
lookupCount, lookupRecord);
|
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
|
|
|
|
{
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +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);
|
2012-04-24 05:03:12 +02:00
|
|
|
chain_context_closure_lookup (c,
|
|
|
|
backtrack.len, backtrack.array,
|
|
|
|
input.len, input.array,
|
|
|
|
lookahead.len, lookahead.array,
|
|
|
|
lookup.len, lookup.array,
|
|
|
|
lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 07:55:34 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const
|
|
|
|
{
|
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
|
|
|
const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
|
|
|
|
const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
|
|
|
chain_context_collect_glyphs_lookup (c,
|
|
|
|
backtrack.len, backtrack.array,
|
|
|
|
input.len, input.array,
|
|
|
|
lookahead.len, lookahead.array,
|
|
|
|
lookup.len, lookup.array,
|
|
|
|
lookup_context);
|
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +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);
|
|
|
|
return TRACE_RETURN (chain_context_would_apply_lookup (c,
|
|
|
|
backtrack.len, backtrack.array,
|
|
|
|
input.len, input.array,
|
|
|
|
lookahead.len, lookahead.array, lookup.len,
|
|
|
|
lookup.array, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
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);
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (chain_context_apply_lookup (c,
|
|
|
|
backtrack.len, backtrack.array,
|
|
|
|
input.len, input.array,
|
|
|
|
lookahead.len, lookahead.array, lookup.len,
|
|
|
|
lookup.array, 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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!backtrack.sanitize (c)) return TRACE_RETURN (false);
|
2010-04-21 21:56:11 +02:00
|
|
|
HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!input.sanitize (c)) return TRACE_RETURN (false);
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!lookahead.sanitize (c)) return TRACE_RETURN (false);
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (lookup.sanitize (c));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
2009-05-18 02:48:27 +02:00
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
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
|
|
|
|
{
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const
|
2012-04-23 22:54:58 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
unsigned int num_rules = rule.len;
|
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
2012-04-24 05:03:12 +02:00
|
|
|
(this+rule[i]).closure (c, lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 07:55:34 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const
|
|
|
|
{
|
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
|
|
|
unsigned int num_rules = rule.len;
|
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
|
|
|
(this+rule[i]).collect_glyphs (c, lookup_context);
|
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
unsigned int num_rules = rule.len;
|
|
|
|
for (unsigned int i = 0; i < num_rules; i++)
|
|
|
|
if ((this+rule[i]).would_apply (c, lookup_context))
|
|
|
|
return TRACE_RETURN (true);
|
|
|
|
|
|
|
|
return TRACE_RETURN (false);
|
|
|
|
}
|
|
|
|
|
2012-04-23 22:54:58 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
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))
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (true);
|
2009-05-18 04:11:30 +02:00
|
|
|
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (false);
|
2009-05-18 04:11:30 +02:00
|
|
|
}
|
2009-05-18 02:48:27 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (rule.sanitize (c, this));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
inline void closure (hb_closure_context_t *c) const
|
2012-04-23 19:04:38 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
const Coverage &cov = (this+coverage);
|
|
|
|
|
|
|
|
struct ChainContextClosureLookupContext lookup_context = {
|
2012-11-22 05:33:13 +01:00
|
|
|
{intersects_glyph},
|
2012-04-23 22:54:58 +02:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (cov.intersects_coverage (c->glyphs, i)) {
|
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[i];
|
2012-04-24 05:03:12 +02:00
|
|
|
rule_set.closure (c, lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
2012-04-23 19:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
|
|
|
|
{
|
2012-11-24 07:55:34 +01:00
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
2012-12-04 23:08:41 +01:00
|
|
|
(this+coverage).add_coverage (c->input);
|
2012-11-24 07:55:34 +01:00
|
|
|
|
|
|
|
struct ChainContextCollectGlyphsLookupContext lookup_context = {
|
|
|
|
{collect_glyph},
|
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
(this+ruleSet[i]).collect_glyphs (c, lookup_context);
|
2012-11-24 00:13:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
2012-11-25 01:13:55 +01:00
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])];
|
2012-07-19 20:35:23 +02:00
|
|
|
struct ChainContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_glyph},
|
2012-07-19 20:35:23 +02:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
return TRACE_RETURN (rule_set.would_apply (c, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-11-22 05:33:13 +01:00
|
|
|
inline const Coverage &get_coverage (void) const
|
|
|
|
{
|
|
|
|
return this+coverage;
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
|
2012-05-11 02:33:11 +02:00
|
|
|
if (likely (index == NOT_COVERED)) return TRACE_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];
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ChainContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_glyph},
|
2009-05-18 05:17:56 +02:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (coverage.sanitize (c, this) && ruleSet.sanitize (c, this));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-18 02:48:27 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
inline void closure (hb_closure_context_t *c) const
|
2012-04-23 19:04:38 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-23 22:54:58 +02:00
|
|
|
if (!(this+coverage).intersects (c->glyphs))
|
2012-04-24 05:03:12 +02:00
|
|
|
return;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
|
|
|
const ClassDef &backtrack_class_def = this+backtrackClassDef;
|
|
|
|
const ClassDef &input_class_def = this+inputClassDef;
|
|
|
|
const ClassDef &lookahead_class_def = this+lookaheadClassDef;
|
|
|
|
|
|
|
|
struct ChainContextClosureLookupContext lookup_context = {
|
2012-11-22 05:33:13 +01:00
|
|
|
{intersects_class},
|
2012-04-23 22:54:58 +02:00
|
|
|
{&backtrack_class_def,
|
|
|
|
&input_class_def,
|
|
|
|
&lookahead_class_def}
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (input_class_def.intersects_class (c->glyphs, i)) {
|
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[i];
|
2012-04-24 05:03:12 +02:00
|
|
|
rule_set.closure (c, lookup_context);
|
2012-04-23 22:54:58 +02:00
|
|
|
}
|
2012-04-23 19:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
|
|
|
|
{
|
2012-11-24 07:55:34 +01:00
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
2012-12-04 23:08:41 +01:00
|
|
|
(this+coverage).add_coverage (c->input);
|
2012-11-24 07:55:34 +01:00
|
|
|
|
2013-01-03 06:36:37 +01:00
|
|
|
const ClassDef &backtrack_class_def = this+backtrackClassDef;
|
|
|
|
const ClassDef &input_class_def = this+inputClassDef;
|
|
|
|
const ClassDef &lookahead_class_def = this+lookaheadClassDef;
|
|
|
|
|
2012-11-24 07:55:34 +01:00
|
|
|
struct ChainContextCollectGlyphsLookupContext lookup_context = {
|
|
|
|
{collect_class},
|
2013-01-03 06:36:37 +01:00
|
|
|
{&backtrack_class_def,
|
|
|
|
&input_class_def,
|
|
|
|
&lookahead_class_def}
|
2012-11-24 07:55:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int count = ruleSet.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
(this+ruleSet[i]).collect_glyphs (c, lookup_context);
|
2012-11-24 00:13:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
2013-01-03 06:36:37 +01:00
|
|
|
const ClassDef &backtrack_class_def = this+backtrackClassDef;
|
2012-07-19 20:35:23 +02:00
|
|
|
const ClassDef &input_class_def = this+inputClassDef;
|
2013-01-03 06:36:37 +01:00
|
|
|
const ClassDef &lookahead_class_def = this+lookaheadClassDef;
|
2012-07-19 20:35:23 +02:00
|
|
|
|
2012-11-25 01:16:34 +01:00
|
|
|
unsigned int index = input_class_def.get_class (c->glyphs[0]);
|
2012-07-19 20:35:23 +02:00
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[index];
|
|
|
|
struct ChainContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_class},
|
2013-01-03 06:36:37 +01:00
|
|
|
{&backtrack_class_def,
|
|
|
|
&input_class_def,
|
|
|
|
&lookahead_class_def}
|
2012-07-19 20:35:23 +02:00
|
|
|
};
|
|
|
|
return TRACE_RETURN (rule_set.would_apply (c, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-11-22 05:33:13 +01:00
|
|
|
inline const Coverage &get_coverage (void) const
|
|
|
|
{
|
|
|
|
return this+coverage;
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
|
2012-05-11 02:33:11 +02:00
|
|
|
if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
|
2009-05-18 05:17:56 +02:00
|
|
|
|
|
|
|
const ClassDef &backtrack_class_def = this+backtrackClassDef;
|
|
|
|
const ClassDef &input_class_def = this+inputClassDef;
|
|
|
|
const ClassDef &lookahead_class_def = this+lookaheadClassDef;
|
|
|
|
|
2012-11-25 01:16:34 +01:00
|
|
|
index = input_class_def.get_class (c->buffer->cur().codepoint);
|
2009-05-18 05:17:56 +02:00
|
|
|
const ChainRuleSet &rule_set = this+ruleSet[index];
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ChainContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_class},
|
2010-05-10 23:47:22 +02:00
|
|
|
{&backtrack_class_def,
|
|
|
|
&input_class_def,
|
|
|
|
&lookahead_class_def}
|
2009-05-18 05:17:56 +02:00
|
|
|
};
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_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
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-18 02:48:27 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
inline void closure (hb_closure_context_t *c) const
|
2012-04-23 19:04:38 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_CLOSURE (this);
|
2012-04-24 05:03:12 +02:00
|
|
|
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
|
|
|
|
|
|
|
if (!(this+input[0]).intersects (c->glyphs))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
|
|
|
struct ChainContextClosureLookupContext lookup_context = {
|
2012-11-22 05:33:13 +01:00
|
|
|
{intersects_coverage},
|
2012-04-24 05:03:12 +02:00
|
|
|
{this, this, this}
|
|
|
|
};
|
|
|
|
chain_context_closure_lookup (c,
|
|
|
|
backtrack.len, (const USHORT *) backtrack.array,
|
|
|
|
input.len, (const USHORT *) input.array + 1,
|
|
|
|
lookahead.len, (const USHORT *) lookahead.array,
|
|
|
|
lookup.len, lookup.array,
|
|
|
|
lookup_context);
|
2012-04-23 19:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-11-24 00:13:48 +01:00
|
|
|
inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
|
|
|
|
{
|
2012-11-24 07:55:34 +01:00
|
|
|
TRACE_COLLECT_GLYPHS (this);
|
|
|
|
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
|
|
|
|
2012-12-04 23:08:41 +01:00
|
|
|
(this+input[0]).add_coverage (c->input);
|
2012-11-24 07:55:34 +01:00
|
|
|
|
|
|
|
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
|
|
|
struct ChainContextCollectGlyphsLookupContext lookup_context = {
|
|
|
|
{collect_coverage},
|
|
|
|
{this, this, this}
|
|
|
|
};
|
|
|
|
chain_context_collect_glyphs_lookup (c,
|
|
|
|
backtrack.len, (const USHORT *) backtrack.array,
|
|
|
|
input.len, (const USHORT *) input.array + 1,
|
|
|
|
lookahead.len, (const USHORT *) lookahead.array,
|
|
|
|
lookup.len, lookup.array,
|
|
|
|
lookup_context);
|
2012-11-24 00:13:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 20:35:23 +02:00
|
|
|
inline bool would_apply (hb_would_apply_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_WOULD_APPLY (this);
|
2012-07-19 20:35:23 +02:00
|
|
|
|
2012-07-29 00:34:58 +02:00
|
|
|
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
2012-07-19 20:35:23 +02:00
|
|
|
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
|
|
|
struct ChainContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_coverage},
|
2012-07-19 20:35:23 +02:00
|
|
|
{this, this, this}
|
|
|
|
};
|
|
|
|
return TRACE_RETURN (chain_context_would_apply_lookup (c,
|
|
|
|
backtrack.len, (const USHORT *) backtrack.array,
|
|
|
|
input.len, (const USHORT *) input.array + 1,
|
|
|
|
lookahead.len, (const USHORT *) lookahead.array,
|
|
|
|
lookup.len, lookup.array, lookup_context));
|
|
|
|
}
|
|
|
|
|
2012-11-22 05:33:13 +01:00
|
|
|
inline const Coverage &get_coverage (void) const
|
|
|
|
{
|
|
|
|
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
|
|
|
return this+input[0];
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:05:59 +01:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_APPLY (this);
|
2010-04-21 21:56:11 +02:00
|
|
|
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
2009-05-18 08:47:57 +02:00
|
|
|
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+input[0]).get_coverage (c->buffer->cur().codepoint);
|
2012-05-11 02:33:11 +02:00
|
|
|
if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
|
2009-05-18 08:47:57 +02:00
|
|
|
|
2010-04-21 21:56:11 +02:00
|
|
|
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
|
|
|
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2012-04-23 22:54:58 +02:00
|
|
|
struct ChainContextApplyLookupContext lookup_context = {
|
2012-11-22 22:05:59 +01:00
|
|
|
{match_coverage},
|
2010-05-10 23:47:22 +02:00
|
|
|
{this, this, this}
|
2009-05-18 05:17:56 +02:00
|
|
|
};
|
2012-05-11 02:33:11 +02:00
|
|
|
return TRACE_RETURN (chain_context_apply_lookup (c,
|
|
|
|
backtrack.len, (const USHORT *) backtrack.array,
|
|
|
|
input.len, (const USHORT *) input.array + 1,
|
|
|
|
lookahead.len, (const USHORT *) lookahead.array,
|
|
|
|
lookup.len, lookup.array, 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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!backtrack.sanitize (c, this)) return TRACE_RETURN (false);
|
2010-04-21 21:56:11 +02:00
|
|
|
OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!input.sanitize (c, this)) return TRACE_RETURN (false);
|
2010-04-21 21:56:11 +02:00
|
|
|
OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!lookahead.sanitize (c, this)) return TRACE_RETURN (false);
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (lookup.sanitize (c));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-18 02:48:27 +02:00
|
|
|
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
|
|
|
|
{
|
2012-11-22 05:33:13 +01:00
|
|
|
template <typename context_t>
|
|
|
|
inline typename context_t::return_t process (context_t *c) const
|
2012-11-17 04:07:06 +01:00
|
|
|
{
|
2012-11-23 22:40:04 +01:00
|
|
|
TRACE_PROCESS (this);
|
2012-11-17 04:07:06 +01:00
|
|
|
switch (u.format) {
|
2012-11-23 23:23:41 +01:00
|
|
|
case 1: return TRACE_RETURN (c->process (u.format1));
|
|
|
|
case 2: return TRACE_RETURN (c->process (u.format2));
|
|
|
|
case 3: return TRACE_RETURN (c->process (u.format3));
|
|
|
|
default:return TRACE_RETURN (c->default_return_value ());
|
2012-07-19 20:35:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!u.format.sanitize (c)) return TRACE_RETURN (false);
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2012-05-11 01:25:34 +02:00
|
|
|
case 1: return TRACE_RETURN (u.format1.sanitize (c));
|
|
|
|
case 2: return TRACE_RETURN (u.format2.sanitize (c));
|
|
|
|
case 3: return TRACE_RETURN (u.format3.sanitize (c));
|
|
|
|
default:return TRACE_RETURN (true);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-18 02:48:27 +02:00
|
|
|
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
|
|
|
|
{
|
|
|
|
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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (c->check_struct (this));
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-22 04:31:33 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2012-11-23 22:57:36 +01:00
|
|
|
template <typename T>
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-23 23:04:55 +01:00
|
|
|
template <typename X>
|
|
|
|
inline const X& get_subtable (void) const
|
|
|
|
{
|
|
|
|
unsigned int offset = get_offset ();
|
|
|
|
if (unlikely (!offset)) return Null(typename T::LookupSubTable);
|
|
|
|
return StructAtOffset<typename T::LookupSubTable> (this, offset);
|
|
|
|
}
|
|
|
|
|
2012-11-23 22:57:36 +01:00
|
|
|
template <typename context_t>
|
|
|
|
inline typename context_t::return_t process (context_t *c) const
|
|
|
|
{
|
2012-11-23 23:10:40 +01:00
|
|
|
return get_subtable<typename T::LookupSubTable> ().process (c, get_type ());
|
2012-11-23 22:57:36 +01:00
|
|
|
}
|
|
|
|
|
2012-11-23 23:10:40 +01:00
|
|
|
inline bool sanitize_self (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (!u.format.sanitize (c)) return TRACE_RETURN (false);
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2012-05-11 01:25:34 +02:00
|
|
|
case 1: return TRACE_RETURN (u.format1.sanitize (c));
|
|
|
|
default:return TRACE_RETURN (true);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-23 23:10:40 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (!sanitize_self (c)) return TRACE_RETURN (false);
|
|
|
|
unsigned int offset = get_offset ();
|
|
|
|
if (unlikely (!offset)) return TRACE_RETURN (true);
|
|
|
|
return TRACE_RETURN (StructAtOffset<typename T::LookupSubTable> (this, offset).sanitize (c, get_type ()));
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-22 04:31:33 +02:00
|
|
|
union {
|
|
|
|
USHORT format; /* Format identifier */
|
2012-07-12 00:01:27 +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) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_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
|
|
|
|
2012-11-17 03:49:54 +01:00
|
|
|
} /* namespace OT */
|
2012-08-28 23:57:49 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#endif /* HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH */
|