hb-ot-map-private.hh 7.9 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright © 2009,2010  Red Hat, Inc.
B
Behdad Esfahbod 已提交
3
 * Copyright © 2010,2011,2012,2013  Google, Inc.
B
Behdad Esfahbod 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 *
 *  This is part of HarfBuzz, a text shaping library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Behdad Esfahbod
 * Google Author(s): Behdad Esfahbod
 */

#ifndef HB_OT_MAP_PRIVATE_HH
#define HB_OT_MAP_PRIVATE_HH

32
#include "hb-buffer-private.hh"
B
Behdad Esfahbod 已提交
33 34


B
Minor  
Behdad Esfahbod 已提交
35
struct hb_ot_shape_plan_t;
B
Behdad Esfahbod 已提交
36 37 38

static const hb_tag_t table_tags[2] = {HB_OT_TAG_GSUB, HB_OT_TAG_GPOS};

39 40 41
struct hb_ot_map_t
{
  friend struct hb_ot_map_builder_t;
B
Behdad Esfahbod 已提交
42

B
Behdad Esfahbod 已提交
43
  public:
B
Behdad Esfahbod 已提交
44

45 46 47 48 49 50 51
  struct feature_map_t {
    hb_tag_t tag; /* should be first for our bsearch to work */
    unsigned int index[2]; /* GSUB/GPOS */
    unsigned int stage[2]; /* GSUB/GPOS */
    unsigned int shift;
    hb_mask_t mask;
    hb_mask_t _1_mask; /* mask for value=1, for quick access */
52
    unsigned int needs_fallback : 1;
53
    unsigned int auto_zwj : 1;
54 55 56 57 58 59

    static int cmp (const feature_map_t *a, const feature_map_t *b)
    { return a->tag < b->tag ? -1 : a->tag > b->tag ? 1 : 0; }
  };

  struct lookup_map_t {
60
    unsigned short index;
61
    unsigned short auto_zwj : 1;
62 63 64 65 66 67
    hb_mask_t mask;

    static int cmp (const lookup_map_t *a, const lookup_map_t *b)
    { return a->index < b->index ? -1 : a->index > b->index ? 1 : 0; }
  };

68
  typedef void (*pause_func_t) (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer);
69

B
Behdad Esfahbod 已提交
70
  struct stage_map_t {
B
Behdad Esfahbod 已提交
71 72
    unsigned int last_lookup; /* Cumulative */
    pause_func_t pause_func;
73 74 75
  };


B
Behdad Esfahbod 已提交
76 77
  hb_ot_map_t (void) { memset (this, 0, sizeof (*this)); }

78
  inline hb_mask_t get_global_mask (void) const { return global_mask; }
B
Behdad Esfahbod 已提交
79

80 81
  inline hb_mask_t get_mask (hb_tag_t feature_tag, unsigned int *shift = NULL) const {
    const feature_map_t *map = features.bsearch (&feature_tag);
B
Behdad Esfahbod 已提交
82 83
    if (shift) *shift = map ? map->shift : 0;
    return map ? map->mask : 0;
B
Behdad Esfahbod 已提交
84 85
  }

86 87 88 89 90
  inline bool needs_fallback (hb_tag_t feature_tag) const {
    const feature_map_t *map = features.bsearch (&feature_tag);
    return map ? map->needs_fallback : false;
  }

91 92
  inline hb_mask_t get_1_mask (hb_tag_t feature_tag) const {
    const feature_map_t *map = features.bsearch (&feature_tag);
93 94 95
    return map ? map->_1_mask : 0;
  }

96
  inline unsigned int get_feature_index (unsigned int table_index, hb_tag_t feature_tag) const {
97 98 99 100
    const feature_map_t *map = features.bsearch (&feature_tag);
    return map ? map->index[table_index] : HB_OT_LAYOUT_NO_FEATURE_INDEX;
  }

101 102 103 104 105 106 107 108 109 110 111 112
  inline unsigned int get_feature_stage (unsigned int table_index, hb_tag_t feature_tag) const {
    const feature_map_t *map = features.bsearch (&feature_tag);
    return map ? map->stage[table_index] : (unsigned int) -1;
  }

  inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
				 const struct lookup_map_t **plookups, unsigned int *lookup_count) const {
    if (unlikely (stage == (unsigned int) -1)) {
      *plookups = NULL;
      *lookup_count = 0;
      return;
    }
B
Behdad Esfahbod 已提交
113
    assert (stage <= stages[table_index].len);
B
Behdad Esfahbod 已提交
114 115
    unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
    unsigned int end   = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
116 117 118 119
    *plookups = &lookups[table_index][start];
    *lookup_count = end - start;
  }

120
  HB_INTERNAL void collect_lookups (unsigned int table_index, hb_set_t *lookups) const;
121 122
  HB_INTERNAL void substitute (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
  HB_INTERNAL void position (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
123

B
Behdad Esfahbod 已提交
124
  inline void finish (void) {
125
    features.finish ();
B
Minor  
Behdad Esfahbod 已提交
126 127 128 129 130
    for (unsigned int table_index = 0; table_index < 2; table_index++)
    {
      lookups[table_index].finish ();
      stages[table_index].finish ();
    }
B
Behdad Esfahbod 已提交
131 132
  }

B
Behdad Esfahbod 已提交
133 134 135
  public:
  hb_tag_t chosen_script[2];
  bool found_script[2];
136

137
  private:
138

139 140 141
  HB_INTERNAL void add_lookups (hb_face_t    *face,
				unsigned int  table_index,
				unsigned int  feature_index,
142
				hb_mask_t     mask,
143
				bool          auto_zwj);
144 145 146 147 148

  hb_mask_t global_mask;

  hb_prealloced_array_t<feature_map_t, 8> features;
  hb_prealloced_array_t<lookup_map_t, 32> lookups[2]; /* GSUB/GPOS */
B
Minor  
Behdad Esfahbod 已提交
149
  hb_prealloced_array_t<stage_map_t, 4> stages[2]; /* GSUB/GPOS */
150
};
B
Behdad Esfahbod 已提交
151

B
Behdad Esfahbod 已提交
152 153 154
enum hb_ot_map_feature_flags_t {
  F_NONE		= 0x0000,
  F_GLOBAL		= 0x0001,
155
  F_HAS_FALLBACK	= 0x0002,
156
  F_MANUAL_ZWJ		= 0x0004
B
Behdad Esfahbod 已提交
157
};
158 159
/* Macro version for where const is desired. */
#define F_COMBINE(l,r) (hb_ot_map_feature_flags_t ((unsigned int) (l) | (unsigned int) (r)))
B
Behdad Esfahbod 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
inline hb_ot_map_feature_flags_t
operator | (hb_ot_map_feature_flags_t l, hb_ot_map_feature_flags_t r)
{ return hb_ot_map_feature_flags_t ((unsigned int) l | (unsigned int) r); }
inline hb_ot_map_feature_flags_t
operator & (hb_ot_map_feature_flags_t l, hb_ot_map_feature_flags_t r)
{ return hb_ot_map_feature_flags_t ((unsigned int) l & (unsigned int) r); }
inline hb_ot_map_feature_flags_t
operator ~ (hb_ot_map_feature_flags_t r)
{ return hb_ot_map_feature_flags_t (~(unsigned int) r); }
inline hb_ot_map_feature_flags_t&
operator |= (hb_ot_map_feature_flags_t &l, hb_ot_map_feature_flags_t r)
{ l = l | r; return l; }
inline hb_ot_map_feature_flags_t&
operator &= (hb_ot_map_feature_flags_t& l, hb_ot_map_feature_flags_t r)
{ l = l & r; return l; }

B
Behdad Esfahbod 已提交
176

B
Behdad Esfahbod 已提交
177 178 179 180
struct hb_ot_map_builder_t
{
  public:

181 182
  HB_INTERNAL hb_ot_map_builder_t (hb_face_t *face_,
				   const hb_segment_properties_t *props_);
B
Behdad Esfahbod 已提交
183

B
Behdad Esfahbod 已提交
184 185
  HB_INTERNAL void add_feature (hb_tag_t tag, unsigned int value,
				hb_ot_map_feature_flags_t flags);
B
Behdad Esfahbod 已提交
186

B
Behdad Esfahbod 已提交
187
  inline void add_global_bool_feature (hb_tag_t tag)
B
Behdad Esfahbod 已提交
188
  { add_feature (tag, 1, F_GLOBAL); }
B
Behdad Esfahbod 已提交
189

B
Behdad Esfahbod 已提交
190 191 192 193
  inline void add_gsub_pause (hb_ot_map_t::pause_func_t pause_func)
  { add_pause (0, pause_func); }
  inline void add_gpos_pause (hb_ot_map_t::pause_func_t pause_func)
  { add_pause (1, pause_func); }
194

195
  HB_INTERNAL void compile (struct hb_ot_map_t &m);
B
Behdad Esfahbod 已提交
196 197 198

  inline void finish (void) {
    feature_infos.finish ();
B
Minor  
Behdad Esfahbod 已提交
199 200 201 202
    for (unsigned int table_index = 0; table_index < 2; table_index++)
    {
      stages[table_index].finish ();
    }
B
Behdad Esfahbod 已提交
203 204 205 206 207 208 209 210
  }

  private:

  struct feature_info_t {
    hb_tag_t tag;
    unsigned int seq; /* sequence#, used for stable sorting only */
    unsigned int max_value;
B
Behdad Esfahbod 已提交
211
    hb_ot_map_feature_flags_t flags;
B
Behdad Esfahbod 已提交
212
    unsigned int default_value; /* for non-global features, what should the unset glyphs take */
213
    unsigned int stage[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
214 215 216 217 218

    static int cmp (const feature_info_t *a, const feature_info_t *b)
    { return (a->tag != b->tag) ?  (a->tag < b->tag ? -1 : 1) : (a->seq < b->seq ? -1 : 1); }
  };

B
Behdad Esfahbod 已提交
219 220
  struct stage_info_t {
    unsigned int index;
B
Behdad Esfahbod 已提交
221
    hb_ot_map_t::pause_func_t pause_func;
222 223
  };

B
Behdad Esfahbod 已提交
224
  HB_INTERNAL void add_pause (unsigned int table_index, hb_ot_map_t::pause_func_t pause_func);
225

226 227
  public:

228 229 230 231
  hb_face_t *face;
  hb_segment_properties_t props;

  hb_tag_t chosen_script[2];
B
Behdad Esfahbod 已提交
232
  bool found_script[2];
233 234
  unsigned int script_index[2], language_index[2];

235 236
  private:

237
  unsigned int current_stage[2]; /* GSUB/GPOS */
B
Minor  
Behdad Esfahbod 已提交
238 239
  hb_prealloced_array_t<feature_info_t, 32> feature_infos;
  hb_prealloced_array_t<stage_info_t, 8> stages[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
240 241 242
};


B
Behdad Esfahbod 已提交
243 244

#endif /* HB_OT_MAP_PRIVATE_HH */