hb-buffer.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. /*
  2. * Copyright © 1998-2004 David Turner and Werner Lemberg
  3. * Copyright © 2004,2007,2009 Red Hat, Inc.
  4. * Copyright © 2011,2012 Google, Inc.
  5. *
  6. * This is part of HarfBuzz, a text shaping library.
  7. *
  8. * Permission is hereby granted, without written agreement and without
  9. * license or royalty fees, to use, copy, modify, and distribute this
  10. * software and its documentation for any purpose, provided that the
  11. * above copyright notice and the following two paragraphs appear in
  12. * all copies of this software.
  13. *
  14. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  15. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  16. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  17. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  18. * DAMAGE.
  19. *
  20. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  21. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  22. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  23. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  24. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  25. *
  26. * Red Hat Author(s): Owen Taylor, Behdad Esfahbod
  27. * Google Author(s): Behdad Esfahbod
  28. */
  29. #ifndef HB_H_IN
  30. #error "Include <hb.h> instead."
  31. #endif
  32. #ifndef HB_BUFFER_H
  33. #define HB_BUFFER_H
  34. #include "hb-common.h"
  35. #include "hb-unicode.h"
  36. #include "hb-font.h"
  37. HB_BEGIN_DECLS
  38. /**
  39. * hb_glyph_info_t:
  40. * @codepoint: either a Unicode code point (before shaping) or a glyph index
  41. * (after shaping).
  42. * @mask:
  43. * @cluster: the index of the character in the original text that corresponds
  44. * to this #hb_glyph_info_t, or whatever the client passes to
  45. * hb_buffer_add(). More than one #hb_glyph_info_t can have the same
  46. * @cluster value, if they resulted from the same character (e.g. one
  47. * to many glyph substitution), and when more than one character gets
  48. * merged in the same glyph (e.g. many to one glyph substitution) the
  49. * #hb_glyph_info_t will have the smallest cluster value of them.
  50. * By default some characters are merged into the same cluster
  51. * (e.g. combining marks have the same cluster as their bases)
  52. * even if they are separate glyphs, hb_buffer_set_cluster_level()
  53. * allow selecting more fine-grained cluster handling.
  54. *
  55. * The #hb_glyph_info_t is the structure that holds information about the
  56. * glyphs and their relation to input text.
  57. *
  58. */
  59. typedef struct hb_glyph_info_t {
  60. hb_codepoint_t codepoint;
  61. hb_mask_t mask;
  62. uint32_t cluster;
  63. /*< private >*/
  64. hb_var_int_t var1;
  65. hb_var_int_t var2;
  66. } hb_glyph_info_t;
  67. /**
  68. * hb_glyph_position_t:
  69. * @x_advance: how much the line advances after drawing this glyph when setting
  70. * text in horizontal direction.
  71. * @y_advance: how much the line advances after drawing this glyph when setting
  72. * text in vertical direction.
  73. * @x_offset: how much the glyph moves on the X-axis before drawing it, this
  74. * should not affect how much the line advances.
  75. * @y_offset: how much the glyph moves on the Y-axis before drawing it, this
  76. * should not affect how much the line advances.
  77. *
  78. * The #hb_glyph_position_t is the structure that holds the positions of the
  79. * glyph in both horizontal and vertical directions. All positions in
  80. * #hb_glyph_position_t are relative to the current point.
  81. *
  82. */
  83. typedef struct hb_glyph_position_t {
  84. hb_position_t x_advance;
  85. hb_position_t y_advance;
  86. hb_position_t x_offset;
  87. hb_position_t y_offset;
  88. /*< private >*/
  89. hb_var_int_t var;
  90. } hb_glyph_position_t;
  91. /**
  92. * hb_segment_properties_t:
  93. * @direction: the #hb_direction_t of the buffer, see hb_buffer_set_direction().
  94. * @script: the #hb_script_t of the buffer, see hb_buffer_set_script().
  95. * @language: the #hb_language_t of the buffer, see hb_buffer_set_language().
  96. *
  97. * The structure that holds various text properties of an #hb_buffer_t. Can be
  98. * set and retrieved using hb_buffer_set_segment_properties() and
  99. * hb_buffer_get_segment_properties(), respectively.
  100. */
  101. typedef struct hb_segment_properties_t {
  102. hb_direction_t direction;
  103. hb_script_t script;
  104. hb_language_t language;
  105. /*< private >*/
  106. void *reserved1;
  107. void *reserved2;
  108. } hb_segment_properties_t;
  109. #define HB_SEGMENT_PROPERTIES_DEFAULT {HB_DIRECTION_INVALID, \
  110. HB_SCRIPT_INVALID, \
  111. HB_LANGUAGE_INVALID, \
  112. NULL, \
  113. NULL}
  114. HB_EXTERN hb_bool_t
  115. hb_segment_properties_equal (const hb_segment_properties_t *a,
  116. const hb_segment_properties_t *b);
  117. HB_EXTERN unsigned int
  118. hb_segment_properties_hash (const hb_segment_properties_t *p);
  119. /**
  120. * hb_buffer_t:
  121. *
  122. * The main structure holding the input text and its properties before shaping,
  123. * and output glyphs and their information after shaping.
  124. */
  125. typedef struct hb_buffer_t hb_buffer_t;
  126. HB_EXTERN hb_buffer_t *
  127. hb_buffer_create (void);
  128. HB_EXTERN hb_buffer_t *
  129. hb_buffer_get_empty (void);
  130. HB_EXTERN hb_buffer_t *
  131. hb_buffer_reference (hb_buffer_t *buffer);
  132. HB_EXTERN void
  133. hb_buffer_destroy (hb_buffer_t *buffer);
  134. HB_EXTERN hb_bool_t
  135. hb_buffer_set_user_data (hb_buffer_t *buffer,
  136. hb_user_data_key_t *key,
  137. void * data,
  138. hb_destroy_func_t destroy,
  139. hb_bool_t replace);
  140. HB_EXTERN void *
  141. hb_buffer_get_user_data (hb_buffer_t *buffer,
  142. hb_user_data_key_t *key);
  143. /**
  144. * hb_buffer_content_type_t:
  145. * @HB_BUFFER_CONTENT_TYPE_INVALID: Initial value for new buffer.
  146. * @HB_BUFFER_CONTENT_TYPE_UNICODE: The buffer contains input characters (before shaping).
  147. * @HB_BUFFER_CONTENT_TYPE_GLYPHS: The buffer contains output glyphs (after shaping).
  148. */
  149. typedef enum {
  150. HB_BUFFER_CONTENT_TYPE_INVALID = 0,
  151. HB_BUFFER_CONTENT_TYPE_UNICODE,
  152. HB_BUFFER_CONTENT_TYPE_GLYPHS
  153. } hb_buffer_content_type_t;
  154. HB_EXTERN void
  155. hb_buffer_set_content_type (hb_buffer_t *buffer,
  156. hb_buffer_content_type_t content_type);
  157. HB_EXTERN hb_buffer_content_type_t
  158. hb_buffer_get_content_type (hb_buffer_t *buffer);
  159. HB_EXTERN void
  160. hb_buffer_set_unicode_funcs (hb_buffer_t *buffer,
  161. hb_unicode_funcs_t *unicode_funcs);
  162. HB_EXTERN hb_unicode_funcs_t *
  163. hb_buffer_get_unicode_funcs (hb_buffer_t *buffer);
  164. HB_EXTERN void
  165. hb_buffer_set_direction (hb_buffer_t *buffer,
  166. hb_direction_t direction);
  167. HB_EXTERN hb_direction_t
  168. hb_buffer_get_direction (hb_buffer_t *buffer);
  169. HB_EXTERN void
  170. hb_buffer_set_script (hb_buffer_t *buffer,
  171. hb_script_t script);
  172. HB_EXTERN hb_script_t
  173. hb_buffer_get_script (hb_buffer_t *buffer);
  174. HB_EXTERN void
  175. hb_buffer_set_language (hb_buffer_t *buffer,
  176. hb_language_t language);
  177. HB_EXTERN hb_language_t
  178. hb_buffer_get_language (hb_buffer_t *buffer);
  179. HB_EXTERN void
  180. hb_buffer_set_segment_properties (hb_buffer_t *buffer,
  181. const hb_segment_properties_t *props);
  182. HB_EXTERN void
  183. hb_buffer_get_segment_properties (hb_buffer_t *buffer,
  184. hb_segment_properties_t *props);
  185. HB_EXTERN void
  186. hb_buffer_guess_segment_properties (hb_buffer_t *buffer);
  187. /**
  188. * hb_buffer_flags_t:
  189. * @HB_BUFFER_FLAG_DEFAULT: the default buffer flag.
  190. * @HB_BUFFER_FLAG_BOT: flag indicating that special handling of the beginning
  191. * of text paragraph can be applied to this buffer. Should usually
  192. * be set, unless you are passing to the buffer only part
  193. * of the text without the full context.
  194. * @HB_BUFFER_FLAG_EOT: flag indicating that special handling of the end of text
  195. * paragraph can be applied to this buffer, similar to
  196. * @HB_BUFFER_FLAG_EOT.
  197. * @HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES:
  198. * flag indication that character with Default_Ignorable
  199. * Unicode property should use the corresponding glyph
  200. * from the font, instead of hiding them (currently done
  201. * by replacing them with the space glyph and zeroing the
  202. * advance width.)
  203. *
  204. * Since: 0.9.20
  205. */
  206. typedef enum { /*< flags >*/
  207. HB_BUFFER_FLAG_DEFAULT = 0x00000000u,
  208. HB_BUFFER_FLAG_BOT = 0x00000001u, /* Beginning-of-text */
  209. HB_BUFFER_FLAG_EOT = 0x00000002u, /* End-of-text */
  210. HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES = 0x00000004u
  211. } hb_buffer_flags_t;
  212. HB_EXTERN void
  213. hb_buffer_set_flags (hb_buffer_t *buffer,
  214. hb_buffer_flags_t flags);
  215. HB_EXTERN hb_buffer_flags_t
  216. hb_buffer_get_flags (hb_buffer_t *buffer);
  217. /*
  218. * Since: 0.9.42
  219. */
  220. typedef enum {
  221. HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES = 0,
  222. HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS = 1,
  223. HB_BUFFER_CLUSTER_LEVEL_CHARACTERS = 2,
  224. HB_BUFFER_CLUSTER_LEVEL_DEFAULT = HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES
  225. } hb_buffer_cluster_level_t;
  226. HB_EXTERN void
  227. hb_buffer_set_cluster_level (hb_buffer_t *buffer,
  228. hb_buffer_cluster_level_t cluster_level);
  229. HB_EXTERN hb_buffer_cluster_level_t
  230. hb_buffer_get_cluster_level (hb_buffer_t *buffer);
  231. /**
  232. * HB_BUFFER_REPLACEMENT_CODEPOINT_DEFAULT:
  233. *
  234. * The default code point for replacing invalid characters in a given encoding.
  235. * Set to U+FFFD REPLACEMENT CHARACTER.
  236. *
  237. * Since: 0.9.31
  238. */
  239. #define HB_BUFFER_REPLACEMENT_CODEPOINT_DEFAULT 0xFFFDu
  240. HB_EXTERN void
  241. hb_buffer_set_replacement_codepoint (hb_buffer_t *buffer,
  242. hb_codepoint_t replacement);
  243. HB_EXTERN hb_codepoint_t
  244. hb_buffer_get_replacement_codepoint (hb_buffer_t *buffer);
  245. HB_EXTERN void
  246. hb_buffer_reset (hb_buffer_t *buffer);
  247. HB_EXTERN void
  248. hb_buffer_clear_contents (hb_buffer_t *buffer);
  249. HB_EXTERN hb_bool_t
  250. hb_buffer_pre_allocate (hb_buffer_t *buffer,
  251. unsigned int size);
  252. HB_EXTERN hb_bool_t
  253. hb_buffer_allocation_successful (hb_buffer_t *buffer);
  254. HB_EXTERN void
  255. hb_buffer_reverse (hb_buffer_t *buffer);
  256. HB_EXTERN void
  257. hb_buffer_reverse_range (hb_buffer_t *buffer,
  258. unsigned int start, unsigned int end);
  259. HB_EXTERN void
  260. hb_buffer_reverse_clusters (hb_buffer_t *buffer);
  261. /* Filling the buffer in */
  262. HB_EXTERN void
  263. hb_buffer_add (hb_buffer_t *buffer,
  264. hb_codepoint_t codepoint,
  265. unsigned int cluster);
  266. HB_EXTERN void
  267. hb_buffer_add_utf8 (hb_buffer_t *buffer,
  268. const char *text,
  269. int text_length,
  270. unsigned int item_offset,
  271. int item_length);
  272. HB_EXTERN void
  273. hb_buffer_add_utf16 (hb_buffer_t *buffer,
  274. const uint16_t *text,
  275. int text_length,
  276. unsigned int item_offset,
  277. int item_length);
  278. HB_EXTERN void
  279. hb_buffer_add_utf32 (hb_buffer_t *buffer,
  280. const uint32_t *text,
  281. int text_length,
  282. unsigned int item_offset,
  283. int item_length);
  284. HB_EXTERN void
  285. hb_buffer_add_latin1 (hb_buffer_t *buffer,
  286. const uint8_t *text,
  287. int text_length,
  288. unsigned int item_offset,
  289. int item_length);
  290. HB_EXTERN void
  291. hb_buffer_add_codepoints (hb_buffer_t *buffer,
  292. const hb_codepoint_t *text,
  293. int text_length,
  294. unsigned int item_offset,
  295. int item_length);
  296. HB_EXTERN hb_bool_t
  297. hb_buffer_set_length (hb_buffer_t *buffer,
  298. unsigned int length);
  299. HB_EXTERN unsigned int
  300. hb_buffer_get_length (hb_buffer_t *buffer);
  301. /* Getting glyphs out of the buffer */
  302. HB_EXTERN hb_glyph_info_t *
  303. hb_buffer_get_glyph_infos (hb_buffer_t *buffer,
  304. unsigned int *length);
  305. HB_EXTERN hb_glyph_position_t *
  306. hb_buffer_get_glyph_positions (hb_buffer_t *buffer,
  307. unsigned int *length);
  308. HB_EXTERN void
  309. hb_buffer_normalize_glyphs (hb_buffer_t *buffer);
  310. /*
  311. * Serialize
  312. */
  313. /**
  314. * hb_buffer_serialize_flags_t:
  315. * @HB_BUFFER_SERIALIZE_FLAG_DEFAULT: serialize glyph names, clusters and positions.
  316. * @HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS: do not serialize glyph cluster.
  317. * @HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS: do not serialize glyph position information.
  318. * @HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES: do no serialize glyph name.
  319. * @HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS: serialize glyph extents.
  320. *
  321. * Flags that control what glyph information are serialized in hb_buffer_serialize_glyphs().
  322. *
  323. * Since: 0.9.20
  324. */
  325. typedef enum { /*< flags >*/
  326. HB_BUFFER_SERIALIZE_FLAG_DEFAULT = 0x00000000u,
  327. HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS = 0x00000001u,
  328. HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS = 0x00000002u,
  329. HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES = 0x00000004u,
  330. HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS = 0x00000008u
  331. } hb_buffer_serialize_flags_t;
  332. /**
  333. * hb_buffer_serialize_format_t:
  334. * @HB_BUFFER_SERIALIZE_FORMAT_TEXT: a human-readable, plain text format.
  335. * @HB_BUFFER_SERIALIZE_FORMAT_JSON: a machine-readable JSON format.
  336. * @HB_BUFFER_SERIALIZE_FORMAT_INVALID: invalid format.
  337. *
  338. * The buffer serialization and de-serialization format used in
  339. * hb_buffer_serialize_glyphs() and hb_buffer_deserialize_glyphs().
  340. *
  341. * Since: 0.9.2
  342. */
  343. typedef enum {
  344. HB_BUFFER_SERIALIZE_FORMAT_TEXT = HB_TAG('T','E','X','T'),
  345. HB_BUFFER_SERIALIZE_FORMAT_JSON = HB_TAG('J','S','O','N'),
  346. HB_BUFFER_SERIALIZE_FORMAT_INVALID = HB_TAG_NONE
  347. } hb_buffer_serialize_format_t;
  348. HB_EXTERN hb_buffer_serialize_format_t
  349. hb_buffer_serialize_format_from_string (const char *str, int len);
  350. HB_EXTERN const char *
  351. hb_buffer_serialize_format_to_string (hb_buffer_serialize_format_t format);
  352. HB_EXTERN const char **
  353. hb_buffer_serialize_list_formats (void);
  354. HB_EXTERN unsigned int
  355. hb_buffer_serialize_glyphs (hb_buffer_t *buffer,
  356. unsigned int start,
  357. unsigned int end,
  358. char *buf,
  359. unsigned int buf_size,
  360. unsigned int *buf_consumed,
  361. hb_font_t *font,
  362. hb_buffer_serialize_format_t format,
  363. hb_buffer_serialize_flags_t flags);
  364. HB_EXTERN hb_bool_t
  365. hb_buffer_deserialize_glyphs (hb_buffer_t *buffer,
  366. const char *buf,
  367. int buf_len,
  368. const char **end_ptr,
  369. hb_font_t *font,
  370. hb_buffer_serialize_format_t format);
  371. /*
  372. * Debugging.
  373. */
  374. typedef hb_bool_t (*hb_buffer_message_func_t) (hb_buffer_t *buffer,
  375. hb_font_t *font,
  376. const char *message,
  377. void *user_data);
  378. HB_EXTERN void
  379. hb_buffer_set_message_func (hb_buffer_t *buffer,
  380. hb_buffer_message_func_t func,
  381. void *user_data, hb_destroy_func_t destroy);
  382. HB_END_DECLS
  383. #endif /* HB_BUFFER_H */