Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007,2008,2009 Red Hat, Inc. |
| 3 | * |
Behdad Esfahbod | c755cb3 | 2010-04-22 00:11:43 -0400 | [diff] [blame] | 4 | * This is part of HarfBuzz, a text shaping library. |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
| 24 | * Red Hat Author(s): Behdad Esfahbod |
| 25 | */ |
| 26 | |
Behdad Esfahbod | 5f5b24f | 2009-08-02 20:03:12 -0400 | [diff] [blame] | 27 | #ifndef HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH |
| 28 | #define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 29 | |
Behdad Esfahbod | 88a5f5a | 2009-05-25 03:39:11 -0400 | [diff] [blame] | 30 | #include "hb-buffer-private.h" |
Behdad Esfahbod | 5f5b24f | 2009-08-02 20:03:12 -0400 | [diff] [blame] | 31 | #include "hb-ot-layout-gdef-private.hh" |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 32 | |
Behdad Esfahbod | 6f20f72 | 2009-05-17 20:28:01 -0400 | [diff] [blame] | 33 | |
Behdad Esfahbod | 0535b50 | 2009-08-28 17:14:33 -0400 | [diff] [blame] | 34 | #ifndef HB_DEBUG_APPLY |
Behdad Esfahbod | 74e313c | 2010-04-28 15:15:09 -0400 | [diff] [blame] | 35 | #define HB_DEBUG_APPLY HB_DEBUG+0 |
Behdad Esfahbod | 0535b50 | 2009-08-28 17:14:33 -0400 | [diff] [blame] | 36 | #endif |
| 37 | |
Behdad Esfahbod | bc20045 | 2010-04-29 01:40:26 -0400 | [diff] [blame] | 38 | #define TRACE_APPLY() \ |
| 39 | HB_STMT_START { \ |
| 40 | if (HB_DEBUG_APPLY) \ |
Behdad Esfahbod | 7d3a126 | 2010-04-29 13:54:01 -0400 | [diff] [blame] | 41 | _hb_trace ("APPLY", HB_FUNC, this, apply_depth, HB_DEBUG_APPLY); \ |
Behdad Esfahbod | bc20045 | 2010-04-29 01:40:26 -0400 | [diff] [blame] | 42 | } HB_STMT_END |
Behdad Esfahbod | 74e313c | 2010-04-28 15:15:09 -0400 | [diff] [blame] | 43 | |
Behdad Esfahbod | 0535b50 | 2009-08-28 17:14:33 -0400 | [diff] [blame] | 44 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 45 | #define APPLY_ARG_DEF \ |
Behdad Esfahbod | 6617ead | 2010-04-29 02:25:30 -0400 | [diff] [blame] | 46 | hb_apply_context_t *context, \ |
Behdad Esfahbod | 1376fb7 | 2010-04-29 02:19:21 -0400 | [diff] [blame] | 47 | hb_buffer_t *buffer, \ |
Behdad Esfahbod | 33d13fd | 2010-04-29 13:56:44 -0400 | [diff] [blame] | 48 | unsigned int context_length HB_UNUSED, \ |
| 49 | unsigned int apply_depth HB_UNUSED |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 50 | #define APPLY_ARG \ |
Behdad Esfahbod | 6617ead | 2010-04-29 02:25:30 -0400 | [diff] [blame] | 51 | context, \ |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 52 | buffer, \ |
| 53 | context_length, \ |
Behdad Esfahbod | bc20045 | 2010-04-29 01:40:26 -0400 | [diff] [blame] | 54 | (HB_DEBUG_APPLY ? apply_depth + 1 : 0) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 55 | |
Behdad Esfahbod | 1376fb7 | 2010-04-29 02:19:21 -0400 | [diff] [blame] | 56 | struct hb_apply_context_t |
| 57 | { |
Behdad Esfahbod | 63493f9 | 2010-05-05 01:01:05 -0400 | [diff] [blame^] | 58 | hb_ot_layout_context_t *layout; |
Behdad Esfahbod | 1376fb7 | 2010-04-29 02:19:21 -0400 | [diff] [blame] | 59 | unsigned int nesting_level_left; |
| 60 | unsigned int lookup_flag; |
| 61 | unsigned int property; /* propety of first glyph (TODO remove) */ |
| 62 | }; |
| 63 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 64 | |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 65 | typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const USHORT &value, const char *data); |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 66 | typedef bool (*apply_lookup_func_t) (APPLY_ARG_DEF, unsigned int lookup_index); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 67 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 68 | struct ContextFuncs |
| 69 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 70 | match_func_t match; |
| 71 | apply_lookup_func_t apply; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 72 | }; |
| 73 | |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 74 | |
Behdad Esfahbod | 33d13fd | 2010-04-29 13:56:44 -0400 | [diff] [blame] | 75 | static inline bool match_glyph (hb_codepoint_t glyph_id, const USHORT &value, const char *data HB_UNUSED) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 76 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 77 | return glyph_id == value; |
| 78 | } |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 79 | |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 80 | static inline bool match_class (hb_codepoint_t glyph_id, const USHORT &value, const char *data) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 81 | { |
Behdad Esfahbod | 2b5a59c | 2009-08-04 11:38:50 -0400 | [diff] [blame] | 82 | const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 83 | return class_def.get_class (glyph_id) == value; |
| 84 | } |
| 85 | |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 86 | static inline bool match_coverage (hb_codepoint_t glyph_id, const USHORT &value, const char *data) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 87 | { |
Behdad Esfahbod | 6b54c5d | 2009-05-18 18:30:25 -0400 | [diff] [blame] | 88 | const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 89 | return (data+coverage) (glyph_id) != NOT_COVERED; |
| 90 | } |
| 91 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 92 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 93 | static inline bool match_input (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 94 | unsigned int count, /* Including the first glyph (not matched) */ |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 95 | const USHORT input[], /* Array of input values--start with second glyph */ |
| 96 | match_func_t match_func, |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 97 | const char *match_data, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 98 | unsigned int *context_length_out) |
| 99 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 100 | unsigned int i, j; |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 101 | unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 102 | if (unlikely (buffer->in_pos + count > end)) |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 103 | return false; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 104 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 105 | for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++) |
| 106 | { |
Behdad Esfahbod | 63493f9 | 2010-05-05 01:01:05 -0400 | [diff] [blame^] | 107 | while (_hb_ot_layout_skip_mark (context->layout->face, IN_INFO (j), context->lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 108 | { |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 109 | if (unlikely (j + count - i == end)) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 110 | return false; |
| 111 | j++; |
| 112 | } |
| 113 | |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 114 | if (likely (!match_func (IN_GLYPH (j), input[i - 1], match_data))) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 115 | return false; |
| 116 | } |
| 117 | |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 118 | *context_length_out = j - buffer->in_pos; |
| 119 | |
| 120 | return true; |
| 121 | } |
| 122 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 123 | static inline bool match_backtrack (APPLY_ARG_DEF, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 124 | unsigned int count, |
| 125 | const USHORT backtrack[], |
| 126 | match_func_t match_func, |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 127 | const char *match_data) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 128 | { |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 129 | if (unlikely (buffer->out_pos < count)) |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 130 | return false; |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 131 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 132 | for (unsigned int i = 0, j = buffer->out_pos - 1; i < count; i++, j--) |
| 133 | { |
Behdad Esfahbod | 63493f9 | 2010-05-05 01:01:05 -0400 | [diff] [blame^] | 134 | while (_hb_ot_layout_skip_mark (context->layout->face, OUT_INFO (j), context->lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 135 | { |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 136 | if (unlikely (j + 1 == count - i)) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 137 | return false; |
| 138 | j--; |
| 139 | } |
| 140 | |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 141 | if (likely (!match_func (OUT_GLYPH (j), backtrack[i], match_data))) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 142 | return false; |
| 143 | } |
| 144 | |
| 145 | return true; |
| 146 | } |
| 147 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 148 | static inline bool match_lookahead (APPLY_ARG_DEF, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 149 | unsigned int count, |
| 150 | const USHORT lookahead[], |
| 151 | match_func_t match_func, |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 152 | const char *match_data, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 153 | unsigned int offset) |
| 154 | { |
| 155 | unsigned int i, j; |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 156 | unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 157 | if (unlikely (buffer->in_pos + offset + count > end)) |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 158 | return false; |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 159 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 160 | for (i = 0, j = buffer->in_pos + offset; i < count; i++, j++) |
| 161 | { |
Behdad Esfahbod | 63493f9 | 2010-05-05 01:01:05 -0400 | [diff] [blame^] | 162 | while (_hb_ot_layout_skip_mark (context->layout->face, OUT_INFO (j), context->lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 163 | { |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 164 | if (unlikely (j + count - i == end)) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 165 | return false; |
| 166 | j++; |
| 167 | } |
| 168 | |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 169 | if (likely (!match_func (IN_GLYPH (j), lookahead[i], match_data))) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 170 | return false; |
| 171 | } |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 172 | |
| 173 | return true; |
| 174 | } |
| 175 | |
| 176 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 177 | struct LookupRecord |
| 178 | { |
Behdad Esfahbod | 4b8487d | 2010-03-16 03:46:17 -0400 | [diff] [blame] | 179 | static inline unsigned int get_size () { return sizeof (LookupRecord); } |
| 180 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 181 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 182 | TRACE_SANITIZE (); |
Behdad Esfahbod | cd3827e | 2009-08-04 02:09:34 -0400 | [diff] [blame] | 183 | return SANITIZE_SELF (); |
| 184 | } |
| 185 | |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 186 | USHORT sequenceIndex; /* Index into current glyph |
| 187 | * sequence--first glyph = 0 */ |
| 188 | USHORT lookupListIndex; /* Lookup to apply to that |
| 189 | * position--zero--based */ |
| 190 | }; |
| 191 | ASSERT_SIZE (LookupRecord, 4); |
| 192 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 193 | static inline bool apply_lookup (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 194 | unsigned int count, /* Including the first glyph */ |
| 195 | unsigned int lookupCount, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 196 | const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */ |
| 197 | apply_lookup_func_t apply_func) |
| 198 | { |
Behdad Esfahbod | e73a0c2 | 2009-05-18 04:15:25 -0400 | [diff] [blame] | 199 | unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 200 | if (unlikely (buffer->in_pos + count > end)) |
Behdad Esfahbod | e73a0c2 | 2009-05-18 04:15:25 -0400 | [diff] [blame] | 201 | return false; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 202 | |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 203 | /* TODO We don't support lookupRecord arrays that are not increasing: |
| 204 | * Should be easy for in_place ones at least. */ |
Behdad Esfahbod | 52e9a71 | 2009-09-21 13:58:56 -0400 | [diff] [blame] | 205 | |
| 206 | /* Note: If sublookup is reverse, i will underflow after the first loop |
| 207 | * and we jump out of it. Not entirely disastrous. So we don't check |
| 208 | * for reverse lookup here. |
| 209 | */ |
Behdad Esfahbod | f9c0a2d | 2009-09-21 13:43:54 -0400 | [diff] [blame] | 210 | for (unsigned int i = 0; i < count; /* NOP */) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 211 | { |
Behdad Esfahbod | 63493f9 | 2010-05-05 01:01:05 -0400 | [diff] [blame^] | 212 | while (_hb_ot_layout_skip_mark (context->layout->face, IN_CURINFO (), context->lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 213 | { |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 214 | if (unlikely (buffer->in_pos == end)) |
Behdad Esfahbod | e73a0c2 | 2009-05-18 04:15:25 -0400 | [diff] [blame] | 215 | return true; |
| 216 | /* No lookup applied for this index */ |
| 217 | _hb_buffer_next_glyph (buffer); |
| 218 | } |
| 219 | |
Behdad Esfahbod | 47958de | 2009-05-18 04:17:47 -0400 | [diff] [blame] | 220 | if (lookupCount && i == lookupRecord->sequenceIndex) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 221 | { |
| 222 | unsigned int old_pos = buffer->in_pos; |
| 223 | |
| 224 | /* Apply a lookup */ |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 225 | bool done = apply_func (APPLY_ARG, lookupRecord->lookupListIndex); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 226 | |
Behdad Esfahbod | 47958de | 2009-05-18 04:17:47 -0400 | [diff] [blame] | 227 | lookupRecord++; |
| 228 | lookupCount--; |
Behdad Esfahbod | f9c0a2d | 2009-09-21 13:43:54 -0400 | [diff] [blame] | 229 | /* Err, this is wrong if the lookup jumped over some glyphs */ |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 230 | i += buffer->in_pos - old_pos; |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 231 | if (unlikely (buffer->in_pos == end)) |
Behdad Esfahbod | 2e8fb6c | 2009-05-18 04:37:37 -0400 | [diff] [blame] | 232 | return true; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 233 | |
| 234 | if (!done) |
| 235 | goto not_applied; |
| 236 | } |
| 237 | else |
| 238 | { |
| 239 | not_applied: |
| 240 | /* No lookup applied for this index */ |
| 241 | _hb_buffer_next_glyph (buffer); |
| 242 | i++; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | return true; |
| 247 | } |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 248 | |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 249 | |
| 250 | /* Contextual lookups */ |
| 251 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 252 | struct ContextLookupContext |
| 253 | { |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 254 | ContextFuncs funcs; |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 255 | const char *match_data; |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 256 | }; |
| 257 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 258 | static inline bool context_lookup (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 259 | unsigned int inputCount, /* Including the first glyph (not matched) */ |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 260 | const USHORT input[], /* Array of input values--start with second glyph */ |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 261 | unsigned int lookupCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 262 | const LookupRecord lookupRecord[], |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 263 | ContextLookupContext &lookup_context) |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 264 | { |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 265 | return match_input (APPLY_ARG, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 266 | inputCount, input, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 267 | lookup_context.funcs.match, lookup_context.match_data, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 268 | &context_length) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 269 | apply_lookup (APPLY_ARG, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 270 | inputCount, |
| 271 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 272 | lookup_context.funcs.apply); |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 273 | } |
| 274 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 275 | struct Rule |
| 276 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 277 | friend struct RuleSet; |
| 278 | |
| 279 | private: |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 280 | inline bool apply (APPLY_ARG_DEF, ContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 281 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 282 | TRACE_APPLY (); |
Behdad Esfahbod | fff9aa2 | 2010-05-05 00:32:21 -0400 | [diff] [blame] | 283 | const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].get_size () * (inputCount ? inputCount - 1 : 0)); |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 284 | return context_lookup (APPLY_ARG, |
Behdad Esfahbod | 969afd7 | 2009-05-18 05:47:47 -0400 | [diff] [blame] | 285 | inputCount, input, |
Behdad Esfahbod | fff9aa2 | 2010-05-05 00:32:21 -0400 | [diff] [blame] | 286 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 287 | lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 288 | } |
| 289 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 290 | public: |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 291 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 292 | TRACE_SANITIZE (); |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 293 | if (!(SANITIZE (inputCount) && SANITIZE (lookupCount))) return false; |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 294 | return SANITIZE_MEM (input, |
Behdad Esfahbod | 4b8487d | 2010-03-16 03:46:17 -0400 | [diff] [blame] | 295 | input[0].get_size () * inputCount + |
| 296 | lookupRecordX[0].get_size () * lookupCount); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 297 | } |
| 298 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 299 | private: |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 300 | USHORT inputCount; /* Total number of glyphs in input |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 301 | * glyph sequence--includes the first |
| 302 | * glyph */ |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 303 | USHORT lookupCount; /* Number of LookupRecords */ |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 304 | USHORT input[VAR]; /* Array of match inputs--start with |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 305 | * second glyph */ |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 306 | LookupRecord lookupRecordX[VAR]; /* Array of LookupRecords--in |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 307 | * design order */ |
| 308 | }; |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 309 | ASSERT_SIZE_VAR2 (Rule, 4, USHORT, LookupRecord); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 310 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 311 | struct RuleSet |
| 312 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 313 | inline bool apply (APPLY_ARG_DEF, ContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 314 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 315 | TRACE_APPLY (); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 316 | unsigned int num_rules = rule.len; |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 317 | for (unsigned int i = 0; i < num_rules; i++) |
| 318 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 319 | if ((this+rule[i]).apply (APPLY_ARG, lookup_context)) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 320 | return true; |
| 321 | } |
| 322 | |
| 323 | return false; |
| 324 | } |
| 325 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 326 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 327 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 328 | return SANITIZE_WITH_BASE (this, rule); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 329 | } |
| 330 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 331 | private: |
| 332 | OffsetArrayOf<Rule> |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 333 | rule; /* Array of Rule tables |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 334 | * ordered by preference */ |
| 335 | }; |
| 336 | |
| 337 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 338 | struct ContextFormat1 |
| 339 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 340 | friend struct Context; |
| 341 | |
| 342 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 343 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 344 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 345 | TRACE_APPLY (); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 346 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 347 | if (likely (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 348 | return false; |
| 349 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 350 | const RuleSet &rule_set = this+ruleSet[index]; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 351 | struct ContextLookupContext lookup_context = { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 352 | {match_glyph, apply_func}, |
| 353 | NULL |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 354 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 355 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 356 | } |
| 357 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 358 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 359 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 360 | return SANITIZE_WITH_BASE (this, coverage) |
| 361 | && SANITIZE_WITH_BASE (this, ruleSet); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 362 | } |
| 363 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 364 | private: |
| 365 | USHORT format; /* Format identifier--format = 1 */ |
| 366 | OffsetTo<Coverage> |
| 367 | coverage; /* Offset to Coverage table--from |
| 368 | * beginning of table */ |
| 369 | OffsetArrayOf<RuleSet> |
| 370 | ruleSet; /* Array of RuleSet tables |
| 371 | * ordered by Coverage Index */ |
| 372 | }; |
| 373 | ASSERT_SIZE (ContextFormat1, 6); |
| 374 | |
| 375 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 376 | struct ContextFormat2 |
| 377 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 378 | friend struct Context; |
| 379 | |
| 380 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 381 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 382 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 383 | TRACE_APPLY (); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 384 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 385 | if (likely (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 386 | return false; |
| 387 | |
| 388 | const ClassDef &class_def = this+classDef; |
| 389 | index = class_def (IN_CURGLYPH ()); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 390 | const RuleSet &rule_set = this+ruleSet[index]; |
| 391 | /* LONGTERMTODO: Old code fetches glyph classes at most once and caches |
| 392 | * them across subrule lookups. Not sure it's worth it. |
| 393 | */ |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 394 | struct ContextLookupContext lookup_context = { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 395 | {match_class, apply_func}, |
Behdad Esfahbod | 0dfcc13 | 2010-04-21 23:41:26 -0400 | [diff] [blame] | 396 | CharP(&class_def) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 397 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 398 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 399 | } |
| 400 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 401 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 402 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 403 | return SANITIZE_WITH_BASE (this, coverage) |
| 404 | && SANITIZE_WITH_BASE (this, classDef) |
| 405 | && SANITIZE_WITH_BASE (this, ruleSet); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 406 | } |
| 407 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 408 | private: |
| 409 | USHORT format; /* Format identifier--format = 2 */ |
| 410 | OffsetTo<Coverage> |
| 411 | coverage; /* Offset to Coverage table--from |
| 412 | * beginning of table */ |
| 413 | OffsetTo<ClassDef> |
| 414 | classDef; /* Offset to glyph ClassDef table--from |
| 415 | * beginning of table */ |
| 416 | OffsetArrayOf<RuleSet> |
| 417 | ruleSet; /* Array of RuleSet tables |
| 418 | * ordered by class */ |
| 419 | }; |
| 420 | ASSERT_SIZE (ContextFormat2, 8); |
| 421 | |
| 422 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 423 | struct ContextFormat3 |
| 424 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 425 | friend struct Context; |
| 426 | |
| 427 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 428 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 429 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 430 | TRACE_APPLY (); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 431 | unsigned int index = (this+coverage[0]) (IN_CURGLYPH ()); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 432 | if (likely (index == NOT_COVERED)) |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 433 | return false; |
| 434 | |
Behdad Esfahbod | fff9aa2 | 2010-05-05 00:32:21 -0400 | [diff] [blame] | 435 | const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].get_size () * glyphCount); |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 436 | struct ContextLookupContext lookup_context = { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 437 | {match_coverage, apply_func}, |
Behdad Esfahbod | 0dfcc13 | 2010-04-21 23:41:26 -0400 | [diff] [blame] | 438 | CharP(this) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 439 | }; |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 440 | return context_lookup (APPLY_ARG, |
Behdad Esfahbod | 969afd7 | 2009-05-18 05:47:47 -0400 | [diff] [blame] | 441 | glyphCount, (const USHORT *) (coverage + 1), |
Behdad Esfahbod | fff9aa2 | 2010-05-05 00:32:21 -0400 | [diff] [blame] | 442 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 443 | lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 444 | } |
| 445 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 446 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 447 | TRACE_SANITIZE (); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 448 | if (!SANITIZE_SELF ()) return false; |
| 449 | unsigned int count = glyphCount; |
Behdad Esfahbod | 9fc8684 | 2010-04-22 13:37:58 -0400 | [diff] [blame] | 450 | if (!SANITIZE_ARRAY (coverage, OffsetTo<Coverage>::get_size (), glyphCount)) return false; |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 451 | for (unsigned int i = 0; i < count; i++) |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 452 | if (!SANITIZE_WITH_BASE (this, coverage[i])) return false; |
Behdad Esfahbod | fff9aa2 | 2010-05-05 00:32:21 -0400 | [diff] [blame] | 453 | LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, OffsetTo<Coverage>::get_size () * glyphCount); |
| 454 | return SANITIZE_ARRAY (lookupRecord, LookupRecord::get_size (), lookupCount); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 455 | } |
| 456 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 457 | private: |
| 458 | USHORT format; /* Format identifier--format = 3 */ |
| 459 | USHORT glyphCount; /* Number of glyphs in the input glyph |
| 460 | * sequence */ |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 461 | USHORT lookupCount; /* Number of LookupRecords */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 462 | OffsetTo<Coverage> |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 463 | coverage[VAR]; /* Array of offsets to Coverage |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 464 | * table in glyph sequence order */ |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 465 | LookupRecord lookupRecordX[VAR]; /* Array of LookupRecords--in |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 466 | * design order */ |
| 467 | }; |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 468 | ASSERT_SIZE_VAR2 (ContextFormat3, 6, OffsetTo<Coverage>, LookupRecord); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 469 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 470 | struct Context |
| 471 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 472 | protected: |
Behdad Esfahbod | 20b035d | 2009-08-10 19:00:36 -0400 | [diff] [blame] | 473 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 474 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 475 | TRACE_APPLY (); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 476 | switch (u.format) { |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 477 | case 1: return u.format1->apply (APPLY_ARG, apply_func); |
| 478 | case 2: return u.format2->apply (APPLY_ARG, apply_func); |
| 479 | case 3: return u.format3->apply (APPLY_ARG, apply_func); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 480 | default:return false; |
| 481 | } |
| 482 | } |
| 483 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 484 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 485 | TRACE_SANITIZE (); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 486 | if (!SANITIZE (u.format)) return false; |
| 487 | switch (u.format) { |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 488 | case 1: return u.format1->sanitize (context); |
| 489 | case 2: return u.format2->sanitize (context); |
| 490 | case 3: return u.format3->sanitize (context); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 491 | default:return true; |
| 492 | } |
| 493 | } |
| 494 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 495 | private: |
| 496 | union { |
Behdad Esfahbod | f8dc67b | 2009-05-17 19:47:54 -0400 | [diff] [blame] | 497 | USHORT format; /* Format identifier */ |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 498 | ContextFormat1 format1[VAR]; |
| 499 | ContextFormat2 format2[VAR]; |
| 500 | ContextFormat3 format3[VAR]; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 501 | } u; |
| 502 | }; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 503 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 504 | |
| 505 | /* Chaining Contextual lookups */ |
| 506 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 507 | struct ChainContextLookupContext |
| 508 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 509 | ContextFuncs funcs; |
Behdad Esfahbod | 1922ffe | 2010-04-21 04:19:51 -0400 | [diff] [blame] | 510 | const char *match_data[3]; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 511 | }; |
| 512 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 513 | static inline bool chain_context_lookup (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 514 | unsigned int backtrackCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 515 | const USHORT backtrack[], |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 516 | unsigned int inputCount, /* Including the first glyph (not matched) */ |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 517 | const USHORT input[], /* Array of input values--start with second glyph */ |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 518 | unsigned int lookaheadCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 519 | const USHORT lookahead[], |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 520 | unsigned int lookupCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 521 | const LookupRecord lookupRecord[], |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 522 | ChainContextLookupContext &lookup_context) |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 523 | { |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 524 | /* First guess */ |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 525 | if (unlikely (buffer->out_pos < backtrackCount || |
Behdad Esfahbod | 122f21f | 2009-05-18 04:21:53 -0400 | [diff] [blame] | 526 | buffer->in_pos + inputCount + lookaheadCount > buffer->in_length || |
| 527 | inputCount + lookaheadCount > context_length)) |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 528 | return false; |
| 529 | |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 530 | unsigned int offset; |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 531 | return match_backtrack (APPLY_ARG, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 532 | backtrackCount, backtrack, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 533 | lookup_context.funcs.match, lookup_context.match_data[0]) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 534 | match_input (APPLY_ARG, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 535 | inputCount, input, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 536 | lookup_context.funcs.match, lookup_context.match_data[1], |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 537 | &offset) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 538 | match_lookahead (APPLY_ARG, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 539 | lookaheadCount, lookahead, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 540 | lookup_context.funcs.match, lookup_context.match_data[2], |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 541 | offset) && |
| 542 | (context_length = offset, true) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 543 | apply_lookup (APPLY_ARG, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 544 | inputCount, |
| 545 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 546 | lookup_context.funcs.apply); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 547 | } |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 548 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 549 | struct ChainRule |
| 550 | { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 551 | friend struct ChainRuleSet; |
| 552 | |
| 553 | private: |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 554 | inline bool apply (APPLY_ARG_DEF, ChainContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 555 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 556 | TRACE_APPLY (); |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 557 | const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack); |
| 558 | const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); |
| 559 | const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 560 | return chain_context_lookup (APPLY_ARG, |
Behdad Esfahbod | 2cb0845 | 2010-04-21 22:37:31 -0400 | [diff] [blame] | 561 | backtrack.len, backtrack.array(), |
| 562 | input.len, input.array(), |
| 563 | lookahead.len, lookahead.array(), |
| 564 | lookup.len, lookup.array(), |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 565 | lookup_context); |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 566 | return false; |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 567 | } |
| 568 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 569 | public: |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 570 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 571 | TRACE_SANITIZE (); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 572 | if (!SANITIZE (backtrack)) return false; |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 573 | HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 574 | if (!SANITIZE (input)) return false; |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 575 | ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 576 | if (!SANITIZE (lookahead)) return false; |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 577 | ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 578 | return SANITIZE (lookup); |
| 579 | } |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 580 | |
| 581 | private: |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 582 | ArrayOf<USHORT> |
| 583 | backtrack; /* Array of backtracking values |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 584 | * (to be matched before the input |
| 585 | * sequence) */ |
Behdad Esfahbod | e8cbaaf | 2009-05-18 02:03:58 -0400 | [diff] [blame] | 586 | HeadlessArrayOf<USHORT> |
| 587 | inputX; /* Array of input values (start with |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 588 | * second glyph) */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 589 | ArrayOf<USHORT> |
| 590 | lookaheadX; /* Array of lookahead values's (to be |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 591 | * matched after the input sequence) */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 592 | ArrayOf<LookupRecord> |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 593 | lookupX; /* Array of LookupRecords--in |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 594 | * design order) */ |
| 595 | }; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 596 | ASSERT_SIZE (ChainRule, 8); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 597 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 598 | struct ChainRuleSet |
| 599 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 600 | inline bool apply (APPLY_ARG_DEF, ChainContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 601 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 602 | TRACE_APPLY (); |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 603 | unsigned int num_rules = rule.len; |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 604 | for (unsigned int i = 0; i < num_rules; i++) |
| 605 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 606 | if ((this+rule[i]).apply (APPLY_ARG, lookup_context)) |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 607 | return true; |
| 608 | } |
| 609 | |
| 610 | return false; |
| 611 | } |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 612 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 613 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 614 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 615 | return SANITIZE_WITH_BASE (this, rule); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 616 | } |
| 617 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 618 | private: |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 619 | OffsetArrayOf<ChainRule> |
| 620 | rule; /* Array of ChainRule tables |
| 621 | * ordered by preference */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 622 | }; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 623 | ASSERT_SIZE (ChainRuleSet, 2); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 624 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 625 | struct ChainContextFormat1 |
| 626 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 627 | friend struct ChainContext; |
| 628 | |
| 629 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 630 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 631 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 632 | TRACE_APPLY (); |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 633 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 634 | if (likely (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 635 | return false; |
| 636 | |
| 637 | const ChainRuleSet &rule_set = this+ruleSet[index]; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 638 | struct ChainContextLookupContext lookup_context = { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 639 | {match_glyph, apply_func}, |
| 640 | {NULL, NULL, NULL} |
| 641 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 642 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 643 | } |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 644 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 645 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 646 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 647 | return SANITIZE_WITH_BASE (this, coverage) |
| 648 | && SANITIZE_WITH_BASE (this, ruleSet); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 649 | } |
| 650 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 651 | private: |
| 652 | USHORT format; /* Format identifier--format = 1 */ |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 653 | OffsetTo<Coverage> |
| 654 | coverage; /* Offset to Coverage table--from |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 655 | * beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 656 | OffsetArrayOf<ChainRuleSet> |
| 657 | ruleSet; /* Array of ChainRuleSet tables |
| 658 | * ordered by Coverage Index */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 659 | }; |
| 660 | ASSERT_SIZE (ChainContextFormat1, 6); |
| 661 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 662 | struct ChainContextFormat2 |
| 663 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 664 | friend struct ChainContext; |
| 665 | |
| 666 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 667 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 668 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 669 | TRACE_APPLY (); |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 670 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 671 | if (likely (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 672 | return false; |
| 673 | |
| 674 | const ClassDef &backtrack_class_def = this+backtrackClassDef; |
| 675 | const ClassDef &input_class_def = this+inputClassDef; |
| 676 | const ClassDef &lookahead_class_def = this+lookaheadClassDef; |
| 677 | |
| 678 | index = input_class_def (IN_CURGLYPH ()); |
| 679 | const ChainRuleSet &rule_set = this+ruleSet[index]; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 680 | /* LONGTERMTODO: Old code fetches glyph classes at most once and caches |
| 681 | * them across subrule lookups. Not sure it's worth it. |
| 682 | */ |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 683 | struct ChainContextLookupContext lookup_context = { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 684 | {match_class, apply_func}, |
Behdad Esfahbod | 0dfcc13 | 2010-04-21 23:41:26 -0400 | [diff] [blame] | 685 | {CharP(&backtrack_class_def), |
| 686 | CharP(&input_class_def), |
| 687 | CharP(&lookahead_class_def)} |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 688 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 689 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 690 | } |
| 691 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 692 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 693 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 694 | return SANITIZE_WITH_BASE (this, coverage) |
| 695 | && SANITIZE_WITH_BASE (this, backtrackClassDef) |
| 696 | && SANITIZE_WITH_BASE (this, inputClassDef) |
| 697 | && SANITIZE_WITH_BASE (this, lookaheadClassDef) |
| 698 | && SANITIZE_WITH_BASE (this, ruleSet); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 699 | } |
| 700 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 701 | private: |
| 702 | USHORT format; /* Format identifier--format = 2 */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 703 | OffsetTo<Coverage> |
| 704 | coverage; /* Offset to Coverage table--from |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 705 | * beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 706 | OffsetTo<ClassDef> |
| 707 | backtrackClassDef; /* Offset to glyph ClassDef table |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 708 | * containing backtrack sequence |
| 709 | * data--from beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 710 | OffsetTo<ClassDef> |
| 711 | inputClassDef; /* Offset to glyph ClassDef |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 712 | * table containing input sequence |
| 713 | * data--from beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 714 | OffsetTo<ClassDef> |
| 715 | lookaheadClassDef; /* Offset to glyph ClassDef table |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 716 | * containing lookahead sequence |
| 717 | * data--from beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 718 | OffsetArrayOf<ChainRuleSet> |
| 719 | ruleSet; /* Array of ChainRuleSet tables |
| 720 | * ordered by class */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 721 | }; |
| 722 | ASSERT_SIZE (ChainContextFormat2, 12); |
| 723 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 724 | struct ChainContextFormat3 |
| 725 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 726 | friend struct ChainContext; |
| 727 | |
| 728 | private: |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 729 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 730 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 731 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 732 | TRACE_APPLY (); |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 733 | const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 734 | |
| 735 | unsigned int index = (this+input[0]) (IN_CURGLYPH ()); |
Behdad Esfahbod | 64d3fc8 | 2010-05-03 22:51:19 -0400 | [diff] [blame] | 736 | if (likely (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 737 | return false; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 738 | |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 739 | const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); |
| 740 | const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 741 | struct ChainContextLookupContext lookup_context = { |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 742 | {match_coverage, apply_func}, |
Behdad Esfahbod | 0dfcc13 | 2010-04-21 23:41:26 -0400 | [diff] [blame] | 743 | {CharP(this), CharP(this), CharP(this)} |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 744 | }; |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 745 | return chain_context_lookup (APPLY_ARG, |
Behdad Esfahbod | 2cb0845 | 2010-04-21 22:37:31 -0400 | [diff] [blame] | 746 | backtrack.len, (const USHORT *) backtrack.array(), |
| 747 | input.len, (const USHORT *) input.array() + 1, |
| 748 | lookahead.len, (const USHORT *) lookahead.array(), |
| 749 | lookup.len, lookup.array(), |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 750 | lookup_context); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 751 | return false; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 752 | } |
| 753 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 754 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 755 | TRACE_SANITIZE (); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 756 | if (!SANITIZE_WITH_BASE (this, backtrack)) return false; |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 757 | OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 758 | if (!SANITIZE_WITH_BASE (this, input)) return false; |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 759 | OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 760 | if (!SANITIZE_WITH_BASE (this, lookahead)) return false; |
Behdad Esfahbod | e961c86 | 2010-04-21 15:56:11 -0400 | [diff] [blame] | 761 | ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 762 | return SANITIZE (lookup); |
| 763 | } |
| 764 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 765 | private: |
| 766 | USHORT format; /* Format identifier--format = 3 */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 767 | OffsetArrayOf<Coverage> |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 768 | backtrack; /* Array of coverage tables |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 769 | * in backtracking sequence, in glyph |
| 770 | * sequence order */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 771 | OffsetArrayOf<Coverage> |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 772 | inputX ; /* Array of coverage |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 773 | * tables in input sequence, in glyph |
| 774 | * sequence order */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 775 | OffsetArrayOf<Coverage> |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 776 | lookaheadX; /* Array of coverage tables |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 777 | * in lookahead sequence, in glyph |
| 778 | * sequence order */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 779 | ArrayOf<LookupRecord> |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 780 | lookupX; /* Array of LookupRecords--in |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 781 | * design order) */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 782 | }; |
| 783 | ASSERT_SIZE (ChainContextFormat3, 10); |
| 784 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 785 | struct ChainContext |
| 786 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 787 | protected: |
Behdad Esfahbod | 20b035d | 2009-08-10 19:00:36 -0400 | [diff] [blame] | 788 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 789 | { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 790 | TRACE_APPLY (); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 791 | switch (u.format) { |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 792 | case 1: return u.format1->apply (APPLY_ARG, apply_func); |
| 793 | case 2: return u.format2->apply (APPLY_ARG, apply_func); |
| 794 | case 3: return u.format3->apply (APPLY_ARG, apply_func); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 795 | default:return false; |
| 796 | } |
| 797 | } |
| 798 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 799 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 800 | TRACE_SANITIZE (); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 801 | if (!SANITIZE (u.format)) return false; |
| 802 | switch (u.format) { |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 803 | case 1: return u.format1->sanitize (context); |
| 804 | case 2: return u.format2->sanitize (context); |
| 805 | case 3: return u.format3->sanitize (context); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 806 | default:return true; |
| 807 | } |
| 808 | } |
| 809 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 810 | private: |
| 811 | union { |
| 812 | USHORT format; /* Format identifier */ |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 813 | ChainContextFormat1 format1[VAR]; |
| 814 | ChainContextFormat2 format2[VAR]; |
| 815 | ChainContextFormat3 format3[VAR]; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 816 | } u; |
| 817 | }; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 818 | |
| 819 | |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 820 | struct ExtensionFormat1 |
| 821 | { |
| 822 | friend struct Extension; |
| 823 | |
Behdad Esfahbod | 1893948 | 2009-08-04 14:27:56 -0400 | [diff] [blame] | 824 | protected: |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 825 | inline unsigned int get_type (void) const { return extensionLookupType; } |
Behdad Esfahbod | 3b2c2df | 2010-04-22 16:51:42 -0400 | [diff] [blame] | 826 | inline unsigned int get_offset (void) const { return extensionOffset; } |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 827 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 828 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 829 | TRACE_SANITIZE (); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 830 | return SANITIZE_SELF (); |
| 831 | } |
| 832 | |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 833 | private: |
| 834 | USHORT format; /* Format identifier. Set to 1. */ |
| 835 | USHORT extensionLookupType; /* Lookup type of subtable referenced |
| 836 | * by ExtensionOffset (i.e. the |
| 837 | * extension subtable). */ |
Behdad Esfahbod | 81f2af4 | 2010-04-22 00:58:49 -0400 | [diff] [blame] | 838 | ULONG extensionOffset; /* Offset to the extension subtable, |
| 839 | * of lookup type subtable. */ |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 840 | }; |
| 841 | ASSERT_SIZE (ExtensionFormat1, 8); |
| 842 | |
| 843 | struct Extension |
| 844 | { |
| 845 | inline unsigned int get_type (void) const |
| 846 | { |
| 847 | switch (u.format) { |
| 848 | case 1: return u.format1->get_type (); |
| 849 | default:return 0; |
| 850 | } |
| 851 | } |
Behdad Esfahbod | 3b2c2df | 2010-04-22 16:51:42 -0400 | [diff] [blame] | 852 | inline unsigned int get_offset (void) const |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 853 | { |
| 854 | switch (u.format) { |
Behdad Esfahbod | 3b2c2df | 2010-04-22 16:51:42 -0400 | [diff] [blame] | 855 | case 1: return u.format1->get_offset (); |
| 856 | default:return 0; |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 857 | } |
| 858 | } |
| 859 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 860 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 861 | TRACE_SANITIZE (); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 862 | if (!SANITIZE (u.format)) return false; |
| 863 | switch (u.format) { |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 864 | case 1: return u.format1->sanitize (context); |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame] | 865 | default:return true; |
| 866 | } |
| 867 | } |
| 868 | |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 869 | private: |
| 870 | union { |
| 871 | USHORT format; /* Format identifier */ |
Behdad Esfahbod | d3480ba | 2009-11-03 10:47:29 -0500 | [diff] [blame] | 872 | ExtensionFormat1 format1[VAR]; |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 873 | } u; |
| 874 | }; |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 875 | |
| 876 | |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 877 | /* |
| 878 | * GSUB/GPOS Common |
| 879 | */ |
| 880 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 881 | struct GSUBGPOS |
| 882 | { |
Behdad Esfahbod | a328d66 | 2009-08-04 20:27:05 -0400 | [diff] [blame] | 883 | static const hb_tag_t GSUBTag = HB_OT_TAG_GSUB; |
| 884 | static const hb_tag_t GPOSTag = HB_OT_TAG_GPOS; |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 885 | |
Behdad Esfahbod | bff3c0f | 2009-08-07 19:46:30 -0400 | [diff] [blame] | 886 | inline unsigned int get_script_count (void) const |
| 887 | { return (this+scriptList).len; } |
| 888 | inline const Tag& get_script_tag (unsigned int i) const |
| 889 | { return (this+scriptList).get_tag (i); } |
Behdad Esfahbod | e21899b | 2009-11-04 16:36:14 -0500 | [diff] [blame] | 890 | inline unsigned int get_script_tags (unsigned int start_offset, |
| 891 | unsigned int *script_count /* IN/OUT */, |
| 892 | hb_tag_t *script_tags /* OUT */) const |
| 893 | { return (this+scriptList).get_tags (start_offset, script_count, script_tags); } |
Behdad Esfahbod | bff3c0f | 2009-08-07 19:46:30 -0400 | [diff] [blame] | 894 | inline const Script& get_script (unsigned int i) const |
| 895 | { return (this+scriptList)[i]; } |
| 896 | inline bool find_script_index (hb_tag_t tag, unsigned int *index) const |
| 897 | { return (this+scriptList).find_index (tag, index); } |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 898 | |
Behdad Esfahbod | bff3c0f | 2009-08-07 19:46:30 -0400 | [diff] [blame] | 899 | inline unsigned int get_feature_count (void) const |
| 900 | { return (this+featureList).len; } |
| 901 | inline const Tag& get_feature_tag (unsigned int i) const |
| 902 | { return (this+featureList).get_tag (i); } |
Behdad Esfahbod | e21899b | 2009-11-04 16:36:14 -0500 | [diff] [blame] | 903 | inline unsigned int get_feature_tags (unsigned int start_offset, |
| 904 | unsigned int *feature_count /* IN/OUT */, |
| 905 | hb_tag_t *feature_tags /* OUT */) const |
| 906 | { return (this+featureList).get_tags (start_offset, feature_count, feature_tags); } |
Behdad Esfahbod | bff3c0f | 2009-08-07 19:46:30 -0400 | [diff] [blame] | 907 | inline const Feature& get_feature (unsigned int i) const |
| 908 | { return (this+featureList)[i]; } |
| 909 | inline bool find_feature_index (hb_tag_t tag, unsigned int *index) const |
| 910 | { return (this+featureList).find_index (tag, index); } |
| 911 | |
| 912 | inline unsigned int get_lookup_count (void) const |
| 913 | { return (this+lookupList).len; } |
| 914 | inline const Lookup& get_lookup (unsigned int i) const |
| 915 | { return (this+lookupList)[i]; } |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 916 | |
Behdad Esfahbod | 3984047 | 2010-05-05 00:23:19 -0400 | [diff] [blame] | 917 | inline bool sanitize (hb_sanitize_context_t *context) { |
Behdad Esfahbod | 3e2401f | 2009-08-28 17:17:11 -0400 | [diff] [blame] | 918 | TRACE_SANITIZE (); |
Behdad Esfahbod | 26bfcb6 | 2010-05-04 14:49:45 -0400 | [diff] [blame] | 919 | return SANITIZE (version) && likely (version.major == 1) |
Behdad Esfahbod | bb029af | 2010-05-04 15:28:52 -0400 | [diff] [blame] | 920 | && SANITIZE_WITH_BASE (this, scriptList) |
| 921 | && SANITIZE_WITH_BASE (this, featureList) |
| 922 | && SANITIZE_WITH_BASE (this, lookupList); |
Behdad Esfahbod | cd3827e | 2009-08-04 02:09:34 -0400 | [diff] [blame] | 923 | } |
| 924 | |
Behdad Esfahbod | 212aba6 | 2009-05-24 00:50:27 -0400 | [diff] [blame] | 925 | protected: |
Behdad Esfahbod | 87fcdcb | 2009-05-24 01:03:24 -0400 | [diff] [blame] | 926 | FixedVersion version; /* Version of the GSUB/GPOS table--initially set |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 927 | * to 0x00010000 */ |
| 928 | OffsetTo<ScriptList> |
| 929 | scriptList; /* ScriptList table */ |
| 930 | OffsetTo<FeatureList> |
| 931 | featureList; /* FeatureList table */ |
| 932 | OffsetTo<LookupList> |
| 933 | lookupList; /* LookupList table */ |
| 934 | }; |
| 935 | ASSERT_SIZE (GSUBGPOS, 10); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 936 | |
Behdad Esfahbod | 6f20f72 | 2009-05-17 20:28:01 -0400 | [diff] [blame] | 937 | |
Behdad Esfahbod | 5f5b24f | 2009-08-02 20:03:12 -0400 | [diff] [blame] | 938 | #endif /* HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH */ |