2013-02-27 17:06:36 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2012,2013 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-buffer.hh"
|
2013-02-27 17:06:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
static const char *serialize_formats[] = {
|
|
|
|
"text",
|
|
|
|
"json",
|
2017-10-15 12:11:08 +02:00
|
|
|
nullptr
|
2013-02-27 17:06:36 +01:00
|
|
|
};
|
|
|
|
|
2013-09-06 21:40:22 +02:00
|
|
|
/**
|
|
|
|
* hb_buffer_serialize_list_formats:
|
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Returns a list of supported buffer serialization formats.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
|
|
|
* Return value: (transfer none):
|
2016-01-01 17:38:21 +01:00
|
|
|
* A string array of buffer serialization formats. Should not be freed.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:40:22 +02:00
|
|
|
**/
|
2013-02-27 17:06:36 +01:00
|
|
|
const char **
|
|
|
|
hb_buffer_serialize_list_formats (void)
|
|
|
|
{
|
|
|
|
return serialize_formats;
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:40:22 +02:00
|
|
|
/**
|
|
|
|
* hb_buffer_serialize_format_from_string:
|
2016-01-01 17:38:21 +01:00
|
|
|
* @str: (array length=len) (element-type uint8_t): a string to parse
|
|
|
|
* @len: length of @str, or -1 if string is %NULL terminated
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Parses a string into an #hb_buffer_serialize_format_t. Does not check if
|
|
|
|
* @str is a valid buffer serialization format, use
|
|
|
|
* hb_buffer_serialize_list_formats() to get the list of supported formats.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2018-10-20 16:20:39 +02:00
|
|
|
* Return value:
|
2016-01-01 17:38:21 +01:00
|
|
|
* The parsed #hb_buffer_serialize_format_t.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:40:22 +02:00
|
|
|
**/
|
2013-02-27 17:06:36 +01:00
|
|
|
hb_buffer_serialize_format_t
|
|
|
|
hb_buffer_serialize_format_from_string (const char *str, int len)
|
|
|
|
{
|
|
|
|
/* Upper-case it. */
|
2014-07-11 20:54:42 +02:00
|
|
|
return (hb_buffer_serialize_format_t) (hb_tag_from_string (str, len) & ~0x20202020u);
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
2013-09-06 21:40:22 +02:00
|
|
|
/**
|
|
|
|
* hb_buffer_serialize_format_to_string:
|
2016-01-01 17:38:21 +01:00
|
|
|
* @format: an #hb_buffer_serialize_format_t to convert.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Converts @format to the string corresponding it, or %NULL if it is not a valid
|
|
|
|
* #hb_buffer_serialize_format_t.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Return value: (transfer none):
|
|
|
|
* A %NULL terminated string corresponding to @format. Should not be freed.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:40:22 +02:00
|
|
|
**/
|
2013-02-27 17:06:36 +01:00
|
|
|
const char *
|
|
|
|
hb_buffer_serialize_format_to_string (hb_buffer_serialize_format_t format)
|
|
|
|
{
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_TEXT: return serialize_formats[0];
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_JSON: return serialize_formats[1];
|
|
|
|
default:
|
2017-10-15 12:11:08 +02:00
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_INVALID: return nullptr;
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
_hb_buffer_serialize_glyphs_json (hb_buffer_t *buffer,
|
|
|
|
unsigned int start,
|
|
|
|
unsigned int end,
|
|
|
|
char *buf,
|
|
|
|
unsigned int buf_size,
|
|
|
|
unsigned int *buf_consumed,
|
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_serialize_flags_t flags)
|
|
|
|
{
|
2017-10-15 12:11:08 +02:00
|
|
|
hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, nullptr);
|
2015-08-18 19:47:02 +02:00
|
|
|
hb_glyph_position_t *pos = (flags & HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS) ?
|
2017-10-15 12:11:08 +02:00
|
|
|
nullptr : hb_buffer_get_glyph_positions (buffer, nullptr);
|
2013-02-27 17:06:36 +01:00
|
|
|
|
|
|
|
*buf_consumed = 0;
|
2018-01-10 02:20:14 +01:00
|
|
|
hb_position_t x = 0, y = 0;
|
2013-02-27 17:06:36 +01:00
|
|
|
for (unsigned int i = start; i < end; i++)
|
|
|
|
{
|
|
|
|
char b[1024];
|
|
|
|
char *p = b;
|
|
|
|
|
|
|
|
/* In the following code, we know b is large enough that no overflow can happen. */
|
|
|
|
|
|
|
|
#define APPEND(s) HB_STMT_START { strcpy (p, s); p += strlen (s); } HB_STMT_END
|
|
|
|
|
|
|
|
if (i)
|
|
|
|
*p++ = ',';
|
|
|
|
|
|
|
|
*p++ = '{';
|
|
|
|
|
|
|
|
APPEND ("\"g\":");
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES))
|
|
|
|
{
|
|
|
|
char g[128];
|
|
|
|
hb_font_glyph_to_string (font, info[i].codepoint, g, sizeof (g));
|
|
|
|
*p++ = '"';
|
|
|
|
for (char *q = g; *q; q++) {
|
|
|
|
if (*q == '"')
|
|
|
|
*p++ = '\\';
|
|
|
|
*p++ = *q;
|
|
|
|
}
|
|
|
|
*p++ = '"';
|
|
|
|
}
|
|
|
|
else
|
2013-08-27 17:44:09 +02:00
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint));
|
2013-02-27 17:06:36 +01:00
|
|
|
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS)) {
|
2013-08-27 17:44:09 +02:00
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster));
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS))
|
|
|
|
{
|
2016-05-02 14:47:45 +02:00
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"dx\":%d,\"dy\":%d",
|
2018-01-10 02:20:14 +01:00
|
|
|
x+pos[i].x_offset, y+pos[i].y_offset));
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES))
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"ax\":%d,\"ay\":%d",
|
|
|
|
pos[i].x_advance, pos[i].y_advance));
|
2016-05-02 14:47:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & HB_BUFFER_SERIALIZE_FLAG_GLYPH_FLAGS)
|
|
|
|
{
|
2014-07-20 00:09:09 +02:00
|
|
|
if (info[i].mask & HB_GLYPH_FLAG_DEFINED)
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"fl\":%u", info[i].mask & HB_GLYPH_FLAG_DEFINED));
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
2015-08-24 14:49:55 +02:00
|
|
|
if (flags & HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS)
|
|
|
|
{
|
|
|
|
hb_glyph_extents_t extents;
|
|
|
|
hb_font_get_glyph_extents(font, info[i].codepoint, &extents);
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"xb\":%d,\"yb\":%d",
|
2016-05-02 14:47:45 +02:00
|
|
|
extents.x_bearing, extents.y_bearing));
|
2015-08-24 14:49:55 +02:00
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"w\":%d,\"h\":%d",
|
2016-05-02 14:47:45 +02:00
|
|
|
extents.width, extents.height));
|
2015-08-24 14:49:55 +02:00
|
|
|
}
|
|
|
|
|
2013-02-27 17:06:36 +01:00
|
|
|
*p++ = '}';
|
|
|
|
|
2013-10-30 18:27:24 +01:00
|
|
|
unsigned int l = p - b;
|
|
|
|
if (buf_size > l)
|
2013-02-27 17:06:36 +01:00
|
|
|
{
|
|
|
|
memcpy (buf, b, l);
|
|
|
|
buf += l;
|
|
|
|
buf_size -= l;
|
|
|
|
*buf_consumed += l;
|
|
|
|
*buf = '\0';
|
|
|
|
} else
|
|
|
|
return i - start;
|
2018-01-10 02:20:14 +01:00
|
|
|
|
2018-01-11 11:37:12 +01:00
|
|
|
if (pos && (flags & HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES))
|
2018-01-10 02:20:14 +01:00
|
|
|
{
|
|
|
|
x += pos[i].x_advance;
|
|
|
|
y += pos[i].y_advance;
|
|
|
|
}
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return end - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
_hb_buffer_serialize_glyphs_text (hb_buffer_t *buffer,
|
|
|
|
unsigned int start,
|
|
|
|
unsigned int end,
|
|
|
|
char *buf,
|
|
|
|
unsigned int buf_size,
|
|
|
|
unsigned int *buf_consumed,
|
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_serialize_flags_t flags)
|
|
|
|
{
|
2017-10-15 12:11:08 +02:00
|
|
|
hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, nullptr);
|
2015-08-18 19:47:02 +02:00
|
|
|
hb_glyph_position_t *pos = (flags & HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS) ?
|
2017-10-15 12:11:08 +02:00
|
|
|
nullptr : hb_buffer_get_glyph_positions (buffer, nullptr);
|
2013-02-27 17:06:36 +01:00
|
|
|
|
|
|
|
*buf_consumed = 0;
|
2018-01-10 02:20:14 +01:00
|
|
|
hb_position_t x = 0, y = 0;
|
2013-02-27 17:06:36 +01:00
|
|
|
for (unsigned int i = start; i < end; i++)
|
|
|
|
{
|
|
|
|
char b[1024];
|
|
|
|
char *p = b;
|
|
|
|
|
|
|
|
/* In the following code, we know b is large enough that no overflow can happen. */
|
|
|
|
|
|
|
|
if (i)
|
|
|
|
*p++ = '|';
|
|
|
|
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES))
|
|
|
|
{
|
|
|
|
hb_font_glyph_to_string (font, info[i].codepoint, p, 128);
|
|
|
|
p += strlen (p);
|
|
|
|
}
|
|
|
|
else
|
2013-08-27 17:44:09 +02:00
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint));
|
2013-02-27 17:06:36 +01:00
|
|
|
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS)) {
|
2013-08-27 17:44:09 +02:00
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "=%u", info[i].cluster));
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS))
|
|
|
|
{
|
2018-01-10 02:20:14 +01:00
|
|
|
if (x+pos[i].x_offset || y+pos[i].y_offset)
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "@%d,%d", x+pos[i].x_offset, y+pos[i].y_offset));
|
|
|
|
|
|
|
|
if (!(flags & HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES))
|
|
|
|
{
|
|
|
|
*p++ = '+';
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%d", pos[i].x_advance));
|
|
|
|
if (pos[i].y_advance)
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance));
|
|
|
|
}
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
2016-05-02 14:47:45 +02:00
|
|
|
if (flags & HB_BUFFER_SERIALIZE_FLAG_GLYPH_FLAGS)
|
|
|
|
{
|
|
|
|
if (info[i].mask &HB_GLYPH_FLAG_DEFINED)
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "#%X", info[i].mask &HB_GLYPH_FLAG_DEFINED));
|
|
|
|
}
|
|
|
|
|
2015-08-24 14:49:55 +02:00
|
|
|
if (flags & HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS)
|
|
|
|
{
|
|
|
|
hb_glyph_extents_t extents;
|
|
|
|
hb_font_get_glyph_extents(font, info[i].codepoint, &extents);
|
|
|
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "<%d,%d,%d,%d>", extents.x_bearing, extents.y_bearing, extents.width, extents.height));
|
|
|
|
}
|
|
|
|
|
2013-10-30 18:27:24 +01:00
|
|
|
unsigned int l = p - b;
|
|
|
|
if (buf_size > l)
|
2013-02-27 17:06:36 +01:00
|
|
|
{
|
|
|
|
memcpy (buf, b, l);
|
|
|
|
buf += l;
|
|
|
|
buf_size -= l;
|
|
|
|
*buf_consumed += l;
|
|
|
|
*buf = '\0';
|
|
|
|
} else
|
|
|
|
return i - start;
|
2018-01-10 02:20:14 +01:00
|
|
|
|
2018-01-11 11:37:12 +01:00
|
|
|
if (pos && (flags & HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES))
|
2018-01-10 02:20:14 +01:00
|
|
|
{
|
|
|
|
x += pos[i].x_advance;
|
|
|
|
y += pos[i].y_advance;
|
|
|
|
}
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return end - start;
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:40:22 +02:00
|
|
|
/**
|
|
|
|
* hb_buffer_serialize_glyphs:
|
2016-01-01 17:38:21 +01:00
|
|
|
* @buffer: an #hb_buffer_t buffer.
|
|
|
|
* @start: the first item in @buffer to serialize.
|
|
|
|
* @end: the last item in @buffer to serialize.
|
|
|
|
* @buf: (out) (array length=buf_size) (element-type uint8_t): output string to
|
|
|
|
* write serialized buffer into.
|
|
|
|
* @buf_size: the size of @buf.
|
|
|
|
* @buf_consumed: (out) (allow-none): if not %NULL, will be set to the number of byes written into @buf.
|
|
|
|
* @font: (allow-none): the #hb_font_t used to shape this buffer, needed to
|
|
|
|
* read glyph names and extents. If %NULL, and empty font will be used.
|
|
|
|
* @format: the #hb_buffer_serialize_format_t to use for formatting the output.
|
|
|
|
* @flags: the #hb_buffer_serialize_flags_t that control what glyph properties
|
|
|
|
* to serialize.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Serializes @buffer into a textual representation of its glyph content,
|
|
|
|
* useful for showing the contents of the buffer, for example during debugging.
|
|
|
|
* There are currently two supported serialization formats:
|
|
|
|
*
|
|
|
|
* ## text
|
|
|
|
* A human-readable, plain text format.
|
|
|
|
* The serialized glyphs will look something like:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* [uni0651=0@518,0+0|uni0628=0+1897]
|
|
|
|
* ```
|
|
|
|
* - The serialized glyphs are delimited with `[` and `]`.
|
|
|
|
* - Glyphs are separated with `|`
|
|
|
|
* - Each glyph starts with glyph name, or glyph index if
|
|
|
|
* #HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES flag is set. Then,
|
|
|
|
* - If #HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS is not set, `=` then #hb_glyph_info_t.cluster.
|
|
|
|
* - If #HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS is not set, the #hb_glyph_position_t in the format:
|
|
|
|
* - If both #hb_glyph_position_t.x_offset and #hb_glyph_position_t.y_offset are not 0, `@x_offset,y_offset`. Then,
|
|
|
|
* - `+x_advance`, then `,y_advance` if #hb_glyph_position_t.y_advance is not 0. Then,
|
|
|
|
* - If #HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS is set, the
|
|
|
|
* #hb_glyph_extents_t in the format
|
|
|
|
* `<x_bearing,y_bearing,width,height>`
|
|
|
|
*
|
|
|
|
* ## json
|
|
|
|
* TODO.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2018-10-20 16:20:39 +02:00
|
|
|
* Return value:
|
2016-01-01 17:38:21 +01:00
|
|
|
* The number of serialized items.
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:40:22 +02:00
|
|
|
**/
|
2013-02-27 17:06:36 +01:00
|
|
|
unsigned int
|
|
|
|
hb_buffer_serialize_glyphs (hb_buffer_t *buffer,
|
|
|
|
unsigned int start,
|
|
|
|
unsigned int end,
|
|
|
|
char *buf,
|
|
|
|
unsigned int buf_size,
|
2016-01-01 17:38:21 +01:00
|
|
|
unsigned int *buf_consumed,
|
|
|
|
hb_font_t *font,
|
2013-02-27 17:06:36 +01:00
|
|
|
hb_buffer_serialize_format_t format,
|
|
|
|
hb_buffer_serialize_flags_t flags)
|
|
|
|
{
|
|
|
|
assert (start <= end && end <= buffer->len);
|
|
|
|
|
2013-02-27 18:02:42 +01:00
|
|
|
unsigned int sconsumed;
|
|
|
|
if (!buf_consumed)
|
|
|
|
buf_consumed = &sconsumed;
|
2013-02-27 17:06:36 +01:00
|
|
|
*buf_consumed = 0;
|
2017-03-08 03:13:28 +01:00
|
|
|
if (buf_size)
|
|
|
|
*buf = '\0';
|
2013-02-27 17:06:36 +01:00
|
|
|
|
|
|
|
assert ((!buffer->len && buffer->content_type == HB_BUFFER_CONTENT_TYPE_INVALID) ||
|
|
|
|
buffer->content_type == HB_BUFFER_CONTENT_TYPE_GLYPHS);
|
|
|
|
|
2015-12-18 18:30:18 +01:00
|
|
|
if (!buffer->have_positions)
|
|
|
|
flags |= HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS;
|
|
|
|
|
2013-02-27 17:06:36 +01:00
|
|
|
if (unlikely (start == end))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!font)
|
|
|
|
font = hb_font_get_empty ();
|
|
|
|
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_TEXT:
|
|
|
|
return _hb_buffer_serialize_glyphs_text (buffer, start, end,
|
|
|
|
buf, buf_size, buf_consumed,
|
|
|
|
font, flags);
|
|
|
|
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_JSON:
|
|
|
|
return _hb_buffer_serialize_glyphs_json (buffer, start, end,
|
|
|
|
buf, buf_size, buf_consumed,
|
|
|
|
font, flags);
|
|
|
|
|
|
|
|
default:
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_INVALID:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-27 19:01:02 +01:00
|
|
|
|
|
|
|
static hb_bool_t
|
2013-02-28 00:39:37 +01:00
|
|
|
parse_uint (const char *pp, const char *end, uint32_t *pv)
|
2013-02-27 19:01:02 +01:00
|
|
|
{
|
2013-02-28 00:39:37 +01:00
|
|
|
char buf[32];
|
|
|
|
unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - pp));
|
|
|
|
strncpy (buf, pp, len);
|
|
|
|
buf[len] = '\0';
|
|
|
|
|
|
|
|
char *p = buf;
|
|
|
|
char *pend = p;
|
|
|
|
uint32_t v;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
v = strtol (p, &pend, 10);
|
|
|
|
if (errno || p == pend || pend - p != end - pp)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*pv = v;
|
|
|
|
return true;
|
2013-02-27 19:01:02 +01:00
|
|
|
}
|
|
|
|
|
2013-02-28 00:39:37 +01:00
|
|
|
static hb_bool_t
|
|
|
|
parse_int (const char *pp, const char *end, int32_t *pv)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - pp));
|
|
|
|
strncpy (buf, pp, len);
|
|
|
|
buf[len] = '\0';
|
|
|
|
|
|
|
|
char *p = buf;
|
|
|
|
char *pend = p;
|
|
|
|
int32_t v;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
v = strtol (p, &pend, 10);
|
|
|
|
if (errno || p == pend || pend - p != end - pp)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*pv = v;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "hb-buffer-deserialize-json.hh"
|
2013-02-27 23:59:28 +01:00
|
|
|
#include "hb-buffer-deserialize-text.hh"
|
2013-02-27 19:01:02 +01:00
|
|
|
|
2013-09-06 21:40:22 +02:00
|
|
|
/**
|
|
|
|
* hb_buffer_deserialize_glyphs:
|
2016-01-01 17:38:21 +01:00
|
|
|
* @buffer: an #hb_buffer_t buffer.
|
2013-09-06 21:40:22 +02:00
|
|
|
* @buf: (array length=buf_len):
|
2018-10-20 16:20:39 +02:00
|
|
|
* @buf_len:
|
2013-09-06 21:40:22 +02:00
|
|
|
* @end_ptr: (out):
|
2018-10-20 16:20:39 +02:00
|
|
|
* @font:
|
|
|
|
* @format:
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
|
|
|
*
|
2018-10-20 16:20:39 +02:00
|
|
|
*
|
|
|
|
* Return value:
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2016-01-01 17:38:21 +01:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:40:22 +02:00
|
|
|
**/
|
2013-02-27 17:06:36 +01:00
|
|
|
hb_bool_t
|
|
|
|
hb_buffer_deserialize_glyphs (hb_buffer_t *buffer,
|
|
|
|
const char *buf,
|
2013-02-27 19:01:02 +01:00
|
|
|
int buf_len, /* -1 means nul-terminated */
|
2018-10-13 12:30:05 +02:00
|
|
|
const char **end_ptr, /* May be NULL */
|
|
|
|
hb_font_t *font, /* May be NULL */
|
2013-02-27 17:06:36 +01:00
|
|
|
hb_buffer_serialize_format_t format)
|
|
|
|
{
|
2013-02-27 23:59:28 +01:00
|
|
|
const char *end;
|
|
|
|
if (!end_ptr)
|
|
|
|
end_ptr = &end;
|
|
|
|
*end_ptr = buf;
|
2013-02-27 19:01:02 +01:00
|
|
|
|
|
|
|
assert ((!buffer->len && buffer->content_type == HB_BUFFER_CONTENT_TYPE_INVALID) ||
|
|
|
|
buffer->content_type == HB_BUFFER_CONTENT_TYPE_GLYPHS);
|
|
|
|
|
|
|
|
if (buf_len == -1)
|
|
|
|
buf_len = strlen (buf);
|
|
|
|
|
|
|
|
if (!buf_len)
|
|
|
|
{
|
2013-02-27 23:59:28 +01:00
|
|
|
*end_ptr = buf;
|
|
|
|
return false;
|
2013-02-27 19:01:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hb_buffer_set_content_type (buffer, HB_BUFFER_CONTENT_TYPE_GLYPHS);
|
|
|
|
|
|
|
|
if (!font)
|
|
|
|
font = hb_font_get_empty ();
|
|
|
|
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_TEXT:
|
|
|
|
return _hb_buffer_deserialize_glyphs_text (buffer,
|
2013-02-27 23:59:28 +01:00
|
|
|
buf, buf_len, end_ptr,
|
2013-02-27 19:01:02 +01:00
|
|
|
font);
|
|
|
|
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_JSON:
|
|
|
|
return _hb_buffer_deserialize_glyphs_json (buffer,
|
2013-02-27 23:59:28 +01:00
|
|
|
buf, buf_len, end_ptr,
|
2013-02-27 19:01:02 +01:00
|
|
|
font);
|
|
|
|
|
|
|
|
default:
|
|
|
|
case HB_BUFFER_SERIALIZE_FORMAT_INVALID:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
2013-02-27 17:06:36 +01:00
|
|
|
}
|