Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007,2008,2009 Red Hat, Inc. |
| 3 | * |
| 4 | * This is part of HarfBuzz, an OpenType Layout engine library. |
| 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 | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 34 | #define APPLY_ARG_DEF \ |
Behdad Esfahbod | 0ead481 | 2009-08-02 17:41:36 -0400 | [diff] [blame] | 35 | hb_ot_layout_context_t *context, \ |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 36 | hb_buffer_t *buffer, \ |
| 37 | unsigned int context_length HB_GNUC_UNUSED, \ |
| 38 | unsigned int nesting_level_left HB_GNUC_UNUSED, \ |
Behdad Esfahbod | ecf17e8 | 2009-05-17 09:34:41 -0400 | [diff] [blame] | 39 | unsigned int lookup_flag, \ |
| 40 | unsigned int property HB_GNUC_UNUSED /* propety of first glyph */ |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 41 | #define APPLY_ARG \ |
Behdad Esfahbod | 0ead481 | 2009-08-02 17:41:36 -0400 | [diff] [blame] | 42 | context, \ |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 43 | buffer, \ |
| 44 | context_length, \ |
| 45 | nesting_level_left, \ |
Behdad Esfahbod | ecf17e8 | 2009-05-17 09:34:41 -0400 | [diff] [blame] | 46 | lookup_flag, \ |
| 47 | property |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 48 | |
| 49 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 50 | typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const USHORT &value, char *data); |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 51 | 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] | 52 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 53 | struct ContextFuncs |
| 54 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 55 | match_func_t match; |
| 56 | apply_lookup_func_t apply; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 57 | }; |
| 58 | |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 59 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 60 | static inline bool match_glyph (hb_codepoint_t glyph_id, const USHORT &value, char *data) |
| 61 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 62 | return glyph_id == value; |
| 63 | } |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 64 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 65 | static inline bool match_class (hb_codepoint_t glyph_id, const USHORT &value, char *data) |
| 66 | { |
Behdad Esfahbod | 4497af0 | 2009-05-25 03:20:18 -0400 | [diff] [blame] | 67 | const ClassDef &class_def = *(const ClassDef *)data; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 68 | return class_def.get_class (glyph_id) == value; |
| 69 | } |
| 70 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 71 | static inline bool match_coverage (hb_codepoint_t glyph_id, const USHORT &value, char *data) |
| 72 | { |
Behdad Esfahbod | 6b54c5d | 2009-05-18 18:30:25 -0400 | [diff] [blame] | 73 | const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 74 | return (data+coverage) (glyph_id) != NOT_COVERED; |
| 75 | } |
| 76 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 77 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 78 | static inline bool match_input (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 79 | unsigned int count, /* Including the first glyph (not matched) */ |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 80 | const USHORT input[], /* Array of input values--start with second glyph */ |
| 81 | match_func_t match_func, |
| 82 | char *match_data, |
| 83 | unsigned int *context_length_out) |
| 84 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 85 | unsigned int i, j; |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 86 | unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
| 87 | if (HB_UNLIKELY (buffer->in_pos + count > end)) |
| 88 | return false; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 89 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 90 | for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++) |
| 91 | { |
Behdad Esfahbod | 23c86aa | 2009-08-03 21:40:20 -0400 | [diff] [blame] | 92 | while (_hb_ot_layout_skip_mark (context->face, IN_INFO (j), lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 93 | { |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 94 | if (HB_UNLIKELY (j + count - i == end)) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 95 | return false; |
| 96 | j++; |
| 97 | } |
| 98 | |
Behdad Esfahbod | 4189b92 | 2009-05-26 17:31:56 -0400 | [diff] [blame] | 99 | if (HB_LIKELY (!match_func (IN_GLYPH (j), input[i - 1], match_data))) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 100 | return false; |
| 101 | } |
| 102 | |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 103 | *context_length_out = j - buffer->in_pos; |
| 104 | |
| 105 | return true; |
| 106 | } |
| 107 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 108 | static inline bool match_backtrack (APPLY_ARG_DEF, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 109 | unsigned int count, |
| 110 | const USHORT backtrack[], |
| 111 | match_func_t match_func, |
| 112 | char *match_data) |
| 113 | { |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 114 | if (HB_UNLIKELY (buffer->out_pos < count)) |
| 115 | return false; |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 116 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 117 | for (unsigned int i = 0, j = buffer->out_pos - 1; i < count; i++, j--) |
| 118 | { |
Behdad Esfahbod | 23c86aa | 2009-08-03 21:40:20 -0400 | [diff] [blame] | 119 | while (_hb_ot_layout_skip_mark (context->face, OUT_INFO (j), lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 120 | { |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 121 | if (HB_UNLIKELY (j + 1 == count - i)) |
| 122 | return false; |
| 123 | j--; |
| 124 | } |
| 125 | |
Behdad Esfahbod | 4189b92 | 2009-05-26 17:31:56 -0400 | [diff] [blame] | 126 | if (HB_LIKELY (!match_func (OUT_GLYPH (j), backtrack[i], match_data))) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 127 | return false; |
| 128 | } |
| 129 | |
| 130 | return true; |
| 131 | } |
| 132 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 133 | static inline bool match_lookahead (APPLY_ARG_DEF, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 134 | unsigned int count, |
| 135 | const USHORT lookahead[], |
| 136 | match_func_t match_func, |
| 137 | char *match_data, |
| 138 | unsigned int offset) |
| 139 | { |
| 140 | unsigned int i, j; |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 141 | unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
| 142 | if (HB_UNLIKELY (buffer->in_pos + offset + count > end)) |
| 143 | return false; |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 144 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 145 | for (i = 0, j = buffer->in_pos + offset; i < count; i++, j++) |
| 146 | { |
Behdad Esfahbod | 23c86aa | 2009-08-03 21:40:20 -0400 | [diff] [blame] | 147 | while (_hb_ot_layout_skip_mark (context->face, OUT_INFO (j), lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 148 | { |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 149 | if (HB_UNLIKELY (j + count - i == end)) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 150 | return false; |
| 151 | j++; |
| 152 | } |
| 153 | |
Behdad Esfahbod | 4189b92 | 2009-05-26 17:31:56 -0400 | [diff] [blame] | 154 | if (HB_LIKELY (!match_func (IN_GLYPH (j), lookahead[i], match_data))) |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 155 | return false; |
| 156 | } |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 157 | |
| 158 | return true; |
| 159 | } |
| 160 | |
| 161 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 162 | struct LookupRecord |
| 163 | { |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 164 | USHORT sequenceIndex; /* Index into current glyph |
| 165 | * sequence--first glyph = 0 */ |
| 166 | USHORT lookupListIndex; /* Lookup to apply to that |
| 167 | * position--zero--based */ |
| 168 | }; |
| 169 | ASSERT_SIZE (LookupRecord, 4); |
| 170 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 171 | static inline bool apply_lookup (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 172 | unsigned int count, /* Including the first glyph */ |
| 173 | unsigned int lookupCount, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 174 | const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */ |
| 175 | apply_lookup_func_t apply_func) |
| 176 | { |
Behdad Esfahbod | e73a0c2 | 2009-05-18 04:15:25 -0400 | [diff] [blame] | 177 | unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
| 178 | if (HB_UNLIKELY (buffer->in_pos + count > end)) |
| 179 | return false; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 180 | |
Behdad Esfahbod | 7cff75b | 2009-05-18 04:09:05 -0400 | [diff] [blame] | 181 | /* TODO We don't support lookupRecord arrays that are not increasing: |
| 182 | * Should be easy for in_place ones at least. */ |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 183 | for (unsigned int i = 0; i < count; i++) |
| 184 | { |
Behdad Esfahbod | 23c86aa | 2009-08-03 21:40:20 -0400 | [diff] [blame] | 185 | while (_hb_ot_layout_skip_mark (context->face, IN_CURINFO (), lookup_flag, NULL)) |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 186 | { |
Behdad Esfahbod | e73a0c2 | 2009-05-18 04:15:25 -0400 | [diff] [blame] | 187 | if (HB_UNLIKELY (buffer->in_pos == end)) |
| 188 | return true; |
| 189 | /* No lookup applied for this index */ |
| 190 | _hb_buffer_next_glyph (buffer); |
| 191 | } |
| 192 | |
Behdad Esfahbod | 47958de | 2009-05-18 04:17:47 -0400 | [diff] [blame] | 193 | if (lookupCount && i == lookupRecord->sequenceIndex) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 194 | { |
| 195 | unsigned int old_pos = buffer->in_pos; |
| 196 | |
| 197 | /* Apply a lookup */ |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 198 | bool done = apply_func (APPLY_ARG, lookupRecord->lookupListIndex); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 199 | |
Behdad Esfahbod | 47958de | 2009-05-18 04:17:47 -0400 | [diff] [blame] | 200 | lookupRecord++; |
| 201 | lookupCount--; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 202 | i += buffer->in_pos - old_pos; |
Behdad Esfahbod | 2e8fb6c | 2009-05-18 04:37:37 -0400 | [diff] [blame] | 203 | if (HB_UNLIKELY (buffer->in_pos == end)) |
| 204 | return true; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 205 | |
| 206 | if (!done) |
| 207 | goto not_applied; |
| 208 | } |
| 209 | else |
| 210 | { |
| 211 | not_applied: |
| 212 | /* No lookup applied for this index */ |
| 213 | _hb_buffer_next_glyph (buffer); |
| 214 | i++; |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | return true; |
| 219 | } |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 220 | |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 221 | |
| 222 | /* Contextual lookups */ |
| 223 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 224 | struct ContextLookupContext |
| 225 | { |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 226 | ContextFuncs funcs; |
| 227 | char *match_data; |
| 228 | }; |
| 229 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 230 | static inline bool context_lookup (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 231 | unsigned int inputCount, /* Including the first glyph (not matched) */ |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 232 | const USHORT input[], /* Array of input values--start with second glyph */ |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 233 | unsigned int lookupCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 234 | const LookupRecord lookupRecord[], |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 235 | ContextLookupContext &lookup_context) |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 236 | { |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 237 | return match_input (APPLY_ARG, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 238 | inputCount, input, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 239 | lookup_context.funcs.match, lookup_context.match_data, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 240 | &context_length) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 241 | apply_lookup (APPLY_ARG, |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 242 | inputCount, |
| 243 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 244 | lookup_context.funcs.apply); |
Behdad Esfahbod | f14c2b7 | 2009-05-18 02:36:18 -0400 | [diff] [blame] | 245 | } |
| 246 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 247 | struct Rule |
| 248 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 249 | friend struct RuleSet; |
| 250 | |
| 251 | private: |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 252 | inline bool apply (APPLY_ARG_DEF, ContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 253 | { |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 254 | const LookupRecord *lookupRecord = (const LookupRecord *) |
| 255 | ((const char *) input + |
| 256 | sizeof (input[0]) * (inputCount ? inputCount - 1 : 0)); |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 257 | return context_lookup (APPLY_ARG, |
Behdad Esfahbod | 969afd7 | 2009-05-18 05:47:47 -0400 | [diff] [blame] | 258 | inputCount, input, |
| 259 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 260 | lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 261 | } |
| 262 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 263 | public: |
| 264 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 265 | if (!SANITIZE_SELF ()) return false; |
| 266 | return SANITIZE_MEM (input, |
| 267 | sizeof (input[0]) * inputCount + |
| 268 | sizeof (lookupRecordX[0]) * lookupCount); |
| 269 | } |
| 270 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 271 | private: |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 272 | USHORT inputCount; /* Total number of glyphs in input |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 273 | * glyph sequence--includes the first |
| 274 | * glyph */ |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 275 | USHORT lookupCount; /* Number of LookupRecords */ |
| 276 | USHORT input[]; /* Array of match inputs--start with |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 277 | * second glyph */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 278 | LookupRecord lookupRecordX[]; /* Array of LookupRecords--in |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 279 | * design order */ |
| 280 | }; |
| 281 | ASSERT_SIZE (Rule, 4); |
| 282 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 283 | struct RuleSet |
| 284 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 285 | inline bool apply (APPLY_ARG_DEF, ContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 286 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 287 | unsigned int num_rules = rule.len; |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 288 | for (unsigned int i = 0; i < num_rules; i++) |
| 289 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 290 | if ((this+rule[i]).apply (APPLY_ARG, lookup_context)) |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 291 | return true; |
| 292 | } |
| 293 | |
| 294 | return false; |
| 295 | } |
| 296 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 297 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 298 | return SANITIZE_THIS (rule); |
| 299 | } |
| 300 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 301 | private: |
| 302 | OffsetArrayOf<Rule> |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 303 | rule; /* Array of Rule tables |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 304 | * ordered by preference */ |
| 305 | }; |
| 306 | |
| 307 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 308 | struct ContextFormat1 |
| 309 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 310 | friend struct Context; |
| 311 | |
| 312 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 313 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 314 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 315 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 4acaffd | 2009-05-18 05:29:29 -0400 | [diff] [blame] | 316 | if (HB_LIKELY (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 317 | return false; |
| 318 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 319 | const RuleSet &rule_set = this+ruleSet[index]; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 320 | struct ContextLookupContext lookup_context = { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 321 | {match_glyph, apply_func}, |
| 322 | NULL |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 323 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 324 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 325 | } |
| 326 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 327 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 328 | return SANITIZE_THIS2 (coverage, ruleSet); |
| 329 | } |
| 330 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 331 | private: |
| 332 | USHORT format; /* Format identifier--format = 1 */ |
| 333 | OffsetTo<Coverage> |
| 334 | coverage; /* Offset to Coverage table--from |
| 335 | * beginning of table */ |
| 336 | OffsetArrayOf<RuleSet> |
| 337 | ruleSet; /* Array of RuleSet tables |
| 338 | * ordered by Coverage Index */ |
| 339 | }; |
| 340 | ASSERT_SIZE (ContextFormat1, 6); |
| 341 | |
| 342 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 343 | struct ContextFormat2 |
| 344 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 345 | friend struct Context; |
| 346 | |
| 347 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 348 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 349 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 350 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 4acaffd | 2009-05-18 05:29:29 -0400 | [diff] [blame] | 351 | if (HB_LIKELY (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 352 | return false; |
| 353 | |
| 354 | const ClassDef &class_def = this+classDef; |
| 355 | index = class_def (IN_CURGLYPH ()); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 356 | const RuleSet &rule_set = this+ruleSet[index]; |
| 357 | /* LONGTERMTODO: Old code fetches glyph classes at most once and caches |
| 358 | * them across subrule lookups. Not sure it's worth it. |
| 359 | */ |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 360 | struct ContextLookupContext lookup_context = { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 361 | {match_class, apply_func}, |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 362 | (char *) &class_def |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 363 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 364 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 365 | } |
| 366 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 367 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 368 | return SANITIZE_THIS2 (coverage, classDef) && SANITIZE_THIS (ruleSet); |
| 369 | } |
| 370 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 371 | private: |
| 372 | USHORT format; /* Format identifier--format = 2 */ |
| 373 | OffsetTo<Coverage> |
| 374 | coverage; /* Offset to Coverage table--from |
| 375 | * beginning of table */ |
| 376 | OffsetTo<ClassDef> |
| 377 | classDef; /* Offset to glyph ClassDef table--from |
| 378 | * beginning of table */ |
| 379 | OffsetArrayOf<RuleSet> |
| 380 | ruleSet; /* Array of RuleSet tables |
| 381 | * ordered by class */ |
| 382 | }; |
| 383 | ASSERT_SIZE (ContextFormat2, 8); |
| 384 | |
| 385 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 386 | struct ContextFormat3 |
| 387 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 388 | friend struct Context; |
| 389 | |
| 390 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 391 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 392 | { |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 393 | unsigned int index = (this+coverage[0]) (IN_CURGLYPH ()); |
Behdad Esfahbod | 4acaffd | 2009-05-18 05:29:29 -0400 | [diff] [blame] | 394 | if (HB_LIKELY (index == NOT_COVERED)) |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 395 | return false; |
| 396 | |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 397 | const LookupRecord *lookupRecord = (const LookupRecord *) |
| 398 | ((const char *) coverage + |
| 399 | sizeof (coverage[0]) * glyphCount); |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 400 | struct ContextLookupContext lookup_context = { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 401 | {match_coverage, apply_func}, |
| 402 | (char *) this |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 403 | }; |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 404 | return context_lookup (APPLY_ARG, |
Behdad Esfahbod | 969afd7 | 2009-05-18 05:47:47 -0400 | [diff] [blame] | 405 | glyphCount, (const USHORT *) (coverage + 1), |
| 406 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 407 | lookup_context); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 408 | } |
| 409 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 410 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 411 | if (!SANITIZE_SELF ()) return false; |
| 412 | unsigned int count = glyphCount; |
| 413 | for (unsigned int i = 0; i < count; i++) |
| 414 | if (!SANITIZE_THIS (coverage[i])) return false; |
| 415 | LookupRecord *lookupRecord = (LookupRecord *) |
| 416 | ((char *) coverage + |
| 417 | sizeof (coverage[0]) * glyphCount); |
| 418 | return SANITIZE_MEM (lookupRecord, sizeof (lookupRecord[0]) * lookupCount); |
| 419 | } |
| 420 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 421 | private: |
| 422 | USHORT format; /* Format identifier--format = 3 */ |
| 423 | USHORT glyphCount; /* Number of glyphs in the input glyph |
| 424 | * sequence */ |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 425 | USHORT lookupCount; /* Number of LookupRecords */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 426 | OffsetTo<Coverage> |
| 427 | coverage[]; /* Array of offsets to Coverage |
| 428 | * table in glyph sequence order */ |
| 429 | LookupRecord lookupRecordX[]; /* Array of LookupRecords--in |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 430 | * design order */ |
| 431 | }; |
| 432 | ASSERT_SIZE (ContextFormat3, 6); |
| 433 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 434 | struct Context |
| 435 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 436 | protected: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 437 | bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 438 | { |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 439 | switch (u.format) { |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 440 | case 1: return u.format1->apply (APPLY_ARG, apply_func); |
| 441 | case 2: return u.format2->apply (APPLY_ARG, apply_func); |
| 442 | case 3: return u.format3->apply (APPLY_ARG, apply_func); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 443 | default:return false; |
| 444 | } |
| 445 | } |
| 446 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 447 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 448 | if (!SANITIZE (u.format)) return false; |
| 449 | switch (u.format) { |
| 450 | case 1: return u.format1->sanitize (SANITIZE_ARG); |
| 451 | case 2: return u.format2->sanitize (SANITIZE_ARG); |
| 452 | case 3: return u.format3->sanitize (SANITIZE_ARG); |
| 453 | default:return true; |
| 454 | } |
| 455 | } |
| 456 | |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 457 | private: |
| 458 | union { |
Behdad Esfahbod | f8dc67b | 2009-05-17 19:47:54 -0400 | [diff] [blame] | 459 | USHORT format; /* Format identifier */ |
| 460 | ContextFormat1 format1[]; |
| 461 | ContextFormat2 format2[]; |
| 462 | ContextFormat3 format3[]; |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 463 | } u; |
| 464 | }; |
Behdad Esfahbod | f8dc67b | 2009-05-17 19:47:54 -0400 | [diff] [blame] | 465 | ASSERT_SIZE (Context, 2); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 466 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 467 | |
| 468 | /* Chaining Contextual lookups */ |
| 469 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 470 | struct ChainContextLookupContext |
| 471 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 472 | ContextFuncs funcs; |
| 473 | char *match_data[3]; |
| 474 | }; |
| 475 | |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 476 | static inline bool chain_context_lookup (APPLY_ARG_DEF, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 477 | unsigned int backtrackCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 478 | const USHORT backtrack[], |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 479 | unsigned int inputCount, /* Including the first glyph (not matched) */ |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 480 | const USHORT input[], /* Array of input values--start with second glyph */ |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 481 | unsigned int lookaheadCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 482 | const USHORT lookahead[], |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 483 | unsigned int lookupCount, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 484 | const LookupRecord lookupRecord[], |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 485 | ChainContextLookupContext &lookup_context) |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 486 | { |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 487 | /* First guess */ |
| 488 | if (HB_UNLIKELY (buffer->out_pos < backtrackCount || |
Behdad Esfahbod | 122f21f | 2009-05-18 04:21:53 -0400 | [diff] [blame] | 489 | buffer->in_pos + inputCount + lookaheadCount > buffer->in_length || |
| 490 | inputCount + lookaheadCount > context_length)) |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 491 | return false; |
| 492 | |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 493 | unsigned int offset; |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 494 | return match_backtrack (APPLY_ARG, |
Behdad Esfahbod | e072c24 | 2009-05-18 03:47:31 -0400 | [diff] [blame] | 495 | backtrackCount, backtrack, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 496 | lookup_context.funcs.match, lookup_context.match_data[0]) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 497 | match_input (APPLY_ARG, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 498 | inputCount, input, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 499 | lookup_context.funcs.match, lookup_context.match_data[1], |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 500 | &offset) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 501 | match_lookahead (APPLY_ARG, |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 502 | lookaheadCount, lookahead, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 503 | lookup_context.funcs.match, lookup_context.match_data[2], |
Behdad Esfahbod | d0ba055 | 2009-05-18 03:56:39 -0400 | [diff] [blame] | 504 | offset) && |
| 505 | (context_length = offset, true) && |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 506 | apply_lookup (APPLY_ARG, |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 507 | inputCount, |
| 508 | lookupCount, lookupRecord, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 509 | lookup_context.funcs.apply); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 510 | } |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 511 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 512 | struct ChainRule |
| 513 | { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 514 | friend struct ChainRuleSet; |
| 515 | |
| 516 | private: |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 517 | inline bool apply (APPLY_ARG_DEF, ChainContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 518 | { |
Behdad Esfahbod | 515ce4c | 2009-05-26 13:08:00 -0400 | [diff] [blame] | 519 | const HeadlessArrayOf<USHORT> &input = *(const HeadlessArrayOf<USHORT>*) |
| 520 | ((const char *) &backtrack + backtrack.get_size ()); |
| 521 | const ArrayOf<USHORT> &lookahead = *(const ArrayOf<USHORT>*) |
| 522 | ((const char *) &input + input.get_size ()); |
| 523 | const ArrayOf<LookupRecord> &lookup = *(const ArrayOf<LookupRecord>*) |
| 524 | ((const char *) &lookahead + lookahead.get_size ()); |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 525 | return chain_context_lookup (APPLY_ARG, |
Behdad Esfahbod | 969afd7 | 2009-05-18 05:47:47 -0400 | [diff] [blame] | 526 | backtrack.len, backtrack.array, |
| 527 | input.len, input.array + 1, |
| 528 | lookahead.len, lookahead.array, |
| 529 | lookup.len, lookup.array, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 530 | lookup_context); |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 531 | return false; |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 532 | } |
| 533 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 534 | public: |
| 535 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 536 | if (!SANITIZE (backtrack)) return false; |
| 537 | HeadlessArrayOf<USHORT> &input = *(HeadlessArrayOf<USHORT>*) |
| 538 | ((char *) &backtrack + backtrack.get_size ()); |
| 539 | if (!SANITIZE (input)) return false; |
| 540 | ArrayOf<USHORT> &lookahead = *(ArrayOf<USHORT>*) |
| 541 | ((char *) &input + input.get_size ()); |
| 542 | if (!SANITIZE (lookahead)) return false; |
| 543 | ArrayOf<LookupRecord> &lookup = *(ArrayOf<LookupRecord>*) |
| 544 | ((char *) &lookahead + lookahead.get_size ()); |
| 545 | return SANITIZE (lookup); |
| 546 | } |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 547 | |
| 548 | private: |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 549 | ArrayOf<USHORT> |
| 550 | backtrack; /* Array of backtracking values |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 551 | * (to be matched before the input |
| 552 | * sequence) */ |
Behdad Esfahbod | e8cbaaf | 2009-05-18 02:03:58 -0400 | [diff] [blame] | 553 | HeadlessArrayOf<USHORT> |
| 554 | inputX; /* Array of input values (start with |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 555 | * second glyph) */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 556 | ArrayOf<USHORT> |
| 557 | lookaheadX; /* Array of lookahead values's (to be |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 558 | * matched after the input sequence) */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 559 | ArrayOf<LookupRecord> |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 560 | lookupX; /* Array of LookupRecords--in |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 561 | * design order) */ |
| 562 | }; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 563 | ASSERT_SIZE (ChainRule, 8); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 564 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 565 | struct ChainRuleSet |
| 566 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 567 | inline bool apply (APPLY_ARG_DEF, ChainContextLookupContext &lookup_context) const |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 568 | { |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 569 | unsigned int num_rules = rule.len; |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 570 | for (unsigned int i = 0; i < num_rules; i++) |
| 571 | { |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 572 | if ((this+rule[i]).apply (APPLY_ARG, lookup_context)) |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 573 | return true; |
| 574 | } |
| 575 | |
| 576 | return false; |
| 577 | } |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 578 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 579 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 580 | return SANITIZE_THIS (rule); |
| 581 | } |
| 582 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 583 | private: |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 584 | OffsetArrayOf<ChainRule> |
| 585 | rule; /* Array of ChainRule tables |
| 586 | * ordered by preference */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 587 | }; |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 588 | ASSERT_SIZE (ChainRuleSet, 2); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 589 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 590 | struct ChainContextFormat1 |
| 591 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 592 | friend struct ChainContext; |
| 593 | |
| 594 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 595 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 596 | { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 597 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 4acaffd | 2009-05-18 05:29:29 -0400 | [diff] [blame] | 598 | if (HB_LIKELY (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 599 | return false; |
| 600 | |
| 601 | const ChainRuleSet &rule_set = this+ruleSet[index]; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 602 | struct ChainContextLookupContext lookup_context = { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 603 | {match_glyph, apply_func}, |
| 604 | {NULL, NULL, NULL} |
| 605 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 606 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 607 | } |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 608 | |
| 609 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 610 | return SANITIZE_THIS2 (coverage, ruleSet); |
| 611 | } |
| 612 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 613 | private: |
| 614 | USHORT format; /* Format identifier--format = 1 */ |
Behdad Esfahbod | 48f16ed | 2009-05-17 22:11:30 -0400 | [diff] [blame] | 615 | OffsetTo<Coverage> |
| 616 | coverage; /* Offset to Coverage table--from |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 617 | * beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 618 | OffsetArrayOf<ChainRuleSet> |
| 619 | ruleSet; /* Array of ChainRuleSet tables |
| 620 | * ordered by Coverage Index */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 621 | }; |
| 622 | ASSERT_SIZE (ChainContextFormat1, 6); |
| 623 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 624 | struct ChainContextFormat2 |
| 625 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 626 | friend struct ChainContext; |
| 627 | |
| 628 | private: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 629 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 630 | { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 631 | unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
Behdad Esfahbod | 4acaffd | 2009-05-18 05:29:29 -0400 | [diff] [blame] | 632 | if (HB_LIKELY (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 633 | return false; |
| 634 | |
| 635 | const ClassDef &backtrack_class_def = this+backtrackClassDef; |
| 636 | const ClassDef &input_class_def = this+inputClassDef; |
| 637 | const ClassDef &lookahead_class_def = this+lookaheadClassDef; |
| 638 | |
| 639 | index = input_class_def (IN_CURGLYPH ()); |
| 640 | const ChainRuleSet &rule_set = this+ruleSet[index]; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 641 | /* LONGTERMTODO: Old code fetches glyph classes at most once and caches |
| 642 | * them across subrule lookups. Not sure it's worth it. |
| 643 | */ |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 644 | struct ChainContextLookupContext lookup_context = { |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 645 | {match_class, apply_func}, |
| 646 | {(char *) &backtrack_class_def, |
| 647 | (char *) &input_class_def, |
| 648 | (char *) &lookahead_class_def} |
| 649 | }; |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 650 | return rule_set.apply (APPLY_ARG, lookup_context); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 651 | } |
| 652 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 653 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 654 | return SANITIZE_THIS2 (coverage, backtrackClassDef) && |
| 655 | SANITIZE_THIS2 (inputClassDef, lookaheadClassDef) && |
| 656 | SANITIZE_THIS (ruleSet); |
| 657 | } |
| 658 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 659 | private: |
| 660 | USHORT format; /* Format identifier--format = 2 */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 661 | OffsetTo<Coverage> |
| 662 | coverage; /* Offset to Coverage table--from |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 663 | * beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 664 | OffsetTo<ClassDef> |
| 665 | backtrackClassDef; /* Offset to glyph ClassDef table |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 666 | * containing backtrack sequence |
| 667 | * data--from beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 668 | OffsetTo<ClassDef> |
| 669 | inputClassDef; /* Offset to glyph ClassDef |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 670 | * table containing input sequence |
| 671 | * data--from beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 672 | OffsetTo<ClassDef> |
| 673 | lookaheadClassDef; /* Offset to glyph ClassDef table |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 674 | * containing lookahead sequence |
| 675 | * data--from beginning of table */ |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 676 | OffsetArrayOf<ChainRuleSet> |
| 677 | ruleSet; /* Array of ChainRuleSet tables |
| 678 | * ordered by class */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 679 | }; |
| 680 | ASSERT_SIZE (ChainContextFormat2, 12); |
| 681 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 682 | struct ChainContextFormat3 |
| 683 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 684 | friend struct ChainContext; |
| 685 | |
| 686 | private: |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 687 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 688 | inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 689 | { |
Behdad Esfahbod | 515ce4c | 2009-05-26 13:08:00 -0400 | [diff] [blame] | 690 | const OffsetArrayOf<Coverage> &input = *(const OffsetArrayOf<Coverage>*) |
| 691 | ((const char *) &backtrack + backtrack.get_size ()); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 692 | |
| 693 | unsigned int index = (this+input[0]) (IN_CURGLYPH ()); |
Behdad Esfahbod | 4acaffd | 2009-05-18 05:29:29 -0400 | [diff] [blame] | 694 | if (HB_LIKELY (index == NOT_COVERED)) |
Behdad Esfahbod | aa3d7ad | 2009-05-17 23:17:56 -0400 | [diff] [blame] | 695 | return false; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 696 | |
Behdad Esfahbod | 515ce4c | 2009-05-26 13:08:00 -0400 | [diff] [blame] | 697 | const OffsetArrayOf<Coverage> &lookahead = *(const OffsetArrayOf<Coverage>*) |
| 698 | ((const char *) &input + input.get_size ()); |
| 699 | const ArrayOf<LookupRecord> &lookup = *(const ArrayOf<LookupRecord>*) |
| 700 | ((const char *) &lookahead + lookahead.get_size ()); |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 701 | struct ChainContextLookupContext lookup_context = { |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 702 | {match_coverage, apply_func}, |
| 703 | {(char *) this, (char *) this, (char *) this} |
| 704 | }; |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 705 | return chain_context_lookup (APPLY_ARG, |
Behdad Esfahbod | 969afd7 | 2009-05-18 05:47:47 -0400 | [diff] [blame] | 706 | backtrack.len, (USHORT *) backtrack.array, |
| 707 | input.len, (USHORT *) input.array, |
| 708 | lookahead.len, (USHORT *) lookahead.array, |
| 709 | lookup.len, lookup.array, |
Behdad Esfahbod | 7cda6fa | 2009-07-29 18:37:57 -0400 | [diff] [blame] | 710 | lookup_context); |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 711 | return false; |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 712 | } |
| 713 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 714 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 715 | if (!SANITIZE_THIS (backtrack)) return false; |
| 716 | OffsetArrayOf<Coverage> &input = *(OffsetArrayOf<Coverage>*) |
| 717 | ((char *) &backtrack + backtrack.get_size ()); |
| 718 | if (!SANITIZE_THIS (input)) return false; |
| 719 | OffsetArrayOf<Coverage> &lookahead = *(OffsetArrayOf<Coverage>*) |
| 720 | ((char *) &input + input.get_size ()); |
| 721 | if (!SANITIZE_THIS (lookahead)) return false; |
| 722 | ArrayOf<LookupRecord> &lookup = *(ArrayOf<LookupRecord>*) |
| 723 | ((char *) &lookahead + lookahead.get_size ()); |
| 724 | return SANITIZE (lookup); |
| 725 | } |
| 726 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 727 | private: |
| 728 | USHORT format; /* Format identifier--format = 3 */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 729 | OffsetArrayOf<Coverage> |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 730 | backtrack; /* Array of coverage tables |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 731 | * in backtracking sequence, in glyph |
| 732 | * sequence order */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 733 | OffsetArrayOf<Coverage> |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 734 | inputX ; /* Array of coverage |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 735 | * tables in input sequence, in glyph |
| 736 | * sequence order */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 737 | OffsetArrayOf<Coverage> |
Behdad Esfahbod | 13ed440 | 2009-05-18 02:14:37 -0400 | [diff] [blame] | 738 | lookaheadX; /* Array of coverage tables |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 739 | * in lookahead sequence, in glyph |
| 740 | * sequence order */ |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 741 | ArrayOf<LookupRecord> |
Behdad Esfahbod | 02e1e5c | 2009-05-18 02:47:57 -0400 | [diff] [blame] | 742 | lookupX; /* Array of LookupRecords--in |
Behdad Esfahbod | dcb6b60 | 2009-05-18 01:49:57 -0400 | [diff] [blame] | 743 | * design order) */ |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 744 | }; |
| 745 | ASSERT_SIZE (ChainContextFormat3, 10); |
| 746 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 747 | struct ChainContext |
| 748 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 749 | protected: |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 750 | bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const |
| 751 | { |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 752 | switch (u.format) { |
Behdad Esfahbod | eb0dfc8 | 2009-05-18 18:22:44 -0400 | [diff] [blame] | 753 | case 1: return u.format1->apply (APPLY_ARG, apply_func); |
| 754 | case 2: return u.format2->apply (APPLY_ARG, apply_func); |
| 755 | case 3: return u.format3->apply (APPLY_ARG, apply_func); |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 756 | default:return false; |
| 757 | } |
| 758 | } |
| 759 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 760 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 761 | if (!SANITIZE (u.format)) return false; |
| 762 | switch (u.format) { |
| 763 | case 1: return u.format1->sanitize (SANITIZE_ARG); |
| 764 | case 2: return u.format2->sanitize (SANITIZE_ARG); |
| 765 | case 3: return u.format3->sanitize (SANITIZE_ARG); |
| 766 | default:return true; |
| 767 | } |
| 768 | } |
| 769 | |
Behdad Esfahbod | ca5290f | 2009-05-17 20:48:27 -0400 | [diff] [blame] | 770 | private: |
| 771 | union { |
| 772 | USHORT format; /* Format identifier */ |
| 773 | ChainContextFormat1 format1[]; |
| 774 | ChainContextFormat2 format2[]; |
| 775 | ChainContextFormat3 format3[]; |
| 776 | } u; |
| 777 | }; |
| 778 | ASSERT_SIZE (ChainContext, 2); |
| 779 | |
| 780 | |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 781 | struct ExtensionFormat1 |
| 782 | { |
| 783 | friend struct Extension; |
| 784 | |
| 785 | private: |
| 786 | inline unsigned int get_type (void) const { return extensionLookupType; } |
| 787 | inline unsigned int get_offset (void) const { return (extensionOffset[0] << 16) + extensionOffset[1]; } |
| 788 | inline const LookupSubTable& get_subtable (void) const |
| 789 | { |
| 790 | unsigned int offset = get_offset (); |
| 791 | if (HB_UNLIKELY (!offset)) return Null(LookupSubTable); |
Behdad Esfahbod | 4497af0 | 2009-05-25 03:20:18 -0400 | [diff] [blame] | 792 | return *(LookupSubTable*)(((char *) this) + offset); |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 793 | } |
| 794 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 795 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 796 | return SANITIZE_SELF (); |
| 797 | } |
| 798 | |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 799 | private: |
| 800 | USHORT format; /* Format identifier. Set to 1. */ |
| 801 | USHORT extensionLookupType; /* Lookup type of subtable referenced |
| 802 | * by ExtensionOffset (i.e. the |
| 803 | * extension subtable). */ |
| 804 | USHORT extensionOffset[2]; /* Offset to the extension subtable, |
| 805 | * of lookup type subtable. |
| 806 | * Defined as two shorts to avoid |
| 807 | * alignment requirements. */ |
| 808 | }; |
| 809 | ASSERT_SIZE (ExtensionFormat1, 8); |
| 810 | |
| 811 | struct Extension |
| 812 | { |
| 813 | inline unsigned int get_type (void) const |
| 814 | { |
| 815 | switch (u.format) { |
| 816 | case 1: return u.format1->get_type (); |
| 817 | default:return 0; |
| 818 | } |
| 819 | } |
| 820 | inline const LookupSubTable& get_subtable (void) const |
| 821 | { |
| 822 | switch (u.format) { |
| 823 | case 1: return u.format1->get_subtable (); |
| 824 | default:return Null(LookupSubTable); |
| 825 | } |
| 826 | } |
| 827 | |
Behdad Esfahbod | 70de50c | 2009-08-04 00:58:28 -0400 | [diff] [blame^] | 828 | inline bool sanitize (SANITIZE_ARG_DEF) { |
| 829 | if (!SANITIZE (u.format)) return false; |
| 830 | switch (u.format) { |
| 831 | case 1: return u.format1->sanitize (SANITIZE_ARG); |
| 832 | default:return true; |
| 833 | } |
| 834 | } |
| 835 | |
Behdad Esfahbod | d468f9a | 2009-05-21 22:31:33 -0400 | [diff] [blame] | 836 | private: |
| 837 | union { |
| 838 | USHORT format; /* Format identifier */ |
| 839 | ExtensionFormat1 format1[]; |
| 840 | } u; |
| 841 | }; |
| 842 | ASSERT_SIZE (Extension, 2); |
| 843 | |
| 844 | |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 845 | /* |
| 846 | * GSUB/GPOS Common |
| 847 | */ |
| 848 | |
Behdad Esfahbod | 60d77cf | 2009-05-19 23:58:54 -0400 | [diff] [blame] | 849 | struct GSUBGPOS |
| 850 | { |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 851 | static const hb_tag_t GSUBTag = HB_TAG ('G','S','U','B'); |
| 852 | static const hb_tag_t GPOSTag = HB_TAG ('G','P','O','S'); |
| 853 | |
Behdad Esfahbod | 212aba6 | 2009-05-24 00:50:27 -0400 | [diff] [blame] | 854 | STATIC_DEFINE_GET_FOR_DATA_CHECK_MAJOR_VERSION (GSUBGPOS, 1); |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 855 | |
| 856 | DEFINE_TAG_LIST_INTERFACE (Script, script ); /* get_script_count (), get_script (i), get_script_tag (i) */ |
| 857 | DEFINE_TAG_LIST_INTERFACE (Feature, feature); /* get_feature_count(), get_feature(i), get_feature_tag(i) */ |
| 858 | DEFINE_LIST_INTERFACE (Lookup, lookup ); /* get_lookup_count (), get_lookup (i) */ |
| 859 | |
| 860 | // LONGTERMTODO bsearch |
| 861 | DEFINE_TAG_FIND_INTERFACE (Script, script ); /* find_script_index (), get_script_by_tag (tag) */ |
| 862 | DEFINE_TAG_FIND_INTERFACE (Feature, feature); /* find_feature_index(), get_feature_by_tag(tag) */ |
| 863 | |
Behdad Esfahbod | 212aba6 | 2009-05-24 00:50:27 -0400 | [diff] [blame] | 864 | protected: |
Behdad Esfahbod | 87fcdcb | 2009-05-24 01:03:24 -0400 | [diff] [blame] | 865 | FixedVersion version; /* Version of the GSUB/GPOS table--initially set |
Behdad Esfahbod | f45107f | 2009-05-17 20:13:02 -0400 | [diff] [blame] | 866 | * to 0x00010000 */ |
| 867 | OffsetTo<ScriptList> |
| 868 | scriptList; /* ScriptList table */ |
| 869 | OffsetTo<FeatureList> |
| 870 | featureList; /* FeatureList table */ |
| 871 | OffsetTo<LookupList> |
| 872 | lookupList; /* LookupList table */ |
| 873 | }; |
| 874 | ASSERT_SIZE (GSUBGPOS, 10); |
Behdad Esfahbod | 66bf7ce | 2009-05-17 08:28:42 -0400 | [diff] [blame] | 875 | |
Behdad Esfahbod | 6f20f72 | 2009-05-17 20:28:01 -0400 | [diff] [blame] | 876 | |
Behdad Esfahbod | 5f5b24f | 2009-08-02 20:03:12 -0400 | [diff] [blame] | 877 | #endif /* HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH */ |