2008-01-23 23:01:55 +01:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2007,2008,2009,2010 Red Hat, Inc.
|
|
|
|
* Copyright © 2010 Google, Inc.
|
2008-01-23 23:01:55 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2008-01-23 23:01:55 +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): Behdad Esfahbod
|
2010-10-27 23:39:01 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2008-01-23 23:01:55 +01:00
|
|
|
*/
|
|
|
|
|
2011-08-17 14:19:59 +02:00
|
|
|
#ifndef HB_OT_LAYOUT_GSUB_TABLE_HH
|
|
|
|
#define HB_OT_LAYOUT_GSUB_TABLE_HH
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#include "hb-ot-layout-gsubgpos-private.hh"
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct SingleSubstFormat1
|
|
|
|
{
|
2009-04-16 01:50:16 +02:00
|
|
|
friend struct SingleSubst;
|
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
hb_codepoint_t glyph_id = c->buffer->info[c->buffer->idx].codepoint;
|
2009-05-17 06:22:37 +02:00
|
|
|
unsigned int index = (this+coverage) (glyph_id);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-04-16 04:56:15 +02:00
|
|
|
return false;
|
|
|
|
|
2011-09-27 18:38:16 +02:00
|
|
|
/* According to the Adobe Annotated OpenType Suite, result is always
|
|
|
|
* limited to 16bit. */
|
|
|
|
glyph_id = (glyph_id + deltaGlyphID) & 0xFFFF;
|
2010-10-27 23:39:01 +02:00
|
|
|
c->replace_glyph (glyph_id);
|
2009-04-16 04:56:15 +02:00
|
|
|
|
|
|
|
return true;
|
2009-04-16 10:45:30 +02:00
|
|
|
}
|
2009-04-16 04:56:15 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& deltaGlyphID.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-18 02:13:02 +02:00
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
2009-05-17 06:22:37 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2008-01-23 23:01:55 +01:00
|
|
|
* beginning of Substitution table */
|
|
|
|
SHORT deltaGlyphID; /* Add to original GlyphID to get
|
|
|
|
* substitute GlyphID */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct SingleSubstFormat2
|
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
friend struct SingleSubst;
|
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
hb_codepoint_t glyph_id = c->buffer->info[c->buffer->idx].codepoint;
|
2009-05-17 06:22:37 +02:00
|
|
|
unsigned int index = (this+coverage) (glyph_id);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (index >= substitute.len))
|
2009-04-16 10:45:30 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
glyph_id = substitute[index];
|
2010-10-27 23:39:01 +02:00
|
|
|
c->replace_glyph (glyph_id);
|
2009-05-20 05:42:30 +02:00
|
|
|
|
2009-04-16 10:45:30 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& substitute.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-18 02:13:02 +02:00
|
|
|
USHORT format; /* Format identifier--format = 2 */
|
2009-05-17 06:22:37 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2008-01-23 23:01:55 +01:00
|
|
|
* beginning of Substitution table */
|
2009-05-17 07:22:51 +02:00
|
|
|
ArrayOf<GlyphID>
|
|
|
|
substitute; /* Array of substitute
|
|
|
|
* GlyphIDs--ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, substitute);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct SingleSubst
|
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
2009-04-16 19:40:13 +02:00
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 01:47:54 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c);
|
|
|
|
case 2: return u.format2.apply (c);
|
2009-05-05 02:21:57 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
|
|
|
case 2: return u.format2.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-16 10:45:30 +02:00
|
|
|
private:
|
|
|
|
union {
|
2009-05-18 01:47:54 +02:00
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
SingleSubstFormat1 format1;
|
|
|
|
SingleSubstFormat2 format2;
|
2009-04-16 10:45:30 +02:00
|
|
|
} u;
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct Sequence
|
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
friend struct MultipleSubstFormat1;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!substitute.len))
|
2009-05-05 22:22:02 +02:00
|
|
|
return false;
|
|
|
|
|
2010-10-27 23:39:01 +02:00
|
|
|
if (c->property & HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE)
|
|
|
|
c->guess_glyph_class (HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH);
|
|
|
|
c->replace_glyphs_be16 (1, substitute.len, (const uint16_t *) substitute.array);
|
2009-05-05 22:22:02 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
public:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return substitute.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-17 07:22:51 +02:00
|
|
|
ArrayOf<GlyphID>
|
|
|
|
substitute; /* String of GlyphIDs to substitute */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, substitute);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct MultipleSubstFormat1
|
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
friend struct MultipleSubst;
|
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
return (this+sequence[index]).apply (c);
|
2009-04-16 10:45:30 +02:00
|
|
|
}
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& sequence.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-18 02:13:02 +02:00
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
2009-05-17 06:22:37 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2008-01-23 23:01:55 +01:00
|
|
|
* beginning of Substitution table */
|
2009-05-17 07:22:51 +02:00
|
|
|
OffsetArrayOf<Sequence>
|
|
|
|
sequence; /* Array of Sequence tables
|
|
|
|
* ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, sequence);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct MultipleSubst
|
|
|
|
{
|
2009-04-16 19:40:13 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 01:47:54 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c);
|
2009-04-16 10:45:30 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-16 10:45:30 +02:00
|
|
|
private:
|
|
|
|
union {
|
2009-05-18 01:47:54 +02:00
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
MultipleSubstFormat1 format1;
|
2009-04-16 10:45:30 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2009-05-17 07:22:51 +02:00
|
|
|
typedef ArrayOf<GlyphID> AlternateSet; /* Array of alternate GlyphIDs--in
|
2008-01-23 23:01:55 +01:00
|
|
|
* arbitrary order */
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct AlternateSubstFormat1
|
|
|
|
{
|
2009-04-16 20:19:42 +02:00
|
|
|
friend struct AlternateSubst;
|
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
hb_codepoint_t glyph_id = c->buffer->info[c->buffer->idx].codepoint;
|
|
|
|
hb_mask_t glyph_mask = c->buffer->info[c->buffer->idx].mask;
|
2010-05-20 18:26:35 +02:00
|
|
|
hb_mask_t lookup_mask = c->lookup_mask;
|
2009-04-16 20:19:42 +02:00
|
|
|
|
2009-05-17 06:22:37 +02:00
|
|
|
unsigned int index = (this+coverage) (glyph_id);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
|
|
|
|
2009-05-17 07:22:51 +02:00
|
|
|
const AlternateSet &alt_set = this+alternateSet[index];
|
2009-04-16 20:19:42 +02:00
|
|
|
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!alt_set.len))
|
2009-04-16 20:19:42 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-21 17:43:17 +02:00
|
|
|
/* Note: This breaks badly if two features enabled this lookup together. */
|
2010-05-20 18:26:35 +02:00
|
|
|
unsigned int shift = _hb_ctz (lookup_mask);
|
2010-05-20 18:47:28 +02:00
|
|
|
unsigned int alt_index = ((lookup_mask & glyph_mask) >> shift);
|
2009-04-16 20:19:42 +02:00
|
|
|
|
2010-05-20 18:47:28 +02:00
|
|
|
if (unlikely (alt_index > alt_set.len || alt_index == 0))
|
2009-04-16 20:19:42 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-20 18:47:28 +02:00
|
|
|
glyph_id = alt_set[alt_index - 1];
|
2009-04-16 20:19:42 +02:00
|
|
|
|
2010-10-27 23:39:01 +02:00
|
|
|
c->replace_glyph (glyph_id);
|
2009-04-16 20:19:42 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& alternateSet.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-18 02:13:02 +02:00
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
2009-05-17 06:22:37 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2008-01-23 23:01:55 +01:00
|
|
|
* beginning of Substitution table */
|
2009-05-17 07:22:51 +02:00
|
|
|
OffsetArrayOf<AlternateSet>
|
|
|
|
alternateSet; /* Array of AlternateSet tables
|
|
|
|
* ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, alternateSet);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct AlternateSubst
|
|
|
|
{
|
2009-04-16 20:19:42 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 01:47:54 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c);
|
2009-04-16 20:19:42 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-16 20:19:42 +02:00
|
|
|
private:
|
|
|
|
union {
|
2009-05-18 01:47:54 +02:00
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
AlternateSubstFormat1 format1;
|
2009-04-16 20:19:42 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct Ligature
|
|
|
|
{
|
2009-05-05 19:25:13 +02:00
|
|
|
friend struct LigatureSet;
|
|
|
|
|
|
|
|
private:
|
2010-10-27 23:39:01 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2012-01-16 22:43:26 +01:00
|
|
|
unsigned int j = c->buffer->idx;
|
2009-05-18 08:03:58 +02:00
|
|
|
unsigned int count = component.len;
|
2012-01-16 22:43:26 +01:00
|
|
|
unsigned int end = MIN (c->buffer->len, j + c->context_length);
|
|
|
|
if (unlikely (count < 2 || j >= end))
|
2009-05-18 10:21:53 +02:00
|
|
|
return false;
|
2009-05-05 19:25:13 +02:00
|
|
|
|
2010-10-27 23:39:01 +02:00
|
|
|
bool first_was_mark = (c->property & HB_OT_LAYOUT_GLYPH_CLASS_MARK);
|
|
|
|
bool found_non_mark = false;
|
|
|
|
|
2012-01-16 23:03:55 +01:00
|
|
|
for (unsigned int i = 1; i < count; i++)
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2010-04-29 08:19:21 +02:00
|
|
|
unsigned int property;
|
2012-01-16 22:43:26 +01:00
|
|
|
do
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-05-05 19:25:13 +02:00
|
|
|
j++;
|
2012-01-16 22:43:26 +01:00
|
|
|
if (unlikely (j == end))
|
|
|
|
return false;
|
|
|
|
} while (_hb_ot_layout_skip_mark (c->face, &c->buffer->info[j], c->lookup_props, &property));
|
2009-05-05 19:25:13 +02:00
|
|
|
|
2010-10-27 23:39:01 +02:00
|
|
|
found_non_mark |= !(property & HB_OT_LAYOUT_GLYPH_CLASS_MARK);
|
2009-05-05 19:25:13 +02:00
|
|
|
|
2010-05-15 04:02:37 +02:00
|
|
|
if (likely (c->buffer->info[j].codepoint != component[i]))
|
2009-05-05 19:25:13 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-10-27 23:39:01 +02:00
|
|
|
|
|
|
|
if (first_was_mark && found_non_mark)
|
|
|
|
c->guess_glyph_class (HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE);
|
2009-05-05 19:25:13 +02:00
|
|
|
|
2010-10-27 22:51:02 +02:00
|
|
|
/* Allocate new ligature id */
|
2010-10-27 23:06:12 +02:00
|
|
|
unsigned int lig_id = allocate_lig_id (c->buffer);
|
2011-07-22 17:28:07 +02:00
|
|
|
c->buffer->info[c->buffer->idx].lig_comp() = 0;
|
|
|
|
c->buffer->info[c->buffer->idx].lig_id() = lig_id;
|
2010-10-27 22:51:02 +02:00
|
|
|
|
2012-01-16 22:43:26 +01:00
|
|
|
if (j < c->buffer->idx + count) /* No input glyphs skipped */
|
2010-10-27 22:51:02 +02:00
|
|
|
{
|
2012-01-16 22:43:26 +01:00
|
|
|
c->replace_glyphs_be16 (count, 1, (const uint16_t *) &ligGlyph);
|
2010-10-27 22:51:02 +02:00
|
|
|
}
|
2009-05-05 19:25:13 +02:00
|
|
|
else
|
|
|
|
{
|
2010-10-27 23:39:01 +02:00
|
|
|
c->replace_glyph (ligGlyph);
|
2009-05-05 19:25:13 +02:00
|
|
|
|
|
|
|
/* Now we must do a second loop to copy the skipped glyphs to
|
|
|
|
`out' and assign component values to it. We start with the
|
|
|
|
glyph after the first component. Glyphs between component
|
|
|
|
i and i+1 belong to component i. Together with the lig_id
|
|
|
|
value it is later possible to check whether a specific
|
|
|
|
component value really belongs to a given ligature. */
|
|
|
|
|
2012-01-16 23:03:55 +01:00
|
|
|
for (unsigned int i = 1; i < count; i++)
|
2009-05-05 19:25:13 +02:00
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
while (_hb_ot_layout_skip_mark (c->face, &c->buffer->info[c->buffer->idx], c->lookup_props, NULL))
|
2010-10-27 22:51:02 +02:00
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
c->buffer->info[c->buffer->idx].lig_comp() = i;
|
|
|
|
c->buffer->info[c->buffer->idx].lig_id() = lig_id;
|
|
|
|
c->replace_glyph (c->buffer->info[c->buffer->idx].codepoint);
|
2010-10-27 22:51:02 +02:00
|
|
|
}
|
2009-05-05 19:25:13 +02:00
|
|
|
|
2010-10-27 22:19:13 +02:00
|
|
|
/* Skip the base glyph */
|
2011-07-22 17:28:07 +02:00
|
|
|
c->buffer->idx++;
|
2009-05-05 19:25:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
public:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return ligGlyph.sanitize (c)
|
|
|
|
&& component.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-04-16 10:45:30 +02:00
|
|
|
private:
|
|
|
|
GlyphID ligGlyph; /* GlyphID of ligature to substitute */
|
2009-05-18 08:03:58 +02:00
|
|
|
HeadlessArrayOf<GlyphID>
|
|
|
|
component; /* Array of component GlyphIDs--start
|
2009-04-16 10:45:30 +02:00
|
|
|
* with the second component--ordered
|
|
|
|
* in writing direction */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, component);
|
2009-04-16 10:45:30 +02:00
|
|
|
};
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct LigatureSet
|
|
|
|
{
|
2009-05-05 19:25:13 +02:00
|
|
|
friend struct LigatureSubstFormat1;
|
|
|
|
|
|
|
|
private:
|
2010-10-27 23:39:01 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-17 07:22:51 +02:00
|
|
|
unsigned int num_ligs = ligature.len;
|
2009-05-20 05:42:30 +02:00
|
|
|
for (unsigned int i = 0; i < num_ligs; i++)
|
|
|
|
{
|
2009-05-17 07:22:51 +02:00
|
|
|
const Ligature &lig = this+ligature[i];
|
2010-10-27 23:39:01 +02:00
|
|
|
if (lig.apply (c))
|
2009-05-05 19:25:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
public:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return ligature.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-17 07:22:51 +02:00
|
|
|
OffsetArrayOf<Ligature>
|
|
|
|
ligature; /* Array LigatureSet tables
|
|
|
|
* ordered by preference */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, ligature);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct LigatureSubstFormat1
|
|
|
|
{
|
2009-04-16 22:53:40 +02:00
|
|
|
friend struct LigatureSubst;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2011-07-22 17:28:07 +02:00
|
|
|
hb_codepoint_t glyph_id = c->buffer->info[c->buffer->idx].codepoint;
|
2009-04-16 22:53:40 +02:00
|
|
|
|
2009-05-17 07:22:51 +02:00
|
|
|
unsigned int index = (this+coverage) (glyph_id);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 05:17:56 +02:00
|
|
|
return false;
|
|
|
|
|
2009-05-17 07:22:51 +02:00
|
|
|
const LigatureSet &lig_set = this+ligatureSet[index];
|
2010-10-27 23:39:01 +02:00
|
|
|
return lig_set.apply (c);
|
2009-04-16 22:53:40 +02:00
|
|
|
}
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& ligatureSet.sanitize (c, this);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-18 02:13:02 +02:00
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
2009-05-17 06:22:37 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2009-04-16 10:45:30 +02:00
|
|
|
* beginning of Substitution table */
|
2009-05-18 19:50:15 +02:00
|
|
|
OffsetArrayOf<LigatureSet>
|
2009-05-17 07:22:51 +02:00
|
|
|
ligatureSet; /* Array LigatureSet tables
|
|
|
|
* ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, ligatureSet);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct LigatureSubst
|
|
|
|
{
|
2009-04-16 22:53:40 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 01:47:54 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c);
|
2009-04-16 22:53:40 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-16 22:53:40 +02:00
|
|
|
private:
|
|
|
|
union {
|
2009-05-18 01:47:54 +02:00
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
LigatureSubstFormat1 format1;
|
2009-04-16 22:53:40 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool substitute_lookup (hb_apply_context_t *c, unsigned int lookup_index);
|
2009-05-09 01:09:17 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct ContextSubst : Context
|
|
|
|
{
|
2009-05-22 04:31:33 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-08-28 23:14:33 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return Context::apply (c, substitute_lookup);
|
2009-08-28 23:14:33 +02:00
|
|
|
}
|
2009-05-17 13:52:11 +02:00
|
|
|
};
|
2009-05-06 06:12:29 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct ChainContextSubst : ChainContext
|
|
|
|
{
|
2009-05-22 04:31:33 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-08-28 23:14:33 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return ChainContext::apply (c, substitute_lookup);
|
2009-08-28 23:14:33 +02:00
|
|
|
}
|
2009-05-17 01:59:15 +02:00
|
|
|
};
|
|
|
|
|
2009-04-16 19:40:13 +02:00
|
|
|
|
2009-05-22 04:31:33 +02:00
|
|
|
struct ExtensionSubst : Extension
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-04-16 19:40:13 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
2010-04-23 02:15:11 +02:00
|
|
|
friend struct SubstLookup;
|
2009-04-16 19:40:13 +02:00
|
|
|
|
|
|
|
private:
|
2009-08-04 06:58:28 +02:00
|
|
|
inline const struct SubstLookupSubTable& get_subtable (void) const
|
2010-04-22 22:51:42 +02:00
|
|
|
{
|
|
|
|
unsigned int offset = get_offset ();
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!offset)) return Null(SubstLookupSubTable);
|
2010-05-10 23:36:03 +02:00
|
|
|
return StructAtOffset<SubstLookupSubTable> (this, offset);
|
2010-04-22 22:51:42 +02:00
|
|
|
}
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const;
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c);
|
2010-04-23 02:15:11 +02:00
|
|
|
|
|
|
|
inline bool is_reverse (void) const;
|
2009-04-16 19:40:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct ReverseChainSingleSubstFormat1
|
|
|
|
{
|
2009-05-18 11:47:47 +02:00
|
|
|
friend struct ReverseChainSingleSubst;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (c->context_length != NO_CONTEXT))
|
2009-05-18 11:47:47 +02:00
|
|
|
return false; /* No chaining to this type */
|
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint);
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (index == NOT_COVERED))
|
2009-05-18 11:47:47 +02:00
|
|
|
return false;
|
|
|
|
|
2010-04-21 21:56:11 +02:00
|
|
|
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
|
|
|
const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead);
|
2009-05-18 11:47:47 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
if (match_backtrack (c,
|
2010-05-11 00:20:54 +02:00
|
|
|
backtrack.len, (USHORT *) backtrack.array,
|
2010-05-10 23:47:22 +02:00
|
|
|
match_coverage, this) &&
|
2010-05-13 20:18:49 +02:00
|
|
|
match_lookahead (c,
|
2010-05-11 00:20:54 +02:00
|
|
|
lookahead.len, (USHORT *) lookahead.array,
|
2010-05-10 23:47:22 +02:00
|
|
|
match_coverage, this,
|
2009-05-18 11:47:47 +02:00
|
|
|
1))
|
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
c->buffer->info[c->buffer->idx].codepoint = substitute[index];
|
|
|
|
c->buffer->idx--; /* Reverse! */
|
2009-05-18 11:47:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
return false;
|
|
|
|
}
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!(coverage.sanitize (c, this)
|
|
|
|
&& backtrack.sanitize (c, this)))
|
2009-08-04 06:58:28 +02:00
|
|
|
return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!lookahead.sanitize (c, this))
|
2009-08-04 06:58:28 +02:00
|
|
|
return false;
|
2010-04-21 21:56:11 +02:00
|
|
|
ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead);
|
2010-05-13 20:18:49 +02:00
|
|
|
return substitute.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
private:
|
2009-05-18 02:13:02 +02:00
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
2009-05-18 11:47:47 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
|
|
|
* beginning of table */
|
|
|
|
OffsetArrayOf<Coverage>
|
|
|
|
backtrack; /* Array of coverage tables
|
2008-01-23 23:01:55 +01:00
|
|
|
* in backtracking sequence, in glyph
|
|
|
|
* sequence order */
|
2009-05-18 11:47:47 +02:00
|
|
|
OffsetArrayOf<Coverage>
|
|
|
|
lookaheadX; /* Array of coverage tables
|
|
|
|
* in lookahead sequence, in glyph
|
2008-01-23 23:01:55 +01:00
|
|
|
* sequence order */
|
2009-05-18 11:47:47 +02:00
|
|
|
ArrayOf<GlyphID>
|
|
|
|
substituteX; /* Array of substitute
|
|
|
|
* GlyphIDs--ordered by Coverage Index */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-10 23:28:16 +02:00
|
|
|
DEFINE_SIZE_MIN (10);
|
2008-01-23 23:01:55 +01:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct ReverseChainSingleSubst
|
|
|
|
{
|
2009-05-18 02:48:27 +02:00
|
|
|
friend struct SubstLookupSubTable;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-05-18 02:48:27 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.apply (c);
|
2009-05-18 02:48:27 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 06:58:28 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 02:48:27 +02:00
|
|
|
private:
|
|
|
|
union {
|
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
ReverseChainSingleSubstFormat1 format1;
|
2009-05-18 02:48:27 +02:00
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-16 01:50:16 +02:00
|
|
|
/*
|
|
|
|
* SubstLookup
|
|
|
|
*/
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct SubstLookupSubTable
|
|
|
|
{
|
2009-04-16 01:50:16 +02:00
|
|
|
friend struct SubstLookup;
|
|
|
|
|
2009-05-20 09:53:00 +02:00
|
|
|
enum {
|
|
|
|
Single = 1,
|
|
|
|
Multiple = 2,
|
|
|
|
Alternate = 3,
|
|
|
|
Ligature = 4,
|
|
|
|
Context = 5,
|
|
|
|
ChainContext = 6,
|
|
|
|
Extension = 7,
|
2009-08-18 22:41:59 +02:00
|
|
|
ReverseChainSingle = 8
|
2009-05-20 09:53:00 +02:00
|
|
|
};
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool apply (hb_apply_context_t *c, unsigned int lookup_type) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2009-04-16 10:45:30 +02:00
|
|
|
switch (lookup_type) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case Single: return u.single.apply (c);
|
|
|
|
case Multiple: return u.multiple.apply (c);
|
|
|
|
case Alternate: return u.alternate.apply (c);
|
|
|
|
case Ligature: return u.ligature.apply (c);
|
|
|
|
case Context: return u.c.apply (c);
|
|
|
|
case ChainContext: return u.chainContext.apply (c);
|
|
|
|
case Extension: return u.extension.apply (c);
|
|
|
|
case ReverseChainSingle: return u.reverseChainContextSingle.apply (c);
|
2009-04-16 10:45:30 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
2009-04-16 01:50:16 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int lookup_type) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-11 03:39:24 +02:00
|
|
|
switch (lookup_type) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case Single: return u.single.sanitize (c);
|
|
|
|
case Multiple: return u.multiple.sanitize (c);
|
|
|
|
case Alternate: return u.alternate.sanitize (c);
|
|
|
|
case Ligature: return u.ligature.sanitize (c);
|
|
|
|
case Context: return u.c.sanitize (c);
|
|
|
|
case ChainContext: return u.chainContext.sanitize (c);
|
|
|
|
case Extension: return u.extension.sanitize (c);
|
|
|
|
case ReverseChainSingle: return u.reverseChainContextSingle.sanitize (c);
|
2009-08-04 06:58:28 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-16 01:50:16 +02:00
|
|
|
private:
|
|
|
|
union {
|
2010-05-11 03:39:24 +02:00
|
|
|
USHORT sub_format;
|
2010-05-11 01:45:41 +02:00
|
|
|
SingleSubst single;
|
|
|
|
MultipleSubst multiple;
|
|
|
|
AlternateSubst alternate;
|
|
|
|
LigatureSubst ligature;
|
2010-05-13 20:18:49 +02:00
|
|
|
ContextSubst c;
|
2010-05-11 01:45:41 +02:00
|
|
|
ChainContextSubst chainContext;
|
|
|
|
ExtensionSubst extension;
|
|
|
|
ReverseChainSingleSubst reverseChainContextSingle;
|
2009-04-16 01:50:16 +02:00
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 03:39:24 +02:00
|
|
|
DEFINE_SIZE_UNION (2, sub_format);
|
2009-04-16 01:50:16 +02:00
|
|
|
};
|
|
|
|
|
2009-04-16 19:40:13 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct SubstLookup : Lookup
|
|
|
|
{
|
|
|
|
inline const SubstLookupSubTable& get_subtable (unsigned int i) const
|
2010-04-23 22:35:01 +02:00
|
|
|
{ return this+CastR<OffsetArrayOf<SubstLookupSubTable> > (subTable)[i]; }
|
2009-04-16 01:50:16 +02:00
|
|
|
|
2010-04-23 02:15:11 +02:00
|
|
|
inline static bool lookup_type_is_reverse (unsigned int lookup_type)
|
|
|
|
{ return lookup_type == SubstLookupSubTable::ReverseChainSingle; }
|
|
|
|
|
|
|
|
inline bool is_reverse (void) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-04-16 01:50:16 +02:00
|
|
|
unsigned int type = get_type ();
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (type == SubstLookupSubTable::Extension))
|
2010-04-23 22:35:01 +02:00
|
|
|
return CastR<ExtensionSubst> (get_subtable(0)).is_reverse ();
|
2010-04-23 02:15:11 +02:00
|
|
|
return lookup_type_is_reverse (type);
|
2009-04-16 01:50:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-11 06:02:02 +02:00
|
|
|
inline bool apply_once (hb_face_t *face,
|
2010-04-29 08:19:21 +02:00
|
|
|
hb_buffer_t *buffer,
|
2010-05-20 18:26:35 +02:00
|
|
|
hb_mask_t lookup_mask,
|
2010-04-29 08:19:21 +02:00
|
|
|
unsigned int context_length,
|
2010-05-05 07:30:48 +02:00
|
|
|
unsigned int nesting_level_left) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-04-16 01:50:16 +02:00
|
|
|
unsigned int lookup_type = get_type ();
|
2010-05-13 20:18:49 +02:00
|
|
|
hb_apply_context_t c[1] = {{0}};
|
2009-05-22 23:58:09 +02:00
|
|
|
|
2011-05-11 06:02:02 +02:00
|
|
|
c->face = face;
|
2010-05-13 20:18:49 +02:00
|
|
|
c->buffer = buffer;
|
2011-05-17 00:15:37 +02:00
|
|
|
c->direction = buffer->props.direction;
|
2010-05-20 18:26:35 +02:00
|
|
|
c->lookup_mask = lookup_mask;
|
2010-05-13 20:18:49 +02:00
|
|
|
c->context_length = context_length;
|
|
|
|
c->nesting_level_left = nesting_level_left;
|
2010-10-28 04:07:49 +02:00
|
|
|
c->lookup_props = get_props ();
|
2010-04-29 08:19:21 +02:00
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
if (!_hb_ot_layout_check_glyph_property (c->face, &c->buffer->info[c->buffer->idx], c->lookup_props, &c->property))
|
2009-05-22 23:58:09 +02:00
|
|
|
return false;
|
2009-04-16 01:50:16 +02:00
|
|
|
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (lookup_type == SubstLookupSubTable::Extension))
|
2010-04-23 02:15:11 +02:00
|
|
|
{
|
|
|
|
/* The spec says all subtables should have the same type.
|
|
|
|
* This is specially important if one has a reverse type!
|
|
|
|
*
|
|
|
|
* This is rather slow to do this here for every glyph,
|
|
|
|
* but it's easiest, and who uses extension lookups anyway?!*/
|
|
|
|
unsigned int count = get_subtable_count ();
|
2010-05-11 01:45:41 +02:00
|
|
|
unsigned int type = get_subtable(0).u.extension.get_type ();
|
2010-04-23 02:15:11 +02:00
|
|
|
for (unsigned int i = 1; i < count; i++)
|
2010-05-11 01:45:41 +02:00
|
|
|
if (get_subtable(i).u.extension.get_type () != type)
|
2010-04-23 02:15:11 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-04 08:27:37 +02:00
|
|
|
unsigned int count = get_subtable_count ();
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
if (get_subtable (i).apply (c, lookup_type))
|
2009-04-16 01:50:16 +02:00
|
|
|
return true;
|
2009-11-02 20:35:51 +01:00
|
|
|
|
2009-04-16 01:50:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2011-05-11 06:02:02 +02:00
|
|
|
inline bool apply_string (hb_face_t *face,
|
2009-08-11 01:00:36 +02:00
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_mask_t mask) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
bool ret = false;
|
|
|
|
|
2010-05-15 04:07:46 +02:00
|
|
|
if (unlikely (!buffer->len))
|
2009-05-17 15:45:32 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-04 04:51:19 +02:00
|
|
|
if (likely (!is_reverse ()))
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
/* in/out forward substitution */
|
2010-05-13 05:43:00 +02:00
|
|
|
buffer->clear_output ();
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->idx = 0;
|
|
|
|
while (buffer->idx < buffer->len)
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
if ((buffer->info[buffer->idx].mask & mask) &&
|
2011-05-11 06:02:02 +02:00
|
|
|
apply_once (face, buffer, mask, NO_CONTEXT, MAX_NESTING_LEVEL))
|
2009-04-16 10:45:30 +02:00
|
|
|
ret = true;
|
|
|
|
else
|
2010-05-13 05:43:00 +02:00
|
|
|
buffer->next_glyph ();
|
2009-04-16 10:45:30 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
if (ret)
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->swap_buffers ();
|
2009-05-20 05:42:30 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-16 10:45:30 +02:00
|
|
|
/* in-place backward substitution */
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->idx = buffer->len - 1;
|
2009-05-20 05:42:30 +02:00
|
|
|
do
|
|
|
|
{
|
2011-07-22 17:28:07 +02:00
|
|
|
if ((buffer->info[buffer->idx].mask & mask) &&
|
2011-05-11 06:02:02 +02:00
|
|
|
apply_once (face, buffer, mask, NO_CONTEXT, MAX_NESTING_LEVEL))
|
2009-04-16 10:45:30 +02:00
|
|
|
ret = true;
|
|
|
|
else
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->idx--;
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
}
|
2011-07-22 17:28:07 +02:00
|
|
|
while ((int) buffer->idx >= 0);
|
2009-04-16 10:45:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2009-08-04 08:27:37 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!Lookup::sanitize (c))) return false;
|
2010-04-23 22:35:01 +02:00
|
|
|
OffsetArrayOf<SubstLookupSubTable> &list = CastR<OffsetArrayOf<SubstLookupSubTable> > (subTable);
|
2010-05-13 20:18:49 +02:00
|
|
|
return list.sanitize (c, this, get_type ());
|
2009-08-04 08:27:37 +02:00
|
|
|
}
|
2009-04-16 01:50:16 +02:00
|
|
|
};
|
|
|
|
|
2009-08-04 08:27:37 +02:00
|
|
|
typedef OffsetListOf<SubstLookup> SubstLookupList;
|
2009-05-16 00:54:53 +02:00
|
|
|
|
2008-01-24 00:02:28 +01:00
|
|
|
/*
|
2011-08-17 14:43:45 +02:00
|
|
|
* GSUB -- The Glyph Substitution Table
|
2008-01-24 00:02:28 +01:00
|
|
|
*/
|
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
struct GSUB : GSUBGPOS
|
|
|
|
{
|
2009-08-05 02:27:05 +02:00
|
|
|
static const hb_tag_t Tag = HB_OT_TAG_GSUB;
|
2008-01-24 00:02:28 +01:00
|
|
|
|
2009-05-20 05:42:30 +02:00
|
|
|
inline const SubstLookup& get_lookup (unsigned int i) const
|
2010-04-23 22:35:01 +02:00
|
|
|
{ return CastR<SubstLookup> (GSUBGPOS::get_lookup (i)); }
|
2009-04-16 01:50:16 +02:00
|
|
|
|
2011-05-11 06:02:02 +02:00
|
|
|
inline bool substitute_lookup (hb_face_t *face,
|
2009-08-08 22:53:23 +02:00
|
|
|
hb_buffer_t *buffer,
|
|
|
|
unsigned int lookup_index,
|
|
|
|
hb_mask_t mask) const
|
2011-05-11 06:02:02 +02:00
|
|
|
{ return get_lookup (lookup_index).apply_string (face, buffer, mask); }
|
2009-04-16 01:50:16 +02:00
|
|
|
|
2011-07-28 21:42:18 +02:00
|
|
|
static inline void substitute_start (hb_buffer_t *buffer);
|
|
|
|
static inline void substitute_finish (hb_buffer_t *buffer);
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!GSUBGPOS::sanitize (c))) return false;
|
2010-04-23 22:35:01 +02:00
|
|
|
OffsetTo<SubstLookupList> &list = CastR<OffsetTo<SubstLookupList> > (lookupList);
|
2010-05-13 20:18:49 +02:00
|
|
|
return list.sanitize (c, this);
|
2009-08-04 08:27:37 +02:00
|
|
|
}
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (10);
|
2008-01-24 00:02:28 +01:00
|
|
|
};
|
2009-05-16 00:54:53 +02:00
|
|
|
|
|
|
|
|
2011-07-28 21:42:18 +02:00
|
|
|
void
|
|
|
|
GSUB::substitute_start (hb_buffer_t *buffer)
|
|
|
|
{
|
2011-07-28 22:48:43 +02:00
|
|
|
HB_BUFFER_ALLOCATE_VAR (buffer, props_cache);
|
|
|
|
HB_BUFFER_ALLOCATE_VAR (buffer, lig_id);
|
|
|
|
HB_BUFFER_ALLOCATE_VAR (buffer, lig_comp);
|
|
|
|
|
2011-07-28 21:42:18 +02:00
|
|
|
unsigned int count = buffer->len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2011-07-28 23:03:43 +02:00
|
|
|
buffer->info[i].props_cache() = buffer->info[i].lig_id() = buffer->info[i].lig_comp() = 0;
|
2011-07-28 21:42:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GSUB::substitute_finish (hb_buffer_t *buffer)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-18 03:06:08 +02:00
|
|
|
/* Out-of-class implementation for methods recursing */
|
2009-05-16 00:54:53 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool ExtensionSubst::apply (hb_apply_context_t *c) const
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_APPLY ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return get_subtable ().apply (c, get_type ());
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool ExtensionSubst::sanitize (hb_sanitize_context_t *c)
|
2009-08-04 06:58:28 +02:00
|
|
|
{
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!Extension::sanitize (c))) return false;
|
2010-04-22 22:51:42 +02:00
|
|
|
unsigned int offset = get_offset ();
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!offset)) return true;
|
2010-05-13 20:18:49 +02:00
|
|
|
return StructAtOffset<SubstLookupSubTable> (this, offset).sanitize (c, get_type ());
|
2009-05-16 00:54:53 +02:00
|
|
|
}
|
|
|
|
|
2010-04-23 02:15:11 +02:00
|
|
|
inline bool ExtensionSubst::is_reverse (void) const
|
|
|
|
{
|
|
|
|
unsigned int type = get_type ();
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (type == SubstLookupSubTable::Extension))
|
2010-04-23 22:35:01 +02:00
|
|
|
return CastR<ExtensionSubst> (get_subtable()).is_reverse ();
|
2010-04-23 02:15:11 +02:00
|
|
|
return SubstLookup::lookup_type_is_reverse (type);
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
static inline bool substitute_lookup (hb_apply_context_t *c, unsigned int lookup_index)
|
2009-05-20 05:42:30 +02:00
|
|
|
{
|
2011-05-11 06:02:02 +02:00
|
|
|
const GSUB &gsub = *(c->face->ot_layout->gsub);
|
2009-05-17 13:52:11 +02:00
|
|
|
const SubstLookup &l = gsub.get_lookup (lookup_index);
|
2009-05-16 00:54:53 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (c->nesting_level_left == 0))
|
2009-05-17 15:07:27 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (c->context_length < 1))
|
2009-05-17 15:07:27 +02:00
|
|
|
return false;
|
|
|
|
|
2011-05-11 06:02:02 +02:00
|
|
|
return l.apply_once (c->face, c->buffer, c->lookup_mask, c->context_length, c->nesting_level_left - 1);
|
2009-05-16 00:54:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2011-08-17 14:19:59 +02:00
|
|
|
#endif /* HB_OT_LAYOUT_GSUB_TABLE_HH */
|