PageRenderTime 50ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/gfx/harfbuzz/src/hb-ot-map-private.hh

https://bitbucket.org/MeeGoAdmin/mozilla-central/
C++ Header | 160 lines | 95 code | 36 blank | 29 comment | 4 complexity | c54d672c0efb02dc02da3e76febb47a4 MD5 | raw file
Possible License(s): AGPL-1.0, MIT, BSD-3-Clause, Apache-2.0, LGPL-2.1, 0BSD, LGPL-3.0, MPL-2.0-no-copyleft-exception, GPL-2.0, JSON
  1. /*
  2. * Copyright (C) 2009,2010 Red Hat, Inc.
  3. * Copyright (C) 2010 Google, Inc.
  4. *
  5. * This is part of HarfBuzz, a text shaping library.
  6. *
  7. * Permission is hereby granted, without written agreement and without
  8. * license or royalty fees, to use, copy, modify, and distribute this
  9. * software and its documentation for any purpose, provided that the
  10. * above copyright notice and the following two paragraphs appear in
  11. * all copies of this software.
  12. *
  13. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  14. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  15. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  16. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  17. * DAMAGE.
  18. *
  19. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  20. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  21. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  22. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  23. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  24. *
  25. * Red Hat Author(s): Behdad Esfahbod
  26. * Google Author(s): Behdad Esfahbod
  27. */
  28. #ifndef HB_OT_MAP_PRIVATE_HH
  29. #define HB_OT_MAP_PRIVATE_HH
  30. #include "hb-buffer-private.hh"
  31. #include "hb-ot-layout.h"
  32. HB_BEGIN_DECLS
  33. #define MAX_FEATURES 100 /* FIXME */
  34. #define MAX_LOOKUPS 1000 /* FIXME */
  35. /* some constants for feature-ordering priorities; intermediate values can also be
  36. used if required for shapers that want precise control. */
  37. #define FIRST_PRIORITY 100
  38. #define EARLY_PRIORITY 300
  39. #define DEFAULT_PRIORITY 500
  40. #define LATE_PRIORITY 700
  41. #define LAST_PRIORITY 900
  42. static const hb_tag_t table_tags[2] = {HB_OT_TAG_GSUB, HB_OT_TAG_GPOS};
  43. struct hb_ot_map_t {
  44. private:
  45. struct feature_info_t {
  46. hb_tag_t tag;
  47. unsigned int seq; /* sequence#, used for stable sorting only */
  48. unsigned int max_value;
  49. bool global; /* whether the feature applies value to every glyph in the buffer */
  50. unsigned short default_value; /* for non-global features, what should the unset glyphs take */
  51. unsigned short priority; /* feature ordering priority, for cases such as Arabic */
  52. static int cmp (const feature_info_t *a, const feature_info_t *b)
  53. { return (a->tag != b->tag) ? (a->tag < b->tag ? -1 : 1) : (a->seq < b->seq ? -1 : 1); }
  54. };
  55. struct feature_map_t {
  56. hb_tag_t tag; /* should be first for our bsearch to work */
  57. unsigned int index[2]; /* GSUB, GPOS */
  58. unsigned short shift;
  59. unsigned short priority;
  60. hb_mask_t mask;
  61. hb_mask_t _1_mask; /* mask for value=1, for quick access */
  62. static int cmp (const feature_map_t *a, const feature_map_t *b)
  63. { return a->tag < b->tag ? -1 : a->tag > b->tag ? 1 : 0; }
  64. };
  65. struct lookup_map_t {
  66. unsigned short index;
  67. unsigned short priority;
  68. hb_mask_t mask;
  69. static int cmp (const lookup_map_t *a, const lookup_map_t *b)
  70. {
  71. unsigned int a_key = (a->priority << 16) + a->index;
  72. unsigned int b_key = (b->priority << 16) + b->index;
  73. return a_key < b_key ? -1 : a_key > b_key ? 1 : 0;
  74. }
  75. };
  76. HB_INTERNAL void add_lookups (hb_face_t *face,
  77. unsigned int table_index,
  78. unsigned int feature_index,
  79. unsigned short priority,
  80. hb_mask_t mask);
  81. public:
  82. hb_ot_map_t (void) : feature_count (0) {}
  83. void add_feature (hb_tag_t tag, unsigned int value, unsigned short priority, bool global)
  84. {
  85. feature_info_t *info = &feature_infos[feature_count++];
  86. info->tag = tag;
  87. info->seq = feature_count;
  88. info->max_value = value;
  89. info->global = global;
  90. info->default_value = global ? value : 0;
  91. info->priority = priority;
  92. }
  93. inline void add_bool_feature (hb_tag_t tag, unsigned short priority, bool global = true)
  94. { add_feature (tag, 1, priority, global); }
  95. HB_INTERNAL void compile (hb_face_t *face,
  96. const hb_segment_properties_t *props);
  97. inline hb_mask_t get_global_mask (void) const { return global_mask; }
  98. inline hb_mask_t get_mask (hb_tag_t tag, unsigned short *shift = NULL) const {
  99. const feature_map_t *map = (const feature_map_t *) bsearch (&tag, feature_maps, feature_count, sizeof (feature_maps[0]), (hb_compare_func_t) feature_map_t::cmp);
  100. if (shift) *shift = map ? map->shift : 0;
  101. return map ? map->mask : 0;
  102. }
  103. inline hb_mask_t get_1_mask (hb_tag_t tag) const {
  104. const feature_map_t *map = (const feature_map_t *) bsearch (&tag, feature_maps, feature_count, sizeof (feature_maps[0]), (hb_compare_func_t) feature_map_t::cmp);
  105. return map ? map->_1_mask : 0;
  106. }
  107. inline void substitute (hb_face_t *face, hb_buffer_t *buffer) const {
  108. for (unsigned int i = 0; i < lookup_count[0]; i++)
  109. hb_ot_layout_substitute_lookup (face, buffer, lookup_maps[0][i].index, lookup_maps[0][i].mask);
  110. }
  111. inline void position (hb_font_t *font, hb_face_t *face, hb_buffer_t *buffer) const {
  112. for (unsigned int i = 0; i < lookup_count[1]; i++)
  113. hb_ot_layout_position_lookup (font, face, buffer, lookup_maps[1][i].index, lookup_maps[1][i].mask);
  114. }
  115. private:
  116. hb_mask_t global_mask;
  117. unsigned int feature_count;
  118. feature_info_t feature_infos[MAX_FEATURES]; /* used before compile() only */
  119. feature_map_t feature_maps[MAX_FEATURES];
  120. lookup_map_t lookup_maps[2][MAX_LOOKUPS]; /* GSUB/GPOS */
  121. unsigned int lookup_count[2];
  122. };
  123. HB_END_DECLS
  124. #endif /* HB_OT_MAP_PRIVATE_HH */