hb-buffer-private.hh 4.5 KB
Newer Older
1
/*
B
Behdad Esfahbod 已提交
2 3
 * Copyright © 1998-2004  David Turner and Werner Lemberg
 * Copyright © 2004,2007,2009,2010  Red Hat, Inc.
4
 *
5
 *  This is part of HarfBuzz, a text shaping library.
6
 *
7 8 9 10 11
 * 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.
12
 *
13 14 15 16 17 18 19 20 21 22 23 24 25
 * 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): Owen Taylor, Behdad Esfahbod
26
 */
27

B
Behdad Esfahbod 已提交
28 29
#ifndef HB_BUFFER_PRIVATE_HH
#define HB_BUFFER_PRIVATE_HH
30

31
#include "hb-private.hh"
32
#include "hb-buffer.h"
33
#include "hb-object-private.hh"
34
#include "hb-unicode-private.hh"
35

B
Behdad Esfahbod 已提交
36
HB_BEGIN_DECLS
37

B
Behdad Esfahbod 已提交
38

39
ASSERT_STATIC (sizeof (hb_glyph_info_t) == 20);
40 41
ASSERT_STATIC (sizeof (hb_glyph_info_t) == sizeof (hb_glyph_position_t));

42 43 44 45 46 47
typedef struct _hb_segment_properties_t {
    hb_direction_t      direction;
    hb_script_t         script;
    hb_language_t       language;
} hb_segment_properties_t;

48

49
HB_INTERNAL void
50
_hb_buffer_swap (hb_buffer_t *buffer);
51 52

HB_INTERNAL void
53
_hb_buffer_clear_output (hb_buffer_t *buffer);
54

55 56 57
HB_INTERNAL void
_hb_buffer_clear_positions (hb_buffer_t *buffer);

58
HB_INTERNAL void
B
Behdad Esfahbod 已提交
59 60 61 62
_hb_buffer_replace_glyphs_be16 (hb_buffer_t *buffer,
				unsigned int num_in,
				unsigned int num_out,
				const uint16_t *glyph_data_be);
63

B
Behdad Esfahbod 已提交
64
HB_INTERNAL void
B
Behdad Esfahbod 已提交
65 66
_hb_buffer_replace_glyph (hb_buffer_t *buffer,
			  hb_codepoint_t glyph_index);
67

B
Behdad Esfahbod 已提交
68
HB_INTERNAL void
69
_hb_buffer_next_glyph (hb_buffer_t *buffer);
70

B
Behdad Esfahbod 已提交
71

B
Behdad Esfahbod 已提交
72
HB_INTERNAL void
73 74
_hb_buffer_reset_masks (hb_buffer_t *buffer,
			hb_mask_t    mask);
B
Behdad Esfahbod 已提交
75 76

HB_INTERNAL void
77
_hb_buffer_add_masks (hb_buffer_t *buffer,
B
Behdad Esfahbod 已提交
78 79 80 81
		      hb_mask_t    mask);

HB_INTERNAL void
_hb_buffer_set_masks (hb_buffer_t *buffer,
82 83 84 85
		      hb_mask_t    value,
		      hb_mask_t    mask,
		      unsigned int cluster_start,
		      unsigned int cluster_end);
B
Behdad Esfahbod 已提交
86

B
Behdad Esfahbod 已提交
87 88

struct _hb_buffer_t {
89
  hb_object_header_t header;
B
Behdad Esfahbod 已提交
90 91

  /* Information about how the text in the buffer should be treated */
92

93 94
  hb_unicode_funcs_t *unicode; /* Unicode functions */
  hb_segment_properties_t props; /* Script, language, direction */
B
Behdad Esfahbod 已提交
95 96 97

  /* Buffer contents */

98 99 100
  bool have_output; /* Whether we have an output buffer going on */
  bool have_positions; /* Whether we have positions */
  bool in_error; /* Allocation failed */
B
Behdad Esfahbod 已提交
101 102 103

  unsigned int i; /* Cursor into ->info and ->pos arrays */
  unsigned int len; /* Length of ->info and ->pos arrays */
104
  unsigned int out_len; /* Length of ->out array if have_output */
B
Behdad Esfahbod 已提交
105

106 107 108
  unsigned int serial;

  unsigned int allocated; /* Length of allocated arrays */
109 110 111
  hb_glyph_info_t     *info;
  hb_glyph_info_t     *out_info;
  hb_glyph_position_t *pos;
B
Behdad Esfahbod 已提交
112 113 114


  /* Methods */
115 116
  inline unsigned int backtrack_len (void) const
  { return this->have_output? this->out_len : this->i; }
B
Behdad Esfahbod 已提交
117
  inline unsigned int next_serial (void) { return serial++; }
B
Behdad Esfahbod 已提交
118
  inline void swap (void) { _hb_buffer_swap (this); }
B
Behdad Esfahbod 已提交
119
  inline void clear_output (void) { _hb_buffer_clear_output (this); }
120
  inline void clear_positions (void) { _hb_buffer_clear_positions (this); }
B
Behdad Esfahbod 已提交
121
  inline void next_glyph (void) { _hb_buffer_next_glyph (this); }
B
Behdad Esfahbod 已提交
122 123 124 125 126 127
  inline void replace_glyphs_be16 (unsigned int num_in,
				   unsigned int num_out,
				   const uint16_t *glyph_data_be)
  { _hb_buffer_replace_glyphs_be16 (this, num_in, num_out, glyph_data_be); }
  inline void replace_glyph (hb_codepoint_t glyph_index)
  { _hb_buffer_replace_glyph (this, glyph_index); }
B
Behdad Esfahbod 已提交
128

B
Behdad Esfahbod 已提交
129 130 131 132 133 134 135 136 137 138 139
  inline void reset_masks (hb_mask_t mask)
  {
    for (unsigned int i = 0; i < len; i++)
      info[i].mask = mask;
  }
  inline void add_masks (hb_mask_t mask)
  {
    for (unsigned int i = 0; i < len; i++)
      info[i].mask |= mask;
  }
  inline void set_masks (hb_mask_t value,
140 141 142
			 hb_mask_t mask,
			 unsigned int cluster_start,
			 unsigned int cluster_end)
B
Behdad Esfahbod 已提交
143
  { _hb_buffer_set_masks (this, value, mask, cluster_start, cluster_end); }
B
Behdad Esfahbod 已提交
144 145 146
};


B
Behdad Esfahbod 已提交
147
HB_END_DECLS
148

B
Behdad Esfahbod 已提交
149
#endif /* HB_BUFFER_PRIVATE_HH */