hb-ot-map.hh 8.7 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
 *
 *  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
 */

29 30
#ifndef HB_OT_MAP_HH
#define HB_OT_MAP_HH
B
Behdad Esfahbod 已提交
31

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


35 36 37
#define HB_OT_MAP_MAX_BITS 8u
#define HB_OT_MAP_MAX_VALUE ((1u << HB_OT_MAP_MAX_BITS) - 1u)

B
Minor  
Behdad Esfahbod 已提交
38
struct hb_ot_shape_plan_t;
B
Behdad Esfahbod 已提交
39 40 41

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

42 43 44
struct hb_ot_map_t
{
  friend struct hb_ot_map_builder_t;
B
Behdad Esfahbod 已提交
45

B
Behdad Esfahbod 已提交
46
  public:
B
Behdad Esfahbod 已提交
47

48 49 50 51 52 53 54
  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 */
55
    unsigned int needs_fallback : 1;
56
    unsigned int auto_zwnj : 1;
57
    unsigned int auto_zwj : 1;
58
    unsigned int random : 1;
59

B
Behdad Esfahbod 已提交
60 61
    inline int cmp (const hb_tag_t *tag_) const
    { return *tag_ < tag ? -1 : *tag_ > tag ? 1 : 0; }
62 63 64
  };

  struct lookup_map_t {
65
    unsigned short index;
66
    unsigned short auto_zwnj : 1;
67
    unsigned short auto_zwj : 1;
D
David Corbett 已提交
68
    unsigned short random : 1;
69 70
    hb_mask_t mask;

B
Behdad Esfahbod 已提交
71 72 73 74 75 76
    static int cmp (const void *pa, const void *pb)
    {
      const lookup_map_t *a = (const lookup_map_t *) pa;
      const lookup_map_t *b = (const lookup_map_t *) pb;
      return a->index < b->index ? -1 : a->index > b->index ? 1 : 0;
    }
77 78
  };

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

B
Behdad Esfahbod 已提交
81
  struct stage_map_t {
B
Behdad Esfahbod 已提交
82 83
    unsigned int last_lookup; /* Cumulative */
    pause_func_t pause_func;
84 85
  };

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  inline void init (void)
  {
    memset (this, 0, sizeof (*this));

    features.init ();
    for (unsigned int table_index = 0; table_index < 2; table_index++)
    {
      lookups[table_index].init ();
      stages[table_index].init ();
    }
  }
  inline void fini (void)
  {
    features.fini ();
    for (unsigned int table_index = 0; table_index < 2; table_index++)
    {
      lookups[table_index].fini ();
      stages[table_index].fini ();
    }
  }
B
Behdad Esfahbod 已提交
106

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

B
Behdad Esfahbod 已提交
109
  inline hb_mask_t get_mask (hb_tag_t feature_tag, unsigned int *shift = nullptr) const {
B
Behdad Esfahbod 已提交
110
    const feature_map_t *map = features.bsearch (feature_tag);
B
Behdad Esfahbod 已提交
111 112
    if (shift) *shift = map ? map->shift : 0;
    return map ? map->mask : 0;
B
Behdad Esfahbod 已提交
113 114
  }

115
  inline bool needs_fallback (hb_tag_t feature_tag) const {
B
Behdad Esfahbod 已提交
116
    const feature_map_t *map = features.bsearch (feature_tag);
117 118 119
    return map ? map->needs_fallback : false;
  }

120
  inline hb_mask_t get_1_mask (hb_tag_t feature_tag) const {
B
Behdad Esfahbod 已提交
121
    const feature_map_t *map = features.bsearch (feature_tag);
122 123 124
    return map ? map->_1_mask : 0;
  }

125
  inline unsigned int get_feature_index (unsigned int table_index, hb_tag_t feature_tag) const {
B
Behdad Esfahbod 已提交
126
    const feature_map_t *map = features.bsearch (feature_tag);
127 128 129
    return map ? map->index[table_index] : HB_OT_LAYOUT_NO_FEATURE_INDEX;
  }

130
  inline unsigned int get_feature_stage (unsigned int table_index, hb_tag_t feature_tag) const {
B
Behdad Esfahbod 已提交
131
    const feature_map_t *map = features.bsearch (feature_tag);
132 133 134 135 136 137
    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)) {
B
Behdad Esfahbod 已提交
138
      *plookups = nullptr;
139 140 141
      *lookup_count = 0;
      return;
    }
B
Behdad Esfahbod 已提交
142
    assert (stage <= stages[table_index].len);
B
Behdad Esfahbod 已提交
143 144
    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;
B
Behdad Esfahbod 已提交
145
    *plookups = end == start ? nullptr : &lookups[table_index][start];
146 147 148
    *lookup_count = end - start;
  }

149
  HB_INTERNAL void collect_lookups (unsigned int table_index, hb_set_t *lookups) const;
B
Behdad Esfahbod 已提交
150 151 152
  template <typename Proxy>
  HB_INTERNAL inline void apply (const Proxy &proxy,
				 const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
153 154
  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;
155

B
Behdad Esfahbod 已提交
156 157 158
  public:
  hb_tag_t chosen_script[2];
  bool found_script[2];
159

160
  private:
161

162 163
  hb_mask_t global_mask;

164 165 166
  hb_vector_t<feature_map_t, 8> features;
  hb_vector_t<lookup_map_t, 32> lookups[2]; /* GSUB/GPOS */
  hb_vector_t<stage_map_t, 4> stages[2]; /* GSUB/GPOS */
167
};
B
Behdad Esfahbod 已提交
168

B
Behdad Esfahbod 已提交
169 170
enum hb_ot_map_feature_flags_t
{
171
  F_NONE		= 0x0000u,
172 173
  F_GLOBAL		= 0x0001u, /* Feature applies to all characters; results in no mask allocated for it. */
  F_HAS_FALLBACK	= 0x0002u, /* Has fallback implementation, so include mask bit even if feature not found. */
174 175
  F_MANUAL_ZWNJ		= 0x0004u, /* Don't skip over ZWNJ when matching **context**. */
  F_MANUAL_ZWJ		= 0x0008u, /* Don't skip over ZWJ when matching **input**. */
176 177
  F_GLOBAL_SEARCH	= 0x0010u, /* If feature not found in LangSys, look for it in global feature list and pick one. */
  F_RANDOM		= 0x0020u  /* Randomly select a glyph from an AlternateSubstFormat1 subtable. */
B
Behdad Esfahbod 已提交
178
};
C
Chun-wei Fan 已提交
179
HB_MARK_AS_FLAG_T (hb_ot_map_feature_flags_t);
180 181
/* 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 已提交
182

B
Behdad Esfahbod 已提交
183 184 185 186 187 188
struct hb_ot_map_feature_t
{
  hb_tag_t tag;
  hb_ot_map_feature_flags_t flags;
};

B
Behdad Esfahbod 已提交
189

B
Behdad Esfahbod 已提交
190 191 192 193
struct hb_ot_map_builder_t
{
  public:

194 195
  HB_INTERNAL hb_ot_map_builder_t (hb_face_t *face_,
				   const hb_segment_properties_t *props_);
B
Behdad Esfahbod 已提交
196

197 198
  HB_INTERNAL ~hb_ot_map_builder_t (void);

B
Behdad Esfahbod 已提交
199 200
  HB_INTERNAL void add_feature (hb_tag_t tag, unsigned int value,
				hb_ot_map_feature_flags_t flags);
B
Behdad Esfahbod 已提交
201

B
Behdad Esfahbod 已提交
202 203 204
  inline void add_feature (const hb_ot_map_feature_t &feat)
  { add_feature (feat.tag, 1, feat.flags); }

B
Behdad Esfahbod 已提交
205
  inline void add_global_bool_feature (hb_tag_t tag)
B
Behdad Esfahbod 已提交
206
  { add_feature (tag, 1, F_GLOBAL); }
B
Behdad Esfahbod 已提交
207

B
Behdad Esfahbod 已提交
208 209 210
  inline void disable_feature (hb_tag_t tag)
  { add_feature (tag, 0, F_GLOBAL); }

B
Behdad Esfahbod 已提交
211 212 213 214
  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); }
215

B
Behdad Esfahbod 已提交
216 217 218
  HB_INTERNAL void compile (hb_ot_map_t  &m,
			    const int    *coords,
			    unsigned int  num_coords);
B
Behdad Esfahbod 已提交
219 220 221

  private:

B
Behdad Esfahbod 已提交
222 223 224 225 226
  HB_INTERNAL void add_lookups (hb_ot_map_t  &m,
				unsigned int  table_index,
				unsigned int  feature_index,
				unsigned int  variations_index,
				hb_mask_t     mask,
227
				bool          auto_zwnj = true,
D
David Corbett 已提交
228 229
				bool          auto_zwj = true,
				bool          random = false);
230

B
Behdad Esfahbod 已提交
231 232 233 234
  struct feature_info_t {
    hb_tag_t tag;
    unsigned int seq; /* sequence#, used for stable sorting only */
    unsigned int max_value;
B
Behdad Esfahbod 已提交
235
    hb_ot_map_feature_flags_t flags;
B
Behdad Esfahbod 已提交
236
    unsigned int default_value; /* for non-global features, what should the unset glyphs take */
237
    unsigned int stage[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
238

B
Behdad Esfahbod 已提交
239 240 241 242 243 244 245
    static int cmp (const void *pa, const void *pb)
    {
      const feature_info_t *a = (const feature_info_t *) pa;
      const feature_info_t *b = (const feature_info_t *) pb;
      return (a->tag != b->tag) ?  (a->tag < b->tag ? -1 : 1) :
	     (a->seq < b->seq ? -1 : a->seq > b->seq ? 1 : 0);
    }
B
Behdad Esfahbod 已提交
246 247
  };

B
Behdad Esfahbod 已提交
248 249
  struct stage_info_t {
    unsigned int index;
B
Behdad Esfahbod 已提交
250
    hb_ot_map_t::pause_func_t pause_func;
251 252
  };

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

255 256
  public:

257 258 259 260
  hb_face_t *face;
  hb_segment_properties_t props;

  hb_tag_t chosen_script[2];
B
Behdad Esfahbod 已提交
261
  bool found_script[2];
262 263
  unsigned int script_index[2], language_index[2];

264 265
  private:

266
  unsigned int current_stage[2]; /* GSUB/GPOS */
267 268
  hb_vector_t<feature_info_t, 32> feature_infos;
  hb_vector_t<stage_info_t, 8> stages[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
269 270 271
};


B
Behdad Esfahbod 已提交
272

273
#endif /* HB_OT_MAP_HH */