hb-buffer.h 18.3 KB
Newer Older
1
/*
B
Behdad Esfahbod 已提交
2 3
 * Copyright © 1998-2004  David Turner and Werner Lemberg
 * 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 9 10 11 12
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
13
 *
14 15 16 17 18 19 20 21 22 23 24 25 26
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Owen Taylor, Behdad Esfahbod
27
 * Google Author(s): Behdad Esfahbod
28
 */
29

30 31 32 33
#ifndef HB_H_IN
#error "Include <hb.h> instead."
#endif

34 35
#ifndef HB_BUFFER_H
#define HB_BUFFER_H
36

37
#include "hb-common.h"
B
Behdad Esfahbod 已提交
38
#include "hb-unicode.h"
39
#include "hb-font.h"
40

B
Behdad Esfahbod 已提交
41
HB_BEGIN_DECLS
42

43 44 45 46 47 48 49 50 51 52
/**
 * hb_glyph_info_t:
 * @codepoint: either a Unicode code point (before shaping) or a glyph index
 *             (after shaping).
 * @cluster: the index of the character in the original text that corresponds
 *           to this #hb_glyph_info_t, or whatever the client passes to
 *           hb_buffer_add(). More than one #hb_glyph_info_t can have the same
 *           @cluster value, if they resulted from the same character (e.g. one
 *           to many glyph substitution), and when more than one character gets
 *           merged in the same glyph (e.g. many to one glyph substitution) the
B
Behdad Esfahbod 已提交
53 54 55 56 57
 *           #hb_glyph_info_t will have the smallest cluster value of them.
 *           By default some characters are merged into the same cluster
 *           (e.g. combining marks have the same cluster as their bases)
 *           even if they are separate glyphs, hb_buffer_set_cluster_level()
 *           allow selecting more fine-grained cluster handling.
58
 *
K
Khaled Hosny 已提交
59
 * The #hb_glyph_info_t is the structure that holds information about the
60 61
 * glyphs and their relation to input text.
 */
B
Behdad Esfahbod 已提交
62 63
typedef struct hb_glyph_info_t
{
64
  hb_codepoint_t codepoint;
65
  /*< private >*/
B
Behdad Esfahbod 已提交
66
  hb_mask_t      mask;
67
  /*< public >*/
68
  uint32_t       cluster;
69 70

  /*< private >*/
B
Behdad Esfahbod 已提交
71 72
  hb_var_int_t   var1;
  hb_var_int_t   var2;
B
Behdad Esfahbod 已提交
73
} hb_glyph_info_t;
74

75 76
/**
 * hb_glyph_flags_t:
77 78 79 80 81 82 83 84 85
 * @HB_GLYPH_FLAG_UNSAFE_TO_BREAK: Indicates that if input text is broken at the
 * 				   beginning of the cluster this glyph is part of,
 * 				   then both sides need to be re-shaped, as the
 * 				   result might be different.  On the flip side,
 * 				   it means that when this flag is not present,
 * 				   then it's safe to break the glyph-run at the
 * 				   beginning of this cluster, and the two sides
 * 				   represent the exact same result one would get
 * 				   if breaking input text at the beginning of
B
Typo  
Behdad Esfahbod 已提交
86
 * 				   this cluster and shaping the two sides
87 88 89 90 91
 * 				   separately.  This can be used to optimize
 * 				   paragraph layout, by avoiding re-shaping
 * 				   of each line after line-breaking, or limiting
 * 				   the reshaping to a small piece around the
 * 				   breaking point only.
92
 */
93
typedef enum { /*< flags >*/
94 95
  HB_GLYPH_FLAG_UNSAFE_TO_BREAK		= 0x00000001,

B
Behdad Esfahbod 已提交
96
  /*< private >*/
97
  HB_GLYPH_FLAG_DEFINED			= 0x00000001 /* OR of all defined flags */
98 99
} hb_glyph_flags_t;

100 101 102 103 104 105 106
HB_EXTERN hb_glyph_flags_t
hb_glyph_info_get_glyph_flags (const hb_glyph_info_t *info);

#define hb_glyph_info_get_glyph_flags(info) \
	((hb_glyph_flags_t) ((unsigned int) (info)->mask & HB_GLYPH_FLAG_DEFINED))


107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
/**
 * hb_glyph_position_t:
 * @x_advance: how much the line advances after drawing this glyph when setting
 *             text in horizontal direction.
 * @y_advance: how much the line advances after drawing this glyph when setting
 *             text in vertical direction.
 * @x_offset: how much the glyph moves on the X-axis before drawing it, this
 *            should not affect how much the line advances.
 * @y_offset: how much the glyph moves on the Y-axis before drawing it, this
 *            should not affect how much the line advances.
 *
 * The #hb_glyph_position_t is the structure that holds the positions of the
 * glyph in both horizontal and vertical directions. All positions in
 * #hb_glyph_position_t are relative to the current point.
 *
 */
123
typedef struct hb_glyph_position_t {
124 125
  hb_position_t  x_advance;
  hb_position_t  y_advance;
126 127
  hb_position_t  x_offset;
  hb_position_t  y_offset;
128 129

  /*< private >*/
130
  hb_var_int_t   var;
B
Behdad Esfahbod 已提交
131
} hb_glyph_position_t;
132

K
Khaled Hosny 已提交
133 134 135 136 137 138 139 140 141 142
/**
 * hb_segment_properties_t:
 * @direction: the #hb_direction_t of the buffer, see hb_buffer_set_direction().
 * @script: the #hb_script_t of the buffer, see hb_buffer_set_script().
 * @language: the #hb_language_t of the buffer, see hb_buffer_set_language().
 *
 * The structure that holds various text properties of an #hb_buffer_t. Can be
 * set and retrieved using hb_buffer_set_segment_properties() and
 * hb_buffer_get_segment_properties(), respectively.
 */
143 144 145 146 147 148 149 150 151 152 153 154
typedef struct hb_segment_properties_t {
  hb_direction_t  direction;
  hb_script_t     script;
  hb_language_t   language;
  /*< private >*/
  void           *reserved1;
  void           *reserved2;
} hb_segment_properties_t;

#define HB_SEGMENT_PROPERTIES_DEFAULT {HB_DIRECTION_INVALID, \
				       HB_SCRIPT_INVALID, \
				       HB_LANGUAGE_INVALID, \
B
Behdad Esfahbod 已提交
155 156
				       (void *) 0, \
				       (void *) 0}
157

158
HB_EXTERN hb_bool_t
159 160 161
hb_segment_properties_equal (const hb_segment_properties_t *a,
			     const hb_segment_properties_t *b);

162
HB_EXTERN unsigned int
163 164 165 166
hb_segment_properties_hash (const hb_segment_properties_t *p);



K
Khaled Hosny 已提交
167 168 169 170 171
/**
 * hb_buffer_t:
 *
 * The main structure holding the input text and its properties before shaping,
 * and output glyphs and their information after shaping.
172 173 174 175
 */

typedef struct hb_buffer_t hb_buffer_t;

176
HB_EXTERN hb_buffer_t *
177
hb_buffer_create (void);
178

179
HB_EXTERN hb_buffer_t *
180 181
hb_buffer_get_empty (void);

182
HB_EXTERN hb_buffer_t *
183
hb_buffer_reference (hb_buffer_t *buffer);
184

185
HB_EXTERN void
186
hb_buffer_destroy (hb_buffer_t *buffer);
187

188
HB_EXTERN hb_bool_t
189 190 191
hb_buffer_set_user_data (hb_buffer_t        *buffer,
			 hb_user_data_key_t *key,
			 void *              data,
192 193
			 hb_destroy_func_t   destroy,
			 hb_bool_t           replace);
194

195
HB_EXTERN void *
196 197 198
hb_buffer_get_user_data (hb_buffer_t        *buffer,
			 hb_user_data_key_t *key);

B
Behdad Esfahbod 已提交
199

200 201 202 203 204 205
/**
 * hb_buffer_content_type_t:
 * @HB_BUFFER_CONTENT_TYPE_INVALID: Initial value for new buffer.
 * @HB_BUFFER_CONTENT_TYPE_UNICODE: The buffer contains input characters (before shaping).
 * @HB_BUFFER_CONTENT_TYPE_GLYPHS: The buffer contains output glyphs (after shaping).
 */
B
Minor  
Behdad Esfahbod 已提交
206 207 208 209 210 211
typedef enum {
  HB_BUFFER_CONTENT_TYPE_INVALID = 0,
  HB_BUFFER_CONTENT_TYPE_UNICODE,
  HB_BUFFER_CONTENT_TYPE_GLYPHS
} hb_buffer_content_type_t;

212
HB_EXTERN void
213 214 215
hb_buffer_set_content_type (hb_buffer_t              *buffer,
			    hb_buffer_content_type_t  content_type);

216
HB_EXTERN hb_buffer_content_type_t
217 218 219
hb_buffer_get_content_type (hb_buffer_t *buffer);


220
HB_EXTERN void
B
Behdad Esfahbod 已提交
221 222 223
hb_buffer_set_unicode_funcs (hb_buffer_t        *buffer,
			     hb_unicode_funcs_t *unicode_funcs);

224
HB_EXTERN hb_unicode_funcs_t *
B
Behdad Esfahbod 已提交
225 226
hb_buffer_get_unicode_funcs (hb_buffer_t        *buffer);

227
HB_EXTERN void
228 229 230
hb_buffer_set_direction (hb_buffer_t    *buffer,
			 hb_direction_t  direction);

231
HB_EXTERN hb_direction_t
232 233
hb_buffer_get_direction (hb_buffer_t *buffer);

234
HB_EXTERN void
235 236 237
hb_buffer_set_script (hb_buffer_t *buffer,
		      hb_script_t  script);

238
HB_EXTERN hb_script_t
239 240
hb_buffer_get_script (hb_buffer_t *buffer);

241
HB_EXTERN void
242 243 244
hb_buffer_set_language (hb_buffer_t   *buffer,
			hb_language_t  language);

245

246
HB_EXTERN hb_language_t
247
hb_buffer_get_language (hb_buffer_t *buffer);
248

249
HB_EXTERN void
250 251 252
hb_buffer_set_segment_properties (hb_buffer_t *buffer,
				  const hb_segment_properties_t *props);

253
HB_EXTERN void
254 255 256
hb_buffer_get_segment_properties (hb_buffer_t *buffer,
				  hb_segment_properties_t *props);

257
HB_EXTERN void
258
hb_buffer_guess_segment_properties (hb_buffer_t *buffer);
259

B
Minor  
Behdad Esfahbod 已提交
260

261 262 263 264
/**
 * hb_buffer_flags_t:
 * @HB_BUFFER_FLAG_DEFAULT: the default buffer flag.
 * @HB_BUFFER_FLAG_BOT: flag indicating that special handling of the beginning
B
Behdad Esfahbod 已提交
265 266
 *                      of text paragraph can be applied to this buffer. Should usually
 *                      be set, unless you are passing to the buffer only part
267 268
 *                      of the text without the full context.
 * @HB_BUFFER_FLAG_EOT: flag indicating that special handling of the end of text
B
Behdad Esfahbod 已提交
269
 *                      paragraph can be applied to this buffer, similar to
B
Bruce Mitchener 已提交
270
 *                      @HB_BUFFER_FLAG_BOT.
271
 * @HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES:
B
Behdad Esfahbod 已提交
272
 *                      flag indication that character with Default_Ignorable
273
 *                      Unicode property should use the corresponding glyph
274 275
 *                      from the font, instead of hiding them (done by
 *                      replacing them with the space glyph and zeroing the
B
Bruce Mitchener 已提交
276
 *                      advance width.)  This flag takes precedence over
277 278 279 280 281 282 283 284
 *                      @HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES.
 * @HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES:
 *                      flag indication that character with Default_Ignorable
 *                      Unicode property should be removed from glyph string
 *                      instead of hiding them (done by replacing them with the
 *                      space glyph and zeroing the advance width.)
 *                      @HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES takes
 *                      precedence over this flag. Since: 1.8.0
285
 *
B
Behdad Esfahbod 已提交
286 287
 * Since: 0.9.20
 */
288
typedef enum { /*< flags >*/
289 290 291
  HB_BUFFER_FLAG_DEFAULT			= 0x00000000u,
  HB_BUFFER_FLAG_BOT				= 0x00000001u, /* Beginning-of-text */
  HB_BUFFER_FLAG_EOT				= 0x00000002u, /* End-of-text */
292 293
  HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES	= 0x00000004u,
  HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES	= 0x00000008u
B
Minor  
Behdad Esfahbod 已提交
294 295
} hb_buffer_flags_t;

296
HB_EXTERN void
B
Behdad Esfahbod 已提交
297 298 299
hb_buffer_set_flags (hb_buffer_t       *buffer,
		     hb_buffer_flags_t  flags);

300
HB_EXTERN hb_buffer_flags_t
B
Behdad Esfahbod 已提交
301 302
hb_buffer_get_flags (hb_buffer_t *buffer);

B
Behdad Esfahbod 已提交
303 304 305 306 307 308 309 310 311
/**
 * hb_buffer_cluster_level_t:
 * @HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES: Return cluster values grouped by graphemes into
 *   monotone order.
 * @HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS: Return cluster values grouped into monotone order.
 * @HB_BUFFER_CLUSTER_LEVEL_CHARACTERS: Don't group cluster values.
 * @HB_BUFFER_CLUSTER_LEVEL_DEFAULT: Default cluster level,
 *   equal to @HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES.
 *
B
Behdad Esfahbod 已提交
312 313
 * Since: 0.9.42
 */
314 315 316 317 318 319 320
typedef enum {
  HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES	= 0,
  HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS	= 1,
  HB_BUFFER_CLUSTER_LEVEL_CHARACTERS		= 2,
  HB_BUFFER_CLUSTER_LEVEL_DEFAULT = HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES
} hb_buffer_cluster_level_t;

321
HB_EXTERN void
322 323
hb_buffer_set_cluster_level (hb_buffer_t               *buffer,
			     hb_buffer_cluster_level_t  cluster_level);
B
Behdad Esfahbod 已提交
324

325
HB_EXTERN hb_buffer_cluster_level_t
326
hb_buffer_get_cluster_level (hb_buffer_t *buffer);
327

K
Khaled Hosny 已提交
328 329 330 331 332 333 334 335
/**
 * HB_BUFFER_REPLACEMENT_CODEPOINT_DEFAULT:
 *
 * The default code point for replacing invalid characters in a given encoding.
 * Set to U+FFFD REPLACEMENT CHARACTER.
 *
 * Since: 0.9.31
 */
336 337
#define HB_BUFFER_REPLACEMENT_CODEPOINT_DEFAULT 0xFFFDu

338
HB_EXTERN void
339 340 341
hb_buffer_set_replacement_codepoint (hb_buffer_t    *buffer,
				     hb_codepoint_t  replacement);

342
HB_EXTERN hb_codepoint_t
343 344 345
hb_buffer_get_replacement_codepoint (hb_buffer_t    *buffer);


346
HB_EXTERN void
347 348
hb_buffer_reset (hb_buffer_t *buffer);

349
HB_EXTERN void
350
hb_buffer_clear_contents (hb_buffer_t *buffer);
B
Behdad Esfahbod 已提交
351

352
HB_EXTERN hb_bool_t
353 354
hb_buffer_pre_allocate (hb_buffer_t  *buffer,
		        unsigned int  size);
B
Behdad Esfahbod 已提交
355

356

357
HB_EXTERN hb_bool_t
358 359
hb_buffer_allocation_successful (hb_buffer_t  *buffer);

360
HB_EXTERN void
B
Behdad Esfahbod 已提交
361 362
hb_buffer_reverse (hb_buffer_t *buffer);

363
HB_EXTERN void
364 365 366
hb_buffer_reverse_range (hb_buffer_t *buffer,
			 unsigned int start, unsigned int end);

367
HB_EXTERN void
368 369
hb_buffer_reverse_clusters (hb_buffer_t *buffer);

B
Behdad Esfahbod 已提交
370 371

/* Filling the buffer in */
372

373
HB_EXTERN void
374 375 376
hb_buffer_add (hb_buffer_t    *buffer,
	       hb_codepoint_t  codepoint,
	       unsigned int    cluster);
377

378
HB_EXTERN void
B
Behdad Esfahbod 已提交
379 380
hb_buffer_add_utf8 (hb_buffer_t  *buffer,
		    const char   *text,
381
		    int           text_length,
B
Behdad Esfahbod 已提交
382
		    unsigned int  item_offset,
383
		    int           item_length);
B
Behdad Esfahbod 已提交
384

385
HB_EXTERN void
B
Behdad Esfahbod 已提交
386 387
hb_buffer_add_utf16 (hb_buffer_t    *buffer,
		     const uint16_t *text,
388
		     int             text_length,
B
Behdad Esfahbod 已提交
389
		     unsigned int    item_offset,
390
		     int             item_length);
B
Behdad Esfahbod 已提交
391

392
HB_EXTERN void
B
Behdad Esfahbod 已提交
393 394
hb_buffer_add_utf32 (hb_buffer_t    *buffer,
		     const uint32_t *text,
395
		     int             text_length,
B
Behdad Esfahbod 已提交
396
		     unsigned int    item_offset,
397
		     int             item_length);
B
Behdad Esfahbod 已提交
398

399
HB_EXTERN void
400 401 402 403 404 405
hb_buffer_add_latin1 (hb_buffer_t   *buffer,
		      const uint8_t *text,
		      int            text_length,
		      unsigned int   item_offset,
		      int            item_length);

406
HB_EXTERN void
407 408 409 410 411 412
hb_buffer_add_codepoints (hb_buffer_t          *buffer,
			  const hb_codepoint_t *text,
			  int                   text_length,
			  unsigned int          item_offset,
			  int                   item_length);

B
Behdad Esfahbod 已提交
413 414 415 416 417
HB_EXTERN void
hb_buffer_append (hb_buffer_t *buffer,
		  hb_buffer_t *source,
		  unsigned int start,
		  unsigned int end);
418

419
HB_EXTERN hb_bool_t
420 421
hb_buffer_set_length (hb_buffer_t  *buffer,
		      unsigned int  length);
B
Behdad Esfahbod 已提交
422

423
HB_EXTERN unsigned int
424
hb_buffer_get_length (hb_buffer_t *buffer);
425

426 427
/* Getting glyphs out of the buffer */

428
HB_EXTERN hb_glyph_info_t *
429 430
hb_buffer_get_glyph_infos (hb_buffer_t  *buffer,
                           unsigned int *length);
431

432
HB_EXTERN hb_glyph_position_t *
433 434
hb_buffer_get_glyph_positions (hb_buffer_t  *buffer,
                               unsigned int *length);
B
Behdad Esfahbod 已提交
435 436


437
HB_EXTERN void
438 439 440
hb_buffer_normalize_glyphs (hb_buffer_t *buffer);


B
Minor  
Behdad Esfahbod 已提交
441 442 443
/*
 * Serialize
 */
444

K
Khaled Hosny 已提交
445 446 447 448 449 450 451
/**
 * hb_buffer_serialize_flags_t:
 * @HB_BUFFER_SERIALIZE_FLAG_DEFAULT: serialize glyph names, clusters and positions.
 * @HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS: do not serialize glyph cluster.
 * @HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS: do not serialize glyph position information.
 * @HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES: do no serialize glyph name.
 * @HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS: serialize glyph extents.
452
 * @HB_BUFFER_SERIALIZE_FLAG_GLYPH_FLAGS: serialize glyph flags. Since: 1.5.0
453 454
 * @HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES: do not serialize glyph advances,
 *  glyph offsets will reflect absolute glyph positions. Since: 1.8.0
K
Khaled Hosny 已提交
455 456 457
 *
 * Flags that control what glyph information are serialized in hb_buffer_serialize_glyphs().
 *
B
Behdad Esfahbod 已提交
458 459
 * Since: 0.9.20
 */
460
typedef enum { /*< flags >*/
461 462 463
  HB_BUFFER_SERIALIZE_FLAG_DEFAULT		= 0x00000000u,
  HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS		= 0x00000001u,
  HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS		= 0x00000002u,
464
  HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES	= 0x00000004u,
465
  HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS	= 0x00000008u,
466 467
  HB_BUFFER_SERIALIZE_FLAG_GLYPH_FLAGS		= 0x00000010u,
  HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES		= 0x00000020u
468 469
} hb_buffer_serialize_flags_t;

K
Khaled Hosny 已提交
470 471 472 473
/**
 * hb_buffer_serialize_format_t:
 * @HB_BUFFER_SERIALIZE_FORMAT_TEXT: a human-readable, plain text format.
 * @HB_BUFFER_SERIALIZE_FORMAT_JSON: a machine-readable JSON format.
B
Behdad Esfahbod 已提交
474
 * @HB_BUFFER_SERIALIZE_FORMAT_INVALID: invalid format.
K
Khaled Hosny 已提交
475 476 477 478 479 480
 *
 * The buffer serialization and de-serialization format used in
 * hb_buffer_serialize_glyphs() and hb_buffer_deserialize_glyphs().
 *
 * Since: 0.9.2
 */
481 482 483 484 485 486
typedef enum {
  HB_BUFFER_SERIALIZE_FORMAT_TEXT	= HB_TAG('T','E','X','T'),
  HB_BUFFER_SERIALIZE_FORMAT_JSON	= HB_TAG('J','S','O','N'),
  HB_BUFFER_SERIALIZE_FORMAT_INVALID	= HB_TAG_NONE
} hb_buffer_serialize_format_t;

487
HB_EXTERN hb_buffer_serialize_format_t
488 489
hb_buffer_serialize_format_from_string (const char *str, int len);

490
HB_EXTERN const char *
491 492
hb_buffer_serialize_format_to_string (hb_buffer_serialize_format_t format);

493
HB_EXTERN const char **
494 495
hb_buffer_serialize_list_formats (void);

496
HB_EXTERN unsigned int
497 498 499 500 501
hb_buffer_serialize_glyphs (hb_buffer_t *buffer,
			    unsigned int start,
			    unsigned int end,
			    char *buf,
			    unsigned int buf_size,
K
Khaled Hosny 已提交
502 503
			    unsigned int *buf_consumed,
			    hb_font_t *font,
504 505 506
			    hb_buffer_serialize_format_t format,
			    hb_buffer_serialize_flags_t flags);

507
HB_EXTERN hb_bool_t
508 509
hb_buffer_deserialize_glyphs (hb_buffer_t *buffer,
			      const char *buf,
K
Khaled Hosny 已提交
510 511 512
			      int buf_len,
			      const char **end_ptr,
			      hb_font_t *font,
513 514 515
			      hb_buffer_serialize_format_t format);


516 517 518 519 520 521 522 523 524
/*
 * Compare buffers
 */

typedef enum { /*< flags >*/
  HB_BUFFER_DIFF_FLAG_EQUAL			= 0x0000,

  /* Buffers with different content_type cannot be meaningfully compared
   * in any further detail. */
525
  HB_BUFFER_DIFF_FLAG_CONTENT_TYPE_MISMATCH	= 0x0001,
526 527 528 529

  /* For buffers with differing length, the per-glyph comparison is not
   * attempted, though we do still scan reference for dottedcircle / .notdef
   * glyphs. */
530
  HB_BUFFER_DIFF_FLAG_LENGTH_MISMATCH		= 0x0002,
531 532 533 534 535 536 537 538 539 540

  /* We want to know if dottedcircle / .notdef glyphs are present in the
   * reference, as we may not care so much about other differences in this
   * case. */
  HB_BUFFER_DIFF_FLAG_NOTDEF_PRESENT		= 0x0004,
  HB_BUFFER_DIFF_FLAG_DOTTED_CIRCLE_PRESENT	= 0x0008,

  /* If the buffers have the same length, we compare them glyph-by-glyph
   * and report which aspect(s) of the glyph info/position are different. */
  HB_BUFFER_DIFF_FLAG_CODEPOINT_MISMATCH	= 0x0010,
B
Behdad Esfahbod 已提交
541
  HB_BUFFER_DIFF_FLAG_CLUSTER_MISMATCH		= 0x0020,
542
  HB_BUFFER_DIFF_FLAG_GLYPH_FLAGS_MISMATCH	= 0x0040,
543 544 545 546 547
  HB_BUFFER_DIFF_FLAG_POSITION_MISMATCH		= 0x0080

} hb_buffer_diff_flags_t;

/* Compare the contents of two buffers, report types of differences. */
548
HB_EXTERN hb_buffer_diff_flags_t
549 550 551 552 553 554
hb_buffer_diff (hb_buffer_t *buffer,
		hb_buffer_t *reference,
		hb_codepoint_t dottedcircle_glyph,
		unsigned int position_fuzz);


555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
/*
 * Debugging.
 */

typedef hb_bool_t	(*hb_buffer_message_func_t)	(hb_buffer_t *buffer,
							 hb_font_t   *font,
							 const char  *message,
							 void        *user_data);

HB_EXTERN void
hb_buffer_set_message_func (hb_buffer_t *buffer,
			    hb_buffer_message_func_t func,
			    void *user_data, hb_destroy_func_t destroy);


B
Behdad Esfahbod 已提交
570
HB_END_DECLS
571

572
#endif /* HB_BUFFER_H */