2009-05-18 02:28:01 +02:00
|
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
|
* Copyright © 2007,2008,2009 Red Hat, Inc.
|
2012-04-24 04:26:13 +02:00
|
|
|
|
* Copyright © 2010,2012 Google, Inc.
|
2009-05-18 02:28:01 +02:00
|
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-05-18 02:28:01 +02: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-09-22 22:46:18 +02:00
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
2009-05-18 02:28:01 +02:00
|
|
|
|
*/
|
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
|
#ifndef HB_OT_LAYOUT_COMMON_HH
|
|
|
|
|
#define HB_OT_LAYOUT_COMMON_HH
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
|
#include "hb.hh"
|
|
|
|
|
#include "hb-ot-layout.hh"
|
|
|
|
|
#include "hb-open-type.hh"
|
|
|
|
|
#include "hb-set.hh"
|
2019-07-02 03:52:57 +02:00
|
|
|
|
#include "hb-bimap.hh"
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
|
|
|
|
|
2015-11-03 00:43:08 +01:00
|
|
|
|
#ifndef HB_MAX_NESTING_LEVEL
|
|
|
|
|
#define HB_MAX_NESTING_LEVEL 6
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef HB_MAX_CONTEXT_LENGTH
|
|
|
|
|
#define HB_MAX_CONTEXT_LENGTH 64
|
|
|
|
|
#endif
|
2018-07-24 00:37:18 +02:00
|
|
|
|
#ifndef HB_CLOSURE_MAX_STAGES
|
|
|
|
|
/*
|
|
|
|
|
* The maximum number of times a lookup can be applied during shaping.
|
|
|
|
|
* Used to limit the number of iterations of the closure algorithm.
|
2018-07-31 02:03:06 +02:00
|
|
|
|
* This must be larger than the number of times add_pause() is
|
|
|
|
|
* called in a collect_features call of any shaper.
|
2018-07-24 00:37:18 +02:00
|
|
|
|
*/
|
2018-07-31 02:03:06 +02:00
|
|
|
|
#define HB_CLOSURE_MAX_STAGES 32
|
2018-07-24 00:37:18 +02:00
|
|
|
|
#endif
|
2015-11-03 00:43:08 +01:00
|
|
|
|
|
2018-10-30 19:29:58 +01:00
|
|
|
|
#ifndef HB_MAX_SCRIPTS
|
|
|
|
|
#define HB_MAX_SCRIPTS 500
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HB_MAX_LANGSYS
|
|
|
|
|
#define HB_MAX_LANGSYS 2000
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-29 00:15:55 +01:00
|
|
|
|
#ifndef HB_MAX_FEATURES
|
|
|
|
|
#define HB_MAX_FEATURES 750
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-27 21:25:01 +01:00
|
|
|
|
#ifndef HB_MAX_FEATURE_INDICES
|
2020-02-29 00:15:55 +01:00
|
|
|
|
#define HB_MAX_FEATURE_INDICES 1500
|
2020-02-27 21:25:01 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2021-12-02 05:20:12 +01:00
|
|
|
|
#ifndef HB_MAX_LOOKUP_VISIT_COUNT
|
|
|
|
|
#define HB_MAX_LOOKUP_VISIT_COUNT 35000
|
2020-03-12 11:02:36 +01:00
|
|
|
|
#endif
|
2020-02-27 21:25:01 +01:00
|
|
|
|
|
2015-11-03 00:43:08 +01:00
|
|
|
|
|
2012-08-28 23:57:49 +02:00
|
|
|
|
namespace OT {
|
|
|
|
|
|
|
|
|
|
|
2012-07-29 00:03:20 +02:00
|
|
|
|
#define NOT_COVERED ((unsigned int) -1)
|
2009-08-15 00:42:42 +02:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
|
|
|
|
template<typename Iterator>
|
|
|
|
|
static inline void Coverage_serialize (hb_serialize_context_t *c,
|
|
|
|
|
Iterator it);
|
|
|
|
|
|
|
|
|
|
template<typename Iterator>
|
|
|
|
|
static inline void ClassDef_serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
Iterator it);
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
|
|
|
|
static void ClassDef_remap_and_serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
const hb_map_t &gid_klass_map,
|
2021-09-19 22:30:12 +02:00
|
|
|
|
hb_sorted_vector_t<HBGlyphID16> &glyphs,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
const hb_set_t &klasses,
|
2021-04-16 01:52:11 +02:00
|
|
|
|
bool use_class_zero,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
hb_map_t *klass_map /*INOUT*/);
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
|
|
|
|
|
struct hb_prune_langsys_context_t
|
|
|
|
|
{
|
|
|
|
|
hb_prune_langsys_context_t (const void *table_,
|
2021-11-19 19:49:23 +01:00
|
|
|
|
hb_hashmap_t<unsigned, hb_set_t *> *script_langsys_map_,
|
2021-01-29 00:21:26 +01:00
|
|
|
|
const hb_map_t *duplicate_feature_map_,
|
|
|
|
|
hb_set_t *new_collected_feature_indexes_)
|
|
|
|
|
:table (table_),
|
|
|
|
|
script_langsys_map (script_langsys_map_),
|
|
|
|
|
duplicate_feature_map (duplicate_feature_map_),
|
|
|
|
|
new_feature_indexes (new_collected_feature_indexes_),
|
|
|
|
|
script_count (0),langsys_count (0) {}
|
|
|
|
|
|
|
|
|
|
bool visitedScript (const void *s)
|
|
|
|
|
{
|
|
|
|
|
if (script_count++ > HB_MAX_SCRIPTS)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return visited (s, visited_script);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool visitedLangsys (const void *l)
|
|
|
|
|
{
|
|
|
|
|
if (langsys_count++ > HB_MAX_LANGSYS)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return visited (l, visited_langsys);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
template <typename T>
|
|
|
|
|
bool visited (const T *p, hb_set_t &visited_set)
|
|
|
|
|
{
|
|
|
|
|
hb_codepoint_t delta = (hb_codepoint_t) ((uintptr_t) p - (uintptr_t) table);
|
|
|
|
|
if (visited_set.has (delta))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
visited_set.add (delta);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
const void *table;
|
2021-11-19 19:49:23 +01:00
|
|
|
|
hb_hashmap_t<unsigned, hb_set_t *> *script_langsys_map;
|
2021-01-29 00:21:26 +01:00
|
|
|
|
const hb_map_t *duplicate_feature_map;
|
|
|
|
|
hb_set_t *new_feature_indexes;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
hb_set_t visited_script;
|
|
|
|
|
hb_set_t visited_langsys;
|
|
|
|
|
unsigned script_count;
|
|
|
|
|
unsigned langsys_count;
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
struct hb_subset_layout_context_t :
|
|
|
|
|
hb_dispatch_context_t<hb_subset_layout_context_t, hb_empty_t, HB_DEBUG_SUBSET>
|
|
|
|
|
{
|
|
|
|
|
const char *get_name () { return "SUBSET_LAYOUT"; }
|
|
|
|
|
static return_t default_return_value () { return hb_empty_t (); }
|
|
|
|
|
|
|
|
|
|
bool visitScript ()
|
|
|
|
|
{
|
|
|
|
|
return script_count++ < HB_MAX_SCRIPTS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool visitLangSys ()
|
|
|
|
|
{
|
|
|
|
|
return langsys_count++ < HB_MAX_LANGSYS;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-29 00:15:55 +01:00
|
|
|
|
bool visitFeatureIndex (int count)
|
|
|
|
|
{
|
|
|
|
|
feature_index_count += count;
|
|
|
|
|
return feature_index_count < HB_MAX_FEATURE_INDICES;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-01 02:46:19 +02:00
|
|
|
|
bool visitLookupIndex()
|
|
|
|
|
{
|
|
|
|
|
lookup_index_count++;
|
2021-12-02 05:20:12 +01:00
|
|
|
|
return lookup_index_count < HB_MAX_LOOKUP_VISIT_COUNT;
|
2020-04-01 02:46:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
hb_subset_context_t *subset_context;
|
|
|
|
|
const hb_tag_t table_tag;
|
|
|
|
|
const hb_map_t *lookup_index_map;
|
2021-11-19 19:49:23 +01:00
|
|
|
|
const hb_hashmap_t<unsigned, hb_set_t *> *script_langsys_map;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
const hb_map_t *feature_index_map;
|
2021-01-29 00:21:26 +01:00
|
|
|
|
unsigned cur_script_index;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
|
|
|
|
|
hb_subset_layout_context_t (hb_subset_context_t *c_,
|
|
|
|
|
hb_tag_t tag_,
|
|
|
|
|
hb_map_t *lookup_map_,
|
2021-11-19 19:49:23 +01:00
|
|
|
|
hb_hashmap_t<unsigned, hb_set_t *> *script_langsys_map_,
|
2021-01-29 00:21:26 +01:00
|
|
|
|
hb_map_t *feature_index_map_) :
|
2019-11-01 18:21:36 +01:00
|
|
|
|
subset_context (c_),
|
|
|
|
|
table_tag (tag_),
|
|
|
|
|
lookup_index_map (lookup_map_),
|
2021-01-29 00:21:26 +01:00
|
|
|
|
script_langsys_map (script_langsys_map_),
|
|
|
|
|
feature_index_map (feature_index_map_),
|
|
|
|
|
cur_script_index (0xFFFFu),
|
2019-11-01 18:21:36 +01:00
|
|
|
|
script_count (0),
|
2020-02-29 00:15:55 +01:00
|
|
|
|
langsys_count (0),
|
2020-04-20 11:42:45 +02:00
|
|
|
|
feature_index_count (0),
|
|
|
|
|
lookup_index_count (0)
|
2020-02-29 00:15:55 +01:00
|
|
|
|
{}
|
2019-11-01 18:21:36 +01:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
unsigned script_count;
|
|
|
|
|
unsigned langsys_count;
|
2020-02-29 00:15:55 +01:00
|
|
|
|
unsigned feature_index_count;
|
2020-04-01 02:46:19 +02:00
|
|
|
|
unsigned lookup_index_count;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
};
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
struct hb_collect_variation_indices_context_t :
|
2020-06-19 01:58:01 +02:00
|
|
|
|
hb_dispatch_context_t<hb_collect_variation_indices_context_t>
|
2020-02-26 22:11:42 +01:00
|
|
|
|
{
|
|
|
|
|
template <typename T>
|
|
|
|
|
return_t dispatch (const T &obj) { obj.collect_variation_indices (this); return hb_empty_t (); }
|
|
|
|
|
static return_t default_return_value () { return hb_empty_t (); }
|
|
|
|
|
|
|
|
|
|
hb_set_t *layout_variation_indices;
|
|
|
|
|
const hb_set_t *glyph_set;
|
|
|
|
|
const hb_map_t *gpos_lookups;
|
|
|
|
|
|
|
|
|
|
hb_collect_variation_indices_context_t (hb_set_t *layout_variation_indices_,
|
|
|
|
|
const hb_set_t *glyph_set_,
|
|
|
|
|
const hb_map_t *gpos_lookups_) :
|
|
|
|
|
layout_variation_indices (layout_variation_indices_),
|
|
|
|
|
glyph_set (glyph_set_),
|
2020-06-19 02:09:39 +02:00
|
|
|
|
gpos_lookups (gpos_lookups_) {}
|
2020-02-26 22:11:42 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-07 23:02:31 +02:00
|
|
|
|
template<typename OutputArray>
|
|
|
|
|
struct subset_offset_array_t
|
|
|
|
|
{
|
2020-03-08 21:09:24 +01:00
|
|
|
|
subset_offset_array_t (hb_subset_context_t *subset_context_,
|
|
|
|
|
OutputArray& out_,
|
|
|
|
|
const void *base_) : subset_context (subset_context_),
|
|
|
|
|
out (out_), base (base_) {}
|
2019-10-07 23:02:31 +02:00
|
|
|
|
|
|
|
|
|
template <typename T>
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool operator () (T&& offset)
|
2019-10-07 23:02:31 +02:00
|
|
|
|
{
|
2021-09-22 23:15:55 +02:00
|
|
|
|
auto snap = subset_context->serializer->snapshot ();
|
2020-03-08 21:09:24 +01:00
|
|
|
|
auto *o = out.serialize_append (subset_context->serializer);
|
2019-10-07 23:02:31 +02:00
|
|
|
|
if (unlikely (!o)) return false;
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool ret = o->serialize_subset (subset_context, offset, base);
|
2019-10-07 23:02:31 +02:00
|
|
|
|
if (!ret)
|
|
|
|
|
{
|
2020-03-08 21:09:24 +01:00
|
|
|
|
out.pop ();
|
|
|
|
|
subset_context->serializer->revert (snap);
|
2019-10-07 23:02:31 +02:00
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2020-03-08 21:09:24 +01:00
|
|
|
|
hb_subset_context_t *subset_context;
|
|
|
|
|
OutputArray &out;
|
|
|
|
|
const void *base;
|
2019-10-07 23:02:31 +02:00
|
|
|
|
};
|
|
|
|
|
|
2020-01-19 01:35:52 +01:00
|
|
|
|
|
|
|
|
|
template<typename OutputArray, typename Arg>
|
|
|
|
|
struct subset_offset_array_arg_t
|
|
|
|
|
{
|
2020-03-08 21:09:24 +01:00
|
|
|
|
subset_offset_array_arg_t (hb_subset_context_t *subset_context_,
|
|
|
|
|
OutputArray& out_,
|
|
|
|
|
const void *base_,
|
|
|
|
|
Arg &&arg_) : subset_context (subset_context_), out (out_),
|
|
|
|
|
base (base_), arg (arg_) {}
|
2020-01-19 01:35:52 +01:00
|
|
|
|
|
|
|
|
|
template <typename T>
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool operator () (T&& offset)
|
2020-01-19 01:35:52 +01:00
|
|
|
|
{
|
2021-09-22 23:15:55 +02:00
|
|
|
|
auto snap = subset_context->serializer->snapshot ();
|
2020-03-08 21:09:24 +01:00
|
|
|
|
auto *o = out.serialize_append (subset_context->serializer);
|
2020-01-19 01:35:52 +01:00
|
|
|
|
if (unlikely (!o)) return false;
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool ret = o->serialize_subset (subset_context, offset, base, arg);
|
2020-01-19 01:35:52 +01:00
|
|
|
|
if (!ret)
|
|
|
|
|
{
|
2020-03-08 21:09:24 +01:00
|
|
|
|
out.pop ();
|
|
|
|
|
subset_context->serializer->revert (snap);
|
2020-01-19 01:35:52 +01:00
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2020-03-08 21:09:24 +01:00
|
|
|
|
hb_subset_context_t *subset_context;
|
|
|
|
|
OutputArray &out;
|
|
|
|
|
const void *base;
|
|
|
|
|
Arg &&arg;
|
2020-01-19 01:35:52 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-07 23:02:31 +02:00
|
|
|
|
/*
|
|
|
|
|
* Helper to subset an array of offsets. Subsets the thing pointed to by each offset
|
|
|
|
|
* and discards the offset in the array if the subset operation results in an empty
|
|
|
|
|
* thing.
|
|
|
|
|
*/
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
template<typename OutputArray>
|
|
|
|
|
subset_offset_array_t<OutputArray>
|
2020-03-08 21:09:24 +01:00
|
|
|
|
operator () (hb_subset_context_t *subset_context, OutputArray& out,
|
|
|
|
|
const void *base) const
|
|
|
|
|
{ return subset_offset_array_t<OutputArray> (subset_context, out, base); }
|
2020-01-19 01:35:52 +01:00
|
|
|
|
|
|
|
|
|
/* Variant with one extra argument passed to serialize_subset */
|
|
|
|
|
template<typename OutputArray, typename Arg>
|
|
|
|
|
subset_offset_array_arg_t<OutputArray, Arg>
|
2020-03-08 21:09:24 +01:00
|
|
|
|
operator () (hb_subset_context_t *subset_context, OutputArray& out,
|
|
|
|
|
const void *base, Arg &&arg) const
|
|
|
|
|
{ return subset_offset_array_arg_t<OutputArray, Arg> (subset_context, out, base, arg); }
|
2019-10-07 23:02:31 +02:00
|
|
|
|
}
|
|
|
|
|
HB_FUNCOBJ (subset_offset_array);
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
template<typename OutputArray>
|
|
|
|
|
struct subset_record_array_t
|
|
|
|
|
{
|
2020-03-08 21:09:24 +01:00
|
|
|
|
subset_record_array_t (hb_subset_layout_context_t *c_, OutputArray* out_,
|
|
|
|
|
const void *base_) : subset_layout_context (c_),
|
|
|
|
|
out (out_), base (base_) {}
|
2019-11-01 18:21:36 +01:00
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
void
|
2020-03-08 21:09:24 +01:00
|
|
|
|
operator () (T&& record)
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
2020-03-08 21:09:24 +01:00
|
|
|
|
auto snap = subset_layout_context->subset_context->serializer->snapshot ();
|
|
|
|
|
bool ret = record.subset (subset_layout_context, base);
|
|
|
|
|
if (!ret) subset_layout_context->subset_context->serializer->revert (snap);
|
|
|
|
|
else out->len++;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2020-03-08 21:09:24 +01:00
|
|
|
|
hb_subset_layout_context_t *subset_layout_context;
|
|
|
|
|
OutputArray *out;
|
|
|
|
|
const void *base;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Helper to subset a RecordList/record array. Subsets each Record in the array and
|
|
|
|
|
* discards the record if the subset operation returns false.
|
|
|
|
|
*/
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
template<typename OutputArray>
|
|
|
|
|
subset_record_array_t<OutputArray>
|
2020-03-08 21:09:24 +01:00
|
|
|
|
operator () (hb_subset_layout_context_t *c, OutputArray* out,
|
|
|
|
|
const void *base) const
|
|
|
|
|
{ return subset_record_array_t<OutputArray> (c, out, base); }
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
HB_FUNCOBJ (subset_record_array);
|
|
|
|
|
|
2021-09-20 23:42:51 +02:00
|
|
|
|
|
|
|
|
|
template<typename OutputArray>
|
|
|
|
|
struct serialize_math_record_array_t
|
|
|
|
|
{
|
|
|
|
|
serialize_math_record_array_t (hb_serialize_context_t *serialize_context_,
|
|
|
|
|
OutputArray& out_,
|
|
|
|
|
const void *base_) : serialize_context (serialize_context_),
|
|
|
|
|
out (out_), base (base_) {}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
bool operator () (T&& record)
|
|
|
|
|
{
|
|
|
|
|
if (!serialize_context->copy (record, base)) return false;
|
|
|
|
|
out.len++;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
hb_serialize_context_t *serialize_context;
|
|
|
|
|
OutputArray &out;
|
|
|
|
|
const void *base;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Helper to serialize an array of MATH records.
|
|
|
|
|
*/
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
template<typename OutputArray>
|
|
|
|
|
serialize_math_record_array_t<OutputArray>
|
|
|
|
|
operator () (hb_serialize_context_t *serialize_context, OutputArray& out,
|
|
|
|
|
const void *base) const
|
|
|
|
|
{ return serialize_math_record_array_t<OutputArray> (serialize_context, out, base); }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
HB_FUNCOBJ (serialize_math_record_array);
|
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* OpenType Layout Common Table Formats
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2009-05-18 10:37:37 +02:00
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
/*
|
|
|
|
|
* Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
|
|
|
|
|
*/
|
|
|
|
|
|
2018-09-15 19:43:33 +02:00
|
|
|
|
struct Record_sanitize_closure_t {
|
|
|
|
|
hb_tag_t tag;
|
|
|
|
|
const void *list_base;
|
|
|
|
|
};
|
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
template <typename Type>
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct Record
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
int cmp (hb_tag_t a) const { return tag.cmp (a); }
|
2010-07-08 06:40:04 +02:00
|
|
|
|
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool subset (hb_subset_layout_context_t *c, const void *base) const
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->subset_context->serializer->embed (this);
|
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool ret = out->offset.serialize_subset (c->subset_context, offset, base, c, &tag);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
return_trace (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2018-09-15 19:43:33 +02:00
|
|
|
|
const Record_sanitize_closure_t closure = {tag, base};
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (c->check_struct (this) && offset.sanitize (c, base, &closure));
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
Tag tag; /* 4-byte Tag identifier */
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset16To<Type>
|
2009-05-18 02:28:01 +02:00
|
|
|
|
offset; /* Offset from beginning of object holding
|
|
|
|
|
* the Record */
|
2010-05-10 22:38:32 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename Type>
|
2021-04-01 00:09:39 +02:00
|
|
|
|
struct RecordArrayOf : SortedArray16Of<Record<Type>>
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{
|
2021-03-31 20:49:14 +02:00
|
|
|
|
const Offset16To<Type>& get_offset (unsigned int i) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{ return (*this)[i].offset; }
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset16To<Type>& get_offset (unsigned int i)
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{ return (*this)[i].offset; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const Tag& get_tag (unsigned int i) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{ return (*this)[i].tag; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_tags (unsigned int start_offset,
|
|
|
|
|
unsigned int *record_count /* IN/OUT */,
|
|
|
|
|
hb_tag_t *record_tags /* OUT */) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{
|
2020-06-19 00:12:37 +02:00
|
|
|
|
if (record_count)
|
|
|
|
|
{
|
|
|
|
|
+ this->sub_array (start_offset, record_count)
|
|
|
|
|
| hb_map (&Record<Type>::tag)
|
|
|
|
|
| hb_sink (hb_array (record_tags, *record_count))
|
|
|
|
|
;
|
2009-11-04 22:36:14 +01:00
|
|
|
|
}
|
|
|
|
|
return this->len;
|
2009-08-08 01:46:30 +02:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool find_index (hb_tag_t tag, unsigned int *index) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{
|
2021-07-22 20:27:33 +02:00
|
|
|
|
return this->bfind (tag, index, HB_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX);
|
2009-08-08 01:46:30 +02:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename Type>
|
|
|
|
|
struct RecordListOf : RecordArrayOf<Type>
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const Type& operator [] (unsigned int i) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{ return this+this->get_offset (i); }
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2019-10-02 01:29:24 +02:00
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
+ this->iter ()
|
2020-03-07 20:02:36 +01:00
|
|
|
|
| hb_apply (subset_record_array (l, out, this))
|
2019-11-01 18:21:36 +01:00
|
|
|
|
;
|
2018-09-02 03:34:50 +02:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
2009-08-04 08:09:34 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (RecordArrayOf<Type>::sanitize (c, this));
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
struct Feature;
|
|
|
|
|
|
|
|
|
|
struct RecordListOfFeature : RecordListOf<Feature>
|
|
|
|
|
{
|
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
Minor, fix warnings raised when built with -std=c++2a
Follow up to c184180,
It was raising,
src/hb-ot-layout-common.hh:1067:63: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
src/hb-ot-layout-common.hh:1067:19: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
, this
and
src/hb-ot-layout-common.hh:2626:38: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
{ r.collect_lookups (this, lookup_indexes); })
^
src/hb-ot-layout-common.hh:2625:18: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_apply ([=] (const FeatureTableSubstitutionRecord& r)
^
, this
and
src/hb-ot-hdmx-table.hh:141:44: error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture]
return device_record->widthsZ.as_array (get_num_glyphs ()) [_];
^
src/hb-ot-hdmx-table.hh:137:17: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_map ([=] (hb_codepoint_t _)
^
, this
2020-02-06 09:42:41 +01:00
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
unsigned count = this->len;
|
|
|
|
|
+ hb_zip (*this, hb_range (count))
|
|
|
|
|
| hb_filter (l->feature_index_map, hb_second)
|
|
|
|
|
| hb_map (hb_first)
|
2020-03-07 20:02:36 +01:00
|
|
|
|
| hb_apply (subset_record_array (l, out, this))
|
2019-11-01 18:21:36 +01:00
|
|
|
|
;
|
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
};
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
struct Script;
|
|
|
|
|
struct RecordListOfScript : RecordListOf<Script>
|
|
|
|
|
{
|
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
unsigned count = this->len;
|
|
|
|
|
for (auto _ : + hb_zip (*this, hb_range (count)))
|
|
|
|
|
{
|
|
|
|
|
auto snap = c->serializer->snapshot ();
|
|
|
|
|
l->cur_script_index = _.second;
|
|
|
|
|
bool ret = _.first.subset (l, this);
|
|
|
|
|
if (!ret) c->serializer->revert (snap);
|
|
|
|
|
else out->len++;
|
|
|
|
|
}
|
2021-03-30 01:39:44 +02:00
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2010-07-08 06:40:04 +02:00
|
|
|
|
struct RangeRecord
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
int cmp (hb_codepoint_t g) const
|
2019-12-07 20:45:08 +01:00
|
|
|
|
{ return g < first ? -1 : g <= last ? 0 : +1; }
|
2010-07-08 06:40:04 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (c->check_struct (this));
|
2010-07-08 06:40:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
2019-12-07 20:45:08 +01:00
|
|
|
|
{ return glyphs->intersects (first, last); }
|
2012-04-23 22:54:58 +02:00
|
|
|
|
|
2012-08-02 03:05:57 +02:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2019-12-07 20:45:08 +01:00
|
|
|
|
{ return glyphs->add_range (first, last); }
|
2012-06-09 08:02:46 +02:00
|
|
|
|
|
2021-09-19 22:30:12 +02:00
|
|
|
|
HBGlyphID16 first; /* First GlyphID in the range */
|
|
|
|
|
HBGlyphID16 last; /* Last GlyphID in the range */
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 value; /* Value */
|
2010-07-08 06:40:04 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
|
|
|
|
};
|
2018-08-06 06:41:52 +02:00
|
|
|
|
DECLARE_NULL_NAMESPACE_BYTES (OT, RangeRecord);
|
2010-07-08 06:40:04 +02:00
|
|
|
|
|
|
|
|
|
|
2021-04-01 00:04:43 +02:00
|
|
|
|
struct IndexArray : Array16Of<Index>
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{
|
2019-10-31 23:59:02 +01:00
|
|
|
|
bool intersects (const hb_map_t *indexes) const
|
|
|
|
|
{ return hb_any (*this, indexes); }
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
template <typename Iterator,
|
|
|
|
|
hb_requires (hb_is_iterator (Iterator))>
|
|
|
|
|
void serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
hb_subset_layout_context_t *l,
|
|
|
|
|
Iterator it)
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
2020-04-01 02:46:19 +02:00
|
|
|
|
if (!it) return;
|
|
|
|
|
if (unlikely (!c->extend_min ((*this)))) return;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
|
|
|
|
|
for (const auto _ : it)
|
|
|
|
|
{
|
2020-04-01 02:46:19 +02:00
|
|
|
|
if (!l->visitLookupIndex()) break;
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
Index i;
|
|
|
|
|
i = _;
|
|
|
|
|
c->copy (i);
|
2020-04-01 02:46:19 +02:00
|
|
|
|
this->len++;
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_indexes (unsigned int start_offset,
|
|
|
|
|
unsigned int *_count /* IN/OUT */,
|
|
|
|
|
unsigned int *_indexes /* OUT */) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{
|
2020-06-19 00:12:37 +02:00
|
|
|
|
if (_count)
|
|
|
|
|
{
|
|
|
|
|
+ this->sub_array (start_offset, _count)
|
|
|
|
|
| hb_sink (hb_array (_indexes, *_count))
|
|
|
|
|
;
|
2009-11-04 22:36:14 +01:00
|
|
|
|
}
|
|
|
|
|
return this->len;
|
2009-08-08 01:46:30 +02:00
|
|
|
|
}
|
2018-07-31 03:10:43 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
void add_indexes_to (hb_set_t* output /* OUT */) const
|
2018-07-31 03:10:43 +02:00
|
|
|
|
{
|
2021-04-01 23:47:21 +02:00
|
|
|
|
output->add_array (as_array ());
|
2018-07-31 03:10:43 +02:00
|
|
|
|
}
|
2009-08-08 01:46:30 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct LangSys
|
|
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_feature_count () const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return featureIndex.len; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_tag_t get_feature_index (unsigned int i) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return featureIndex[i]; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_feature_indexes (unsigned int start_offset,
|
|
|
|
|
unsigned int *feature_count /* IN/OUT */,
|
|
|
|
|
unsigned int *feature_indexes /* OUT */) const
|
2009-11-04 22:36:14 +01:00
|
|
|
|
{ return featureIndex.get_indexes (start_offset, feature_count, feature_indexes); }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
void add_feature_indexes_to (hb_set_t *feature_indexes) const
|
2018-07-31 03:10:43 +02:00
|
|
|
|
{ featureIndex.add_indexes_to (feature_indexes); }
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
bool has_required_feature () const { return reqFeatureIndex != 0xFFFFu; }
|
|
|
|
|
unsigned int get_required_feature_index () const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2014-07-11 20:54:42 +02:00
|
|
|
|
if (reqFeatureIndex == 0xFFFFu)
|
2010-05-11 04:22:22 +02:00
|
|
|
|
return Index::NOT_FOUND_INDEX;
|
2019-05-13 23:16:33 +02:00
|
|
|
|
return reqFeatureIndex;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 19:40:39 +02:00
|
|
|
|
LangSys* copy (hb_serialize_context_t *c) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{
|
2019-05-08 19:40:39 +02:00
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
return_trace (c->embed (*this));
|
2018-09-02 03:34:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
bool compare (const LangSys& o, const hb_map_t *feature_index_map) const
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
2021-01-29 00:21:26 +01:00
|
|
|
|
if (reqFeatureIndex != o.reqFeatureIndex)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
auto iter =
|
|
|
|
|
+ hb_iter (featureIndex)
|
|
|
|
|
| hb_filter (feature_index_map)
|
|
|
|
|
| hb_map (feature_index_map)
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
auto o_iter =
|
|
|
|
|
+ hb_iter (o.featureIndex)
|
|
|
|
|
| hb_filter (feature_index_map)
|
|
|
|
|
| hb_map (feature_index_map)
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
if (iter.len () != o_iter.len ())
|
2019-11-01 18:21:36 +01:00
|
|
|
|
return false;
|
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
for (const auto _ : + hb_zip (iter, o_iter))
|
2019-11-01 18:21:36 +01:00
|
|
|
|
if (_.first != _.second) return false;
|
Minor, fix warnings raised when built with -std=c++2a
Follow up to c184180,
It was raising,
src/hb-ot-layout-common.hh:1067:63: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
src/hb-ot-layout-common.hh:1067:19: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
, this
and
src/hb-ot-layout-common.hh:2626:38: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
{ r.collect_lookups (this, lookup_indexes); })
^
src/hb-ot-layout-common.hh:2625:18: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_apply ([=] (const FeatureTableSubstitutionRecord& r)
^
, this
and
src/hb-ot-hdmx-table.hh:141:44: error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture]
return device_record->widthsZ.as_array (get_num_glyphs ()) [_];
^
src/hb-ot-hdmx-table.hh:137:17: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_map ([=] (hb_codepoint_t _)
^
, this
2020-02-06 09:42:41 +01:00
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
void collect_features (hb_prune_langsys_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
if (!has_required_feature () && !get_feature_count ()) return;
|
|
|
|
|
if (c->visitedLangsys (this)) return;
|
|
|
|
|
if (has_required_feature () &&
|
|
|
|
|
c->duplicate_feature_map->has (reqFeatureIndex))
|
|
|
|
|
c->new_feature_indexes->add (get_required_feature_index ());
|
|
|
|
|
|
|
|
|
|
+ hb_iter (featureIndex)
|
|
|
|
|
| hb_filter (c->duplicate_feature_map)
|
|
|
|
|
| hb_sink (c->new_feature_indexes)
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l,
|
|
|
|
|
const Tag *tag = nullptr) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
out->reqFeatureIndex = l->feature_index_map->has (reqFeatureIndex) ? l->feature_index_map->get (reqFeatureIndex) : 0xFFFFu;
|
|
|
|
|
|
2020-02-29 00:15:55 +01:00
|
|
|
|
if (!l->visitFeatureIndex (featureIndex.len))
|
|
|
|
|
return_trace (false);
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
auto it =
|
|
|
|
|
+ hb_iter (featureIndex)
|
|
|
|
|
| hb_filter (l->feature_index_map)
|
|
|
|
|
| hb_map (l->feature_index_map)
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
bool ret = bool (it);
|
2020-04-01 02:46:19 +02:00
|
|
|
|
out->featureIndex.serialize (c->serializer, l, it);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
return_trace (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c,
|
|
|
|
|
const Record_sanitize_closure_t * = nullptr) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (c->check_struct (this) && featureIndex.sanitize (c));
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-15 06:09:03 +01:00
|
|
|
|
Offset16 lookupOrderZ; /* = Null (reserved for an offset to a
|
2009-05-18 02:28:01 +02:00
|
|
|
|
* reordering table) */
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 reqFeatureIndex;/* Index of a feature required for this
|
2009-05-18 02:28:01 +02:00
|
|
|
|
* language system--if no required features
|
2014-07-11 20:54:42 +02:00
|
|
|
|
* = 0xFFFFu */
|
2009-08-08 01:46:30 +02:00
|
|
|
|
IndexArray featureIndex; /* Array of indices into the FeatureList */
|
2010-05-10 22:38:32 +02:00
|
|
|
|
public:
|
2018-09-02 03:34:50 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY_SIZED (6, featureIndex);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
2018-08-06 06:41:52 +02:00
|
|
|
|
DECLARE_NULL_NAMESPACE_BYTES (OT, LangSys);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct Script
|
|
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_lang_sys_count () const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return langSys.len; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const Tag& get_lang_sys_tag (unsigned int i) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return langSys.get_tag (i); }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_lang_sys_tags (unsigned int start_offset,
|
|
|
|
|
unsigned int *lang_sys_count /* IN/OUT */,
|
|
|
|
|
hb_tag_t *lang_sys_tags /* OUT */) const
|
2009-11-04 22:36:14 +01:00
|
|
|
|
{ return langSys.get_tags (start_offset, lang_sys_count, lang_sys_tags); }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const LangSys& get_lang_sys (unsigned int i) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2010-05-11 04:22:22 +02:00
|
|
|
|
if (i == Index::NOT_FOUND_INDEX) return get_default_lang_sys ();
|
2009-05-18 02:28:01 +02:00
|
|
|
|
return this+langSys[i].offset;
|
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool find_lang_sys_index (hb_tag_t tag, unsigned int *index) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return langSys.find_index (tag, index); }
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
bool has_default_lang_sys () const { return defaultLangSys != 0; }
|
|
|
|
|
const LangSys& get_default_lang_sys () const { return this+defaultLangSys; }
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
void prune_langsys (hb_prune_langsys_context_t *c,
|
|
|
|
|
unsigned script_index) const
|
|
|
|
|
{
|
|
|
|
|
if (!has_default_lang_sys () && !get_lang_sys_count ()) return;
|
|
|
|
|
if (c->visitedScript (this)) return;
|
|
|
|
|
|
|
|
|
|
if (!c->script_langsys_map->has (script_index))
|
2021-03-30 01:39:44 +02:00
|
|
|
|
{
|
|
|
|
|
hb_set_t* empty_set = hb_set_create ();
|
2021-03-30 02:14:30 +02:00
|
|
|
|
if (unlikely (!c->script_langsys_map->set (script_index, empty_set)))
|
|
|
|
|
{
|
|
|
|
|
hb_set_destroy (empty_set);
|
|
|
|
|
return;
|
2021-03-30 01:39:44 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
unsigned langsys_count = get_lang_sys_count ();
|
|
|
|
|
if (has_default_lang_sys ())
|
|
|
|
|
{
|
|
|
|
|
//only collect features from non-redundant langsys
|
|
|
|
|
const LangSys& d = get_default_lang_sys ();
|
|
|
|
|
d.collect_features (c);
|
|
|
|
|
|
|
|
|
|
for (auto _ : + hb_zip (langSys, hb_range (langsys_count)))
|
|
|
|
|
{
|
|
|
|
|
const LangSys& l = this+_.first.offset;
|
|
|
|
|
if (l.compare (d, c->duplicate_feature_map)) continue;
|
|
|
|
|
|
|
|
|
|
l.collect_features (c);
|
|
|
|
|
c->script_langsys_map->get (script_index)->add (_.second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (auto _ : + hb_zip (langSys, hb_range (langsys_count)))
|
|
|
|
|
{
|
|
|
|
|
const LangSys& l = this+_.first.offset;
|
|
|
|
|
l.collect_features (c);
|
|
|
|
|
c->script_langsys_map->get (script_index)->add (_.second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l,
|
|
|
|
|
const Tag *tag) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
if (!l->visitScript ()) return_trace (false);
|
2019-10-02 02:46:27 +02:00
|
|
|
|
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
2019-10-02 01:29:24 +02:00
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool defaultLang = false;
|
|
|
|
|
if (has_default_lang_sys ())
|
2019-10-02 02:46:27 +02:00
|
|
|
|
{
|
2019-11-01 18:21:36 +01:00
|
|
|
|
c->serializer->push ();
|
|
|
|
|
const LangSys& ls = this+defaultLangSys;
|
|
|
|
|
bool ret = ls.subset (c, l);
|
|
|
|
|
if (!ret && tag && *tag != HB_TAG ('D', 'F', 'L', 'T'))
|
|
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
|
c->serializer->pop_discard ();
|
|
|
|
|
out->defaultLangSys = 0;
|
2019-10-02 02:46:27 +02:00
|
|
|
|
}
|
2019-11-01 18:21:36 +01:00
|
|
|
|
else
|
2019-10-02 02:46:27 +02:00
|
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
|
c->serializer->add_link (out->defaultLangSys, c->serializer->pop_pack ());
|
|
|
|
|
defaultLang = true;
|
2019-10-02 02:46:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-01 18:21:36 +01:00
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
const hb_set_t *active_langsys = l->script_langsys_map->get (l->cur_script_index);
|
|
|
|
|
if (active_langsys)
|
|
|
|
|
{
|
|
|
|
|
unsigned count = langSys.len;
|
|
|
|
|
+ hb_zip (langSys, hb_range (count))
|
|
|
|
|
| hb_filter (active_langsys, hb_second)
|
|
|
|
|
| hb_map (hb_first)
|
|
|
|
|
| hb_filter ([=] (const Record<LangSys>& record) {return l->visitLangSys (); })
|
|
|
|
|
| hb_apply (subset_record_array (l, &(out->langSys), this))
|
|
|
|
|
;
|
|
|
|
|
}
|
2019-11-01 18:21:36 +01:00
|
|
|
|
|
|
|
|
|
return_trace (bool (out->langSys.len) || defaultLang || l->table_tag == HB_OT_TAG_GSUB);
|
2018-09-02 03:34:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c,
|
|
|
|
|
const Record_sanitize_closure_t * = nullptr) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (defaultLangSys.sanitize (c, this) && langSys.sanitize (c, this));
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset16To<LangSys>
|
2009-05-18 02:28:01 +02:00
|
|
|
|
defaultLangSys; /* Offset to DefaultLangSys table--from
|
|
|
|
|
* beginning of Script table--may be Null */
|
2009-08-04 08:09:34 +02:00
|
|
|
|
RecordArrayOf<LangSys>
|
2009-05-18 02:28:01 +02:00
|
|
|
|
langSys; /* Array of LangSysRecords--listed
|
|
|
|
|
* alphabetically by LangSysTag */
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
2018-09-02 03:34:50 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY_SIZED (4, langSys);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
|
typedef RecordListOfScript ScriptList;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2012-12-11 20:17:01 +01:00
|
|
|
|
|
2018-04-12 11:10:45 +02:00
|
|
|
|
/* https://docs.microsoft.com/en-us/typography/opentype/spec/features_pt#size */
|
2012-11-26 13:02:31 +01:00
|
|
|
|
struct FeatureParamsSize
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-26 13:02:31 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
if (unlikely (!c->check_struct (this))) return_trace (false);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
|
|
|
|
|
/* This subtable has some "history", if you will. Some earlier versions of
|
|
|
|
|
* Adobe tools calculated the offset of the FeatureParams sutable from the
|
|
|
|
|
* beginning of the FeatureList table! Now, that is dealt with in the
|
|
|
|
|
* Feature implementation. But we still need to be able to tell junk from
|
|
|
|
|
* real data. Note: We don't check that the nameID actually exists.
|
|
|
|
|
*
|
|
|
|
|
* Read Roberts wrote on 9/15/06 on opentype-list@indx.co.uk :
|
|
|
|
|
*
|
|
|
|
|
* Yes, it is correct that a new version of the AFDKO (version 2.0) will be
|
|
|
|
|
* coming out soon, and that the makeotf program will build a font with a
|
|
|
|
|
* 'size' feature that is correct by the specification.
|
|
|
|
|
*
|
|
|
|
|
* The specification for this feature tag is in the "OpenType Layout Tag
|
|
|
|
|
* Registry". You can see a copy of this at:
|
2018-04-12 11:10:45 +02:00
|
|
|
|
* https://docs.microsoft.com/en-us/typography/opentype/spec/features_pt#tag-size
|
2012-12-18 05:21:05 +01:00
|
|
|
|
*
|
|
|
|
|
* Here is one set of rules to determine if the 'size' feature is built
|
|
|
|
|
* correctly, or as by the older versions of MakeOTF. You may be able to do
|
|
|
|
|
* better.
|
|
|
|
|
*
|
|
|
|
|
* Assume that the offset to the size feature is according to specification,
|
2018-01-31 14:44:45 +01:00
|
|
|
|
* and make the following value checks. If it fails, assume the size
|
2012-12-18 05:21:05 +01:00
|
|
|
|
* feature is calculated as versions of MakeOTF before the AFDKO 2.0 built it.
|
|
|
|
|
* If this fails, reject the 'size' feature. The older makeOTF's calculated the
|
|
|
|
|
* offset from the beginning of the FeatureList table, rather than from the
|
|
|
|
|
* beginning of the 'size' Feature table.
|
|
|
|
|
*
|
|
|
|
|
* If "design size" == 0:
|
|
|
|
|
* fails check
|
|
|
|
|
*
|
|
|
|
|
* Else if ("subfamily identifier" == 0 and
|
|
|
|
|
* "range start" == 0 and
|
|
|
|
|
* "range end" == 0 and
|
|
|
|
|
* "range start" == 0 and
|
|
|
|
|
* "menu name ID" == 0)
|
|
|
|
|
* passes check: this is the format used when there is a design size
|
|
|
|
|
* specified, but there is no recommended size range.
|
|
|
|
|
*
|
|
|
|
|
* Else if ("design size" < "range start" or
|
|
|
|
|
* "design size" > "range end" or
|
|
|
|
|
* "range end" <= "range start" or
|
|
|
|
|
* "menu name ID" < 256 or
|
|
|
|
|
* "menu name ID" > 32767 or
|
|
|
|
|
* menu name ID is not a name ID which is actually in the name table)
|
|
|
|
|
* fails test
|
|
|
|
|
* Else
|
|
|
|
|
* passes test.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!designSize)
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (false);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
else if (subfamilyID == 0 &&
|
|
|
|
|
subfamilyNameID == 0 &&
|
|
|
|
|
rangeStart == 0 &&
|
|
|
|
|
rangeEnd == 0)
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (true);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
else if (designSize < rangeStart ||
|
|
|
|
|
designSize > rangeEnd ||
|
|
|
|
|
subfamilyNameID < 256 ||
|
|
|
|
|
subfamilyNameID > 32767)
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (false);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
else
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (true);
|
2012-11-26 13:02:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
return_trace ((bool) c->serializer->embed (*this));
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 designSize; /* Represents the design size in 720/inch
|
2012-12-11 20:17:01 +01:00
|
|
|
|
* units (decipoints). The design size entry
|
|
|
|
|
* must be non-zero. When there is a design
|
|
|
|
|
* size but no recommended size range, the
|
|
|
|
|
* rest of the array will consist of zeros. */
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 subfamilyID; /* Has no independent meaning, but serves
|
2012-12-11 20:17:01 +01:00
|
|
|
|
* as an identifier that associates fonts
|
|
|
|
|
* in a subfamily. All fonts which share a
|
|
|
|
|
* Preferred or Font Family name and which
|
|
|
|
|
* differ only by size range shall have the
|
|
|
|
|
* same subfamily value, and no fonts which
|
|
|
|
|
* differ in weight or style shall have the
|
|
|
|
|
* same subfamily value. If this value is
|
|
|
|
|
* zero, the remaining fields in the array
|
|
|
|
|
* will be ignored. */
|
2018-10-12 21:52:31 +02:00
|
|
|
|
NameID subfamilyNameID;/* If the preceding value is non-zero, this
|
2012-12-11 20:17:01 +01:00
|
|
|
|
* value must be set in the range 256 - 32767
|
|
|
|
|
* (inclusive). It records the value of a
|
|
|
|
|
* field in the name table, which must
|
|
|
|
|
* contain English-language strings encoded
|
|
|
|
|
* in Windows Unicode and Macintosh Roman,
|
|
|
|
|
* and may contain additional strings
|
|
|
|
|
* localized to other scripts and languages.
|
|
|
|
|
* Each of these strings is the name an
|
|
|
|
|
* application should use, in combination
|
|
|
|
|
* with the family name, to represent the
|
|
|
|
|
* subfamily in a menu. Applications will
|
|
|
|
|
* choose the appropriate version based on
|
|
|
|
|
* their selection criteria. */
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 rangeStart; /* Large end of the recommended usage range
|
2012-12-11 20:17:01 +01:00
|
|
|
|
* (inclusive), stored in 720/inch units
|
|
|
|
|
* (decipoints). */
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 rangeEnd; /* Small end of the recommended usage range
|
2012-12-11 20:17:01 +01:00
|
|
|
|
(exclusive), stored in 720/inch units
|
|
|
|
|
* (decipoints). */
|
2012-11-26 13:02:31 +01:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (10);
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-12 11:10:45 +02:00
|
|
|
|
/* https://docs.microsoft.com/en-us/typography/opentype/spec/features_pt#ssxx */
|
2012-12-11 20:17:01 +01:00
|
|
|
|
struct FeatureParamsStylisticSet
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-12-11 20:17:01 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
/* Right now minorVersion is at zero. Which means, any table supports
|
|
|
|
|
* the uiNameID field. */
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (c->check_struct (this));
|
2012-12-11 20:17:01 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
return_trace ((bool) c->serializer->embed (*this));
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 version; /* (set to 0): This corresponds to a “minor”
|
2012-12-11 20:17:01 +01:00
|
|
|
|
* version number. Additional data may be
|
|
|
|
|
* added to the end of this Feature Parameters
|
|
|
|
|
* table in the future. */
|
|
|
|
|
|
2018-03-14 16:31:53 +01:00
|
|
|
|
NameID uiNameID; /* The 'name' table name ID that specifies a
|
2012-12-11 20:17:01 +01:00
|
|
|
|
* string (or strings, for multiple languages)
|
|
|
|
|
* for a user-interface label for this
|
|
|
|
|
* feature. The values of uiLabelNameId and
|
|
|
|
|
* sampleTextNameId are expected to be in the
|
|
|
|
|
* font-specific name ID range (256-32767),
|
|
|
|
|
* though that is not a requirement in this
|
|
|
|
|
* Feature Parameters specification. The
|
|
|
|
|
* user-interface label for the feature can
|
|
|
|
|
* be provided in multiple languages. An
|
|
|
|
|
* English string should be included as a
|
|
|
|
|
* fallback. The string should be kept to a
|
|
|
|
|
* minimal length to fit comfortably with
|
|
|
|
|
* different application interfaces. */
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-12 11:10:45 +02:00
|
|
|
|
/* https://docs.microsoft.com/en-us/typography/opentype/spec/features_ae#cv01-cv99 */
|
2012-12-11 22:01:31 +01:00
|
|
|
|
struct FeatureParamsCharacterVariants
|
|
|
|
|
{
|
2020-06-19 21:10:42 +02:00
|
|
|
|
unsigned
|
|
|
|
|
get_characters (unsigned start_offset, unsigned *char_count, hb_codepoint_t *chars) const
|
|
|
|
|
{
|
|
|
|
|
if (char_count)
|
|
|
|
|
{
|
|
|
|
|
+ characters.sub_array (start_offset, char_count)
|
|
|
|
|
| hb_sink (hb_array (chars, *char_count))
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
return characters.len;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
unsigned get_size () const
|
|
|
|
|
{ return min_size + characters.len * HBUINT24::static_size; }
|
|
|
|
|
|
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
return_trace ((bool) c->serializer->embed (*this));
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-19 20:42:42 +02:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
|
characters.sanitize (c));
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format; /* Format number is set to 0. */
|
2018-03-14 16:31:53 +01:00
|
|
|
|
NameID featUILableNameID; /* The ‘name’ table name ID that
|
2012-12-11 22:01:31 +01:00
|
|
|
|
* specifies a string (or strings,
|
|
|
|
|
* for multiple languages) for a
|
|
|
|
|
* user-interface label for this
|
2018-10-13 12:30:05 +02:00
|
|
|
|
* feature. (May be NULL.) */
|
2018-03-14 16:31:53 +01:00
|
|
|
|
NameID featUITooltipTextNameID;/* The ‘name’ table name ID that
|
2012-12-11 22:01:31 +01:00
|
|
|
|
* specifies a string (or strings,
|
|
|
|
|
* for multiple languages) that an
|
|
|
|
|
* application can use for tooltip
|
|
|
|
|
* text for this feature. (May be
|
2017-10-15 12:11:08 +02:00
|
|
|
|
* nullptr.) */
|
2018-03-14 16:31:53 +01:00
|
|
|
|
NameID sampleTextNameID; /* The ‘name’ table name ID that
|
2012-12-11 22:01:31 +01:00
|
|
|
|
* specifies sample text that
|
|
|
|
|
* illustrates the effect of this
|
2018-10-13 12:30:05 +02:00
|
|
|
|
* feature. (May be NULL.) */
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 numNamedParameters; /* Number of named parameters. (May
|
2012-12-11 22:01:31 +01:00
|
|
|
|
* be zero.) */
|
2018-03-14 16:31:53 +01:00
|
|
|
|
NameID firstParamUILabelNameID;/* The first ‘name’ table name ID
|
2012-12-11 22:01:31 +01:00
|
|
|
|
* used to specify strings for
|
|
|
|
|
* user-interface labels for the
|
|
|
|
|
* feature parameters. (Must be zero
|
|
|
|
|
* if numParameters is zero.) */
|
2021-04-01 00:04:43 +02:00
|
|
|
|
Array16Of<HBUINT24>
|
2012-12-11 22:01:31 +01:00
|
|
|
|
characters; /* Array of the Unicode Scalar Value
|
|
|
|
|
* of the characters for which this
|
|
|
|
|
* feature provides glyph variants.
|
|
|
|
|
* (May be zero.) */
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_ARRAY (14, characters);
|
|
|
|
|
};
|
|
|
|
|
|
2012-11-26 13:02:31 +01:00
|
|
|
|
struct FeatureParams
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c, hb_tag_t tag) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2019-06-20 05:12:25 +02:00
|
|
|
|
#ifdef HB_NO_LAYOUT_FEATURE_PARAMS
|
|
|
|
|
return true;
|
|
|
|
|
#endif
|
2012-11-26 13:02:31 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
if (tag == HB_TAG ('s','i','z','e'))
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (u.size.sanitize (c));
|
2014-07-11 20:54:42 +02:00
|
|
|
|
if ((tag & 0xFFFF0000u) == HB_TAG ('s','s','\0','\0')) /* ssXX */
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (u.stylisticSet.sanitize (c));
|
2014-07-11 20:54:42 +02:00
|
|
|
|
if ((tag & 0xFFFF0000u) == HB_TAG ('c','v','\0','\0')) /* cvXX */
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (u.characterVariants.sanitize (c));
|
|
|
|
|
return_trace (true);
|
2012-11-26 13:02:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c, const Tag* tag) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
if (!tag) return_trace (false);
|
|
|
|
|
if (*tag == HB_TAG ('s','i','z','e'))
|
|
|
|
|
return_trace (u.size.subset (c));
|
|
|
|
|
if ((*tag & 0xFFFF0000u) == HB_TAG ('s','s','\0','\0')) /* ssXX */
|
|
|
|
|
return_trace (u.stylisticSet.subset (c));
|
|
|
|
|
if ((*tag & 0xFFFF0000u) == HB_TAG ('c','v','\0','\0')) /* cvXX */
|
|
|
|
|
return_trace (u.characterVariants.subset (c));
|
|
|
|
|
return_trace (false);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-20 05:12:25 +02:00
|
|
|
|
#ifndef HB_NO_LAYOUT_FEATURE_PARAMS
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const FeatureParamsSize& get_size_params (hb_tag_t tag) const
|
2012-12-18 05:21:05 +01:00
|
|
|
|
{
|
|
|
|
|
if (tag == HB_TAG ('s','i','z','e'))
|
|
|
|
|
return u.size;
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return Null (FeatureParamsSize);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const FeatureParamsStylisticSet& get_stylistic_set_params (hb_tag_t tag) const
|
2018-10-12 01:30:59 +02:00
|
|
|
|
{
|
|
|
|
|
if ((tag & 0xFFFF0000u) == HB_TAG ('s','s','\0','\0')) /* ssXX */
|
|
|
|
|
return u.stylisticSet;
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return Null (FeatureParamsStylisticSet);
|
2018-10-12 01:30:59 +02:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const FeatureParamsCharacterVariants& get_character_variants_params (hb_tag_t tag) const
|
2018-10-12 01:30:59 +02:00
|
|
|
|
{
|
|
|
|
|
if ((tag & 0xFFFF0000u) == HB_TAG ('c','v','\0','\0')) /* cvXX */
|
|
|
|
|
return u.characterVariants;
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return Null (FeatureParamsCharacterVariants);
|
2018-10-12 01:30:59 +02:00
|
|
|
|
}
|
2019-06-20 05:12:25 +02:00
|
|
|
|
#endif
|
2018-10-12 01:30:59 +02:00
|
|
|
|
|
2012-12-18 05:21:05 +01:00
|
|
|
|
private:
|
2012-11-26 13:02:31 +01:00
|
|
|
|
union {
|
2012-12-11 22:01:31 +01:00
|
|
|
|
FeatureParamsSize size;
|
|
|
|
|
FeatureParamsStylisticSet stylisticSet;
|
|
|
|
|
FeatureParamsCharacterVariants characterVariants;
|
2012-11-26 13:02:31 +01:00
|
|
|
|
} u;
|
2018-09-15 19:43:33 +02:00
|
|
|
|
public:
|
2019-09-06 22:41:12 +02:00
|
|
|
|
DEFINE_SIZE_MIN (0);
|
2012-11-26 13:02:31 +01:00
|
|
|
|
};
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct Feature
|
|
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_lookup_count () const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return lookupIndex.len; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_tag_t get_lookup_index (unsigned int i) const
|
2009-08-08 01:46:30 +02:00
|
|
|
|
{ return lookupIndex[i]; }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_lookup_indexes (unsigned int start_index,
|
|
|
|
|
unsigned int *lookup_count /* IN/OUT */,
|
|
|
|
|
unsigned int *lookup_tags /* OUT */) const
|
2009-11-04 22:36:14 +01:00
|
|
|
|
{ return lookupIndex.get_indexes (start_index, lookup_count, lookup_tags); }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
void add_lookup_indexes_to (hb_set_t *lookup_indexes) const
|
2018-10-26 07:25:29 +02:00
|
|
|
|
{ lookupIndex.add_indexes_to (lookup_indexes); }
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
const FeatureParams &get_feature_params () const
|
2012-11-26 13:02:31 +01:00
|
|
|
|
{ return this+featureParams; }
|
|
|
|
|
|
2019-10-31 23:59:02 +01:00
|
|
|
|
bool intersects_lookup_indexes (const hb_map_t *lookup_indexes) const
|
|
|
|
|
{ return lookupIndex.intersects (lookup_indexes); }
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l,
|
|
|
|
|
const Tag *tag = nullptr) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
Minor, fix warnings raised when built with -std=c++2a
Follow up to c184180,
It was raising,
src/hb-ot-layout-common.hh:1067:63: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
src/hb-ot-layout-common.hh:1067:19: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
, this
and
src/hb-ot-layout-common.hh:2626:38: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
{ r.collect_lookups (this, lookup_indexes); })
^
src/hb-ot-layout-common.hh:2625:18: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_apply ([=] (const FeatureTableSubstitutionRecord& r)
^
, this
and
src/hb-ot-hdmx-table.hh:141:44: error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture]
return device_record->widthsZ.as_array (get_num_glyphs ()) [_];
^
src/hb-ot-hdmx-table.hh:137:17: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_map ([=] (hb_codepoint_t _)
^
, this
2020-02-06 09:42:41 +01:00
|
|
|
|
|
2021-03-25 20:57:12 +01:00
|
|
|
|
out->featureParams.serialize_subset (c, featureParams, this, tag);
|
Minor, fix warnings raised when built with -std=c++2a
Follow up to c184180,
It was raising,
src/hb-ot-layout-common.hh:1067:63: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
src/hb-ot-layout-common.hh:1067:19: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
, this
and
src/hb-ot-layout-common.hh:2626:38: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
{ r.collect_lookups (this, lookup_indexes); })
^
src/hb-ot-layout-common.hh:2625:18: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_apply ([=] (const FeatureTableSubstitutionRecord& r)
^
, this
and
src/hb-ot-hdmx-table.hh:141:44: error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture]
return device_record->widthsZ.as_array (get_num_glyphs ()) [_];
^
src/hb-ot-hdmx-table.hh:137:17: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_map ([=] (hb_codepoint_t _)
^
, this
2020-02-06 09:42:41 +01:00
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
auto it =
|
|
|
|
|
+ hb_iter (lookupIndex)
|
|
|
|
|
| hb_filter (l->lookup_index_map)
|
|
|
|
|
| hb_map (l->lookup_index_map)
|
|
|
|
|
;
|
|
|
|
|
|
2020-04-01 02:46:19 +02:00
|
|
|
|
out->lookupIndex.serialize (c->serializer, l, it);
|
2021-03-25 20:57:12 +01:00
|
|
|
|
// The decision to keep or drop this feature is already made before we get here
|
|
|
|
|
// so always retain it.
|
|
|
|
|
return_trace (true);
|
2018-09-02 03:34:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c,
|
|
|
|
|
const Record_sanitize_closure_t *closure = nullptr) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2012-12-17 19:55:36 +01:00
|
|
|
|
if (unlikely (!(c->check_struct (this) && lookupIndex.sanitize (c))))
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (false);
|
2012-12-17 19:55:36 +01:00
|
|
|
|
|
2012-12-18 05:21:05 +01:00
|
|
|
|
/* Some earlier versions of Adobe tools calculated the offset of the
|
|
|
|
|
* FeatureParams subtable from the beginning of the FeatureList table!
|
|
|
|
|
*
|
|
|
|
|
* If sanitizing "failed" for the FeatureParams subtable, try it with the
|
|
|
|
|
* alternative location. We would know sanitize "failed" if old value
|
|
|
|
|
* of the offset was non-zero, but it's zeroed now.
|
2012-12-18 05:29:15 +01:00
|
|
|
|
*
|
|
|
|
|
* Only do this for the 'size' feature, since at the time of the faulty
|
|
|
|
|
* Adobe tools, only the 'size' feature had FeatureParams defined.
|
2012-12-18 05:21:05 +01:00
|
|
|
|
*/
|
|
|
|
|
|
2019-04-15 22:00:20 +02:00
|
|
|
|
if (likely (featureParams.is_null ()))
|
|
|
|
|
return_trace (true);
|
|
|
|
|
|
|
|
|
|
unsigned int orig_offset = featureParams;
|
2012-12-18 05:21:05 +01:00
|
|
|
|
if (unlikely (!featureParams.sanitize (c, this, closure ? closure->tag : HB_TAG_NONE)))
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (false);
|
2012-12-18 05:21:05 +01:00
|
|
|
|
|
2012-12-18 05:29:15 +01:00
|
|
|
|
if (featureParams == 0 && closure &&
|
|
|
|
|
closure->tag == HB_TAG ('s','i','z','e') &&
|
|
|
|
|
closure->list_base && closure->list_base < this)
|
2012-12-17 19:55:36 +01:00
|
|
|
|
{
|
2019-04-15 22:00:20 +02:00
|
|
|
|
unsigned int new_offset_int = orig_offset -
|
2014-06-03 23:57:00 +02:00
|
|
|
|
(((char *) this) - ((char *) closure->list_base));
|
2012-12-18 05:21:05 +01:00
|
|
|
|
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset16To<FeatureParams> new_offset;
|
2019-04-15 22:00:20 +02:00
|
|
|
|
/* Check that it would not overflow. */
|
2019-03-30 04:17:46 +01:00
|
|
|
|
new_offset = new_offset_int;
|
2012-12-18 05:21:05 +01:00
|
|
|
|
if (new_offset == new_offset_int &&
|
2019-04-15 22:00:20 +02:00
|
|
|
|
c->try_set (&featureParams, new_offset_int) &&
|
2012-12-18 05:21:05 +01:00
|
|
|
|
!featureParams.sanitize (c, this, closure ? closure->tag : HB_TAG_NONE))
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (false);
|
2012-12-17 19:55:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (true);
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset16To<FeatureParams>
|
2012-11-26 13:02:31 +01:00
|
|
|
|
featureParams; /* Offset to Feature Parameters table (if one
|
2009-05-18 02:28:01 +02:00
|
|
|
|
* has been defined for the feature), relative
|
|
|
|
|
* to the beginning of the Feature Table; = Null
|
|
|
|
|
* if not required */
|
2009-08-08 01:46:30 +02:00
|
|
|
|
IndexArray lookupIndex; /* Array of LookupList indices */
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
2018-09-02 03:34:50 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY_SIZED (4, lookupIndex);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef RecordListOf<Feature> FeatureList;
|
|
|
|
|
|
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
|
struct LookupFlag : HBUINT16
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2012-04-12 19:23:59 +02:00
|
|
|
|
enum Flags {
|
2009-05-19 00:44:54 +02:00
|
|
|
|
RightToLeft = 0x0001u,
|
|
|
|
|
IgnoreBaseGlyphs = 0x0002u,
|
|
|
|
|
IgnoreLigatures = 0x0004u,
|
|
|
|
|
IgnoreMarks = 0x0008u,
|
2009-10-29 08:00:44 +01:00
|
|
|
|
IgnoreFlags = 0x000Eu,
|
2009-05-26 19:04:59 +02:00
|
|
|
|
UseMarkFilteringSet = 0x0010u,
|
|
|
|
|
Reserved = 0x00E0u,
|
2009-08-18 22:41:59 +02:00
|
|
|
|
MarkAttachmentType = 0xFF00u
|
2009-05-19 00:44:54 +02:00
|
|
|
|
};
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (2);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2015-11-05 01:25:57 +01:00
|
|
|
|
} /* namespace OT */
|
|
|
|
|
/* This has to be outside the namespace. */
|
2015-11-09 10:17:56 +01:00
|
|
|
|
HB_MARK_AS_FLAG_T (OT::LookupFlag::Flags);
|
2015-11-05 01:25:57 +01:00
|
|
|
|
namespace OT {
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct Lookup
|
|
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_subtable_count () const { return subTable.len; }
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-09-04 02:16:09 +02:00
|
|
|
|
template <typename TSubTable>
|
2021-03-31 23:31:32 +02:00
|
|
|
|
const Array16OfOffset16To<TSubTable>& get_subtables () const
|
|
|
|
|
{ return reinterpret_cast<const Array16OfOffset16To<TSubTable> &> (subTable); }
|
2018-09-04 02:16:09 +02:00
|
|
|
|
template <typename TSubTable>
|
2021-03-31 23:31:32 +02:00
|
|
|
|
Array16OfOffset16To<TSubTable>& get_subtables ()
|
|
|
|
|
{ return reinterpret_cast<Array16OfOffset16To<TSubTable> &> (subTable); }
|
2015-02-18 11:09:54 +01:00
|
|
|
|
|
2019-05-10 22:56:50 +02:00
|
|
|
|
template <typename TSubTable>
|
|
|
|
|
const TSubTable& get_subtable (unsigned int i) const
|
|
|
|
|
{ return this+get_subtables<TSubTable> ()[i]; }
|
|
|
|
|
template <typename TSubTable>
|
|
|
|
|
TSubTable& get_subtable (unsigned int i)
|
|
|
|
|
{ return this+get_subtables<TSubTable> ()[i]; }
|
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_size () const
|
2018-07-26 02:37:38 +02:00
|
|
|
|
{
|
|
|
|
|
const HBUINT16 &markFilteringSet = StructAfter<const HBUINT16> (subTable);
|
|
|
|
|
if (lookupFlag & LookupFlag::UseMarkFilteringSet)
|
|
|
|
|
return (const char *) &StructAfter<const char> (markFilteringSet) - (const char *) this;
|
|
|
|
|
return (const char *) &markFilteringSet - (const char *) this;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_type () const { return lookupType; }
|
2010-10-28 04:07:49 +02:00
|
|
|
|
|
|
|
|
|
/* lookup_props is a 32-bit integer where the lower 16-bit is LookupFlag and
|
|
|
|
|
* higher 16-bit is mark-filtering-set if the lookup uses one.
|
|
|
|
|
* Not to be confused with glyph_props which is very similar. */
|
2018-12-17 19:01:01 +01:00
|
|
|
|
uint32_t get_props () const
|
2009-05-26 19:04:59 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int flag = lookupFlag;
|
2010-05-04 04:51:19 +02:00
|
|
|
|
if (unlikely (flag & LookupFlag::UseMarkFilteringSet))
|
2009-05-26 19:04:59 +02:00
|
|
|
|
{
|
2018-01-10 03:07:30 +01:00
|
|
|
|
const HBUINT16 &markFilteringSet = StructAfter<HBUINT16> (subTable);
|
2009-05-27 01:48:16 +02:00
|
|
|
|
flag += (markFilteringSet << 16);
|
2009-05-26 19:04:59 +02:00
|
|
|
|
}
|
|
|
|
|
return flag;
|
|
|
|
|
}
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2019-05-05 19:14:17 +02:00
|
|
|
|
template <typename TSubTable, typename context_t, typename ...Ts>
|
2019-05-08 05:58:43 +02:00
|
|
|
|
typename context_t::return_t dispatch (context_t *c, Ts&&... ds) const
|
2015-02-18 11:18:46 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned int lookup_type = get_type ();
|
|
|
|
|
TRACE_DISPATCH (this, lookup_type);
|
|
|
|
|
unsigned int count = get_subtable_count ();
|
2018-12-12 15:44:30 +01:00
|
|
|
|
for (unsigned int i = 0; i < count; i++) {
|
2021-11-02 07:18:22 +01:00
|
|
|
|
typename context_t::return_t r = get_subtable<TSubTable> (i).dispatch (c, lookup_type, std::forward<Ts> (ds)...);
|
2015-02-18 11:18:46 +01:00
|
|
|
|
if (c->stop_sublookup_iteration (r))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return_trace (r);
|
2015-02-18 11:18:46 +01:00
|
|
|
|
}
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (c->default_return_value ());
|
2015-02-18 11:18:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool serialize (hb_serialize_context_t *c,
|
|
|
|
|
unsigned int lookup_type,
|
|
|
|
|
uint32_t lookup_props,
|
|
|
|
|
unsigned int num_subtables)
|
2012-09-05 02:00:44 +02:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2019-03-30 04:17:46 +01:00
|
|
|
|
lookupType = lookup_type;
|
|
|
|
|
lookupFlag = lookup_props & 0xFFFFu;
|
2015-09-29 15:57:02 +02:00
|
|
|
|
if (unlikely (!subTable.serialize (c, num_subtables))) return_trace (false);
|
2012-09-05 03:13:17 +02:00
|
|
|
|
if (lookupFlag & LookupFlag::UseMarkFilteringSet)
|
2012-09-05 02:00:44 +02:00
|
|
|
|
{
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend (this))) return_trace (false);
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 &markFilteringSet = StructAfter<HBUINT16> (subTable);
|
2019-03-30 04:17:46 +01:00
|
|
|
|
markFilteringSet = lookup_props >> 16;
|
2012-09-05 02:00:44 +02:00
|
|
|
|
}
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (true);
|
2012-09-05 02:00:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 02:33:34 +02:00
|
|
|
|
template <typename TSubTable>
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
2018-09-04 02:33:34 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2020-01-19 01:35:52 +01:00
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
out->lookupType = lookupType;
|
|
|
|
|
out->lookupFlag = lookupFlag;
|
2018-09-04 02:33:34 +02:00
|
|
|
|
|
2020-09-29 20:05:08 +02:00
|
|
|
|
const hb_set_t *glyphset = c->plan->glyphset_gsub ();
|
2020-01-19 01:35:52 +01:00
|
|
|
|
unsigned int lookup_type = get_type ();
|
|
|
|
|
+ hb_iter (get_subtables <TSubTable> ())
|
2021-03-31 20:49:14 +02:00
|
|
|
|
| hb_filter ([this, glyphset, lookup_type] (const Offset16To<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
|
2020-03-07 20:02:36 +01:00
|
|
|
|
| hb_apply (subset_offset_array (c, out->get_subtables<TSubTable> (), this, lookup_type))
|
2020-01-19 01:35:52 +01:00
|
|
|
|
;
|
2018-09-04 02:33:34 +02:00
|
|
|
|
|
2021-04-02 21:41:09 +02:00
|
|
|
|
if (lookupFlag & LookupFlag::UseMarkFilteringSet)
|
|
|
|
|
{
|
|
|
|
|
if (unlikely (!c->serializer->extend (out))) return_trace (false);
|
|
|
|
|
const HBUINT16 &markFilteringSet = StructAfter<HBUINT16> (subTable);
|
|
|
|
|
HBUINT16 &outMarkFilteringSet = StructAfter<HBUINT16> (out->subTable);
|
|
|
|
|
outMarkFilteringSet = markFilteringSet;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-30 02:11:53 +02:00
|
|
|
|
return_trace (out->subTable.len);
|
2018-09-04 02:33:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 02:16:09 +02:00
|
|
|
|
template <typename TSubTable>
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
if (!(c->check_struct (this) && subTable.sanitize (c))) return_trace (false);
|
2020-03-02 20:11:08 +01:00
|
|
|
|
|
|
|
|
|
unsigned subtables = get_subtable_count ();
|
|
|
|
|
if (unlikely (!c->visit_subtables (subtables))) return_trace (false);
|
|
|
|
|
|
2012-09-05 02:00:44 +02:00
|
|
|
|
if (lookupFlag & LookupFlag::UseMarkFilteringSet)
|
2009-08-04 08:09:34 +02:00
|
|
|
|
{
|
2018-01-10 03:07:30 +01:00
|
|
|
|
const HBUINT16 &markFilteringSet = StructAfter<HBUINT16> (subTable);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
if (!markFilteringSet.sanitize (c)) return_trace (false);
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
2018-09-04 02:16:09 +02:00
|
|
|
|
|
2019-05-10 22:56:50 +02:00
|
|
|
|
if (unlikely (!get_subtables<TSubTable> ().sanitize (c, this, get_type ())))
|
2018-12-12 15:56:47 +01:00
|
|
|
|
return_trace (false);
|
2018-09-04 02:16:09 +02:00
|
|
|
|
|
2021-11-16 23:34:07 +01:00
|
|
|
|
if (unlikely (get_type () == TSubTable::Extension && subtables && !c->get_edit_count ()))
|
2018-09-04 02:16:09 +02:00
|
|
|
|
{
|
|
|
|
|
/* The spec says all subtables of an Extension lookup should
|
|
|
|
|
* have the same type, which shall not be the Extension type
|
|
|
|
|
* itself (but we already checked for that).
|
2019-05-11 01:01:39 +02:00
|
|
|
|
* This is specially important if one has a reverse type!
|
|
|
|
|
*
|
|
|
|
|
* We only do this if sanitizer edit_count is zero. Otherwise,
|
|
|
|
|
* some of the subtables might have become insane after they
|
|
|
|
|
* were sanity-checked by the edits of subsequent subtables.
|
|
|
|
|
* https://bugs.chromium.org/p/chromium/issues/detail?id=960331
|
|
|
|
|
*/
|
2018-09-04 02:16:09 +02:00
|
|
|
|
unsigned int type = get_subtable<TSubTable> (0).u.extension.get_type ();
|
2020-03-02 20:11:08 +01:00
|
|
|
|
for (unsigned int i = 1; i < subtables; i++)
|
2018-11-15 20:40:56 +01:00
|
|
|
|
if (get_subtable<TSubTable> (i).u.extension.get_type () != type)
|
2018-09-04 02:16:09 +02:00
|
|
|
|
return_trace (false);
|
|
|
|
|
}
|
|
|
|
|
return_trace (true);
|
2009-08-04 08:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-18 11:09:54 +01:00
|
|
|
|
private:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 lookupType; /* Different enumerations for GSUB and GPOS */
|
|
|
|
|
HBUINT16 lookupFlag; /* Lookup qualifiers */
|
2021-04-01 00:04:43 +02:00
|
|
|
|
Array16Of<Offset16>
|
2009-05-26 19:04:59 +02:00
|
|
|
|
subTable; /* Array of SubTables */
|
2019-09-06 22:54:27 +02:00
|
|
|
|
/*HBUINT16 markFilteringSetX[HB_VAR_ARRAY];*//* Index (base 0) into GDEF mark glyph sets
|
2009-05-26 19:04:59 +02:00
|
|
|
|
* structure. This field is only present if bit
|
|
|
|
|
* UseMarkFilteringSet of lookup flags is set. */
|
2010-05-10 22:38:32 +02:00
|
|
|
|
public:
|
2018-11-22 05:23:49 +01:00
|
|
|
|
DEFINE_SIZE_ARRAY (6, subTable);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-03-31 23:33:22 +02:00
|
|
|
|
typedef List16OfOffset16To<Lookup> LookupList;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
template <typename TLookup>
|
2021-03-31 23:33:22 +02:00
|
|
|
|
struct LookupOffsetList : List16OfOffset16To<TLookup>
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
Minor, fix warnings raised when built with -std=c++2a
Follow up to c184180,
It was raising,
src/hb-ot-layout-common.hh:1067:63: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
src/hb-ot-layout-common.hh:1067:19: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
, this
and
src/hb-ot-layout-common.hh:2626:38: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
{ r.collect_lookups (this, lookup_indexes); })
^
src/hb-ot-layout-common.hh:2625:18: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_apply ([=] (const FeatureTableSubstitutionRecord& r)
^
, this
and
src/hb-ot-hdmx-table.hh:141:44: error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture]
return device_record->widthsZ.as_array (get_num_glyphs ()) [_];
^
src/hb-ot-hdmx-table.hh:137:17: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_map ([=] (hb_codepoint_t _)
^
, this
2020-02-06 09:42:41 +01:00
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
unsigned count = this->len;
|
|
|
|
|
+ hb_zip (*this, hb_range (count))
|
|
|
|
|
| hb_filter (l->lookup_index_map, hb_second)
|
|
|
|
|
| hb_map (hb_first)
|
2020-03-07 20:02:36 +01:00
|
|
|
|
| hb_apply (subset_offset_array (c, *out, this))
|
2019-11-01 18:21:36 +01:00
|
|
|
|
;
|
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
2021-03-31 23:33:22 +02:00
|
|
|
|
return_trace (List16OfOffset16To<TLookup>::sanitize (c, this));
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Coverage Table
|
|
|
|
|
*/
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct CoverageFormat1
|
|
|
|
|
{
|
2009-05-18 02:28:01 +02:00
|
|
|
|
friend struct Coverage;
|
|
|
|
|
|
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_coverage (hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2018-11-24 06:35:31 +01:00
|
|
|
|
unsigned int i;
|
2021-07-22 20:27:33 +02:00
|
|
|
|
glyphArray.bfind (glyph_id, &i, HB_NOT_FOUND_STORE, NOT_COVERED);
|
2012-07-29 00:03:20 +02:00
|
|
|
|
return i;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 10:02:38 +01:00
|
|
|
|
template <typename Iterator,
|
2019-05-09 22:04:11 +02:00
|
|
|
|
hb_requires (hb_is_sorted_source_of (Iterator, hb_codepoint_t))>
|
2019-01-09 10:02:38 +01:00
|
|
|
|
bool serialize (hb_serialize_context_t *c, Iterator glyphs)
|
2012-08-30 03:08:59 +02:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SERIALIZE (this);
|
2018-12-18 22:49:08 +01:00
|
|
|
|
return_trace (glyphArray.serialize (c, glyphs));
|
2012-08-30 03:08:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (glyphArray.sanitize (c));
|
2009-08-04 06:58:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
|
|
|
|
/* TODO Speed up, using hb_set_next() and bsearch()? */
|
2021-04-01 23:47:21 +02:00
|
|
|
|
for (const auto& g : glyphArray.as_array ())
|
|
|
|
|
if (glyphs->has (g))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2018-09-03 04:47:50 +02:00
|
|
|
|
return false;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects_coverage (const hb_set_t *glyphs, unsigned int index) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{ return glyphs->has (glyphArray[index]); }
|
2012-04-23 22:54:58 +02:00
|
|
|
|
|
2021-01-05 23:54:40 +01:00
|
|
|
|
void intersected_coverage_glyphs (const hb_set_t *glyphs, hb_set_t *intersect_glyphs) const
|
|
|
|
|
{
|
|
|
|
|
unsigned count = glyphArray.len;
|
|
|
|
|
for (unsigned i = 0; i < count; i++)
|
|
|
|
|
if (glyphs->has (glyphArray[i]))
|
|
|
|
|
intersect_glyphs->add (glyphArray[i]);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:05:57 +02:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2021-04-01 23:47:21 +02:00
|
|
|
|
{ return glyphs->add_sorted_array (glyphArray.as_array ()); }
|
2012-06-09 08:02:46 +02:00
|
|
|
|
|
2012-11-12 20:16:57 +01:00
|
|
|
|
public:
|
|
|
|
|
/* Older compilers need this to be public. */
|
2018-12-29 03:22:26 +01:00
|
|
|
|
struct iter_t
|
2018-12-27 04:05:25 +01:00
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
void init (const struct CoverageFormat1 &c_) { c = &c_; i = 0; }
|
2018-12-17 19:01:01 +01:00
|
|
|
|
void fini () {}
|
2018-12-27 04:05:25 +01:00
|
|
|
|
bool more () const { return i < c->glyphArray.len; }
|
2018-12-17 19:01:01 +01:00
|
|
|
|
void next () { i++; }
|
2018-12-27 04:05:25 +01:00
|
|
|
|
hb_codepoint_t get_glyph () const { return c->glyphArray[i]; }
|
2019-05-07 04:57:15 +02:00
|
|
|
|
bool operator != (const iter_t& o) const
|
|
|
|
|
{ return i != o.i || c != o.c; }
|
2012-04-23 19:02:14 +02:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const struct CoverageFormat1 *c;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
};
|
2012-11-12 20:16:57 +01:00
|
|
|
|
private:
|
2012-04-23 19:02:14 +02:00
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 coverageFormat; /* Format identifier--format = 1 */
|
2021-09-19 22:30:12 +02:00
|
|
|
|
SortedArray16Of<HBGlyphID16>
|
2009-05-18 02:28:01 +02:00
|
|
|
|
glyphArray; /* Array of GlyphIDs--in numerical order */
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY (4, glyphArray);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct CoverageFormat2
|
|
|
|
|
{
|
2009-05-18 02:28:01 +02:00
|
|
|
|
friend struct Coverage;
|
|
|
|
|
|
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_coverage (hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2018-11-24 06:35:31 +01:00
|
|
|
|
const RangeRecord &range = rangeRecord.bsearch (glyph_id);
|
2020-07-18 19:44:52 +02:00
|
|
|
|
return likely (range.first <= range.last)
|
|
|
|
|
? (unsigned int) range.value + (glyph_id - range.first)
|
|
|
|
|
: NOT_COVERED;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 10:02:38 +01:00
|
|
|
|
template <typename Iterator,
|
2019-05-09 22:04:11 +02:00
|
|
|
|
hb_requires (hb_is_sorted_source_of (Iterator, hb_codepoint_t))>
|
2019-01-09 10:02:38 +01:00
|
|
|
|
bool serialize (hb_serialize_context_t *c, Iterator glyphs)
|
2012-08-30 03:08:59 +02:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2012-09-02 02:48:22 +02:00
|
|
|
|
|
2018-12-27 02:28:41 +01:00
|
|
|
|
if (unlikely (!glyphs))
|
2016-04-09 08:46:55 +02:00
|
|
|
|
{
|
2019-03-30 04:17:46 +01:00
|
|
|
|
rangeRecord.len = 0;
|
2016-04-09 08:46:55 +02:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
2019-05-11 01:21:03 +02:00
|
|
|
|
|
|
|
|
|
/* TODO(iter) Write more efficiently? */
|
|
|
|
|
|
|
|
|
|
unsigned num_ranges = 0;
|
|
|
|
|
hb_codepoint_t last = (hb_codepoint_t) -2;
|
|
|
|
|
for (auto g: glyphs)
|
2018-12-13 21:57:12 +01:00
|
|
|
|
{
|
2019-05-11 01:21:03 +02:00
|
|
|
|
if (last + 1 != g)
|
2019-08-24 15:27:14 +02:00
|
|
|
|
num_ranges++;
|
2019-05-11 01:21:03 +02:00
|
|
|
|
last = g;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (unlikely (!rangeRecord.serialize (c, num_ranges))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
unsigned count = 0;
|
|
|
|
|
unsigned range = (unsigned) -1;
|
|
|
|
|
last = (hb_codepoint_t) -2;
|
|
|
|
|
for (auto g: glyphs)
|
|
|
|
|
{
|
|
|
|
|
if (last + 1 != g)
|
2018-12-13 21:57:12 +01:00
|
|
|
|
{
|
2019-08-24 15:27:14 +02:00
|
|
|
|
range++;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
rangeRecord[range].first = g;
|
2019-05-11 01:21:03 +02:00
|
|
|
|
rangeRecord[range].value = count;
|
2012-08-30 03:08:59 +02:00
|
|
|
|
}
|
2019-12-07 20:45:08 +01:00
|
|
|
|
rangeRecord[range].last = g;
|
2019-05-11 01:21:03 +02:00
|
|
|
|
last = g;
|
|
|
|
|
count++;
|
2018-12-13 21:57:12 +01:00
|
|
|
|
}
|
2019-05-11 01:21:03 +02:00
|
|
|
|
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (true);
|
2012-08-30 03:08:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (rangeRecord.sanitize (c));
|
2009-08-04 06:58:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
|
|
|
|
/* TODO Speed up, using hb_set_next() and bsearch()? */
|
2021-01-21 20:18:48 +01:00
|
|
|
|
/* TODO(iter) Rewrite as dagger. */
|
2021-04-01 23:47:21 +02:00
|
|
|
|
for (const auto& range : rangeRecord.as_array ())
|
|
|
|
|
if (range.intersects (glyphs))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2018-09-03 04:47:50 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects_coverage (const hb_set_t *glyphs, unsigned int index) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
2021-01-21 20:18:48 +01:00
|
|
|
|
/* TODO(iter) Rewrite as dagger. */
|
2021-04-01 23:47:21 +02:00
|
|
|
|
for (const auto& range : rangeRecord.as_array ())
|
|
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
|
if (range.value <= index &&
|
2019-12-07 20:45:08 +01:00
|
|
|
|
index < (unsigned int) range.value + (range.last - range.first) &&
|
2012-04-23 22:54:58 +02:00
|
|
|
|
range.intersects (glyphs))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
else if (index < range.value)
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return false;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-05 23:54:40 +01:00
|
|
|
|
void intersected_coverage_glyphs (const hb_set_t *glyphs, hb_set_t *intersect_glyphs) const
|
|
|
|
|
{
|
2021-04-01 23:47:21 +02:00
|
|
|
|
for (const auto& range : rangeRecord.as_array ())
|
2021-01-05 23:54:40 +01:00
|
|
|
|
{
|
2021-01-12 19:17:14 +01:00
|
|
|
|
if (!range.intersects (glyphs)) continue;
|
2021-01-05 23:54:40 +01:00
|
|
|
|
for (hb_codepoint_t g = range.first; g <= range.last; g++)
|
|
|
|
|
if (glyphs->has (g)) intersect_glyphs->add (g);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:05:57 +02:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2018-12-16 20:08:10 +01:00
|
|
|
|
{
|
2012-06-09 08:02:46 +02:00
|
|
|
|
unsigned int count = rangeRecord.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2020-04-23 19:55:41 +02:00
|
|
|
|
if (unlikely (!rangeRecord[i].collect_coverage (glyphs)))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return false;
|
2017-12-15 04:33:55 +01:00
|
|
|
|
return true;
|
2012-06-09 08:02:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-12 20:16:57 +01:00
|
|
|
|
public:
|
|
|
|
|
/* Older compilers need this to be public. */
|
2018-12-29 03:22:26 +01:00
|
|
|
|
struct iter_t
|
2016-12-21 22:51:28 +01:00
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
void init (const CoverageFormat2 &c_)
|
2016-12-21 22:51:28 +01:00
|
|
|
|
{
|
2012-04-23 21:28:35 +02:00
|
|
|
|
c = &c_;
|
|
|
|
|
coverage = 0;
|
|
|
|
|
i = 0;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
j = c->rangeRecord.len ? c->rangeRecord[0].first : 0;
|
|
|
|
|
if (unlikely (c->rangeRecord[0].first > c->rangeRecord[0].last))
|
2018-06-23 16:32:28 +02:00
|
|
|
|
{
|
2018-11-15 20:40:56 +01:00
|
|
|
|
/* Broken table. Skip. */
|
|
|
|
|
i = c->rangeRecord.len;
|
2018-06-23 16:32:28 +02:00
|
|
|
|
}
|
2012-04-23 21:28:35 +02:00
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
|
void fini () {}
|
2018-12-27 04:05:25 +01:00
|
|
|
|
bool more () const { return i < c->rangeRecord.len; }
|
2018-12-17 19:01:01 +01:00
|
|
|
|
void next ()
|
2016-12-21 22:51:28 +01:00
|
|
|
|
{
|
2019-12-07 20:45:08 +01:00
|
|
|
|
if (j >= c->rangeRecord[i].last)
|
2016-12-21 22:51:28 +01:00
|
|
|
|
{
|
2018-11-15 20:40:56 +01:00
|
|
|
|
i++;
|
2012-04-23 20:21:33 +02:00
|
|
|
|
if (more ())
|
2016-12-21 22:51:28 +01:00
|
|
|
|
{
|
2018-12-27 04:08:54 +01:00
|
|
|
|
unsigned int old = coverage;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
j = c->rangeRecord[i].first;
|
2018-12-27 04:08:54 +01:00
|
|
|
|
coverage = c->rangeRecord[i].value;
|
2019-01-09 08:28:05 +01:00
|
|
|
|
if (unlikely (coverage != old + 1))
|
2018-06-23 16:32:28 +02:00
|
|
|
|
{
|
2019-01-09 08:28:05 +01:00
|
|
|
|
/* Broken table. Skip. Important to avoid DoS.
|
|
|
|
|
* Also, our callers depend on coverage being
|
|
|
|
|
* consecutive and monotonically increasing,
|
|
|
|
|
* ie. iota(). */
|
2018-06-23 16:32:28 +02:00
|
|
|
|
i = c->rangeRecord.len;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-12-21 22:51:28 +01:00
|
|
|
|
}
|
2012-04-23 20:21:33 +02:00
|
|
|
|
return;
|
2012-04-23 19:02:14 +02:00
|
|
|
|
}
|
2016-12-21 22:51:28 +01:00
|
|
|
|
coverage++;
|
2012-04-23 20:21:33 +02:00
|
|
|
|
j++;
|
|
|
|
|
}
|
2018-12-27 04:05:25 +01:00
|
|
|
|
hb_codepoint_t get_glyph () const { return j; }
|
2019-05-07 04:57:15 +02:00
|
|
|
|
bool operator != (const iter_t& o) const
|
|
|
|
|
{ return i != o.i || j != o.j || c != o.c; }
|
2012-04-23 19:02:14 +02:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const struct CoverageFormat2 *c;
|
2018-06-23 16:32:28 +02:00
|
|
|
|
unsigned int i, coverage;
|
|
|
|
|
hb_codepoint_t j;
|
2012-04-23 19:02:14 +02:00
|
|
|
|
};
|
2012-11-12 20:16:57 +01:00
|
|
|
|
private:
|
2012-04-23 19:02:14 +02:00
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 coverageFormat; /* Format identifier--format = 2 */
|
2021-04-01 00:09:39 +02:00
|
|
|
|
SortedArray16Of<RangeRecord>
|
2009-05-18 02:28:01 +02:00
|
|
|
|
rangeRecord; /* Array of glyph ranges--ordered by
|
|
|
|
|
* Start GlyphID. rangeCount entries
|
|
|
|
|
* long */
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY (4, rangeRecord);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct Coverage
|
|
|
|
|
{
|
2019-01-28 22:34:04 +01:00
|
|
|
|
/* Has interface. */
|
2019-01-25 15:34:03 +01:00
|
|
|
|
static constexpr unsigned SENTINEL = NOT_COVERED;
|
2019-01-09 17:39:25 +01:00
|
|
|
|
typedef unsigned int value_t;
|
|
|
|
|
value_t operator [] (hb_codepoint_t k) const { return get (k); }
|
|
|
|
|
bool has (hb_codepoint_t k) const { return (*this)[k] != SENTINEL; }
|
2019-01-28 22:34:04 +01:00
|
|
|
|
/* Predicate. */
|
2019-01-09 17:39:25 +01:00
|
|
|
|
bool operator () (hb_codepoint_t k) const { return has (k); }
|
2019-01-08 22:48:42 +01:00
|
|
|
|
|
2019-01-09 17:39:25 +01:00
|
|
|
|
unsigned int get (hb_codepoint_t k) const { return get_coverage (k); }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_coverage (hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2009-05-18 02:28:01 +02:00
|
|
|
|
switch (u.format) {
|
2018-01-09 12:06:38 +01:00
|
|
|
|
case 1: return u.format1.get_coverage (glyph_id);
|
|
|
|
|
case 2: return u.format2.get_coverage (glyph_id);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
default:return NOT_COVERED;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 10:02:38 +01:00
|
|
|
|
template <typename Iterator,
|
2019-05-09 22:04:11 +02:00
|
|
|
|
hb_requires (hb_is_sorted_source_of (Iterator, hb_codepoint_t))>
|
2019-01-09 10:02:38 +01:00
|
|
|
|
bool serialize (hb_serialize_context_t *c, Iterator glyphs)
|
2012-08-30 03:08:59 +02:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2018-12-13 22:01:45 +01:00
|
|
|
|
|
2019-05-11 01:07:51 +02:00
|
|
|
|
unsigned count = 0;
|
|
|
|
|
unsigned num_ranges = 0;
|
|
|
|
|
hb_codepoint_t last = (hb_codepoint_t) -2;
|
|
|
|
|
for (auto g: glyphs)
|
|
|
|
|
{
|
|
|
|
|
if (last + 1 != g)
|
2019-08-24 15:27:14 +02:00
|
|
|
|
num_ranges++;
|
2019-05-11 01:07:51 +02:00
|
|
|
|
last = g;
|
|
|
|
|
count++;
|
|
|
|
|
}
|
2019-08-29 23:09:05 +02:00
|
|
|
|
u.format = count <= num_ranges * 3 ? 1 : 2;
|
2018-12-13 22:01:45 +01:00
|
|
|
|
|
2018-08-26 06:15:39 +02:00
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
2018-12-18 22:49:08 +01:00
|
|
|
|
case 1: return_trace (u.format1.serialize (c, glyphs));
|
|
|
|
|
case 2: return_trace (u.format2.serialize (c, glyphs));
|
2015-09-29 15:57:02 +02:00
|
|
|
|
default:return_trace (false);
|
2012-08-30 03:08:59 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2020-09-29 20:05:08 +02:00
|
|
|
|
const hb_set_t &glyphset = *c->plan->glyphset_gsub ();
|
2019-10-01 01:19:18 +02:00
|
|
|
|
const hb_map_t &glyph_map = *c->plan->glyph_map;
|
|
|
|
|
|
|
|
|
|
auto it =
|
|
|
|
|
+ iter ()
|
|
|
|
|
| hb_filter (glyphset)
|
|
|
|
|
| hb_map_retains_sorting (glyph_map)
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
bool ret = bool (it);
|
|
|
|
|
Coverage_serialize (c->serializer, it);
|
|
|
|
|
return_trace (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
if (!u.format.sanitize (c)) return_trace (false);
|
2018-08-26 06:15:39 +02:00
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
2015-09-29 15:57:02 +02:00
|
|
|
|
case 1: return_trace (u.format1.sanitize (c));
|
|
|
|
|
case 2: return_trace (u.format2.sanitize (c));
|
|
|
|
|
default:return_trace (true);
|
2009-08-04 06:58:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
2018-09-03 04:47:50 +02:00
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
|
|
|
|
case 1: return u.format1.intersects (glyphs);
|
|
|
|
|
case 2: return u.format2.intersects (glyphs);
|
|
|
|
|
default:return false;
|
|
|
|
|
}
|
2012-04-23 22:54:58 +02:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects_coverage (const hb_set_t *glyphs, unsigned int index) const
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
|
case 1: return u.format1.intersects_coverage (glyphs, index);
|
|
|
|
|
case 2: return u.format2.intersects_coverage (glyphs, index);
|
|
|
|
|
default:return false;
|
|
|
|
|
}
|
2012-04-23 21:28:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-15 04:33:55 +01:00
|
|
|
|
/* Might return false if array looks unsorted.
|
|
|
|
|
* Used for faster rejection of corrupt data. */
|
2012-08-02 03:05:57 +02:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
2020-04-23 19:55:41 +02:00
|
|
|
|
case 1: return u.format1.collect_coverage (glyphs);
|
|
|
|
|
case 2: return u.format2.collect_coverage (glyphs);
|
2017-12-16 17:11:18 +01:00
|
|
|
|
default:return false;
|
2012-06-09 08:02:46 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-05 23:54:40 +01:00
|
|
|
|
void intersected_coverage_glyphs (const hb_set_t *glyphs, hb_set_t *intersect_glyphs) const
|
|
|
|
|
{
|
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
|
|
|
|
case 1: return u.format1.intersected_coverage_glyphs (glyphs, intersect_glyphs);
|
|
|
|
|
case 2: return u.format2.intersected_coverage_glyphs (glyphs, intersect_glyphs);
|
|
|
|
|
default:return ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-30 02:10:19 +01:00
|
|
|
|
struct iter_t : hb_iter_with_fallback_t<iter_t, hb_codepoint_t>
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
2019-05-15 07:28:07 +02:00
|
|
|
|
static constexpr bool is_sorted_iterator = true;
|
2020-04-20 11:42:45 +02:00
|
|
|
|
iter_t (const Coverage &c_ = Null (Coverage))
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
2018-10-30 07:31:42 +01:00
|
|
|
|
memset (this, 0, sizeof (*this));
|
2012-04-23 19:02:14 +02:00
|
|
|
|
format = c_.u.format;
|
2018-08-26 06:15:39 +02:00
|
|
|
|
switch (format)
|
|
|
|
|
{
|
2013-07-31 00:25:39 +02:00
|
|
|
|
case 1: u.format1.init (c_.u.format1); return;
|
|
|
|
|
case 2: u.format2.init (c_.u.format2); return;
|
2018-08-26 06:15:39 +02:00
|
|
|
|
default: return;
|
2012-04-23 19:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-27 04:27:23 +01:00
|
|
|
|
bool __more__ () const
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
|
|
|
|
switch (format)
|
|
|
|
|
{
|
2012-04-23 19:02:14 +02:00
|
|
|
|
case 1: return u.format1.more ();
|
|
|
|
|
case 2: return u.format2.more ();
|
2013-07-31 00:25:39 +02:00
|
|
|
|
default:return false;
|
2012-04-23 19:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-27 04:27:23 +01:00
|
|
|
|
void __next__ ()
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
|
|
|
|
switch (format)
|
|
|
|
|
{
|
2012-04-23 20:21:33 +02:00
|
|
|
|
case 1: u.format1.next (); break;
|
|
|
|
|
case 2: u.format2.next (); break;
|
2018-08-26 06:15:39 +02:00
|
|
|
|
default: break;
|
2012-04-23 20:21:33 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-09 09:25:53 +01:00
|
|
|
|
typedef hb_codepoint_t __item_t__;
|
|
|
|
|
__item_t__ __item__ () const { return get_glyph (); }
|
2018-12-27 04:27:23 +01:00
|
|
|
|
|
2018-12-27 04:05:25 +01:00
|
|
|
|
hb_codepoint_t get_glyph () const
|
2018-08-26 06:15:39 +02:00
|
|
|
|
{
|
|
|
|
|
switch (format)
|
|
|
|
|
{
|
2012-04-23 21:28:35 +02:00
|
|
|
|
case 1: return u.format1.get_glyph ();
|
|
|
|
|
case 2: return u.format2.get_glyph ();
|
2013-07-31 00:25:39 +02:00
|
|
|
|
default:return 0;
|
2012-04-23 21:28:35 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-07 04:57:15 +02:00
|
|
|
|
bool operator != (const iter_t& o) const
|
|
|
|
|
{
|
|
|
|
|
if (format != o.format) return true;
|
|
|
|
|
switch (format)
|
|
|
|
|
{
|
|
|
|
|
case 1: return u.format1 != o.u.format1;
|
|
|
|
|
case 2: return u.format2 != o.u.format2;
|
|
|
|
|
default:return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-23 19:02:14 +02:00
|
|
|
|
|
|
|
|
|
private:
|
2012-04-23 21:28:35 +02:00
|
|
|
|
unsigned int format;
|
2012-04-23 19:02:14 +02:00
|
|
|
|
union {
|
2018-12-29 03:22:26 +01:00
|
|
|
|
CoverageFormat2::iter_t format2; /* Put this one first since it's larger; helps shut up compiler. */
|
|
|
|
|
CoverageFormat1::iter_t format1;
|
2012-04-23 19:02:14 +02:00
|
|
|
|
} u;
|
|
|
|
|
};
|
2018-12-29 03:22:26 +01:00
|
|
|
|
iter_t iter () const { return iter_t (*this); }
|
2012-04-23 19:02:14 +02:00
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2009-05-18 02:28:01 +02:00
|
|
|
|
union {
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
|
CoverageFormat1 format1;
|
|
|
|
|
CoverageFormat2 format2;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
|
public:
|
2010-05-11 00:47:48 +02:00
|
|
|
|
DEFINE_SIZE_UNION (2, format);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
template<typename Iterator>
|
|
|
|
|
static inline void
|
|
|
|
|
Coverage_serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
Iterator it)
|
2019-10-01 01:19:18 +02:00
|
|
|
|
{ c->start_embed<Coverage> ()->serialize (c, it); }
|
|
|
|
|
|
|
|
|
|
static void ClassDef_remap_and_serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
const hb_map_t &gid_klass_map,
|
2021-09-19 22:30:12 +02:00
|
|
|
|
hb_sorted_vector_t<HBGlyphID16> &glyphs,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
const hb_set_t &klasses,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
bool use_class_zero,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
hb_map_t *klass_map /*INOUT*/)
|
2019-10-01 01:19:18 +02:00
|
|
|
|
{
|
2020-02-10 19:36:50 +01:00
|
|
|
|
if (!klass_map)
|
|
|
|
|
{
|
|
|
|
|
ClassDef_serialize (c, hb_zip (glyphs.iter (), + glyphs.iter ()
|
|
|
|
|
| hb_map (gid_klass_map)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-12-31 13:23:02 +01:00
|
|
|
|
|
2020-02-10 19:36:50 +01:00
|
|
|
|
/* any glyph not assigned a class value falls into Class zero (0),
|
|
|
|
|
* if any glyph assigned to class 0, remapping must start with 0->0*/
|
2021-03-16 22:20:49 +01:00
|
|
|
|
if (!use_class_zero)
|
2020-02-10 19:36:50 +01:00
|
|
|
|
klass_map->set (0, 0);
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
|
|
|
|
unsigned idx = klass_map->has (0) ? 1 : 0;
|
|
|
|
|
for (const unsigned k: klasses.iter ())
|
|
|
|
|
{
|
|
|
|
|
if (klass_map->has (k)) continue;
|
|
|
|
|
klass_map->set (k, idx);
|
|
|
|
|
idx++;
|
|
|
|
|
}
|
2019-12-31 13:23:02 +01:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
auto it =
|
|
|
|
|
+ glyphs.iter ()
|
2021-09-19 22:30:12 +02:00
|
|
|
|
| hb_map_retains_sorting ([&] (const HBGlyphID16& gid) -> hb_pair_t<hb_codepoint_t, unsigned>
|
2020-04-20 11:42:45 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned new_klass = klass_map->get (gid_klass_map[gid]);
|
|
|
|
|
return hb_pair ((hb_codepoint_t)gid, new_klass);
|
|
|
|
|
})
|
2019-10-01 01:19:18 +02:00
|
|
|
|
;
|
2019-12-31 13:23:02 +01:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
c->propagate_error (glyphs, klasses);
|
|
|
|
|
ClassDef_serialize (c, it);
|
|
|
|
|
}
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class Definition Table
|
|
|
|
|
*/
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct ClassDefFormat1
|
|
|
|
|
{
|
2009-05-18 02:28:01 +02:00
|
|
|
|
friend struct ClassDef;
|
|
|
|
|
|
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_class (hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2018-11-24 06:38:36 +01:00
|
|
|
|
return classValue[(unsigned int) (glyph_id - startGlyph)];
|
2009-05-18 02:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
template<typename Iterator,
|
|
|
|
|
hb_requires (hb_is_iterator (Iterator))>
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
Iterator it)
|
2018-12-13 21:50:13 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2018-12-13 21:50:13 +01:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
if (unlikely (!it))
|
2018-12-13 21:50:13 +01:00
|
|
|
|
{
|
2021-04-16 01:52:11 +02:00
|
|
|
|
classFormat = 1;
|
2019-03-30 04:17:46 +01:00
|
|
|
|
startGlyph = 0;
|
|
|
|
|
classValue.len = 0;
|
2018-12-13 21:50:13 +01:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-03 01:57:01 +02:00
|
|
|
|
hb_codepoint_t glyph_min = (*it).first;
|
|
|
|
|
hb_codepoint_t glyph_max = + it
|
2020-04-20 11:42:45 +02:00
|
|
|
|
| hb_map (hb_first)
|
|
|
|
|
| hb_reduce (hb_max, 0u);
|
2020-04-03 01:57:01 +02:00
|
|
|
|
unsigned glyph_count = glyph_max - glyph_min + 1;
|
|
|
|
|
|
|
|
|
|
startGlyph = glyph_min;
|
2020-04-05 14:37:48 +02:00
|
|
|
|
if (unlikely (!classValue.serialize (c, glyph_count))) return_trace (false);
|
Minor, fix -Wrange-loop-analysis warnings
Fixing these complains raised by newer versions of clang,
./hb-ot-layout-common.hh:1720:53: error: loop variable 'gid_klass_pair' is always a copy because the range of type 'hb_map_iter_t<hb_sorted_array_t<OT::HBGlyphID>, (lambda at ./hb-ot-layout-common.hh:1672:29), hb_function_sortedness_t::RETAINS_SORTING, nullptr>' does not return a reference [-Werror,-Wrange-loop-analysis]
for (const hb_pair_t<hb_codepoint_t, unsigned>& gid_klass_pair : + it)
And
./hb-ot-color-colr-table.hh:177:44: error: loop variable '_' is always a copy because the range of type 'hb_map_iter_t<hb_filter_iter_t<hb_map_iter_t<hb_range_iter_t<unsigned int, unsigned int>, (lambda at ./hb-ot-color-colr-table.hh:209:31), hb_function_sortedness_t::RETAINS_SORTING, nullptr>, (anonymous struct at ./hb-algs.hh:331:1) &, (anonymous struct at ./hb-algs.hh:51:1) &, nullptr>, (anonymous struct at ./hb-algs.hh:338:1) &, hb_function_sortedness_t::RETAINS_SORTING, nullptr>' does not return a reference [-Werror,-Wrange-loop-analysis]
for (const hb_item_type<BaseIterator>& _ : + base_it.iter ())
2020-07-04 21:13:21 +02:00
|
|
|
|
for (const hb_pair_t<hb_codepoint_t, unsigned> gid_klass_pair : + it)
|
2020-04-03 01:57:01 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned idx = gid_klass_pair.first - glyph_min;
|
|
|
|
|
classValue[idx] = gid_klass_pair.second;
|
|
|
|
|
}
|
2018-12-13 21:50:13 +01:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
hb_map_t *klass_map = nullptr /*OUT*/,
|
2021-04-16 01:52:11 +02:00
|
|
|
|
bool keep_empty_table = true,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
bool use_class_zero = true,
|
2021-03-16 22:20:49 +01:00
|
|
|
|
const Coverage* glyph_filter = nullptr) const
|
2018-12-13 23:48:42 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2021-03-16 22:20:49 +01:00
|
|
|
|
const hb_set_t &glyphset = *c->plan->glyphset_gsub ();
|
2018-12-13 23:48:42 +01:00
|
|
|
|
const hb_map_t &glyph_map = *c->plan->glyph_map;
|
2019-12-31 13:23:02 +01:00
|
|
|
|
|
2021-09-19 22:30:12 +02:00
|
|
|
|
hb_sorted_vector_t<HBGlyphID16> glyphs;
|
2020-02-10 19:36:50 +01:00
|
|
|
|
hb_set_t orig_klasses;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
hb_map_t gid_org_klass_map;
|
2018-12-14 00:37:37 +01:00
|
|
|
|
|
2018-12-14 00:32:04 +01:00
|
|
|
|
hb_codepoint_t start = startGlyph;
|
|
|
|
|
hb_codepoint_t end = start + classValue.len;
|
2021-03-16 22:20:49 +01:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
for (const hb_codepoint_t gid : + hb_range (start, end)
|
2021-03-16 22:20:49 +01:00
|
|
|
|
| hb_filter (glyphset))
|
2018-12-14 00:32:04 +01:00
|
|
|
|
{
|
2021-03-16 22:20:49 +01:00
|
|
|
|
if (glyph_filter && !glyph_filter->has(gid)) continue;
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
unsigned klass = classValue[gid - start];
|
|
|
|
|
if (!klass) continue;
|
|
|
|
|
|
|
|
|
|
glyphs.push (glyph_map[gid]);
|
|
|
|
|
gid_org_klass_map.set (glyph_map[gid], klass);
|
2020-02-10 19:36:50 +01:00
|
|
|
|
orig_klasses.add (klass);
|
2018-12-14 00:32:04 +01:00
|
|
|
|
}
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2021-03-16 22:20:49 +01:00
|
|
|
|
unsigned glyph_count = glyph_filter
|
|
|
|
|
? hb_len (hb_iter (glyphset) | hb_filter (glyph_filter))
|
|
|
|
|
: glyphset.get_population ();
|
|
|
|
|
use_class_zero = use_class_zero && glyph_count <= gid_org_klass_map.get_population ();
|
|
|
|
|
ClassDef_remap_and_serialize (c->serializer, gid_org_klass_map,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
glyphs, orig_klasses, use_class_zero, klass_map);
|
2021-04-16 01:52:11 +02:00
|
|
|
|
return_trace (keep_empty_table || (bool) glyphs);
|
2018-12-13 23:48:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (c->check_struct (this) && classValue.sanitize (c));
|
2009-08-04 06:58:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-16 22:53:40 +01:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2018-12-16 20:08:10 +01:00
|
|
|
|
{
|
2017-12-16 17:07:37 +01:00
|
|
|
|
unsigned int start = 0;
|
|
|
|
|
unsigned int count = classValue.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (classValue[i])
|
2018-11-15 20:40:56 +01:00
|
|
|
|
continue;
|
2017-12-16 17:07:37 +01:00
|
|
|
|
|
|
|
|
|
if (start != i)
|
|
|
|
|
if (unlikely (!glyphs->add_range (startGlyph + start, startGlyph + i)))
|
2017-12-16 17:11:18 +01:00
|
|
|
|
return false;
|
2017-12-16 17:07:37 +01:00
|
|
|
|
|
|
|
|
|
start = i + 1;
|
|
|
|
|
}
|
|
|
|
|
if (start != count)
|
|
|
|
|
if (unlikely (!glyphs->add_range (startGlyph + start, startGlyph + count)))
|
2017-12-16 17:11:18 +01:00
|
|
|
|
return false;
|
2017-12-16 17:07:37 +01:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename set_t>
|
2021-02-23 06:45:32 +01:00
|
|
|
|
bool collect_class (set_t *glyphs, unsigned klass) const
|
2018-12-16 20:08:10 +01:00
|
|
|
|
{
|
2012-11-16 22:53:40 +01:00
|
|
|
|
unsigned int count = classValue.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-11-15 20:40:56 +01:00
|
|
|
|
if (classValue[i] == klass) glyphs->add (startGlyph + i);
|
2017-12-15 04:33:55 +01:00
|
|
|
|
return true;
|
2012-11-16 22:53:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
|
|
|
|
/* TODO Speed up, using hb_set_next()? */
|
|
|
|
|
hb_codepoint_t start = startGlyph;
|
|
|
|
|
hb_codepoint_t end = startGlyph + classValue.len;
|
|
|
|
|
for (hb_codepoint_t iter = startGlyph - 1;
|
|
|
|
|
hb_set_next (glyphs, &iter) && iter < end;)
|
2018-11-15 20:40:56 +01:00
|
|
|
|
if (classValue[iter - start]) return true;
|
2018-09-03 04:47:50 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-02-23 06:45:32 +01:00
|
|
|
|
bool intersects_class (const hb_set_t *glyphs, uint16_t klass) const
|
2018-12-16 20:08:10 +01:00
|
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
|
unsigned int count = classValue.len;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
if (klass == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Match if there's any glyph that is not listed! */
|
2018-02-21 09:35:23 +01:00
|
|
|
|
hb_codepoint_t g = HB_SET_VALUE_INVALID;
|
2018-11-15 20:40:56 +01:00
|
|
|
|
if (!hb_set_next (glyphs, &g)) return false;
|
|
|
|
|
if (g < startGlyph) return true;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
g = startGlyph + count - 1;
|
2018-11-15 20:40:56 +01:00
|
|
|
|
if (hb_set_next (glyphs, &g)) return true;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
/* Fall through. */
|
|
|
|
|
}
|
2021-01-21 20:01:13 +01:00
|
|
|
|
/* TODO Speed up, using set overlap first? */
|
2021-01-21 20:18:48 +01:00
|
|
|
|
/* TODO(iter) Rewrite as dagger. */
|
2021-02-23 06:28:32 +01:00
|
|
|
|
HBUINT16 k {klass};
|
2021-01-21 20:01:13 +01:00
|
|
|
|
const HBUINT16 *arr = classValue.arrayZ;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2021-01-21 20:01:13 +01:00
|
|
|
|
if (arr[i] == k && glyphs->has (startGlyph + i))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-05 23:54:40 +01:00
|
|
|
|
void intersected_class_glyphs (const hb_set_t *glyphs, unsigned klass, hb_set_t *intersect_glyphs) const
|
2021-01-05 19:16:50 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned count = classValue.len;
|
|
|
|
|
if (klass == 0)
|
|
|
|
|
{
|
|
|
|
|
hb_codepoint_t endGlyph = startGlyph + count -1;
|
|
|
|
|
for (hb_codepoint_t g : glyphs->iter ())
|
|
|
|
|
if (g < startGlyph || g > endGlyph)
|
|
|
|
|
intersect_glyphs->add (g);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < count; i++)
|
|
|
|
|
if (classValue[i] == klass && glyphs->has (startGlyph + i))
|
|
|
|
|
intersect_glyphs->add (startGlyph + i);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-30 02:11:53 +02:00
|
|
|
|
void intersected_classes (const hb_set_t *glyphs, hb_set_t *intersect_classes) const
|
|
|
|
|
{
|
|
|
|
|
if (glyphs->is_empty ()) return;
|
|
|
|
|
hb_codepoint_t end_glyph = startGlyph + classValue.len - 1;
|
|
|
|
|
if (glyphs->get_min () < startGlyph ||
|
|
|
|
|
glyphs->get_max () > end_glyph)
|
|
|
|
|
intersect_classes->add (0);
|
|
|
|
|
|
|
|
|
|
for (const auto& _ : + hb_enumerate (classValue))
|
|
|
|
|
{
|
|
|
|
|
hb_codepoint_t g = startGlyph + _.first;
|
|
|
|
|
if (glyphs->has (g))
|
|
|
|
|
intersect_classes->add (_.second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2018-11-24 06:45:55 +01:00
|
|
|
|
HBUINT16 classFormat; /* Format identifier--format = 1 */
|
2021-09-19 22:30:12 +02:00
|
|
|
|
HBGlyphID16 startGlyph; /* First GlyphID of the classValueArray */
|
2021-04-01 00:04:43 +02:00
|
|
|
|
Array16Of<HBUINT16>
|
2018-11-24 06:45:55 +01:00
|
|
|
|
classValue; /* Array of Class Values--one per GlyphID */
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY (6, classValue);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct ClassDefFormat2
|
|
|
|
|
{
|
2009-05-18 02:28:01 +02:00
|
|
|
|
friend struct ClassDef;
|
|
|
|
|
|
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_class (hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2018-11-24 06:35:31 +01:00
|
|
|
|
return rangeRecord.bsearch (glyph_id).value;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
template<typename Iterator,
|
|
|
|
|
hb_requires (hb_is_iterator (Iterator))>
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
Iterator it)
|
2018-12-13 21:57:12 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2018-12-13 21:57:12 +01:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
if (unlikely (!it))
|
2018-12-13 21:57:12 +01:00
|
|
|
|
{
|
2021-04-16 01:52:11 +02:00
|
|
|
|
classFormat = 2;
|
2019-03-30 04:17:46 +01:00
|
|
|
|
rangeRecord.len = 0;
|
2018-12-13 21:57:12 +01:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
unsigned num_ranges = 1;
|
|
|
|
|
hb_codepoint_t prev_gid = (*it).first;
|
|
|
|
|
unsigned prev_klass = (*it).second;
|
2018-12-13 21:57:12 +01:00
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
RangeRecord range_rec;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
range_rec.first = prev_gid;
|
|
|
|
|
range_rec.last = prev_gid;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
range_rec.value = prev_klass;
|
|
|
|
|
|
|
|
|
|
RangeRecord *record = c->copy (range_rec);
|
2019-10-21 22:24:52 +02:00
|
|
|
|
if (unlikely (!record)) return_trace (false);
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
|
|
|
|
for (const auto gid_klass_pair : + (++it))
|
2018-12-13 21:57:12 +01:00
|
|
|
|
{
|
2019-10-01 01:19:18 +02:00
|
|
|
|
hb_codepoint_t cur_gid = gid_klass_pair.first;
|
|
|
|
|
unsigned cur_klass = gid_klass_pair.second;
|
|
|
|
|
|
|
|
|
|
if (cur_gid != prev_gid + 1 ||
|
2020-04-20 11:42:45 +02:00
|
|
|
|
cur_klass != prev_klass)
|
2018-12-13 21:57:12 +01:00
|
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
|
if (unlikely (!record)) break;
|
|
|
|
|
record->last = prev_gid;
|
|
|
|
|
num_ranges++;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2020-04-20 11:42:45 +02:00
|
|
|
|
range_rec.first = cur_gid;
|
|
|
|
|
range_rec.last = cur_gid;
|
|
|
|
|
range_rec.value = cur_klass;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2020-04-20 11:42:45 +02:00
|
|
|
|
record = c->copy (range_rec);
|
2018-12-13 21:57:12 +01:00
|
|
|
|
}
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
|
|
|
|
prev_klass = cur_klass;
|
|
|
|
|
prev_gid = cur_gid;
|
2018-12-13 21:57:12 +01:00
|
|
|
|
}
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2019-12-07 20:45:08 +01:00
|
|
|
|
if (likely (record)) record->last = prev_gid;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
rangeRecord.len = num_ranges;
|
2018-12-13 21:57:12 +01:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
hb_map_t *klass_map = nullptr /*OUT*/,
|
2021-04-16 01:52:11 +02:00
|
|
|
|
bool keep_empty_table = true,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
bool use_class_zero = true,
|
2021-03-16 22:20:49 +01:00
|
|
|
|
const Coverage* glyph_filter = nullptr) const
|
2018-12-13 23:48:42 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2021-03-16 22:20:49 +01:00
|
|
|
|
const hb_set_t &glyphset = *c->plan->glyphset_gsub ();
|
2018-12-13 23:48:42 +01:00
|
|
|
|
const hb_map_t &glyph_map = *c->plan->glyph_map;
|
|
|
|
|
|
2021-09-19 22:30:12 +02:00
|
|
|
|
hb_sorted_vector_t<HBGlyphID16> glyphs;
|
2020-02-10 19:36:50 +01:00
|
|
|
|
hb_set_t orig_klasses;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
hb_map_t gid_org_klass_map;
|
|
|
|
|
|
|
|
|
|
unsigned count = rangeRecord.len;
|
|
|
|
|
for (unsigned i = 0; i < count; i++)
|
2018-12-13 23:48:42 +01:00
|
|
|
|
{
|
2019-10-01 01:19:18 +02:00
|
|
|
|
unsigned klass = rangeRecord[i].value;
|
|
|
|
|
if (!klass) continue;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
hb_codepoint_t start = rangeRecord[i].first;
|
|
|
|
|
hb_codepoint_t end = rangeRecord[i].last + 1;
|
2018-12-13 23:48:42 +01:00
|
|
|
|
for (hb_codepoint_t g = start; g < end; g++)
|
|
|
|
|
{
|
2021-03-16 22:20:49 +01:00
|
|
|
|
if (!glyphset.has (g)) continue;
|
|
|
|
|
if (glyph_filter && !glyph_filter->has (g)) continue;
|
2019-03-30 04:17:46 +01:00
|
|
|
|
glyphs.push (glyph_map[g]);
|
2020-04-20 11:42:45 +02:00
|
|
|
|
gid_org_klass_map.set (glyph_map[g], klass);
|
|
|
|
|
orig_klasses.add (klass);
|
2018-12-13 23:48:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-01 01:19:18 +02:00
|
|
|
|
|
2021-03-16 22:20:49 +01:00
|
|
|
|
unsigned glyph_count = glyph_filter
|
|
|
|
|
? hb_len (hb_iter (glyphset) | hb_filter (glyph_filter))
|
|
|
|
|
: glyphset.get_population ();
|
|
|
|
|
use_class_zero = use_class_zero && glyph_count <= gid_org_klass_map.get_population ();
|
|
|
|
|
ClassDef_remap_and_serialize (c->serializer, gid_org_klass_map,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
glyphs, orig_klasses, use_class_zero, klass_map);
|
2021-04-16 01:52:11 +02:00
|
|
|
|
return_trace (keep_empty_table || (bool) glyphs);
|
2018-12-13 23:48:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
return_trace (rangeRecord.sanitize (c));
|
2009-08-04 06:58:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-16 22:53:40 +01:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
2017-12-16 17:07:37 +01:00
|
|
|
|
unsigned int count = rangeRecord.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
if (rangeRecord[i].value)
|
2020-04-23 19:55:41 +02:00
|
|
|
|
if (unlikely (!rangeRecord[i].collect_coverage (glyphs)))
|
2017-12-16 17:11:18 +01:00
|
|
|
|
return false;
|
2017-12-16 17:07:37 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename set_t>
|
2020-04-23 19:57:30 +02:00
|
|
|
|
bool collect_class (set_t *glyphs, unsigned int klass) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
2012-11-16 22:53:40 +01:00
|
|
|
|
unsigned int count = rangeRecord.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2017-12-15 04:33:55 +01:00
|
|
|
|
{
|
2017-12-16 17:07:37 +01:00
|
|
|
|
if (rangeRecord[i].value == klass)
|
2020-04-23 19:55:41 +02:00
|
|
|
|
if (unlikely (!rangeRecord[i].collect_coverage (glyphs)))
|
2017-12-16 17:11:18 +01:00
|
|
|
|
return false;
|
2017-12-15 04:33:55 +01:00
|
|
|
|
}
|
|
|
|
|
return true;
|
2012-11-16 22:53:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
|
|
|
|
/* TODO Speed up, using hb_set_next() and bsearch()? */
|
|
|
|
|
unsigned int count = rangeRecord.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2021-03-10 20:21:43 +01:00
|
|
|
|
{
|
|
|
|
|
const auto& range = rangeRecord[i];
|
|
|
|
|
if (range.intersects (glyphs) && range.value)
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2021-03-10 20:21:43 +01:00
|
|
|
|
}
|
2018-09-03 04:47:50 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-02-23 06:45:32 +01:00
|
|
|
|
bool intersects_class (const hb_set_t *glyphs, uint16_t klass) const
|
2018-09-03 04:47:50 +02:00
|
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
|
unsigned int count = rangeRecord.len;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
if (klass == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Match if there's any glyph that is not listed! */
|
2018-02-21 09:35:23 +01:00
|
|
|
|
hb_codepoint_t g = HB_SET_VALUE_INVALID;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (!hb_set_next (glyphs, &g))
|
|
|
|
|
break;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
if (g < rangeRecord[i].first)
|
2013-08-06 04:44:18 +02:00
|
|
|
|
return true;
|
2019-12-07 20:45:08 +01:00
|
|
|
|
g = rangeRecord[i].last;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
}
|
2018-02-21 09:35:23 +01:00
|
|
|
|
if (g != HB_SET_VALUE_INVALID && hb_set_next (glyphs, &g))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2013-08-06 04:44:18 +02:00
|
|
|
|
/* Fall through. */
|
|
|
|
|
}
|
2021-01-21 20:01:13 +01:00
|
|
|
|
/* TODO Speed up, using set overlap first? */
|
2021-01-21 20:18:48 +01:00
|
|
|
|
/* TODO(iter) Rewrite as dagger. */
|
2021-02-23 06:28:32 +01:00
|
|
|
|
HBUINT16 k {klass};
|
2021-01-21 20:01:13 +01:00
|
|
|
|
const RangeRecord *arr = rangeRecord.arrayZ;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2021-01-21 20:01:13 +01:00
|
|
|
|
if (arr[i].value == k && arr[i].intersects (glyphs))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return true;
|
2012-04-23 22:54:58 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-05 23:54:40 +01:00
|
|
|
|
void intersected_class_glyphs (const hb_set_t *glyphs, unsigned klass, hb_set_t *intersect_glyphs) const
|
2021-01-05 19:16:50 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned count = rangeRecord.len;
|
|
|
|
|
if (klass == 0)
|
|
|
|
|
{
|
|
|
|
|
hb_codepoint_t g = HB_SET_VALUE_INVALID;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (!hb_set_next (glyphs, &g))
|
|
|
|
|
break;
|
|
|
|
|
while (g != HB_SET_VALUE_INVALID && g < rangeRecord[i].first)
|
|
|
|
|
{
|
|
|
|
|
intersect_glyphs->add (g);
|
|
|
|
|
hb_set_next (glyphs, &g);
|
|
|
|
|
}
|
|
|
|
|
g = rangeRecord[i].last;
|
|
|
|
|
}
|
|
|
|
|
while (g != HB_SET_VALUE_INVALID && hb_set_next (glyphs, &g))
|
|
|
|
|
intersect_glyphs->add (g);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hb_codepoint_t g = HB_SET_VALUE_INVALID;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
2021-01-12 19:17:14 +01:00
|
|
|
|
if (rangeRecord[i].value != klass) continue;
|
2021-03-30 01:39:44 +02:00
|
|
|
|
|
2021-01-12 19:17:14 +01:00
|
|
|
|
if (g != HB_SET_VALUE_INVALID)
|
2021-01-05 19:16:50 +01:00
|
|
|
|
{
|
2021-01-12 19:17:14 +01:00
|
|
|
|
if (g >= rangeRecord[i].first &&
|
|
|
|
|
g <= rangeRecord[i].last)
|
|
|
|
|
intersect_glyphs->add (g);
|
|
|
|
|
if (g > rangeRecord[i].last)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2021-03-30 01:39:44 +02:00
|
|
|
|
|
2021-01-12 19:17:14 +01:00
|
|
|
|
g = rangeRecord[i].first - 1;
|
|
|
|
|
while (hb_set_next (glyphs, &g))
|
|
|
|
|
{
|
|
|
|
|
if (g >= rangeRecord[i].first && g <= rangeRecord[i].last)
|
|
|
|
|
intersect_glyphs->add (g);
|
|
|
|
|
else if (g > rangeRecord[i].last)
|
|
|
|
|
break;
|
2021-01-05 19:16:50 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-30 02:11:53 +02:00
|
|
|
|
void intersected_classes (const hb_set_t *glyphs, hb_set_t *intersect_classes) const
|
|
|
|
|
{
|
|
|
|
|
if (glyphs->is_empty ()) return;
|
|
|
|
|
|
|
|
|
|
unsigned count = rangeRecord.len;
|
|
|
|
|
hb_codepoint_t g = HB_SET_VALUE_INVALID;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (!hb_set_next (glyphs, &g))
|
|
|
|
|
break;
|
|
|
|
|
if (g < rangeRecord[i].first)
|
|
|
|
|
{
|
|
|
|
|
intersect_classes->add (0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
g = rangeRecord[i].last;
|
|
|
|
|
}
|
|
|
|
|
if (g != HB_SET_VALUE_INVALID && hb_set_next (glyphs, &g))
|
|
|
|
|
intersect_classes->add (0);
|
|
|
|
|
|
|
|
|
|
for (const RangeRecord& record : rangeRecord.iter ())
|
|
|
|
|
if (record.intersects (glyphs))
|
|
|
|
|
intersect_classes->add (record.value);
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 classFormat; /* Format identifier--format = 2 */
|
2021-04-01 00:09:39 +02:00
|
|
|
|
SortedArray16Of<RangeRecord>
|
2009-05-18 02:28:01 +02:00
|
|
|
|
rangeRecord; /* Array of glyph ranges--ordered by
|
|
|
|
|
* Start GlyphID */
|
2010-05-10 22:57:29 +02:00
|
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY (4, rangeRecord);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
|
struct ClassDef
|
|
|
|
|
{
|
2019-01-28 22:34:04 +01:00
|
|
|
|
/* Has interface. */
|
2019-01-25 15:34:03 +01:00
|
|
|
|
static constexpr unsigned SENTINEL = 0;
|
2019-01-09 17:39:25 +01:00
|
|
|
|
typedef unsigned int value_t;
|
|
|
|
|
value_t operator [] (hb_codepoint_t k) const { return get (k); }
|
|
|
|
|
bool has (hb_codepoint_t k) const { return (*this)[k] != SENTINEL; }
|
2019-01-28 22:34:04 +01:00
|
|
|
|
/* Projection. */
|
|
|
|
|
hb_codepoint_t operator () (hb_codepoint_t k) const { return get (k); }
|
2019-01-08 22:48:42 +01:00
|
|
|
|
|
2019-01-09 17:39:25 +01:00
|
|
|
|
unsigned int get (hb_codepoint_t k) const { return get_class (k); }
|
2018-12-16 20:08:10 +01:00
|
|
|
|
unsigned int get_class (hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2009-05-18 02:28:01 +02:00
|
|
|
|
switch (u.format) {
|
2018-01-09 12:06:38 +01:00
|
|
|
|
case 1: return u.format1.get_class (glyph_id);
|
|
|
|
|
case 2: return u.format2.get_class (glyph_id);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
default:return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
template<typename Iterator,
|
|
|
|
|
hb_requires (hb_is_iterator (Iterator))>
|
2021-04-30 21:59:17 +02:00
|
|
|
|
bool serialize (hb_serialize_context_t *c, Iterator it_with_class_zero)
|
2018-12-13 22:01:45 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2018-12-13 22:01:45 +01:00
|
|
|
|
|
2021-04-30 21:59:17 +02:00
|
|
|
|
auto it = + it_with_class_zero | hb_filter (hb_second);
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
unsigned format = 2;
|
|
|
|
|
if (likely (it))
|
2018-12-13 22:01:45 +01:00
|
|
|
|
{
|
2019-10-01 01:19:18 +02:00
|
|
|
|
hb_codepoint_t glyph_min = (*it).first;
|
2020-10-08 23:44:54 +02:00
|
|
|
|
hb_codepoint_t glyph_max = glyph_min;
|
2018-12-20 18:26:30 +01:00
|
|
|
|
|
2020-10-08 23:44:54 +02:00
|
|
|
|
unsigned num_glyphs = 0;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
unsigned num_ranges = 1;
|
|
|
|
|
hb_codepoint_t prev_gid = glyph_min;
|
|
|
|
|
unsigned prev_klass = (*it).second;
|
|
|
|
|
|
|
|
|
|
for (const auto gid_klass_pair : it)
|
|
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
|
hb_codepoint_t cur_gid = gid_klass_pair.first;
|
|
|
|
|
unsigned cur_klass = gid_klass_pair.second;
|
2021-04-30 21:59:17 +02:00
|
|
|
|
num_glyphs++;
|
|
|
|
|
if (cur_gid == glyph_min) continue;
|
2020-10-08 23:44:54 +02:00
|
|
|
|
if (cur_gid > glyph_max) glyph_max = cur_gid;
|
2020-04-20 11:42:45 +02:00
|
|
|
|
if (cur_gid != prev_gid + 1 ||
|
|
|
|
|
cur_klass != prev_klass)
|
|
|
|
|
num_ranges++;
|
|
|
|
|
|
|
|
|
|
prev_gid = cur_gid;
|
|
|
|
|
prev_klass = cur_klass;
|
2019-10-01 01:19:18 +02:00
|
|
|
|
}
|
2018-12-20 18:26:30 +01:00
|
|
|
|
|
2020-10-08 23:44:54 +02:00
|
|
|
|
if (num_glyphs && 1 + (glyph_max - glyph_min + 1) <= num_ranges * 3)
|
2019-08-24 15:27:14 +02:00
|
|
|
|
format = 1;
|
2018-12-13 22:01:45 +01:00
|
|
|
|
}
|
2019-03-30 04:17:46 +01:00
|
|
|
|
u.format = format;
|
2018-12-13 22:01:45 +01:00
|
|
|
|
|
|
|
|
|
switch (u.format)
|
|
|
|
|
{
|
2019-10-01 01:19:18 +02:00
|
|
|
|
case 1: return_trace (u.format1.serialize (c, it));
|
|
|
|
|
case 2: return_trace (u.format2.serialize (c, it));
|
2018-12-13 22:01:45 +01:00
|
|
|
|
default:return_trace (false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
hb_map_t *klass_map = nullptr /*OUT*/,
|
2021-04-16 01:52:11 +02:00
|
|
|
|
bool keep_empty_table = true,
|
2020-10-08 23:44:54 +02:00
|
|
|
|
bool use_class_zero = true,
|
2021-03-16 22:20:49 +01:00
|
|
|
|
const Coverage* glyph_filter = nullptr) const
|
2018-12-13 23:48:42 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
switch (u.format) {
|
2021-04-16 01:52:11 +02:00
|
|
|
|
case 1: return_trace (u.format1.subset (c, klass_map, keep_empty_table, use_class_zero, glyph_filter));
|
|
|
|
|
case 2: return_trace (u.format2.subset (c, klass_map, keep_empty_table, use_class_zero, glyph_filter));
|
2018-12-13 23:48:42 +01:00
|
|
|
|
default:return_trace (false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
|
if (!u.format.sanitize (c)) return_trace (false);
|
2009-08-04 06:58:28 +02:00
|
|
|
|
switch (u.format) {
|
2015-09-29 15:57:02 +02:00
|
|
|
|
case 1: return_trace (u.format1.sanitize (c));
|
|
|
|
|
case 2: return_trace (u.format2.sanitize (c));
|
|
|
|
|
default:return_trace (true);
|
2009-08-04 06:58:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-05-18 05:17:56 +02:00
|
|
|
|
|
2017-12-16 17:07:37 +01:00
|
|
|
|
/* Might return false if array looks unsorted.
|
|
|
|
|
* Used for faster rejection of corrupt data. */
|
|
|
|
|
template <typename set_t>
|
2020-04-23 19:55:41 +02:00
|
|
|
|
bool collect_coverage (set_t *glyphs) const
|
2018-12-16 20:08:10 +01:00
|
|
|
|
{
|
2017-12-16 17:07:37 +01:00
|
|
|
|
switch (u.format) {
|
2020-04-23 19:55:41 +02:00
|
|
|
|
case 1: return u.format1.collect_coverage (glyphs);
|
|
|
|
|
case 2: return u.format2.collect_coverage (glyphs);
|
2017-12-16 17:11:18 +01:00
|
|
|
|
default:return false;
|
2017-12-16 17:07:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Might return false if array looks unsorted.
|
|
|
|
|
* Used for faster rejection of corrupt data. */
|
2017-12-15 04:33:55 +01:00
|
|
|
|
template <typename set_t>
|
2020-04-23 19:57:30 +02:00
|
|
|
|
bool collect_class (set_t *glyphs, unsigned int klass) const
|
2018-12-16 20:08:10 +01:00
|
|
|
|
{
|
2012-11-16 22:53:40 +01:00
|
|
|
|
switch (u.format) {
|
2020-04-23 19:57:30 +02:00
|
|
|
|
case 1: return u.format1.collect_class (glyphs, klass);
|
|
|
|
|
case 2: return u.format2.collect_class (glyphs, klass);
|
2017-12-15 04:33:55 +01:00
|
|
|
|
default:return false;
|
2012-11-16 22:53:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects (const hb_set_t *glyphs) const
|
|
|
|
|
{
|
2018-09-03 04:47:50 +02:00
|
|
|
|
switch (u.format) {
|
|
|
|
|
case 1: return u.format1.intersects (glyphs);
|
|
|
|
|
case 2: return u.format2.intersects (glyphs);
|
|
|
|
|
default:return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool intersects_class (const hb_set_t *glyphs, unsigned int klass) const
|
|
|
|
|
{
|
2012-04-23 22:54:58 +02:00
|
|
|
|
switch (u.format) {
|
|
|
|
|
case 1: return u.format1.intersects_class (glyphs, klass);
|
|
|
|
|
case 2: return u.format2.intersects_class (glyphs, klass);
|
|
|
|
|
default:return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-05 23:54:40 +01:00
|
|
|
|
void intersected_class_glyphs (const hb_set_t *glyphs, unsigned klass, hb_set_t *intersect_glyphs) const
|
2021-01-05 19:16:50 +01:00
|
|
|
|
{
|
|
|
|
|
switch (u.format) {
|
2021-01-05 23:54:40 +01:00
|
|
|
|
case 1: return u.format1.intersected_class_glyphs (glyphs, klass, intersect_glyphs);
|
|
|
|
|
case 2: return u.format2.intersected_class_glyphs (glyphs, klass, intersect_glyphs);
|
2021-01-05 19:16:50 +01:00
|
|
|
|
default:return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-30 02:11:53 +02:00
|
|
|
|
void intersected_classes (const hb_set_t *glyphs, hb_set_t *intersect_classes) const
|
|
|
|
|
{
|
|
|
|
|
switch (u.format) {
|
|
|
|
|
case 1: return u.format1.intersected_classes (glyphs, intersect_classes);
|
|
|
|
|
case 2: return u.format2.intersected_classes (glyphs, intersect_classes);
|
|
|
|
|
default:return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2009-05-18 02:28:01 +02:00
|
|
|
|
union {
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
|
ClassDefFormat1 format1;
|
|
|
|
|
ClassDefFormat2 format2;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
|
public:
|
2010-05-11 00:47:48 +02:00
|
|
|
|
DEFINE_SIZE_UNION (2, format);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-01 01:19:18 +02:00
|
|
|
|
template<typename Iterator>
|
2018-12-13 23:48:42 +01:00
|
|
|
|
static inline void ClassDef_serialize (hb_serialize_context_t *c,
|
2020-04-20 11:42:45 +02:00
|
|
|
|
Iterator it)
|
2019-10-01 01:19:18 +02:00
|
|
|
|
{ c->start_embed<ClassDef> ()->serialize (c, it); }
|
2018-12-13 23:48:42 +01:00
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2016-09-10 00:40:15 +02:00
|
|
|
|
/*
|
|
|
|
|
* Item Variation Store
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
struct VarRegionAxis
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
float evaluate (int coord) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
int start = startCoord, peak = peakCoord, end = endCoord;
|
|
|
|
|
|
|
|
|
|
/* TODO Move these to sanitize(). */
|
|
|
|
|
if (unlikely (start > peak || peak > end))
|
|
|
|
|
return 1.;
|
|
|
|
|
if (unlikely (start < 0 && end > 0 && peak != 0))
|
|
|
|
|
return 1.;
|
|
|
|
|
|
|
|
|
|
if (peak == 0 || coord == peak)
|
|
|
|
|
return 1.;
|
|
|
|
|
|
|
|
|
|
if (coord <= start || end <= coord)
|
|
|
|
|
return 0.;
|
|
|
|
|
|
|
|
|
|
/* Interpolate */
|
|
|
|
|
if (coord < peak)
|
|
|
|
|
return float (coord - start) / (peak - start);
|
|
|
|
|
else
|
|
|
|
|
return float (end - coord) / (end - peak);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
|
/* TODO Handle invalid start/peak/end configs, so we don't
|
|
|
|
|
* have to do that at runtime. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
F2DOT14 startCoord;
|
|
|
|
|
F2DOT14 peakCoord;
|
|
|
|
|
F2DOT14 endCoord;
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct VarRegionList
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
float evaluate (unsigned int region_index,
|
2020-07-18 19:44:52 +02:00
|
|
|
|
const int *coords, unsigned int coord_len) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
if (unlikely (region_index >= regionCount))
|
|
|
|
|
return 0.;
|
|
|
|
|
|
2018-05-09 01:42:45 +02:00
|
|
|
|
const VarRegionAxis *axes = axesZ.arrayZ + (region_index * axisCount);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
|
|
|
|
|
float v = 1.;
|
2018-01-05 14:20:21 +01:00
|
|
|
|
unsigned int count = axisCount;
|
2016-09-10 00:40:15 +02:00
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
2018-01-05 14:20:21 +01:00
|
|
|
|
int coord = i < coord_len ? coords[i] : 0;
|
|
|
|
|
float factor = axes[i].evaluate (coord);
|
2018-04-23 17:06:53 +02:00
|
|
|
|
if (factor == 0.f)
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return 0.;
|
2016-09-10 00:40:15 +02:00
|
|
|
|
v *= factor;
|
|
|
|
|
}
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
2021-07-28 21:58:24 +02:00
|
|
|
|
return_trace (c->check_struct (this) && axesZ.sanitize (c, axisCount * regionCount));
|
2016-09-10 00:40:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
bool serialize (hb_serialize_context_t *c, const VarRegionList *src, const hb_bimap_t ®ion_map)
|
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2019-07-02 03:52:57 +02:00
|
|
|
|
axisCount = src->axisCount;
|
|
|
|
|
regionCount = region_map.get_population ();
|
2021-07-27 21:25:22 +02:00
|
|
|
|
if (unlikely (hb_unsigned_mul_overflows (axisCount * regionCount,
|
|
|
|
|
VarRegionAxis::static_size))) return_trace (false);
|
2021-07-29 00:50:34 +02:00
|
|
|
|
if (unlikely (!c->extend (this))) return_trace (false);
|
2021-07-29 02:20:53 +02:00
|
|
|
|
unsigned int region_count = src->regionCount;
|
2019-07-02 03:52:57 +02:00
|
|
|
|
for (unsigned int r = 0; r < regionCount; r++)
|
2020-01-09 20:25:45 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned int backward = region_map.backward (r);
|
|
|
|
|
if (backward >= region_count) return_trace (false);
|
|
|
|
|
memcpy (&axesZ[axisCount * r], &src->axesZ[axisCount * backward], VarRegionAxis::static_size * axisCount);
|
|
|
|
|
}
|
2019-07-02 03:52:57 +02:00
|
|
|
|
|
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned int get_size () const { return min_size + VarRegionAxis::static_size * axisCount * regionCount; }
|
2018-09-04 19:25:21 +02:00
|
|
|
|
|
2021-07-29 02:20:53 +02:00
|
|
|
|
public:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 axisCount;
|
2021-09-20 05:06:09 +02:00
|
|
|
|
HBUINT15 regionCount;
|
2021-07-29 02:20:53 +02:00
|
|
|
|
protected:
|
2018-05-09 01:42:45 +02:00
|
|
|
|
UnsizedArrayOf<VarRegionAxis>
|
|
|
|
|
axesZ;
|
2016-09-10 00:40:15 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_ARRAY (4, axesZ);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct VarData
|
|
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_region_index_count () const
|
2018-10-09 00:05:36 +02:00
|
|
|
|
{ return regionIndices.len; }
|
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_row_size () const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{ return shortCount + regionIndices.len; }
|
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_size () const
|
2021-07-29 01:33:26 +02:00
|
|
|
|
{ return min_size
|
|
|
|
|
- regionIndices.min_size + regionIndices.get_size ()
|
|
|
|
|
+ itemCount * get_row_size ();
|
|
|
|
|
}
|
2016-09-10 00:40:15 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
float get_delta (unsigned int inner,
|
2020-07-18 19:44:52 +02:00
|
|
|
|
const int *coords, unsigned int coord_count,
|
|
|
|
|
const VarRegionList ®ions) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
if (unlikely (inner >= itemCount))
|
|
|
|
|
return 0.;
|
|
|
|
|
|
|
|
|
|
unsigned int count = regionIndices.len;
|
|
|
|
|
unsigned int scount = shortCount;
|
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
const HBUINT8 *bytes = get_delta_bytes ();
|
2018-01-10 03:07:30 +01:00
|
|
|
|
const HBUINT8 *row = bytes + inner * (scount + count);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
|
|
|
|
|
float delta = 0.;
|
|
|
|
|
unsigned int i = 0;
|
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
|
const HBINT16 *scursor = reinterpret_cast<const HBINT16 *> (row);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
for (; i < scount; i++)
|
|
|
|
|
{
|
2018-05-09 01:56:11 +02:00
|
|
|
|
float scalar = regions.evaluate (regionIndices.arrayZ[i], coords, coord_count);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
delta += scalar * *scursor++;
|
|
|
|
|
}
|
2018-01-10 03:07:30 +01:00
|
|
|
|
const HBINT8 *bcursor = reinterpret_cast<const HBINT8 *> (scursor);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
for (; i < count; i++)
|
|
|
|
|
{
|
2018-05-09 01:56:11 +02:00
|
|
|
|
float scalar = regions.evaluate (regionIndices.arrayZ[i], coords, coord_count);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
delta += scalar * *bcursor++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return delta;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 02:02:52 +02:00
|
|
|
|
void get_region_scalars (const int *coords, unsigned int coord_count,
|
|
|
|
|
const VarRegionList ®ions,
|
|
|
|
|
float *scalars /*OUT */,
|
|
|
|
|
unsigned int num_scalars) const
|
2018-10-09 00:05:36 +02:00
|
|
|
|
{
|
2019-06-20 04:26:22 +02:00
|
|
|
|
unsigned count = hb_min (num_scalars, regionIndices.len);
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
scalars[i] = regions.evaluate (regionIndices.arrayZ[i], coords, coord_count);
|
|
|
|
|
for (unsigned int i = count; i < num_scalars; i++)
|
|
|
|
|
scalars[i] = 0.f;
|
2018-10-09 00:05:36 +02:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
|
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (c->check_struct (this) &&
|
2018-11-15 20:40:56 +01:00
|
|
|
|
regionIndices.sanitize (c) &&
|
2016-09-10 00:40:15 +02:00
|
|
|
|
shortCount <= regionIndices.len &&
|
2019-07-02 03:52:57 +02:00
|
|
|
|
c->check_range (get_delta_bytes (),
|
2018-11-12 20:23:31 +01:00
|
|
|
|
itemCount,
|
|
|
|
|
get_row_size ()));
|
2016-09-10 00:40:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
bool serialize (hb_serialize_context_t *c,
|
|
|
|
|
const VarData *src,
|
2019-07-13 08:02:29 +02:00
|
|
|
|
const hb_inc_bimap_t &inner_map,
|
2019-07-02 03:52:57 +02:00
|
|
|
|
const hb_bimap_t ®ion_map)
|
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2019-07-13 08:02:29 +02:00
|
|
|
|
itemCount = inner_map.get_next_value ();
|
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
/* Optimize short count */
|
|
|
|
|
unsigned short ri_count = src->regionIndices.len;
|
|
|
|
|
enum delta_size_t { kZero=0, kByte, kShort };
|
|
|
|
|
hb_vector_t<delta_size_t> delta_sz;
|
|
|
|
|
hb_vector_t<unsigned int> ri_map; /* maps old index to new index */
|
|
|
|
|
delta_sz.resize (ri_count);
|
|
|
|
|
ri_map.resize (ri_count);
|
|
|
|
|
unsigned int new_short_count = 0;
|
|
|
|
|
unsigned int r;
|
|
|
|
|
for (r = 0; r < ri_count; r++)
|
|
|
|
|
{
|
|
|
|
|
delta_sz[r] = kZero;
|
2019-07-13 08:02:29 +02:00
|
|
|
|
for (unsigned int i = 0; i < inner_map.get_next_value (); i++)
|
2019-07-02 03:52:57 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int old = inner_map.backward (i);
|
|
|
|
|
int16_t delta = src->get_item_delta (old, r);
|
|
|
|
|
if (delta < -128 || 127 < delta)
|
|
|
|
|
{
|
|
|
|
|
delta_sz[r] = kShort;
|
|
|
|
|
new_short_count++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else if (delta != 0)
|
|
|
|
|
delta_sz[r] = kByte;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
unsigned int short_index = 0;
|
|
|
|
|
unsigned int byte_index = new_short_count;
|
|
|
|
|
unsigned int new_ri_count = 0;
|
|
|
|
|
for (r = 0; r < ri_count; r++)
|
|
|
|
|
if (delta_sz[r])
|
|
|
|
|
{
|
2019-12-31 13:23:02 +01:00
|
|
|
|
ri_map[r] = (delta_sz[r] == kShort)? short_index++ : byte_index++;
|
|
|
|
|
new_ri_count++;
|
2019-07-02 03:52:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
shortCount = new_short_count;
|
|
|
|
|
regionIndices.len = new_ri_count;
|
|
|
|
|
|
2021-07-29 01:33:26 +02:00
|
|
|
|
if (unlikely (!c->extend (this))) return_trace (false);
|
2019-07-02 03:52:57 +02:00
|
|
|
|
|
|
|
|
|
for (r = 0; r < ri_count; r++)
|
|
|
|
|
if (delta_sz[r]) regionIndices[ri_map[r]] = region_map[src->regionIndices[r]];
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < itemCount; i++)
|
|
|
|
|
{
|
|
|
|
|
unsigned int old = inner_map.backward (i);
|
|
|
|
|
for (unsigned int r = 0; r < ri_count; r++)
|
|
|
|
|
if (delta_sz[r]) set_item_delta (i, ri_map[r], src->get_item_delta (old, r));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 02:20:53 +02:00
|
|
|
|
void collect_region_refs (hb_set_t ®ion_indices, const hb_inc_bimap_t &inner_map) const
|
2019-07-02 03:52:57 +02:00
|
|
|
|
{
|
|
|
|
|
for (unsigned int r = 0; r < regionIndices.len; r++)
|
|
|
|
|
{
|
|
|
|
|
unsigned int region = regionIndices[r];
|
2021-07-29 02:20:53 +02:00
|
|
|
|
if (region_indices.has (region)) continue;
|
2019-07-13 08:02:29 +02:00
|
|
|
|
for (unsigned int i = 0; i < inner_map.get_next_value (); i++)
|
2019-07-02 03:52:57 +02:00
|
|
|
|
if (get_item_delta (inner_map.backward (i), r) != 0)
|
|
|
|
|
{
|
2021-07-29 02:20:53 +02:00
|
|
|
|
region_indices.add (region);
|
2019-07-02 03:52:57 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
const HBUINT8 *get_delta_bytes () const
|
|
|
|
|
{ return &StructAfter<HBUINT8> (regionIndices); }
|
|
|
|
|
|
|
|
|
|
HBUINT8 *get_delta_bytes ()
|
|
|
|
|
{ return &StructAfter<HBUINT8> (regionIndices); }
|
|
|
|
|
|
|
|
|
|
int16_t get_item_delta (unsigned int item, unsigned int region) const
|
|
|
|
|
{
|
|
|
|
|
if ( item >= itemCount || unlikely (region >= regionIndices.len)) return 0;
|
|
|
|
|
const HBINT8 *p = (const HBINT8 *)get_delta_bytes () + item * get_row_size ();
|
|
|
|
|
if (region < shortCount)
|
|
|
|
|
return ((const HBINT16 *)p)[region];
|
|
|
|
|
else
|
|
|
|
|
return (p + HBINT16::static_size * shortCount)[region - shortCount];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void set_item_delta (unsigned int item, unsigned int region, int16_t delta)
|
|
|
|
|
{
|
|
|
|
|
HBINT8 *p = (HBINT8 *)get_delta_bytes () + item * get_row_size ();
|
|
|
|
|
if (region < shortCount)
|
|
|
|
|
((HBINT16 *)p)[region] = delta;
|
|
|
|
|
else
|
|
|
|
|
(p + HBINT16::static_size * shortCount)[region - shortCount] = delta;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-10 00:40:15 +02:00
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 itemCount;
|
|
|
|
|
HBUINT16 shortCount;
|
2021-04-01 00:04:43 +02:00
|
|
|
|
Array16Of<HBUINT16> regionIndices;
|
2018-11-22 05:23:49 +01:00
|
|
|
|
/*UnsizedArrayOf<HBUINT8>bytesX;*/
|
2016-09-10 00:40:15 +02:00
|
|
|
|
public:
|
2018-11-22 05:23:49 +01:00
|
|
|
|
DEFINE_SIZE_ARRAY (6, regionIndices);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-09-10 09:22:24 +02:00
|
|
|
|
struct VariationStore
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
2021-03-31 19:36:36 +02:00
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
float get_delta (unsigned int outer, unsigned int inner,
|
|
|
|
|
const int *coords, unsigned int coord_count) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifdef HB_NO_VAR
|
|
|
|
|
return 0.f;
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-09-10 00:40:15 +02:00
|
|
|
|
if (unlikely (outer >= dataSets.len))
|
2019-06-20 04:26:22 +02:00
|
|
|
|
return 0.f;
|
2016-09-10 00:40:15 +02:00
|
|
|
|
|
|
|
|
|
return (this+dataSets[outer]).get_delta (inner,
|
|
|
|
|
coords, coord_count,
|
|
|
|
|
this+regions);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-31 19:36:36 +02:00
|
|
|
|
public:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
float get_delta (unsigned int index,
|
|
|
|
|
const int *coords, unsigned int coord_count) const
|
2017-01-23 20:56:08 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned int outer = index >> 16;
|
|
|
|
|
unsigned int inner = index & 0xFFFF;
|
|
|
|
|
return get_delta (outer, inner, coords, coord_count);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 00:40:15 +02:00
|
|
|
|
{
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifdef HB_NO_VAR
|
|
|
|
|
return true;
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-09-10 00:40:15 +02:00
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
|
format == 1 &&
|
|
|
|
|
regions.sanitize (c, this) &&
|
|
|
|
|
dataSets.sanitize (c, this));
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
bool serialize (hb_serialize_context_t *c,
|
|
|
|
|
const VariationStore *src,
|
2019-12-31 13:23:02 +01:00
|
|
|
|
const hb_array_t <hb_inc_bimap_t> &inner_maps)
|
2019-07-02 03:52:57 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2021-07-29 01:36:22 +02:00
|
|
|
|
if (unlikely (!c->extend_min (this))) return_trace (false);
|
2021-07-29 00:50:34 +02:00
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
unsigned int set_count = 0;
|
|
|
|
|
for (unsigned int i = 0; i < inner_maps.length; i++)
|
2021-07-29 00:50:34 +02:00
|
|
|
|
if (inner_maps[i].get_population ())
|
|
|
|
|
set_count++;
|
2019-07-02 03:52:57 +02:00
|
|
|
|
|
|
|
|
|
format = 1;
|
|
|
|
|
|
2021-07-29 02:20:53 +02:00
|
|
|
|
const auto &src_regions = src+src->regions;
|
|
|
|
|
|
|
|
|
|
hb_set_t region_indices;
|
2019-07-02 03:52:57 +02:00
|
|
|
|
for (unsigned int i = 0; i < inner_maps.length; i++)
|
2021-07-29 02:20:53 +02:00
|
|
|
|
(src+src->dataSets[i]).collect_region_refs (region_indices, inner_maps[i]);
|
2021-07-30 03:23:41 +02:00
|
|
|
|
|
|
|
|
|
if (region_indices.in_error ())
|
|
|
|
|
return_trace (false);
|
|
|
|
|
|
2021-07-29 19:19:13 +02:00
|
|
|
|
region_indices.del_range ((src_regions).regionCount, hb_set_t::INVALID);
|
2021-07-29 02:20:53 +02:00
|
|
|
|
|
|
|
|
|
/* TODO use constructor when our data-structures support that. */
|
|
|
|
|
hb_inc_bimap_t region_map;
|
|
|
|
|
+ hb_iter (region_indices)
|
|
|
|
|
| hb_apply ([®ion_map] (unsigned _) { region_map.add(_); })
|
|
|
|
|
;
|
2021-07-16 23:06:55 +02:00
|
|
|
|
if (region_map.in_error())
|
|
|
|
|
return_trace (false);
|
2019-07-02 03:52:57 +02:00
|
|
|
|
|
2021-07-29 02:20:53 +02:00
|
|
|
|
if (unlikely (!regions.serialize_serialize (c, &src_regions, region_map)))
|
2021-06-29 23:23:37 +02:00
|
|
|
|
return_trace (false);
|
2019-07-02 03:52:57 +02:00
|
|
|
|
|
|
|
|
|
dataSets.len = set_count;
|
2021-07-29 00:50:34 +02:00
|
|
|
|
if (unlikely (!c->extend (dataSets))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
/* TODO: The following code could be simplified when
|
|
|
|
|
* List16OfOffset16To::subset () can take a custom param to be passed to VarData::serialize () */
|
2019-07-02 03:52:57 +02:00
|
|
|
|
unsigned int set_index = 0;
|
|
|
|
|
for (unsigned int i = 0; i < inner_maps.length; i++)
|
|
|
|
|
{
|
2021-07-29 00:50:34 +02:00
|
|
|
|
if (!inner_maps[i].get_population ()) continue;
|
2021-06-29 23:23:37 +02:00
|
|
|
|
if (unlikely (!dataSets[set_index++]
|
2021-07-29 00:50:34 +02:00
|
|
|
|
.serialize_serialize (c, &(src+src->dataSets[i]), inner_maps[i], region_map)))
|
2019-07-02 03:52:57 +02:00
|
|
|
|
return_trace (false);
|
|
|
|
|
}
|
2019-10-01 12:19:55 +02:00
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
|
|
|
|
|
VariationStore *varstore_prime = c->serializer->start_embed<VariationStore> ();
|
|
|
|
|
if (unlikely (!varstore_prime)) return_trace (false);
|
|
|
|
|
|
|
|
|
|
const hb_set_t *variation_indices = c->plan->layout_variation_indices;
|
|
|
|
|
if (variation_indices->is_empty ()) return_trace (false);
|
|
|
|
|
|
|
|
|
|
hb_vector_t<hb_inc_bimap_t> inner_maps;
|
|
|
|
|
inner_maps.resize ((unsigned) dataSets.len);
|
|
|
|
|
for (unsigned i = 0; i < inner_maps.length; i++)
|
|
|
|
|
inner_maps[i].init ();
|
|
|
|
|
|
|
|
|
|
for (unsigned idx : c->plan->layout_variation_indices->iter ())
|
|
|
|
|
{
|
|
|
|
|
uint16_t major = idx >> 16;
|
|
|
|
|
uint16_t minor = idx & 0xFFFF;
|
|
|
|
|
|
|
|
|
|
if (major >= inner_maps.length)
|
|
|
|
|
{
|
2020-07-29 06:03:32 +02:00
|
|
|
|
for (unsigned i = 0; i < inner_maps.length; i++)
|
|
|
|
|
inner_maps[i].fini ();
|
|
|
|
|
return_trace (false);
|
2020-02-26 22:11:42 +01:00
|
|
|
|
}
|
|
|
|
|
inner_maps[major].add (minor);
|
|
|
|
|
}
|
|
|
|
|
varstore_prime->serialize (c->serializer, this, inner_maps.as_array ());
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < inner_maps.length; i++)
|
|
|
|
|
inner_maps[i].fini ();
|
2020-08-27 02:31:50 +02:00
|
|
|
|
|
|
|
|
|
return_trace (
|
|
|
|
|
!c->serializer->in_error()
|
|
|
|
|
&& varstore_prime->dataSets);
|
2020-02-26 22:11:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 02:02:52 +02:00
|
|
|
|
unsigned int get_region_index_count (unsigned int major) const
|
|
|
|
|
{ return (this+dataSets[major]).get_region_index_count (); }
|
2018-10-09 00:05:36 +02:00
|
|
|
|
|
2021-07-29 02:02:52 +02:00
|
|
|
|
void get_region_scalars (unsigned int major,
|
|
|
|
|
const int *coords, unsigned int coord_count,
|
|
|
|
|
float *scalars /*OUT*/,
|
|
|
|
|
unsigned int num_scalars) const
|
2018-10-09 00:05:36 +02:00
|
|
|
|
{
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifdef HB_NO_VAR
|
|
|
|
|
for (unsigned i = 0; i < num_scalars; i++)
|
|
|
|
|
scalars[i] = 0.f;
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-07-29 02:02:52 +02:00
|
|
|
|
(this+dataSets[major]).get_region_scalars (coords, coord_count,
|
|
|
|
|
this+regions,
|
|
|
|
|
&scalars[0], num_scalars);
|
2018-10-09 00:05:36 +02:00
|
|
|
|
}
|
2018-09-04 19:25:21 +02:00
|
|
|
|
|
2019-07-02 03:52:57 +02:00
|
|
|
|
unsigned int get_sub_table_count () const { return dataSets.len; }
|
|
|
|
|
|
2016-09-10 00:40:15 +02:00
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format;
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset32To<VarRegionList> regions;
|
2021-03-31 23:26:42 +02:00
|
|
|
|
Array16OfOffset32To<VarData> dataSets;
|
2016-09-10 00:40:15 +02:00
|
|
|
|
public:
|
2021-07-29 00:50:34 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY_SIZED (8, dataSets);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-09-10 10:24:28 +02:00
|
|
|
|
/*
|
|
|
|
|
* Feature Variations
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
struct ConditionFormat1
|
|
|
|
|
{
|
|
|
|
|
friend struct Condition;
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->embed (this);
|
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-10 10:24:28 +02:00
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool evaluate (const int *coords, unsigned int coord_len) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
int coord = axisIndex < coord_len ? coords[axisIndex] : 0;
|
|
|
|
|
return filterRangeMinValue <= coord && coord <= filterRangeMaxValue;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format; /* Format identifier--format = 1 */
|
|
|
|
|
HBUINT16 axisIndex;
|
2016-09-10 10:24:28 +02:00
|
|
|
|
F2DOT14 filterRangeMinValue;
|
|
|
|
|
F2DOT14 filterRangeMaxValue;
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct Condition
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool evaluate (const int *coords, unsigned int coord_len) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
switch (u.format) {
|
|
|
|
|
case 1: return u.format1.evaluate (coords, coord_len);
|
|
|
|
|
default:return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
template <typename context_t, typename ...Ts>
|
|
|
|
|
typename context_t::return_t dispatch (context_t *c, Ts&&... ds) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_DISPATCH (this, u.format);
|
|
|
|
|
if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
|
|
|
|
|
switch (u.format) {
|
2021-11-02 07:18:22 +01:00
|
|
|
|
case 1: return_trace (c->dispatch (u.format1, std::forward<Ts> (ds)...));
|
2019-11-01 18:21:36 +01:00
|
|
|
|
default:return_trace (c->default_return_value ());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
if (!u.format.sanitize (c)) return_trace (false);
|
|
|
|
|
switch (u.format) {
|
|
|
|
|
case 1: return_trace (u.format1.sanitize (c));
|
|
|
|
|
default:return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
union {
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format; /* Format identifier */
|
2016-09-10 10:24:28 +02:00
|
|
|
|
ConditionFormat1 format1;
|
|
|
|
|
} u;
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_UNION (2, format);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ConditionSet
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool evaluate (const int *coords, unsigned int coord_len) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int count = conditions.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-05-09 01:56:11 +02:00
|
|
|
|
if (!(this+conditions.arrayZ[i]).evaluate (coords, coord_len))
|
2018-11-15 20:40:56 +01:00
|
|
|
|
return false;
|
2016-09-10 10:24:28 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
+ conditions.iter ()
|
2020-03-07 20:02:36 +01:00
|
|
|
|
| hb_apply (subset_offset_array (c, out->conditions, this))
|
2019-11-01 18:21:36 +01:00
|
|
|
|
;
|
2021-03-25 20:33:51 +01:00
|
|
|
|
|
|
|
|
|
return_trace (bool (out->conditions));
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (conditions.sanitize (c, this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
2021-03-31 23:26:42 +02:00
|
|
|
|
Array16OfOffset32To<Condition> conditions;
|
2016-09-10 10:24:28 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_ARRAY (2, conditions);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct FeatureTableSubstitutionRecord
|
|
|
|
|
{
|
2016-09-10 13:52:34 +02:00
|
|
|
|
friend struct FeatureTableSubstitution;
|
2016-09-10 12:53:11 +02:00
|
|
|
|
|
2020-01-12 11:51:29 +01:00
|
|
|
|
void collect_lookups (const void *base, hb_set_t *lookup_indexes /* OUT */) const
|
2019-10-23 01:00:43 +02:00
|
|
|
|
{
|
2020-01-12 11:51:29 +01:00
|
|
|
|
return (base+feature).add_lookup_indexes_to (lookup_indexes);
|
2019-10-23 01:00:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 23:59:02 +01:00
|
|
|
|
void closure_features (const void *base,
|
|
|
|
|
const hb_map_t *lookup_indexes,
|
|
|
|
|
hb_set_t *feature_indexes /* OUT */) const
|
|
|
|
|
{
|
|
|
|
|
if ((base+feature).intersects_lookup_indexes (lookup_indexes))
|
|
|
|
|
feature_indexes->add (featureIndex);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool subset (hb_subset_layout_context_t *c, const void *base) const
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
2021-03-25 20:57:12 +01:00
|
|
|
|
if (!c->feature_index_map->has (featureIndex)) {
|
|
|
|
|
// Feature that is being substituted is not being retained, so we don't
|
|
|
|
|
// need this.
|
|
|
|
|
return_trace (false);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
auto *out = c->subset_context->serializer->embed (this);
|
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
|
|
|
|
|
|
out->featureIndex = c->feature_index_map->get (featureIndex);
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool ret = out->feature.serialize_subset (c->subset_context, feature, base, c);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
return_trace (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
2016-09-10 13:52:34 +02:00
|
|
|
|
return_trace (c->check_struct (this) && feature.sanitize (c, base));
|
2016-09-10 10:24:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 featureIndex;
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset32To<Feature> feature;
|
2016-09-10 10:24:28 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct FeatureTableSubstitution
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const Feature *find_substitute (unsigned int feature_index) const
|
2016-09-10 12:53:11 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int count = substitutions.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
2018-05-09 01:56:11 +02:00
|
|
|
|
const FeatureTableSubstitutionRecord &record = substitutions.arrayZ[i];
|
2016-09-10 13:52:34 +02:00
|
|
|
|
if (record.featureIndex == feature_index)
|
|
|
|
|
return &(this+record.feature);
|
2016-09-10 12:53:11 +02:00
|
|
|
|
}
|
2017-10-15 12:11:08 +02:00
|
|
|
|
return nullptr;
|
2016-09-10 12:53:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-23 01:00:43 +02:00
|
|
|
|
void collect_lookups (const hb_set_t *feature_indexes,
|
|
|
|
|
hb_set_t *lookup_indexes /* OUT */) const
|
|
|
|
|
{
|
|
|
|
|
+ hb_iter (substitutions)
|
|
|
|
|
| hb_filter (feature_indexes, &FeatureTableSubstitutionRecord::featureIndex)
|
Minor, fix warnings raised when built with -std=c++2a
Follow up to c184180,
It was raising,
src/hb-ot-layout-common.hh:1067:63: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
src/hb-ot-layout-common.hh:1067:19: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_filter ([=] (const OffsetTo<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); })
^
, this
and
src/hb-ot-layout-common.hh:2626:38: warning: implicit capture of 'this' with a capture default of '=' is deprecated [-Wdeprecated-this-capture]
{ r.collect_lookups (this, lookup_indexes); })
^
src/hb-ot-layout-common.hh:2625:18: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_apply ([=] (const FeatureTableSubstitutionRecord& r)
^
, this
and
src/hb-ot-hdmx-table.hh:141:44: error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture]
return device_record->widthsZ.as_array (get_num_glyphs ()) [_];
^
src/hb-ot-hdmx-table.hh:137:17: note: add an explicit capture of 'this' to capture '*this' by reference
| hb_map ([=] (hb_codepoint_t _)
^
, this
2020-02-06 09:42:41 +01:00
|
|
|
|
| hb_apply ([this, lookup_indexes] (const FeatureTableSubstitutionRecord& r)
|
|
|
|
|
{ r.collect_lookups (this, lookup_indexes); })
|
2019-10-23 01:00:43 +02:00
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 23:59:02 +01:00
|
|
|
|
void closure_features (const hb_map_t *lookup_indexes,
|
|
|
|
|
hb_set_t *feature_indexes /* OUT */) const
|
|
|
|
|
{
|
|
|
|
|
for (const FeatureTableSubstitutionRecord& record : substitutions)
|
|
|
|
|
record.closure_features (this, lookup_indexes, feature_indexes);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 22:35:30 +02:00
|
|
|
|
bool intersects_features (const hb_map_t *feature_index_map) const
|
|
|
|
|
{
|
|
|
|
|
for (const FeatureTableSubstitutionRecord& record : substitutions)
|
|
|
|
|
{
|
|
|
|
|
if (feature_index_map->has (record.featureIndex)) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
out->version.major = version.major;
|
|
|
|
|
out->version.minor = version.minor;
|
|
|
|
|
|
|
|
|
|
+ substitutions.iter ()
|
2020-03-07 20:02:36 +01:00
|
|
|
|
| hb_apply (subset_record_array (l, &(out->substitutions), this))
|
2019-11-01 18:21:36 +01:00
|
|
|
|
;
|
2021-03-25 20:33:51 +01:00
|
|
|
|
|
|
|
|
|
return_trace (bool (out->substitutions));
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (version.sanitize (c) &&
|
|
|
|
|
likely (version.major == 1) &&
|
|
|
|
|
substitutions.sanitize (c, this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
FixedVersion<> version; /* Version--0x00010000u */
|
2021-04-01 00:04:43 +02:00
|
|
|
|
Array16Of<FeatureTableSubstitutionRecord>
|
2016-09-10 10:24:28 +02:00
|
|
|
|
substitutions;
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_ARRAY (6, substitutions);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct FeatureVariationRecord
|
|
|
|
|
{
|
|
|
|
|
friend struct FeatureVariations;
|
|
|
|
|
|
2020-01-11 13:07:24 +01:00
|
|
|
|
void collect_lookups (const void *base,
|
|
|
|
|
const hb_set_t *feature_indexes,
|
2019-10-23 01:00:43 +02:00
|
|
|
|
hb_set_t *lookup_indexes /* OUT */) const
|
|
|
|
|
{
|
2020-01-11 13:07:24 +01:00
|
|
|
|
return (base+substitutions).collect_lookups (feature_indexes, lookup_indexes);
|
2019-10-23 01:00:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 23:59:02 +01:00
|
|
|
|
void closure_features (const void *base,
|
|
|
|
|
const hb_map_t *lookup_indexes,
|
|
|
|
|
hb_set_t *feature_indexes /* OUT */) const
|
|
|
|
|
{
|
|
|
|
|
(base+substitutions).closure_features (lookup_indexes, feature_indexes);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 22:35:30 +02:00
|
|
|
|
bool intersects_features (const void *base, const hb_map_t *feature_index_map) const
|
|
|
|
|
{
|
|
|
|
|
return (base+substitutions).intersects_features (feature_index_map);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-08 21:09:24 +01:00
|
|
|
|
bool subset (hb_subset_layout_context_t *c, const void *base) const
|
2019-11-01 18:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->subset_context->serializer->embed (this);
|
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
2020-04-20 11:42:45 +02:00
|
|
|
|
|
2021-04-01 22:35:30 +02:00
|
|
|
|
out->conditions.serialize_subset (c->subset_context, conditions, base);
|
|
|
|
|
out->substitutions.serialize_subset (c->subset_context, substitutions, base, c);
|
|
|
|
|
|
|
|
|
|
return_trace (true);
|
2019-11-01 18:21:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (conditions.sanitize (c, base) &&
|
|
|
|
|
substitutions.sanitize (c, base));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset32To<ConditionSet>
|
2016-09-10 10:24:28 +02:00
|
|
|
|
conditions;
|
2021-03-31 20:49:14 +02:00
|
|
|
|
Offset32To<FeatureTableSubstitution>
|
2016-09-10 10:24:28 +02:00
|
|
|
|
substitutions;
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct FeatureVariations
|
|
|
|
|
{
|
2019-01-22 12:11:24 +01:00
|
|
|
|
static constexpr unsigned NOT_FOUND_INDEX = 0xFFFFFFFFu;
|
2016-09-10 12:53:11 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool find_index (const int *coords, unsigned int coord_len,
|
2020-07-18 19:44:52 +02:00
|
|
|
|
unsigned int *index) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int count = varRecords.len;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
2018-05-09 01:56:11 +02:00
|
|
|
|
const FeatureVariationRecord &record = varRecords.arrayZ[i];
|
2016-09-10 10:24:28 +02:00
|
|
|
|
if ((this+record.conditions).evaluate (coords, coord_len))
|
2016-09-10 12:32:39 +02:00
|
|
|
|
{
|
|
|
|
|
*index = i;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-09-10 10:24:28 +02:00
|
|
|
|
}
|
2016-09-10 12:53:11 +02:00
|
|
|
|
*index = NOT_FOUND_INDEX;
|
2016-09-10 12:32:39 +02:00
|
|
|
|
return false;
|
2016-09-10 10:24:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
const Feature *find_substitute (unsigned int variations_index,
|
|
|
|
|
unsigned int feature_index) const
|
2016-09-10 12:53:11 +02:00
|
|
|
|
{
|
|
|
|
|
const FeatureVariationRecord &record = varRecords[variations_index];
|
|
|
|
|
return (this+record.substitutions).find_substitute (feature_index);
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 00:46:24 +02:00
|
|
|
|
FeatureVariations* copy (hb_serialize_context_t *c) const
|
2018-09-02 03:34:50 +02:00
|
|
|
|
{
|
2019-05-08 00:46:24 +02:00
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
return_trace (c->embed (*this));
|
2018-09-02 03:34:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-23 01:00:43 +02:00
|
|
|
|
void collect_lookups (const hb_set_t *feature_indexes,
|
|
|
|
|
hb_set_t *lookup_indexes /* OUT */) const
|
|
|
|
|
{
|
|
|
|
|
for (const FeatureVariationRecord& r : varRecords)
|
2020-01-11 13:07:24 +01:00
|
|
|
|
r.collect_lookups (this, feature_indexes, lookup_indexes);
|
2019-10-23 01:00:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 23:59:02 +01:00
|
|
|
|
void closure_features (const hb_map_t *lookup_indexes,
|
|
|
|
|
hb_set_t *feature_indexes /* OUT */) const
|
|
|
|
|
{
|
|
|
|
|
for (const FeatureVariationRecord& record : varRecords)
|
|
|
|
|
record.closure_features (this, lookup_indexes, feature_indexes);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:21:36 +01:00
|
|
|
|
bool subset (hb_subset_context_t *c,
|
|
|
|
|
hb_subset_layout_context_t *l) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
|
if (unlikely (!out || !c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
|
|
out->version.major = version.major;
|
|
|
|
|
out->version.minor = version.minor;
|
|
|
|
|
|
2021-04-01 22:35:30 +02:00
|
|
|
|
int keep_up_to = -1;
|
|
|
|
|
for (int i = varRecords.len - 1; i >= 0; i--) {
|
|
|
|
|
if (varRecords[i].intersects_features (this, l->feature_index_map)) {
|
|
|
|
|
keep_up_to = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned count = (unsigned) (keep_up_to + 1);
|
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
|
|
|
|
subset_record_array (l, &(out->varRecords), this) (varRecords[i]);
|
|
|
|
|
}
|
2019-11-01 18:21:36 +01:00
|
|
|
|
return_trace (bool (out->varRecords));
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-09-10 10:24:28 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (version.sanitize (c) &&
|
|
|
|
|
likely (version.major == 1) &&
|
|
|
|
|
varRecords.sanitize (c, this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
FixedVersion<> version; /* Version--0x00010000u */
|
2021-03-31 23:34:26 +02:00
|
|
|
|
Array32Of<FeatureVariationRecord>
|
2016-09-10 10:24:28 +02:00
|
|
|
|
varRecords;
|
|
|
|
|
public:
|
2018-09-02 03:34:50 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY_SIZED (8, varRecords);
|
2016-09-10 10:24:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-09-10 00:40:15 +02:00
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
/*
|
|
|
|
|
* Device Tables
|
|
|
|
|
*/
|
|
|
|
|
|
2016-03-02 04:21:36 +01:00
|
|
|
|
struct HintingDevice
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2016-03-02 04:21:36 +01:00
|
|
|
|
friend struct Device;
|
|
|
|
|
|
|
|
|
|
private:
|
2010-05-20 18:44:52 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_position_t get_x_delta (hb_font_t *font) const
|
2011-05-11 06:02:02 +02:00
|
|
|
|
{ return get_delta (font->x_ppem, font->x_scale); }
|
2010-05-20 18:44:52 +02:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_position_t get_y_delta (hb_font_t *font) const
|
2011-05-11 06:02:02 +02:00
|
|
|
|
{ return get_delta (font->y_ppem, font->y_scale); }
|
2010-05-20 18:44:52 +02:00
|
|
|
|
|
2019-09-19 01:11:44 +02:00
|
|
|
|
public:
|
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
|
unsigned int get_size () const
|
2016-01-12 14:05:01 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned int f = deltaFormat;
|
2018-01-10 03:07:30 +01:00
|
|
|
|
if (unlikely (f < 1 || f > 3 || startSize > endSize)) return 3 * HBUINT16::static_size;
|
|
|
|
|
return HBUINT16::static_size * (4 + ((endSize - startSize) >> (4 - f)));
|
2016-01-12 14:05:01 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-01-12 14:05:01 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
return_trace (c->check_struct (this) && c->check_range (this, this->get_size ()));
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 01:11:44 +02:00
|
|
|
|
HintingDevice* copy (hb_serialize_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
return_trace (c->embed<HintingDevice> (this));
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 14:05:01 +01:00
|
|
|
|
private:
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
int get_delta (unsigned int ppem, int scale) const
|
2010-09-22 22:46:18 +02:00
|
|
|
|
{
|
|
|
|
|
if (!ppem) return 0;
|
|
|
|
|
|
|
|
|
|
int pixels = get_delta_pixels (ppem);
|
|
|
|
|
|
|
|
|
|
if (!pixels) return 0;
|
|
|
|
|
|
2013-11-06 20:46:04 +01:00
|
|
|
|
return (int) (pixels * (int64_t) scale / ppem);
|
2010-09-22 22:46:18 +02:00
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
int get_delta_pixels (unsigned int ppem_size) const
|
2009-05-20 05:58:54 +02:00
|
|
|
|
{
|
2009-05-19 01:47:52 +02:00
|
|
|
|
unsigned int f = deltaFormat;
|
2010-05-04 04:51:19 +02:00
|
|
|
|
if (unlikely (f < 1 || f > 3))
|
2009-05-19 01:47:52 +02:00
|
|
|
|
return 0;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2009-05-19 01:47:52 +02:00
|
|
|
|
if (ppem_size < startSize || ppem_size > endSize)
|
|
|
|
|
return 0;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2009-05-19 01:47:52 +02:00
|
|
|
|
unsigned int s = ppem_size - startSize;
|
2009-05-18 02:28:01 +02:00
|
|
|
|
|
2018-09-10 23:29:26 +02:00
|
|
|
|
unsigned int byte = deltaValueZ[s >> (4 - f)];
|
2009-05-27 01:48:16 +02:00
|
|
|
|
unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f)));
|
2014-07-11 20:54:42 +02:00
|
|
|
|
unsigned int mask = (0xFFFFu >> (16 - (1 << f)));
|
2009-05-19 01:47:52 +02:00
|
|
|
|
|
|
|
|
|
int delta = bits & mask;
|
|
|
|
|
|
2009-08-04 19:57:41 +02:00
|
|
|
|
if ((unsigned int) delta >= ((mask + 1) >> 1))
|
2009-05-19 01:47:52 +02:00
|
|
|
|
delta -= mask + 1;
|
|
|
|
|
|
|
|
|
|
return delta;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 startSize; /* Smallest size to correct--in ppem */
|
|
|
|
|
HBUINT16 endSize; /* Largest size to correct--in ppem */
|
|
|
|
|
HBUINT16 deltaFormat; /* Format of DeltaValue array data: 1, 2, or 3
|
2010-04-26 16:07:35 +02:00
|
|
|
|
* 1 Signed 2-bit value, 8 values per uint16
|
|
|
|
|
* 2 Signed 4-bit value, 4 values per uint16
|
|
|
|
|
* 3 Signed 8-bit value, 2 values per uint16
|
|
|
|
|
*/
|
2018-09-10 23:29:26 +02:00
|
|
|
|
UnsizedArrayOf<HBUINT16>
|
|
|
|
|
deltaValueZ; /* Array of compressed data */
|
2010-05-10 22:38:32 +02:00
|
|
|
|
public:
|
2018-09-10 23:29:26 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY (6, deltaValueZ);
|
2009-05-18 02:28:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-03-01 11:12:08 +01:00
|
|
|
|
struct VariationDevice
|
|
|
|
|
{
|
2016-03-02 04:21:36 +01:00
|
|
|
|
friend struct Device;
|
|
|
|
|
|
|
|
|
|
private:
|
2016-03-01 11:12:08 +01:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_position_t get_x_delta (hb_font_t *font, const VariationStore &store) const
|
2016-09-10 11:11:05 +02:00
|
|
|
|
{ return font->em_scalef_x (get_delta (font, store)); }
|
2016-03-01 11:12:08 +01:00
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_position_t get_y_delta (hb_font_t *font, const VariationStore &store) const
|
2016-09-10 11:11:05 +02:00
|
|
|
|
{ return font->em_scalef_y (get_delta (font, store)); }
|
2016-03-01 11:12:08 +01:00
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
VariationDevice* copy (hb_serialize_context_t *c, const hb_map_t *layout_variation_idx_map) const
|
2019-09-19 01:11:44 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
2020-02-26 22:11:42 +01:00
|
|
|
|
auto snap = c->snapshot ();
|
|
|
|
|
auto *out = c->embed (this);
|
|
|
|
|
if (unlikely (!out)) return_trace (nullptr);
|
|
|
|
|
if (!layout_variation_idx_map || layout_variation_idx_map->is_empty ()) return_trace (out);
|
|
|
|
|
|
2021-03-31 19:34:41 +02:00
|
|
|
|
/* TODO Just get() and bail if NO_VARIATION. Needs to setup the map to return that. */
|
|
|
|
|
if (!layout_variation_idx_map->has (varIdx))
|
2020-02-26 22:11:42 +01:00
|
|
|
|
{
|
|
|
|
|
c->revert (snap);
|
|
|
|
|
return_trace (nullptr);
|
|
|
|
|
}
|
2021-03-31 19:34:41 +02:00
|
|
|
|
unsigned new_idx = layout_variation_idx_map->get (varIdx);
|
|
|
|
|
out->varIdx = new_idx;
|
2020-02-26 22:11:42 +01:00
|
|
|
|
return_trace (out);
|
2019-09-19 01:11:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
void record_variation_index (hb_set_t *layout_variation_indices) const
|
|
|
|
|
{
|
2021-03-31 19:34:41 +02:00
|
|
|
|
layout_variation_indices->add (varIdx);
|
2020-02-26 22:11:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-03-01 11:12:08 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
2016-09-10 00:40:15 +02:00
|
|
|
|
return_trace (c->check_struct (this));
|
2016-03-01 11:12:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
float get_delta (hb_font_t *font, const VariationStore &store) const
|
2016-03-01 11:12:08 +01:00
|
|
|
|
{
|
2021-03-31 19:34:41 +02:00
|
|
|
|
return store.get_delta (varIdx, font->coords, font->num_coords);
|
2016-03-01 11:12:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
2021-03-31 19:34:41 +02:00
|
|
|
|
VarIdx varIdx;
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 deltaFormat; /* Format identifier for this table: 0x0x8000 */
|
2016-03-01 11:12:08 +01:00
|
|
|
|
public:
|
2016-09-10 00:40:15 +02:00
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
2016-03-01 11:12:08 +01:00
|
|
|
|
};
|
|
|
|
|
|
2016-09-10 09:01:10 +02:00
|
|
|
|
struct DeviceHeader
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 reserved1;
|
|
|
|
|
HBUINT16 reserved2;
|
2016-09-10 09:01:10 +02:00
|
|
|
|
public:
|
2018-01-10 03:07:30 +01:00
|
|
|
|
HBUINT16 format; /* Format identifier */
|
2016-09-10 09:01:10 +02:00
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
|
|
|
|
};
|
|
|
|
|
|
2016-03-02 04:21:36 +01:00
|
|
|
|
struct Device
|
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_position_t get_x_delta (hb_font_t *font, const VariationStore &store=Null (VariationStore)) const
|
2016-03-02 04:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
switch (u.b.format)
|
|
|
|
|
{
|
2019-06-20 04:33:15 +02:00
|
|
|
|
#ifndef HB_NO_HINTING
|
2016-03-02 04:21:36 +01:00
|
|
|
|
case 1: case 2: case 3:
|
|
|
|
|
return u.hinting.get_x_delta (font);
|
2019-06-20 04:33:15 +02:00
|
|
|
|
#endif
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifndef HB_NO_VAR
|
2016-09-10 00:40:15 +02:00
|
|
|
|
case 0x8000:
|
2016-09-10 02:03:11 +02:00
|
|
|
|
return u.variation.get_x_delta (font, store);
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#endif
|
2016-03-02 04:21:36 +01:00
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
|
hb_position_t get_y_delta (hb_font_t *font, const VariationStore &store=Null (VariationStore)) const
|
2016-03-02 04:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
switch (u.b.format)
|
|
|
|
|
{
|
|
|
|
|
case 1: case 2: case 3:
|
2019-06-20 04:33:15 +02:00
|
|
|
|
#ifndef HB_NO_HINTING
|
2016-09-10 09:25:16 +02:00
|
|
|
|
return u.hinting.get_y_delta (font);
|
2019-06-20 04:33:15 +02:00
|
|
|
|
#endif
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifndef HB_NO_VAR
|
2016-09-10 00:40:15 +02:00
|
|
|
|
case 0x8000:
|
2016-09-10 02:03:11 +02:00
|
|
|
|
return u.variation.get_y_delta (font, store);
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#endif
|
2016-03-02 04:21:36 +01:00
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2016-03-02 04:21:36 +01:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
if (!u.b.format.sanitize (c)) return_trace (false);
|
|
|
|
|
switch (u.b.format) {
|
2019-06-20 04:33:15 +02:00
|
|
|
|
#ifndef HB_NO_HINTING
|
2016-03-02 04:21:36 +01:00
|
|
|
|
case 1: case 2: case 3:
|
|
|
|
|
return_trace (u.hinting.sanitize (c));
|
2019-06-20 04:33:15 +02:00
|
|
|
|
#endif
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifndef HB_NO_VAR
|
2016-09-10 00:40:15 +02:00
|
|
|
|
case 0x8000:
|
2016-03-02 04:21:36 +01:00
|
|
|
|
return_trace (u.variation.sanitize (c));
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#endif
|
2016-03-02 04:21:36 +01:00
|
|
|
|
default:
|
|
|
|
|
return_trace (true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
Device* copy (hb_serialize_context_t *c, const hb_map_t *layout_variation_idx_map=nullptr) const
|
2019-09-19 01:11:44 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
switch (u.b.format) {
|
|
|
|
|
#ifndef HB_NO_HINTING
|
|
|
|
|
case 1:
|
|
|
|
|
case 2:
|
|
|
|
|
case 3:
|
|
|
|
|
return_trace (reinterpret_cast<Device *> (u.hinting.copy (c)));
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef HB_NO_VAR
|
|
|
|
|
case 0x8000:
|
2020-02-26 22:11:42 +01:00
|
|
|
|
return_trace (reinterpret_cast<Device *> (u.variation.copy (c, layout_variation_idx_map)));
|
2019-09-19 01:11:44 +02:00
|
|
|
|
#endif
|
|
|
|
|
default:
|
|
|
|
|
return_trace (nullptr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
|
void collect_variation_indices (hb_set_t *layout_variation_indices) const
|
|
|
|
|
{
|
|
|
|
|
switch (u.b.format) {
|
|
|
|
|
#ifndef HB_NO_HINTING
|
|
|
|
|
case 1:
|
|
|
|
|
case 2:
|
|
|
|
|
case 3:
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef HB_NO_VAR
|
|
|
|
|
case 0x8000:
|
|
|
|
|
u.variation.record_variation_index (layout_variation_indices);
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
default:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-02 04:21:36 +01:00
|
|
|
|
protected:
|
|
|
|
|
union {
|
2016-09-10 09:01:10 +02:00
|
|
|
|
DeviceHeader b;
|
2016-03-02 04:21:36 +01:00
|
|
|
|
HintingDevice hinting;
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#ifndef HB_NO_VAR
|
2016-03-02 04:21:36 +01:00
|
|
|
|
VariationDevice variation;
|
2019-06-20 04:26:22 +02:00
|
|
|
|
#endif
|
2016-03-02 04:21:36 +01:00
|
|
|
|
} u;
|
|
|
|
|
public:
|
|
|
|
|
DEFINE_SIZE_UNION (6, b);
|
|
|
|
|
};
|
|
|
|
|
|
2016-03-01 11:12:08 +01:00
|
|
|
|
|
2012-11-17 03:49:54 +01:00
|
|
|
|
} /* namespace OT */
|
2012-08-28 23:57:49 +02:00
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
|
#endif /* HB_OT_LAYOUT_COMMON_HH */
|