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-unicode-private.hh"
34

B
Behdad Esfahbod 已提交
35
HB_BEGIN_DECLS
36

B
Behdad Esfahbod 已提交
37

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

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

47

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

HB_INTERNAL void
52
_hb_buffer_clear_output (hb_buffer_t *buffer);
53

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

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

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

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

B
Behdad Esfahbod 已提交
70

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

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

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

B
Behdad Esfahbod 已提交
86 87 88 89 90

struct _hb_buffer_t {
  hb_reference_count_t ref_count;

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

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

  /* Buffer contents */

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

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

105 106 107
  unsigned int serial;

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


  /* Methods */
114 115
  inline unsigned int backtrack_len (void) const
  { return this->have_output? this->out_len : this->i; }
B
Behdad Esfahbod 已提交
116
  inline unsigned int next_serial (void) { return serial++; }
B
Behdad Esfahbod 已提交
117
  inline void swap (void) { _hb_buffer_swap (this); }
B
Behdad Esfahbod 已提交
118
  inline void clear_output (void) { _hb_buffer_clear_output (this); }
119
  inline void clear_positions (void) { _hb_buffer_clear_positions (this); }
B
Behdad Esfahbod 已提交
120
  inline void next_glyph (void) { _hb_buffer_next_glyph (this); }
B
Behdad Esfahbod 已提交
121 122 123 124 125 126
  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 已提交
127

B
Behdad Esfahbod 已提交
128 129 130 131 132 133 134 135 136 137 138
  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,
139 140 141
			 hb_mask_t mask,
			 unsigned int cluster_start,
			 unsigned int cluster_end)
B
Behdad Esfahbod 已提交
142
  { _hb_buffer_set_masks (this, value, mask, cluster_start, cluster_end); }
B
Behdad Esfahbod 已提交
143 144 145
};


B
Behdad Esfahbod 已提交
146
HB_END_DECLS
147

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