author | prr |
Thu, 07 Dec 2017 11:55:06 -0800 | |
changeset 48274 | 51772bf1fb0c |
parent 47216 | 71c04702a3d5 |
child 50352 | 25db2c8f3cf8 |
permissions | -rw-r--r-- |
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
1 |
/* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
2 |
* Copyright © 1998-2004 David Turner and Werner Lemberg |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
3 |
* Copyright © 2004,2007,2009,2010 Red Hat, Inc. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
4 |
* Copyright © 2011,2012 Google, Inc. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
5 |
* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
6 |
* This is part of HarfBuzz, a text shaping library. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
7 |
* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
8 |
* Permission is hereby granted, without written agreement and without |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
9 |
* license or royalty fees, to use, copy, modify, and distribute this |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
10 |
* software and its documentation for any purpose, provided that the |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
11 |
* above copyright notice and the following two paragraphs appear in |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
12 |
* all copies of this software. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
13 |
* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
14 |
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
15 |
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
16 |
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
17 |
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
18 |
* DAMAGE. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
19 |
* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
20 |
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
21 |
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
22 |
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
23 |
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
24 |
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
25 |
* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
26 |
* Red Hat Author(s): Owen Taylor, Behdad Esfahbod |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
27 |
* Google Author(s): Behdad Esfahbod |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
28 |
*/ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
29 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
30 |
#ifndef HB_BUFFER_PRIVATE_HH |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
31 |
#define HB_BUFFER_PRIVATE_HH |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
32 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
33 |
#include "hb-private.hh" |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
34 |
#include "hb-object-private.hh" |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
35 |
#include "hb-unicode-private.hh" |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
36 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
37 |
|
40435 | 38 |
#ifndef HB_BUFFER_MAX_EXPANSION_FACTOR |
39 |
#define HB_BUFFER_MAX_EXPANSION_FACTOR 32 |
|
40 |
#endif |
|
41 |
#ifndef HB_BUFFER_MAX_LEN_MIN |
|
42 |
#define HB_BUFFER_MAX_LEN_MIN 8192 |
|
43 |
#endif |
|
44 |
#ifndef HB_BUFFER_MAX_LEN_DEFAULT |
|
45 |
#define HB_BUFFER_MAX_LEN_DEFAULT 0x3FFFFFFF /* Shaping more than a billion chars? Let us know! */ |
|
46 |
#endif |
|
47 |
||
48274 | 48 |
static_assert ((sizeof (hb_glyph_info_t) == 20), ""); |
49 |
static_assert ((sizeof (hb_glyph_info_t) == sizeof (hb_glyph_position_t)), ""); |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
50 |
|
40435 | 51 |
HB_MARK_AS_FLAG_T (hb_buffer_flags_t); |
52 |
HB_MARK_AS_FLAG_T (hb_buffer_serialize_flags_t); |
|
48274 | 53 |
HB_MARK_AS_FLAG_T (hb_buffer_diff_flags_t); |
40435 | 54 |
|
55 |
enum hb_buffer_scratch_flags_t { |
|
56 |
HB_BUFFER_SCRATCH_FLAG_DEFAULT = 0x00000000u, |
|
57 |
HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII = 0x00000001u, |
|
58 |
HB_BUFFER_SCRATCH_FLAG_HAS_DEFAULT_IGNORABLES = 0x00000002u, |
|
59 |
HB_BUFFER_SCRATCH_FLAG_HAS_SPACE_FALLBACK = 0x00000004u, |
|
60 |
HB_BUFFER_SCRATCH_FLAG_HAS_GPOS_ATTACHMENT = 0x00000008u, |
|
48274 | 61 |
HB_BUFFER_SCRATCH_FLAG_HAS_UNSAFE_TO_BREAK = 0x00000010u, |
62 |
||
40435 | 63 |
/* Reserved for complex shapers' internal use. */ |
64 |
HB_BUFFER_SCRATCH_FLAG_COMPLEX0 = 0x01000000u, |
|
65 |
HB_BUFFER_SCRATCH_FLAG_COMPLEX1 = 0x02000000u, |
|
66 |
HB_BUFFER_SCRATCH_FLAG_COMPLEX2 = 0x04000000u, |
|
67 |
HB_BUFFER_SCRATCH_FLAG_COMPLEX3 = 0x08000000u, |
|
68 |
}; |
|
69 |
HB_MARK_AS_FLAG_T (hb_buffer_scratch_flags_t); |
|
70 |
||
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
71 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
72 |
/* |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
73 |
* hb_buffer_t |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
74 |
*/ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
75 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
76 |
struct hb_buffer_t { |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
77 |
hb_object_header_t header; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
78 |
ASSERT_POD (); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
79 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
80 |
/* Information about how the text in the buffer should be treated */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
81 |
hb_unicode_funcs_t *unicode; /* Unicode functions */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
82 |
hb_buffer_flags_t flags; /* BOT / EOT / etc. */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
83 |
hb_buffer_cluster_level_t cluster_level; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
84 |
hb_codepoint_t replacement; /* U+FFFD or something else. */ |
40435 | 85 |
hb_buffer_scratch_flags_t scratch_flags; /* Have space-flallback, etc. */ |
86 |
unsigned int max_len; /* Maximum allowed len. */ |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
87 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
88 |
/* Buffer contents */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
89 |
hb_buffer_content_type_t content_type; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
90 |
hb_segment_properties_t props; /* Script, language, direction */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
91 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
92 |
bool in_error; /* Allocation failed */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
93 |
bool have_output; /* Whether we have an output buffer going on */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
94 |
bool have_positions; /* Whether we have positions */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
95 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
96 |
unsigned int idx; /* Cursor into ->info and ->pos arrays */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
97 |
unsigned int len; /* Length of ->info and ->pos arrays */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
98 |
unsigned int out_len; /* Length of ->out array if have_output */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
99 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
100 |
unsigned int allocated; /* Length of allocated arrays */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
101 |
hb_glyph_info_t *info; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
102 |
hb_glyph_info_t *out_info; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
103 |
hb_glyph_position_t *pos; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
104 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
105 |
inline hb_glyph_info_t &cur (unsigned int i = 0) { return info[idx + i]; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
106 |
inline hb_glyph_info_t cur (unsigned int i = 0) const { return info[idx + i]; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
107 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
108 |
inline hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
109 |
inline hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
110 |
|
40435 | 111 |
inline hb_glyph_info_t &prev (void) { return out_info[out_len ? out_len - 1 : 0]; } |
112 |
inline hb_glyph_info_t prev (void) const { return out_info[out_len ? out_len - 1 : 0]; } |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
113 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
114 |
inline bool has_separate_output (void) const { return info != out_info; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
115 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
116 |
unsigned int serial; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
117 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
118 |
/* Text before / after the main buffer contents. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
119 |
* Always in Unicode, and ordered outward. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
120 |
* Index 0 is for "pre-context", 1 for "post-context". */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
121 |
static const unsigned int CONTEXT_LENGTH = 5; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
122 |
hb_codepoint_t context[2][CONTEXT_LENGTH]; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
123 |
unsigned int context_len[2]; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
124 |
|
40435 | 125 |
/* Debugging API */ |
126 |
hb_buffer_message_func_t message_func; |
|
127 |
void *message_data; |
|
128 |
hb_destroy_func_t message_destroy; |
|
129 |
||
130 |
/* Internal debugging. */ |
|
131 |
/* The bits here reflect current allocations of the bytes in glyph_info_t's var1 and var2. */ |
|
132 |
#ifndef HB_NDEBUG |
|
133 |
uint8_t allocated_var_bits; |
|
134 |
#endif |
|
135 |
inline void allocate_var (unsigned int start, unsigned int count) |
|
136 |
{ |
|
137 |
#ifndef HB_NDEBUG |
|
138 |
unsigned int end = start + count; |
|
139 |
assert (end <= 8); |
|
43232 | 140 |
unsigned int bits = (1u<<end) - (1u<<start); |
40435 | 141 |
assert (0 == (allocated_var_bits & bits)); |
142 |
allocated_var_bits |= bits; |
|
143 |
#endif |
|
144 |
} |
|
145 |
inline void deallocate_var (unsigned int start, unsigned int count) |
|
146 |
{ |
|
147 |
#ifndef HB_NDEBUG |
|
148 |
unsigned int end = start + count; |
|
149 |
assert (end <= 8); |
|
43232 | 150 |
unsigned int bits = (1u<<end) - (1u<<start); |
40435 | 151 |
assert (bits == (allocated_var_bits & bits)); |
152 |
allocated_var_bits &= ~bits; |
|
153 |
#endif |
|
154 |
} |
|
155 |
inline void assert_var (unsigned int start, unsigned int count) |
|
156 |
{ |
|
157 |
#ifndef HB_NDEBUG |
|
158 |
unsigned int end = start + count; |
|
159 |
assert (end <= 8); |
|
43232 | 160 |
unsigned int bits = (1u<<end) - (1u<<start); |
40435 | 161 |
assert (bits == (allocated_var_bits & bits)); |
162 |
#endif |
|
163 |
} |
|
164 |
inline void deallocate_var_all (void) |
|
165 |
{ |
|
166 |
#ifndef HB_NDEBUG |
|
167 |
allocated_var_bits = 0; |
|
168 |
#endif |
|
169 |
} |
|
170 |
||
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
171 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
172 |
/* Methods */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
173 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
174 |
HB_INTERNAL void reset (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
175 |
HB_INTERNAL void clear (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
176 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
177 |
inline unsigned int backtrack_len (void) const |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
178 |
{ return have_output? out_len : idx; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
179 |
inline unsigned int lookahead_len (void) const |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
180 |
{ return len - idx; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
181 |
inline unsigned int next_serial (void) { return serial++; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
182 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
183 |
HB_INTERNAL void add (hb_codepoint_t codepoint, |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
184 |
unsigned int cluster); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
185 |
HB_INTERNAL void add_info (const hb_glyph_info_t &glyph_info); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
186 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
187 |
HB_INTERNAL void reverse_range (unsigned int start, unsigned int end); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
188 |
HB_INTERNAL void reverse (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
189 |
HB_INTERNAL void reverse_clusters (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
190 |
HB_INTERNAL void guess_segment_properties (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
191 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
192 |
HB_INTERNAL void swap_buffers (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
193 |
HB_INTERNAL void remove_output (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
194 |
HB_INTERNAL void clear_output (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
195 |
HB_INTERNAL void clear_positions (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
196 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
197 |
HB_INTERNAL void replace_glyphs (unsigned int num_in, |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
198 |
unsigned int num_out, |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
199 |
const hb_codepoint_t *glyph_data); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
200 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
201 |
HB_INTERNAL void replace_glyph (hb_codepoint_t glyph_index); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
202 |
/* Makes a copy of the glyph at idx to output and replace glyph_index */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
203 |
HB_INTERNAL void output_glyph (hb_codepoint_t glyph_index); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
204 |
HB_INTERNAL void output_info (const hb_glyph_info_t &glyph_info); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
205 |
/* Copies glyph at idx to output but doesn't advance idx */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
206 |
HB_INTERNAL void copy_glyph (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
207 |
HB_INTERNAL bool move_to (unsigned int i); /* i is output-buffer index. */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
208 |
/* Copies glyph at idx to output and advance idx. |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
209 |
* If there's no output, just advance idx. */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
210 |
inline void |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
211 |
next_glyph (void) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
212 |
{ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
213 |
if (have_output) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
214 |
{ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
215 |
if (unlikely (out_info != info || out_len != idx)) { |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
216 |
if (unlikely (!make_room_for (1, 1))) return; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
217 |
out_info[out_len] = info[idx]; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
218 |
} |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
219 |
out_len++; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
220 |
} |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
221 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
222 |
idx++; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
223 |
} |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
224 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
225 |
/* Advance idx without copying to output. */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
226 |
inline void skip_glyph (void) { idx++; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
227 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
228 |
inline void reset_masks (hb_mask_t mask) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
229 |
{ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
230 |
for (unsigned int j = 0; j < len; j++) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
231 |
info[j].mask = mask; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
232 |
} |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
233 |
inline void add_masks (hb_mask_t mask) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
234 |
{ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
235 |
for (unsigned int j = 0; j < len; j++) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
236 |
info[j].mask |= mask; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
237 |
} |
48274 | 238 |
HB_INTERNAL void set_masks (hb_mask_t value, hb_mask_t mask, |
239 |
unsigned int cluster_start, unsigned int cluster_end); |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
240 |
|
48274 | 241 |
inline void merge_clusters (unsigned int start, unsigned int end) |
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
242 |
{ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
243 |
if (end - start < 2) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
244 |
return; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
245 |
merge_clusters_impl (start, end); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
246 |
} |
48274 | 247 |
HB_INTERNAL void merge_clusters_impl (unsigned int start, unsigned int end); |
248 |
HB_INTERNAL void merge_out_clusters (unsigned int start, unsigned int end); |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
249 |
/* Merge clusters for deleting current glyph, and skip it. */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
250 |
HB_INTERNAL void delete_glyph (void); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
251 |
|
48274 | 252 |
inline void unsafe_to_break (unsigned int start, |
253 |
unsigned int end) |
|
254 |
{ |
|
255 |
if (end - start < 2) |
|
256 |
return; |
|
257 |
unsafe_to_break_impl (start, end); |
|
258 |
} |
|
259 |
HB_INTERNAL void unsafe_to_break_impl (unsigned int start, unsigned int end); |
|
260 |
HB_INTERNAL void unsafe_to_break_from_outbuffer (unsigned int start, unsigned int end); |
|
261 |
||
262 |
||
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
263 |
/* Internal methods */ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
264 |
HB_INTERNAL bool enlarge (unsigned int size); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
265 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
266 |
inline bool ensure (unsigned int size) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
267 |
{ return likely (!size || size < allocated) ? true : enlarge (size); } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
268 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
269 |
inline bool ensure_inplace (unsigned int size) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
270 |
{ return likely (!size || size < allocated); } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
271 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
272 |
HB_INTERNAL bool make_room_for (unsigned int num_in, unsigned int num_out); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
273 |
HB_INTERNAL bool shift_forward (unsigned int count); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
274 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
275 |
typedef long scratch_buffer_t; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
276 |
HB_INTERNAL scratch_buffer_t *get_scratch_buffer (unsigned int *size); |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
277 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
278 |
inline void clear_context (unsigned int side) { context_len[side] = 0; } |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
279 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
280 |
HB_INTERNAL void sort (unsigned int start, unsigned int end, int(*compar)(const hb_glyph_info_t *, const hb_glyph_info_t *)); |
40435 | 281 |
|
282 |
inline bool messaging (void) { return unlikely (message_func); } |
|
283 |
inline bool message (hb_font_t *font, const char *fmt, ...) HB_PRINTF_FUNC(3, 4) |
|
284 |
{ |
|
285 |
if (!messaging ()) |
|
286 |
return true; |
|
287 |
va_list ap; |
|
288 |
va_start (ap, fmt); |
|
289 |
bool ret = message_impl (font, fmt, ap); |
|
290 |
va_end (ap); |
|
291 |
return ret; |
|
292 |
} |
|
293 |
HB_INTERNAL bool message_impl (hb_font_t *font, const char *fmt, va_list ap) HB_PRINTF_FUNC(3, 0); |
|
48274 | 294 |
|
295 |
static inline void |
|
296 |
set_cluster (hb_glyph_info_t &info, unsigned int cluster, unsigned int mask = 0) |
|
297 |
{ |
|
298 |
if (info.cluster != cluster) |
|
299 |
{ |
|
300 |
if (mask & HB_GLYPH_FLAG_UNSAFE_TO_BREAK) |
|
301 |
info.mask |= HB_GLYPH_FLAG_UNSAFE_TO_BREAK; |
|
302 |
else |
|
303 |
info.mask &= ~HB_GLYPH_FLAG_UNSAFE_TO_BREAK; |
|
304 |
} |
|
305 |
info.cluster = cluster; |
|
306 |
} |
|
307 |
||
308 |
inline int |
|
309 |
_unsafe_to_break_find_min_cluster (const hb_glyph_info_t *info, |
|
310 |
unsigned int start, unsigned int end, |
|
311 |
unsigned int cluster) const |
|
312 |
{ |
|
313 |
for (unsigned int i = start; i < end; i++) |
|
314 |
cluster = MIN<unsigned int> (cluster, info[i].cluster); |
|
315 |
return cluster; |
|
316 |
} |
|
317 |
inline void |
|
318 |
_unsafe_to_break_set_mask (hb_glyph_info_t *info, |
|
319 |
unsigned int start, unsigned int end, |
|
320 |
unsigned int cluster) |
|
321 |
{ |
|
322 |
for (unsigned int i = start; i < end; i++) |
|
323 |
if (cluster != info[i].cluster) |
|
324 |
{ |
|
325 |
scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_UNSAFE_TO_BREAK; |
|
326 |
info[i].mask |= HB_GLYPH_FLAG_UNSAFE_TO_BREAK; |
|
327 |
} |
|
328 |
} |
|
329 |
||
330 |
inline void |
|
331 |
unsafe_to_break_all (void) |
|
332 |
{ |
|
333 |
for (unsigned int i = 0; i < len; i++) |
|
334 |
info[i].mask |= HB_GLYPH_FLAG_UNSAFE_TO_BREAK; |
|
335 |
} |
|
336 |
inline void |
|
337 |
safe_to_break_all (void) |
|
338 |
{ |
|
339 |
for (unsigned int i = 0; i < len; i++) |
|
340 |
info[i].mask &= ~HB_GLYPH_FLAG_UNSAFE_TO_BREAK; |
|
341 |
} |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
342 |
}; |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
343 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
344 |
|
48274 | 345 |
/* Loop over clusters. Duplicated in foreach_syllable(). */ |
346 |
#define foreach_cluster(buffer, start, end) \ |
|
347 |
for (unsigned int \ |
|
348 |
_count = buffer->len, \ |
|
349 |
start = 0, end = _count ? _next_cluster (buffer, 0) : 0; \ |
|
350 |
start < _count; \ |
|
351 |
start = end, end = _next_cluster (buffer, start)) |
|
352 |
||
353 |
static inline unsigned int |
|
354 |
_next_cluster (hb_buffer_t *buffer, unsigned int start) |
|
355 |
{ |
|
356 |
hb_glyph_info_t *info = buffer->info; |
|
357 |
unsigned int count = buffer->len; |
|
358 |
||
359 |
unsigned int cluster = info[start].cluster; |
|
360 |
while (++start < count && cluster == info[start].cluster) |
|
361 |
; |
|
362 |
||
363 |
return start; |
|
364 |
} |
|
365 |
||
366 |
||
40435 | 367 |
#define HB_BUFFER_XALLOCATE_VAR(b, func, var) \ |
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
368 |
b->func (offsetof (hb_glyph_info_t, var) - offsetof(hb_glyph_info_t, var1), \ |
40435 | 369 |
sizeof (b->info[0].var)) |
370 |
#define HB_BUFFER_ALLOCATE_VAR(b, var) HB_BUFFER_XALLOCATE_VAR (b, allocate_var, var ()) |
|
371 |
#define HB_BUFFER_DEALLOCATE_VAR(b, var) HB_BUFFER_XALLOCATE_VAR (b, deallocate_var, var ()) |
|
372 |
#define HB_BUFFER_ASSERT_VAR(b, var) HB_BUFFER_XALLOCATE_VAR (b, assert_var, var ()) |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
373 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
374 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
diff
changeset
|
375 |
#endif /* HB_BUFFER_PRIVATE_HH */ |