2008-01-15 23:46:32 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1998-2004 David Turner and Werner Lemberg
|
|
|
|
* Copyright (C) 2004,2007 Red Hat, Inc.
|
2006-03-31 14:28:09 +02:00
|
|
|
*
|
2008-01-15 23:46:32 +01:00
|
|
|
* This is part of HarfBuzz, an OpenType Layout engine library.
|
2006-03-31 14:28:09 +02:00
|
|
|
*
|
2008-01-15 23:46:32 +01:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Owen Taylor, Behdad Esfahbod
|
2006-03-31 14:28:09 +02:00
|
|
|
*/
|
|
|
|
|
2009-05-20 11:42:12 +02:00
|
|
|
#include "hb-buffer-private.h"
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
/* Here is how the buffer works internally:
|
|
|
|
*
|
|
|
|
* There are two string pointers: in_string and out_string. They
|
|
|
|
* always have same allocated size, but different length and positions.
|
|
|
|
*
|
|
|
|
* As an optimization, both in_string and out_string may point to the
|
|
|
|
* same piece of memory, which is owned by in_string. This remains the
|
|
|
|
* case as long as:
|
|
|
|
*
|
|
|
|
* - copy_glyph() is called
|
|
|
|
* - replace_glyph() is called with inplace=TRUE
|
|
|
|
* - add_output_glyph() and add_output_glyphs() are not called
|
|
|
|
*
|
|
|
|
* In that case swap(), and copy_glyph(), and replace_glyph() are all
|
|
|
|
* mostly no-op.
|
|
|
|
*
|
|
|
|
* As soon an add_output_glyph[s]() or replace_glyph() with inplace=FALSE is
|
|
|
|
* called, out_string is moved over to an alternate buffer (alt_string), and
|
|
|
|
* its current contents (out_length entries) are copied to the alt buffer.
|
|
|
|
* This should all remain transparent to the user. swap() then switches
|
|
|
|
* in_string and alt_string. alt_string is not allocated until its needed,
|
|
|
|
* but after that it's grown with in_string unconditionally.
|
|
|
|
*
|
2007-10-11 09:12:49 +02:00
|
|
|
* The buffer->separate_out boolean keeps status of whether out_string points
|
|
|
|
* to in_string (FALSE) or alt_string (TRUE).
|
2007-10-11 02:07:58 +02:00
|
|
|
*/
|
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
/* Internal API */
|
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
static void
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_ensure (hb_buffer_t *buffer,
|
|
|
|
unsigned int size)
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
2009-05-20 12:01:16 +02:00
|
|
|
unsigned int new_allocated = buffer->allocated;
|
2009-05-20 11:35:14 +02:00
|
|
|
/* XXX err handling */
|
2006-03-31 14:28:09 +02:00
|
|
|
|
|
|
|
if (size > new_allocated)
|
|
|
|
{
|
2007-10-11 02:07:58 +02:00
|
|
|
HB_Error error;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
|
|
|
while (size > new_allocated)
|
|
|
|
new_allocated += (new_allocated >> 1) + 8;
|
2009-05-17 11:52:32 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
if (buffer->positions)
|
|
|
|
buffer->positions = realloc (buffer->positions, new_allocated * sizeof (buffer->positions[0]));
|
2007-10-11 09:05:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
buffer->in_string = realloc (buffer->in_string, new_allocated * sizeof (buffer->in_string[0]));
|
2007-10-11 09:05:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
if (buffer->separate_out)
|
2007-10-11 09:12:49 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
buffer->alt_string = realloc (buffer->alt_string, new_allocated * sizeof (buffer->alt_string[0]));
|
2007-10-11 09:12:49 +02:00
|
|
|
buffer->out_string = buffer->alt_string;
|
|
|
|
}
|
|
|
|
else
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
|
|
|
buffer->out_string = buffer->in_string;
|
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
if (buffer->alt_string)
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
free (buffer->alt_string);
|
|
|
|
buffer->alt_string = NULL;
|
2007-10-11 02:07:58 +02:00
|
|
|
}
|
|
|
|
}
|
2006-03-31 14:28:09 +02:00
|
|
|
|
|
|
|
buffer->allocated = new_allocated;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
static HB_Error
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_duplicate_out_buffer (HB_Buffer buffer)
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
if (!buffer->alt_string)
|
|
|
|
buffer->alt_string = malloc (buffer->allocated * sizeof (buffer->alt_string[0]));
|
2007-10-11 02:07:58 +02:00
|
|
|
|
|
|
|
buffer->out_string = buffer->alt_string;
|
2009-05-20 11:35:14 +02:00
|
|
|
memcpy (buffer->out_string, buffer->in_string, buffer->out_length * sizeof (buffer->out_string[0]));
|
2007-10-11 09:12:49 +02:00
|
|
|
buffer->separate_out = TRUE;
|
2007-10-11 02:07:58 +02:00
|
|
|
|
|
|
|
return HB_Err_Ok;
|
|
|
|
}
|
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
/* Public API */
|
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_t *
|
|
|
|
hb_buffer_new (void)
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_t *buffer;
|
|
|
|
|
|
|
|
buffer = malloc (sizeof (hb_buffer_t));
|
|
|
|
if (HB_UNLIKELY (!buffer))
|
|
|
|
return NULL;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2007-10-11 09:21:31 +02:00
|
|
|
buffer->allocated = 0;
|
|
|
|
buffer->in_string = NULL;
|
|
|
|
buffer->alt_string = NULL;
|
|
|
|
buffer->positions = NULL;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_clear (buffer);
|
2007-10-11 09:21:31 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
return buffer;
|
2007-10-11 02:07:58 +02:00
|
|
|
}
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2007-10-11 09:21:31 +02:00
|
|
|
void
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_free (HB_Buffer buffer)
|
2007-10-11 09:21:31 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
free (buffer->in_string);
|
|
|
|
free (buffer->alt_string);
|
|
|
|
free (buffer->positions);
|
|
|
|
free (buffer);
|
2007-10-11 09:21:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_clear (HB_Buffer buffer)
|
2007-10-11 09:21:31 +02:00
|
|
|
{
|
|
|
|
buffer->in_length = 0;
|
|
|
|
buffer->out_length = 0;
|
|
|
|
buffer->in_pos = 0;
|
|
|
|
buffer->out_pos = 0;
|
|
|
|
buffer->out_string = buffer->in_string;
|
|
|
|
buffer->separate_out = FALSE;
|
2007-10-11 09:24:47 +02:00
|
|
|
buffer->max_ligID = 0;
|
2007-10-11 09:21:31 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
void
|
2009-05-20 12:01:16 +02:00
|
|
|
hb_buffer_add_glyph (hb_buffer_t *buffer,
|
|
|
|
hb_codepoint_t glyph_index,
|
|
|
|
unsigned int properties,
|
|
|
|
unsigned int cluster)
|
2007-10-11 10:30:50 +02:00
|
|
|
{
|
|
|
|
HB_Error error;
|
|
|
|
HB_GlyphItem glyph;
|
2009-05-20 11:42:12 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_ensure (buffer, buffer->in_length + 1);
|
2007-10-11 10:30:50 +02:00
|
|
|
|
|
|
|
glyph = &buffer->in_string[buffer->in_length];
|
|
|
|
glyph->gindex = glyph_index;
|
|
|
|
glyph->properties = properties;
|
|
|
|
glyph->cluster = cluster;
|
|
|
|
glyph->component = 0;
|
|
|
|
glyph->ligID = 0;
|
2009-04-16 04:56:15 +02:00
|
|
|
glyph->gproperty = HB_GLYPH_PROPERTY_UNKNOWN;
|
2007-10-11 10:30:50 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
buffer->in_length++;
|
2007-10-11 10:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* HarfBuzz-Internal API */
|
|
|
|
|
|
|
|
HB_INTERNAL void
|
2009-05-20 11:35:14 +02:00
|
|
|
_hb_buffer_clear_output (HB_Buffer buffer)
|
2007-10-11 09:21:31 +02:00
|
|
|
{
|
|
|
|
buffer->out_length = 0;
|
|
|
|
buffer->out_pos = 0;
|
|
|
|
buffer->out_string = buffer->in_string;
|
|
|
|
buffer->separate_out = FALSE;
|
|
|
|
}
|
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
HB_INTERNAL HB_Error
|
2009-05-20 11:35:14 +02:00
|
|
|
_hb_buffer_clear_positions (HB_Buffer buffer)
|
2007-10-11 09:05:09 +02:00
|
|
|
{
|
2009-05-17 12:03:42 +02:00
|
|
|
_hb_buffer_clear_output (buffer);
|
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
if (!buffer->positions)
|
|
|
|
buffer->positions = malloc (buffer->allocated * sizeof (buffer->positions[0]));
|
2007-10-11 09:05:09 +02:00
|
|
|
|
|
|
|
memset (buffer->positions, 0, sizeof (buffer->positions[0]) * buffer->in_length);
|
|
|
|
|
|
|
|
return HB_Err_Ok;
|
|
|
|
}
|
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
HB_INTERNAL void
|
2009-05-20 11:35:14 +02:00
|
|
|
_hb_buffer_swap (HB_Buffer buffer)
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
|
|
|
HB_GlyphItem tmp_string;
|
2007-10-11 02:07:58 +02:00
|
|
|
int tmp_length;
|
|
|
|
int tmp_pos;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
if (buffer->separate_out)
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
|
|
|
tmp_string = buffer->in_string;
|
|
|
|
buffer->in_string = buffer->out_string;
|
|
|
|
buffer->out_string = tmp_string;
|
|
|
|
buffer->alt_string = buffer->out_string;
|
|
|
|
}
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
tmp_length = buffer->in_length;
|
2006-03-31 14:28:09 +02:00
|
|
|
buffer->in_length = buffer->out_length;
|
2007-10-11 02:07:58 +02:00
|
|
|
buffer->out_length = tmp_length;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
tmp_pos = buffer->in_pos;
|
|
|
|
buffer->in_pos = buffer->out_pos;
|
|
|
|
buffer->out_pos = tmp_pos;
|
2006-03-31 14:28:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The following function copies `num_out' elements from `glyph_data'
|
|
|
|
to `buffer->out_string', advancing the in array pointer in the structure
|
|
|
|
by `num_in' elements, and the out array pointer by `num_out' elements.
|
|
|
|
Finally, it sets the `length' field of `out' equal to
|
|
|
|
`pos' of the `out' structure.
|
|
|
|
|
|
|
|
If `component' is 0xFFFF, the component value from buffer->in_pos
|
|
|
|
will copied `num_out' times, otherwise `component' itself will
|
|
|
|
be used to fill the `component' fields.
|
|
|
|
|
|
|
|
If `ligID' is 0xFFFF, the ligID value from buffer->in_pos
|
|
|
|
will copied `num_out' times, otherwise `ligID' itself will
|
|
|
|
be used to fill the `ligID' fields.
|
|
|
|
|
|
|
|
The properties for all replacement glyphs are taken
|
|
|
|
from the glyph at position `buffer->in_pos'.
|
|
|
|
|
|
|
|
The cluster value for the glyph at position buffer->in_pos is used
|
|
|
|
for all replacement glyphs */
|
2007-10-11 10:30:50 +02:00
|
|
|
HB_INTERNAL HB_Error
|
2009-05-20 12:01:16 +02:00
|
|
|
_hb_buffer_add_output_glyphs (hb_buffer_t *buffer,
|
|
|
|
unsigned int num_in,
|
|
|
|
unsigned int num_out,
|
2009-05-25 09:39:11 +02:00
|
|
|
const uint16_t *glyph_data_be,
|
2009-05-20 12:01:16 +02:00
|
|
|
unsigned short component,
|
|
|
|
unsigned short ligID)
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
2007-10-11 02:07:58 +02:00
|
|
|
HB_Error error;
|
2009-05-20 12:01:16 +02:00
|
|
|
unsigned int i;
|
|
|
|
unsigned int properties;
|
|
|
|
unsigned int cluster;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
hb_buffer_ensure( buffer, buffer->out_pos + num_out );
|
|
|
|
/* XXX */
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
if ( !buffer->separate_out )
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
2009-05-25 09:39:11 +02:00
|
|
|
error = hb_buffer_duplicate_out_buffer( buffer );
|
|
|
|
if ( error )
|
2007-10-11 02:07:58 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2006-03-31 14:28:09 +02:00
|
|
|
properties = buffer->in_string[buffer->in_pos].properties;
|
|
|
|
cluster = buffer->in_string[buffer->in_pos].cluster;
|
2009-05-25 09:39:11 +02:00
|
|
|
if ( component == 0xFFFF )
|
2006-03-31 14:28:09 +02:00
|
|
|
component = buffer->in_string[buffer->in_pos].component;
|
2009-05-25 09:39:11 +02:00
|
|
|
if ( ligID == 0xFFFF )
|
2006-03-31 14:28:09 +02:00
|
|
|
ligID = buffer->in_string[buffer->in_pos].ligID;
|
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
for ( i = 0; i < num_out; i++ )
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
|
|
|
HB_GlyphItem item = &buffer->out_string[buffer->out_pos + i];
|
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
item->gindex = hb_be_uint16_t (glyph_data_be[i]);
|
2006-03-31 14:28:09 +02:00
|
|
|
item->properties = properties;
|
|
|
|
item->cluster = cluster;
|
|
|
|
item->component = component;
|
|
|
|
item->ligID = ligID;
|
2009-04-16 04:56:15 +02:00
|
|
|
item->gproperty = HB_GLYPH_PROPERTY_UNKNOWN;
|
2006-03-31 14:28:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buffer->in_pos += num_in;
|
|
|
|
buffer->out_pos += num_out;
|
|
|
|
|
|
|
|
buffer->out_length = buffer->out_pos;
|
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
return HB_Err_Ok;
|
2006-03-31 14:28:09 +02:00
|
|
|
}
|
|
|
|
|
2009-05-25 09:39:11 +02:00
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
HB_INTERNAL HB_Error
|
2009-05-20 12:01:16 +02:00
|
|
|
_hb_buffer_add_output_glyph (hb_buffer_t *buffer,
|
|
|
|
hb_codepoint_t glyph_index,
|
|
|
|
unsigned short component,
|
|
|
|
unsigned short ligID)
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
2009-05-25 09:39:11 +02:00
|
|
|
uint16_t glyph_data = hb_be_uint16_t (glyph_index);
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
return _hb_buffer_add_output_glyphs (buffer, 1, 1,
|
|
|
|
&glyph_data, component, ligID);
|
2006-03-31 14:28:09 +02:00
|
|
|
}
|
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
HB_INTERNAL HB_Error
|
2009-05-20 11:35:14 +02:00
|
|
|
_hb_buffer_next_glyph (HB_Buffer buffer)
|
2009-05-17 12:03:42 +02:00
|
|
|
{
|
2007-10-11 02:07:58 +02:00
|
|
|
HB_Error error;
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
if (buffer->separate_out)
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
hb_buffer_ensure (buffer, buffer->out_pos + 1);
|
2009-05-17 12:03:42 +02:00
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
buffer->out_string[buffer->out_pos] = buffer->in_string[buffer->in_pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->in_pos++;
|
|
|
|
buffer->out_pos++;
|
2006-03-31 14:28:09 +02:00
|
|
|
buffer->out_length = buffer->out_pos;
|
|
|
|
|
2007-10-11 02:07:58 +02:00
|
|
|
return HB_Err_Ok;
|
|
|
|
}
|
|
|
|
|
2007-10-11 10:30:50 +02:00
|
|
|
HB_INTERNAL HB_Error
|
2009-05-20 12:01:16 +02:00
|
|
|
_hb_buffer_replace_glyph (hb_buffer_t *buffer,
|
|
|
|
hb_codepoint_t glyph_index)
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
if (!buffer->separate_out)
|
2007-10-11 02:07:58 +02:00
|
|
|
{
|
2009-05-17 12:03:42 +02:00
|
|
|
buffer->out_string[buffer->out_pos].gindex = glyph_index;
|
2007-10-11 02:07:58 +02:00
|
|
|
|
2009-05-17 12:03:42 +02:00
|
|
|
buffer->in_pos++;
|
|
|
|
buffer->out_pos++;
|
|
|
|
buffer->out_length = buffer->out_pos;
|
2007-10-11 02:07:58 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-20 11:35:14 +02:00
|
|
|
return _hb_buffer_add_output_glyph (buffer, glyph_index, 0xFFFF, 0xFFFF);
|
2007-10-11 02:07:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return HB_Err_Ok;
|
2006-03-31 14:28:09 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 12:01:16 +02:00
|
|
|
HB_INTERNAL unsigned short
|
|
|
|
_hb_buffer_allocate_ligid (hb_buffer_t *buffer)
|
2006-03-31 14:28:09 +02:00
|
|
|
{
|
2009-05-17 12:03:42 +02:00
|
|
|
return ++buffer->max_ligID;
|
2006-03-31 14:28:09 +02:00
|
|
|
}
|