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
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"
39 * @short_description: Conversion of text strings into positioned glyphs
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.
49 parse_space (const char **pp
, const char *end
)
51 while (*pp
< end
&& ISSPACE (**pp
))
57 parse_char (const char **pp
, const char *end
, char c
)
59 parse_space (pp
, end
);
61 if (*pp
== end
|| **pp
!= c
)
69 parse_uint (const char **pp
, const char *end
, unsigned int *pv
)
72 unsigned int len
= MIN (ARRAY_LENGTH (buf
) - 1, (unsigned int) (end
- *pp
));
73 strncpy (buf
, *pp
, len
);
80 /* Intentionally use strtol instead of strtoul, such that
81 * -1 turns into "big number"... */
83 v
= strtol (p
, &pend
, 0);
84 if (errno
|| p
== pend
)
93 parse_bool (const char **pp
, const char *end
, unsigned int *pv
)
95 parse_space (pp
, end
);
98 while (*pp
< end
&& ISALPHA(**pp
))
101 /* CSS allows on/off as aliases 1/0. */
102 if (*pp
- p
== 2 || 0 == strncmp (p
, "on", 2))
104 else if (*pp
- p
== 3 || 0 == strncmp (p
, "off", 2))
113 parse_feature_value_prefix (const char **pp
, const char *end
, hb_feature_t
*feature
)
115 if (parse_char (pp
, end
, '-'))
118 parse_char (pp
, end
, '+');
126 parse_feature_tag (const char **pp
, const char *end
, hb_feature_t
*feature
)
128 parse_space (pp
, end
);
132 if (*pp
< end
&& (**pp
== '\'' || **pp
== '"'))
139 while (*pp
< end
&& ISALNUM(**pp
))
142 if (p
== *pp
|| *pp
- p
> 4)
145 feature
->tag
= hb_tag_from_string (p
, *pp
- p
);
149 /* CSS expects exactly four bytes. And we only allow quotations for
150 * CSS compatibility. So, enforce the length. */
153 if (*pp
== end
|| **pp
!= quote
)
162 parse_feature_indices (const char **pp
, const char *end
, hb_feature_t
*feature
)
164 parse_space (pp
, end
);
169 feature
->end
= (unsigned int) -1;
171 if (!parse_char (pp
, end
, '['))
174 has_start
= parse_uint (pp
, end
, &feature
->start
);
176 if (parse_char (pp
, end
, ':')) {
177 parse_uint (pp
, end
, &feature
->end
);
180 feature
->end
= feature
->start
+ 1;
183 return parse_char (pp
, end
, ']');
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
;
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
) &&
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
219 * Return value: %TRUE if @str is successfully parsed, %FALSE otherwise
224 hb_feature_from_string (const char *str
, int len
,
225 hb_feature_t
*feature
)
232 if (likely (parse_one_feature (&str
, str
+ len
, &feat
)))
240 memset (feature
, 0, sizeof (*feature
));
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.
257 hb_feature_to_string (hb_feature_t
*feature
,
258 char *buf
, unsigned int size
)
260 if (unlikely (!size
)) return;
263 unsigned int len
= 0;
264 if (feature
->value
== 0)
266 hb_tag_to_string (feature
->tag
, s
+ len
);
268 while (len
&& s
[len
- 1] == ' ')
270 if (feature
->start
!= 0 || feature
->end
!= (unsigned int) -1)
274 len
+= MAX (0, snprintf (s
+ len
, ARRAY_LENGTH (s
) - len
, "%u", feature
->start
));
275 if (feature
->end
!= feature
->start
+ 1) {
277 if (feature
->end
!= (unsigned int) -1)
278 len
+= MAX (0, snprintf (s
+ len
, ARRAY_LENGTH (s
) - len
, "%u", feature
->end
));
282 if (feature
->value
> 1)
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
);
294 static const char **static_shaper_list
;
298 void free_static_shaper_list (void)
300 free (static_shaper_list
);
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
315 hb_shape_list_shapers (void)
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 ();
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
)) {
341 atexit (free_static_shaper_list
); /* First person registers atexit() callback. */
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
363 * Return value: %FALSE if all shapers failed, %TRUE otherwise
368 hb_shape_full (hb_font_t
*font
,
370 const hb_feature_t
*features
,
371 unsigned int num_features
,
372 const char * const *shaper_list
)
374 if (unlikely (!buffer
->len
))
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
);
384 buffer
->content_type
= HB_BUFFER_CONTENT_TYPE_GLYPHS
;
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
405 hb_shape (hb_font_t
*font
,
407 const hb_feature_t
*features
,
408 unsigned int num_features
)
410 hb_shape_full (font
, buffer
, features
, num_features
, NULL
);