hb-ot-map-private.hh 5.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  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 35 36 37 38 39 40

#include "hb-ot-layout.h"

HB_BEGIN_DECLS


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

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

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

47 48 49
  typedef void (*gsub_pause_func_t) (const hb_ot_map_t *map, hb_face_t *face, hb_buffer_t *buffer, void *user_data);
  typedef void (*gpos_pause_func_t) (const hb_ot_map_t *map, hb_font_t *font, hb_buffer_t *buffer, void *user_data);

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

52
  inline hb_mask_t get_mask (hb_tag_t tag, unsigned int *shift = NULL) const {
53
    const feature_map_t *map = features.bsearch (&tag);
B
Behdad Esfahbod 已提交
54 55
    if (shift) *shift = map ? map->shift : 0;
    return map ? map->mask : 0;
B
Behdad Esfahbod 已提交
56 57
  }

58
  inline hb_mask_t get_1_mask (hb_tag_t tag) const {
59
    const feature_map_t *map = features.bsearch (&tag);
60 61 62
    return map ? map->_1_mask : 0;
  }

63 64 65 66
  inline void substitute (hb_face_t *face, hb_buffer_t *buffer) const
  { apply (0, (hb_ot_map_t::apply_lookup_func_t) hb_ot_layout_substitute_lookup, face, buffer); }
  inline void position (hb_font_t *font, hb_buffer_t *buffer) const
  { apply (1, (hb_ot_map_t::apply_lookup_func_t) hb_ot_layout_position_lookup, font, buffer); }
B
Behdad Esfahbod 已提交
67

B
Behdad Esfahbod 已提交
68
  inline void finish (void) {
69 70 71
    features.finish ();
    lookups[0].finish ();
    lookups[1].finish ();
72 73
    pauses[0].finish ();
    pauses[1].finish ();
B
Behdad Esfahbod 已提交
74 75
  }

B
Behdad Esfahbod 已提交
76 77
  private:

78 79
  struct feature_map_t {
    hb_tag_t tag; /* should be first for our bsearch to work */
80 81
    unsigned int index[2]; /* GSUB/GPOS */
    unsigned int stage[2]; /* GSUB/GPOS */
82 83 84
    unsigned int shift;
    hb_mask_t mask;
    hb_mask_t _1_mask; /* mask for value=1, for quick access */
B
Behdad Esfahbod 已提交
85

86 87 88
    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; }
  };
B
Behdad Esfahbod 已提交
89

90 91 92
  struct lookup_map_t {
    unsigned int index;
    hb_mask_t mask;
B
Behdad Esfahbod 已提交
93

94 95 96 97
    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; }
  };

98
  typedef void (*pause_func_t) (const hb_ot_map_t *map, void *face_or_font, hb_buffer_t *buffer, void *user_data);
99 100 101 102 103 104 105 106 107 108
  typedef struct {
    pause_func_t func;
    void *user_data;
  } pause_callback_t;

  struct pause_map_t {
    unsigned int num_lookups; /* Cumulative */
    pause_callback_t callback;
  };

109 110 111 112 113
  typedef hb_bool_t (*apply_lookup_func_t) (void *face_or_font,
					    hb_buffer_t  *buffer,
					    unsigned int  lookup_index,
					    hb_mask_t     mask);

114 115 116 117 118
  HB_INTERNAL void add_lookups (hb_face_t    *face,
				unsigned int  table_index,
				unsigned int  feature_index,
				hb_mask_t     mask);

119 120 121 122
  HB_INTERNAL void apply (unsigned int table_index,
			  hb_ot_map_t::apply_lookup_func_t apply_lookup_func,
			  void *face_or_font,
			  hb_buffer_t *buffer) const;
123 124 125 126 127

  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 */
128
  hb_prealloced_array_t<pause_map_t, 1> pauses[2]; /* GSUB/GPOS */
129
};
B
Behdad Esfahbod 已提交
130 131


B
Behdad Esfahbod 已提交
132 133 134 135 136 137 138 139 140
struct hb_ot_map_builder_t
{
  public:

  HB_INTERNAL void add_feature (hb_tag_t tag, unsigned int value, bool global);

  inline void add_bool_feature (hb_tag_t tag, bool global = true)
  { add_feature (tag, 1, global); }

141 142 143 144
  inline void add_gsub_pause (hb_ot_map_t::gsub_pause_func_t pause_func, void *user_data)
  { add_pause (0, (hb_ot_map_t::pause_func_t) pause_func, user_data); }
  inline void add_gpos_pause (hb_ot_map_t::gpos_pause_func_t pause_func, void *user_data)
  { add_pause (1, (hb_ot_map_t::pause_func_t) pause_func, user_data); }
145

B
Behdad Esfahbod 已提交
146 147 148 149 150 151
  HB_INTERNAL void compile (hb_face_t *face,
			    const hb_segment_properties_t *props,
			    struct hb_ot_map_t &m);

  inline void finish (void) {
    feature_infos.finish ();
152 153
    pauses[0].finish ();
    pauses[1].finish ();
B
Behdad Esfahbod 已提交
154 155 156 157 158 159 160 161 162 163
  }

  private:

  struct feature_info_t {
    hb_tag_t tag;
    unsigned int seq; /* sequence#, used for stable sorting only */
    unsigned int max_value;
    bool global; /* whether the feature applies value to every glyph in the buffer */
    unsigned int default_value; /* for non-global features, what should the unset glyphs take */
164
    unsigned int stage[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
165 166 167 168 169

    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); }
  };

170 171 172 173 174
  struct pause_info_t {
    unsigned int stage;
    hb_ot_map_t::pause_callback_t callback;
  };

175 176
  HB_INTERNAL void add_pause (unsigned int table_index, hb_ot_map_t::pause_func_t pause_func, void *user_data);

177 178 179
  unsigned int current_stage[2]; /* GSUB/GPOS */
  hb_prealloced_array_t<feature_info_t,16> feature_infos;
  hb_prealloced_array_t<pause_info_t, 1> pauses[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
180 181 182
};


B
Behdad Esfahbod 已提交
183 184 185
HB_END_DECLS

#endif /* HB_OT_MAP_PRIVATE_HH */