Add a Notification Settings Button to all web notifications behind the web platform...
[chromium-blink-merge.git] / third_party / harfbuzz-ng / src / hb-shape.cc
blob5ddde5ad59d51334e5863add0b1317c0fe52f8b8
1 /*
2 * Copyright © 2009 Red Hat, Inc.
3 * Copyright © 2012 Google, Inc.
5 * This is part of HarfBuzz, a text shaping library.
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.
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.
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.
25 * Red Hat Author(s): Behdad Esfahbod
26 * Google Author(s): Behdad Esfahbod
29 #include "hb-private.hh"
31 #include "hb-shaper-private.hh"
32 #include "hb-shape-plan-private.hh"
33 #include "hb-buffer-private.hh"
34 #include "hb-font-private.hh"
36 /**
37 * SECTION:hb-shape
38 * @title: Shaping
39 * @short_description: Conversion of text strings into positioned glyphs
40 * @include: hb.h
42 * Shaping is the central operation of HarfBuzz. Shaping operates on buffers,
43 * which are sequences of Unicode characters that use the same font and have
44 * the same text direction, script and language. After shaping the buffer
45 * contains the output glyphs and their positions.
46 **/
48 static bool
49 parse_space (const char **pp, const char *end)
51 while (*pp < end && ISSPACE (**pp))
52 (*pp)++;
53 return true;
56 static bool
57 parse_char (const char **pp, const char *end, char c)
59 parse_space (pp, end);
61 if (*pp == end || **pp != c)
62 return false;
64 (*pp)++;
65 return true;
68 static bool
69 parse_uint (const char **pp, const char *end, unsigned int *pv)
71 char buf[32];
72 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp));
73 strncpy (buf, *pp, len);
74 buf[len] = '\0';
76 char *p = buf;
77 char *pend = p;
78 unsigned int v;
80 /* Intentionally use strtol instead of strtoul, such that
81 * -1 turns into "big number"... */
82 errno = 0;
83 v = strtol (p, &pend, 0);
84 if (errno || p == pend)
85 return false;
87 *pv = v;
88 *pp += pend - p;
89 return true;
92 static bool
93 parse_bool (const char **pp, const char *end, unsigned int *pv)
95 parse_space (pp, end);
97 const char *p = *pp;
98 while (*pp < end && ISALPHA(**pp))
99 (*pp)++;
101 /* CSS allows on/off as aliases 1/0. */
102 if (*pp - p == 2 || 0 == strncmp (p, "on", 2))
103 *pv = 1;
104 else if (*pp - p == 3 || 0 == strncmp (p, "off", 2))
105 *pv = 0;
106 else
107 return false;
109 return true;
112 static bool
113 parse_feature_value_prefix (const char **pp, const char *end, hb_feature_t *feature)
115 if (parse_char (pp, end, '-'))
116 feature->value = 0;
117 else {
118 parse_char (pp, end, '+');
119 feature->value = 1;
122 return true;
125 static bool
126 parse_feature_tag (const char **pp, const char *end, hb_feature_t *feature)
128 parse_space (pp, end);
130 char quote = 0;
132 if (*pp < end && (**pp == '\'' || **pp == '"'))
134 quote = **pp;
135 (*pp)++;
138 const char *p = *pp;
139 while (*pp < end && ISALNUM(**pp))
140 (*pp)++;
142 if (p == *pp || *pp - p > 4)
143 return false;
145 feature->tag = hb_tag_from_string (p, *pp - p);
147 if (quote)
149 /* CSS expects exactly four bytes. And we only allow quotations for
150 * CSS compatibility. So, enforce the length. */
151 if (*pp - p != 4)
152 return false;
153 if (*pp == end || **pp != quote)
154 return false;
155 (*pp)++;
158 return true;
161 static bool
162 parse_feature_indices (const char **pp, const char *end, hb_feature_t *feature)
164 parse_space (pp, end);
166 bool has_start;
168 feature->start = 0;
169 feature->end = (unsigned int) -1;
171 if (!parse_char (pp, end, '['))
172 return true;
174 has_start = parse_uint (pp, end, &feature->start);
176 if (parse_char (pp, end, ':')) {
177 parse_uint (pp, end, &feature->end);
178 } else {
179 if (has_start)
180 feature->end = feature->start + 1;
183 return parse_char (pp, end, ']');
186 static bool
187 parse_feature_value_postfix (const char **pp, const char *end, hb_feature_t *feature)
189 bool had_equal = parse_char (pp, end, '=');
190 bool had_value = parse_uint (pp, end, &feature->value) ||
191 parse_bool (pp, end, &feature->value);
192 /* CSS doesn't use equal-sign between tag and value.
193 * If there was an equal-sign, then there *must* be a value.
194 * A value without an eqaul-sign is ok, but not required. */
195 return !had_equal || had_value;
199 static bool
200 parse_one_feature (const char **pp, const char *end, hb_feature_t *feature)
202 return parse_feature_value_prefix (pp, end, feature) &&
203 parse_feature_tag (pp, end, feature) &&
204 parse_feature_indices (pp, end, feature) &&
205 parse_feature_value_postfix (pp, end, feature) &&
206 parse_space (pp, end) &&
207 *pp == end;
211 * hb_feature_from_string:
212 * @str: (array length=len) (element-type uint8_t): a string to parse
213 * @len: length of @str, or -1 if string is nul-terminated
214 * @feature: (out): the #hb_feature_t to initialize with the parsed values
216 * Parses a string into a #hb_feature_t. If @len is -1 then @str is
217 * %NULL-terminated.
219 * Return value: %TRUE if @str is successfully parsed, %FALSE otherwise
221 * Since: 0.9.5
223 hb_bool_t
224 hb_feature_from_string (const char *str, int len,
225 hb_feature_t *feature)
227 hb_feature_t feat;
229 if (len < 0)
230 len = strlen (str);
232 if (likely (parse_one_feature (&str, str + len, &feat)))
234 if (feature)
235 *feature = feat;
236 return true;
239 if (feature)
240 memset (feature, 0, sizeof (*feature));
241 return false;
245 * hb_feature_to_string:
246 * @feature: an #hb_feature_t to convert
247 * @buf: (array length=size) (out): output string
248 * @size: the allocated size of @buf
250 * Converts a #hb_feature_t into a %NULL-terminated string in the format
251 * understood by hb_feature_from_string(). The client in responsible for
252 * allocating big enough size for @buf, 128 bytes is more than enough.
254 * Since: 0.9.5
256 void
257 hb_feature_to_string (hb_feature_t *feature,
258 char *buf, unsigned int size)
260 if (unlikely (!size)) return;
262 char s[128];
263 unsigned int len = 0;
264 if (feature->value == 0)
265 s[len++] = '-';
266 hb_tag_to_string (feature->tag, s + len);
267 len += 4;
268 while (len && s[len - 1] == ' ')
269 len--;
270 if (feature->start != 0 || feature->end != (unsigned int) -1)
272 s[len++] = '[';
273 if (feature->start)
274 len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->start));
275 if (feature->end != feature->start + 1) {
276 s[len++] = ':';
277 if (feature->end != (unsigned int) -1)
278 len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->end));
280 s[len++] = ']';
282 if (feature->value > 1)
284 s[len++] = '=';
285 len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->value));
287 assert (len < ARRAY_LENGTH (s));
288 len = MIN (len, size - 1);
289 memcpy (buf, s, len);
290 buf[len] = '\0';
294 static const char **static_shaper_list;
296 #ifdef HB_USE_ATEXIT
297 static
298 void free_static_shaper_list (void)
300 free (static_shaper_list);
302 #endif
305 * hb_shape_list_shapers:
307 * Retrieves the list of shapers supported by HarfBuzz.
309 * Return value: (transfer none) (array zero-terminated=1): an array of
310 * constant strings
312 * Since: 0.9.2
314 const char **
315 hb_shape_list_shapers (void)
317 retry:
318 const char **shaper_list = (const char **) hb_atomic_ptr_get (&static_shaper_list);
320 if (unlikely (!shaper_list))
322 /* Not found; allocate one. */
323 shaper_list = (const char **) calloc (1 + HB_SHAPERS_COUNT, sizeof (const char *));
324 if (unlikely (!shaper_list)) {
325 static const char *nil_shaper_list[] = {NULL};
326 return nil_shaper_list;
329 const hb_shaper_pair_t *shapers = _hb_shapers_get ();
330 unsigned int i;
331 for (i = 0; i < HB_SHAPERS_COUNT; i++)
332 shaper_list[i] = shapers[i].name;
333 shaper_list[i] = NULL;
335 if (!hb_atomic_ptr_cmpexch (&static_shaper_list, NULL, shaper_list)) {
336 free (shaper_list);
337 goto retry;
340 #ifdef HB_USE_ATEXIT
341 atexit (free_static_shaper_list); /* First person registers atexit() callback. */
342 #endif
345 return shaper_list;
350 * hb_shape_full:
351 * @font: an #hb_font_t to use for shaping
352 * @buffer: an #hb_buffer_t to shape
353 * @features: (array length=num_features) (allow-none): an array of user
354 * specified #hb_feature_t or %NULL
355 * @num_features: the length of @features array
356 * @shaper_list: (array zero-terminated=1) (allow-none): a %NULL-terminated
357 * array of shapers to use or %NULL
359 * See hb_shape() for details. If @shaper_list is not %NULL, the specified
360 * shapers will be used in the given order, otherwise the default shapers list
361 * will be used.
363 * Return value: %FALSE if all shapers failed, %TRUE otherwise
365 * Since: 0.9.2
367 hb_bool_t
368 hb_shape_full (hb_font_t *font,
369 hb_buffer_t *buffer,
370 const hb_feature_t *features,
371 unsigned int num_features,
372 const char * const *shaper_list)
374 if (unlikely (!buffer->len))
375 return true;
377 assert (buffer->content_type == HB_BUFFER_CONTENT_TYPE_UNICODE);
379 hb_shape_plan_t *shape_plan = hb_shape_plan_create_cached (font->face, &buffer->props, features, num_features, shaper_list);
380 hb_bool_t res = hb_shape_plan_execute (shape_plan, font, buffer, features, num_features);
381 hb_shape_plan_destroy (shape_plan);
383 if (res)
384 buffer->content_type = HB_BUFFER_CONTENT_TYPE_GLYPHS;
385 return res;
389 * hb_shape:
390 * @font: an #hb_font_t to use for shaping
391 * @buffer: an #hb_buffer_t to shape
392 * @features: (array length=num_features) (allow-none): an array of user
393 * specified #hb_feature_t or %NULL
394 * @num_features: the length of @features array
396 * Shapes @buffer using @font turning its Unicode characters content to
397 * positioned glyphs. If @features is not %NULL, it will be used to control the
398 * features applied during shaping.
400 * Return value: %FALSE if all shapers failed, %TRUE otherwise
402 * Since: 1.0
404 void
405 hb_shape (hb_font_t *font,
406 hb_buffer_t *buffer,
407 const hb_feature_t *features,
408 unsigned int num_features)
410 hb_shape_full (font, buffer, features, num_features, NULL);