Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: third_party/harfbuzz-ng/src/hb-icu-le.cc

Issue 10915172: harfbuzz-ng roll (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-icu.cc ('k') | third_party/harfbuzz-ng/src/hb-mutex-private.hh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright © 2012 Google, Inc.
3 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Google Author(s): Behdad Esfahbod
25 */
26
27 #define HB_SHAPER icu_le
28 #define hb_icu_le_shaper_font_data_t PortableFontInstance
29 #include "hb-shaper-impl-private.hh"
30
31 #include "hb-icu-le/PortableFontInstance.h"
32
33 #include "layout/LayoutEngine.h"
34 #include "unicode/unistr.h"
35
36 #include "hb-icu.h"
37
38
39 /*
40 * shaper face data
41 */
42
43 struct hb_icu_le_shaper_face_data_t {};
44
45 hb_icu_le_shaper_face_data_t *
46 _hb_icu_le_shaper_face_data_create (hb_face_t *face)
47 {
48 return (hb_icu_le_shaper_face_data_t *) HB_SHAPER_DATA_SUCCEEDED;
49 }
50
51 void
52 _hb_icu_le_shaper_face_data_destroy (hb_icu_le_shaper_face_data_t *data)
53 {
54 }
55
56
57 /*
58 * shaper font data
59 */
60
61 hb_icu_le_shaper_font_data_t *
62 _hb_icu_le_shaper_font_data_create (hb_font_t *font)
63 {
64 LEErrorCode status = LE_NO_ERROR;
65 hb_icu_le_shaper_font_data_t *data = new PortableFontInstance (font->face,
66 font->x_scale,
67 font->y_scale,
68 status);
69 if (status != LE_NO_ERROR) {
70 delete (data);
71 return NULL;
72 }
73
74 return data;
75 }
76
77 void
78 _hb_icu_le_shaper_font_data_destroy (hb_icu_le_shaper_font_data_t *data)
79 {
80 delete (data);
81 }
82
83
84 /*
85 * shaper shape_plan data
86 */
87
88 struct hb_icu_le_shaper_shape_plan_data_t {};
89
90 hb_icu_le_shaper_shape_plan_data_t *
91 _hb_icu_le_shaper_shape_plan_data_create (hb_shape_plan_t *shape_plan,
92 const hb_feature_t *user_features,
93 unsigned int num_user_features)
94 {
95 return (hb_icu_le_shaper_shape_plan_data_t *) HB_SHAPER_DATA_SUCCEEDED;
96 }
97
98 void
99 _hb_icu_le_shaper_shape_plan_data_destroy (hb_icu_le_shaper_shape_plan_data_t *d ata)
100 {
101 }
102
103
104 /*
105 * shaper
106 */
107
108 hb_bool_t
109 _hb_icu_le_shape (hb_shape_plan_t *shape_plan,
110 hb_font_t *font,
111 hb_buffer_t *buffer,
112 const hb_feature_t *features,
113 unsigned int num_features)
114 {
115 LEFontInstance *font_instance = HB_SHAPER_DATA_GET (font);
116 le_int32 script_code = hb_icu_script_from_script (shape_plan->props.script);
117 le_int32 language_code = -1 /* TODO */;
118 le_int32 typography_flags = 3; // essential for ligatures and kerning
119 LEErrorCode status = LE_NO_ERROR;
120 LayoutEngine *le = LayoutEngine::layoutEngineFactory (font_instance,
121 script_code,
122 language_code,
123 typography_flags,
124 status);
125 if (status != LE_NO_ERROR)
126 { delete (le); return false; }
127
128 retry:
129
130 unsigned int scratch_size;
131 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size);
132
133 #define ALLOCATE_ARRAY(Type, name, len) \
134 Type *name = (Type *) scratch; \
135 scratch += (len) * sizeof ((name)[0]); \
136 scratch_size -= (len) * sizeof ((name)[0]);
137
138 ALLOCATE_ARRAY (LEUnicode, chars, buffer->len);
139 ALLOCATE_ARRAY (unsigned int, clusters, buffer->len);
140
141 for (unsigned int i = 0; i < buffer->len; i++) {
142 chars[i] = buffer->info[i].codepoint;
143 clusters[i] = buffer->info[i].cluster;
144 }
145
146 unsigned int glyph_count = le->layoutChars(chars,
147 0,
148 buffer->len,
149 buffer->len,
150 HB_DIRECTION_IS_BACKWARD (buffer->p rops.direction),
151 0., 0.,
152 status);
153 if (status != LE_NO_ERROR)
154 { delete (le); return false; }
155
156 unsigned int num_glyphs = scratch_size / (sizeof (LEGlyphID) +
157 sizeof (le_int32) +
158 sizeof (float) * 2);
159
160 if (unlikely (glyph_count >= num_glyphs || glyph_count > buffer->allocated)) {
161 buffer->ensure (buffer->allocated * 2);
162 if (buffer->in_error)
163 { delete (le); return false; }
164 goto retry;
165 }
166
167 ALLOCATE_ARRAY (LEGlyphID, glyphs, glyph_count);
168 ALLOCATE_ARRAY (le_int32, indices, glyph_count);
169 ALLOCATE_ARRAY (float, positions, glyph_count * 2 + 2);
170
171 le->getGlyphs(glyphs, status);
172 le->getCharIndices(indices, status);
173 le->getGlyphPositions(positions, status);
174
175 #undef ALLOCATE_ARRAY
176
177 /* Ok, we've got everything we need, now compose output buffer,
178 * very, *very*, carefully! */
179
180 unsigned int j = 0;
181 hb_glyph_info_t *info = buffer->info;
182 for (unsigned int i = 0; i < glyph_count; i++)
183 {
184 if (glyphs[i] >= 0xFFFE)
185 continue;
186
187 info[j].codepoint = glyphs[i];
188 info[j].cluster = clusters[indices[i]];
189
190 /* icu-le doesn't seem to have separapte advance values. */
191 info[j].mask = positions[2 * i + 2] - positions[2 * i];
192 info[j].var1.u32 = 0;
193 info[j].var2.u32 = -positions[2 * i + 1];
194
195 j++;
196 }
197 buffer->len = j;
198
199 buffer->clear_positions ();
200
201 for (unsigned int i = 0; i < buffer->len; i++) {
202 hb_glyph_info_t *info = &buffer->info[i];
203 hb_glyph_position_t *pos = &buffer->pos[i];
204
205 /* TODO vertical */
206 pos->x_advance = info->mask;
207 pos->x_offset = info->var1.u32;
208 pos->y_offset = info->var2.u32;
209 }
210
211 delete (le);
212 return true;
213 }
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-icu.cc ('k') | third_party/harfbuzz-ng/src/hb-mutex-private.hh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698