2011-08-06 02:34:50 +02:00
|
|
|
/*
|
2012-05-11 01:25:34 +02:00
|
|
|
* Copyright © 2011,2012 Google, Inc.
|
2011-08-06 02:34:50 +02:00
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2011-08-17 14:19:59 +02:00
|
|
|
#ifndef HB_OT_NAME_TABLE_HH
|
|
|
|
#define HB_OT_NAME_TABLE_HH
|
2011-08-06 02:34:50 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-open-type.hh"
|
2018-10-24 07:00:19 +02:00
|
|
|
#include "hb-ot-name-language.hh"
|
2018-10-24 08:33:44 +02:00
|
|
|
#include "hb-aat-layout.hh"
|
2011-08-06 02:34:50 +02:00
|
|
|
|
|
|
|
|
2012-08-28 23:57:49 +02:00
|
|
|
namespace OT {
|
|
|
|
|
2011-08-06 02:34:50 +02:00
|
|
|
|
2018-10-16 22:06:56 +02:00
|
|
|
#define entry_score var.u16[0]
|
|
|
|
#define entry_index var.u16[1]
|
|
|
|
|
|
|
|
|
2011-08-06 02:34:50 +02:00
|
|
|
/*
|
2018-04-12 11:08:19 +02:00
|
|
|
* name -- Naming
|
|
|
|
* https://docs.microsoft.com/en-us/typography/opentype/spec/name
|
2011-08-06 02:34:50 +02:00
|
|
|
*/
|
|
|
|
#define HB_OT_TAG_name HB_TAG('n','a','m','e')
|
|
|
|
|
2018-10-16 07:42:04 +02:00
|
|
|
#define UNSUPPORTED 42
|
2011-08-17 14:43:45 +02:00
|
|
|
|
2011-08-06 02:34:50 +02:00
|
|
|
struct NameRecord
|
|
|
|
{
|
2018-10-24 08:33:44 +02:00
|
|
|
inline hb_language_t language (hb_face_t *face) const
|
2018-10-24 06:19:56 +02:00
|
|
|
{
|
|
|
|
unsigned int p = platformID;
|
|
|
|
unsigned int l = languageID;
|
|
|
|
|
|
|
|
if (p == 3)
|
2018-10-24 07:00:19 +02:00
|
|
|
return _hb_ot_name_language_for_ms_code (l);
|
|
|
|
|
|
|
|
if (p == 1)
|
|
|
|
return _hb_ot_name_language_for_mac_code (l);
|
|
|
|
|
2018-10-24 08:33:44 +02:00
|
|
|
if (p == 0)
|
|
|
|
return _hb_aat_language_get (face, l);
|
2018-10-24 06:19:56 +02:00
|
|
|
|
|
|
|
return HB_LANGUAGE_INVALID;
|
|
|
|
}
|
|
|
|
|
2018-10-16 07:42:04 +02:00
|
|
|
inline uint16_t score (void) const
|
2018-10-16 07:22:50 +02:00
|
|
|
{
|
2018-10-16 07:42:04 +02:00
|
|
|
/* Same order as in cmap::find_best_subtable(). */
|
|
|
|
unsigned int p = platformID;
|
|
|
|
unsigned int e = encodingID;
|
|
|
|
|
|
|
|
/* 32-bit. */
|
|
|
|
if (p == 3 && e == 10) return 0;
|
|
|
|
if (p == 0 && e == 6) return 1;
|
|
|
|
if (p == 0 && e == 4) return 2;
|
|
|
|
|
|
|
|
/* 16-bit. */
|
|
|
|
if (p == 3 && e == 1) return 3;
|
|
|
|
if (p == 0 && e == 3) return 4;
|
|
|
|
if (p == 0 && e == 2) return 5;
|
|
|
|
if (p == 0 && e == 1) return 6;
|
|
|
|
if (p == 0 && e == 0) return 7;
|
|
|
|
|
|
|
|
/* Symbol. */
|
|
|
|
if (p == 3 && e == 0) return 8;
|
|
|
|
|
2018-10-24 05:51:53 +02:00
|
|
|
/* We treat all Mac Latin names as ASCII only. */
|
|
|
|
if (p == 1 && e == 0) return 10; /* 10 is magic number :| */
|
2018-10-16 07:42:04 +02:00
|
|
|
|
|
|
|
return UNSUPPORTED;
|
2018-10-16 07:22:50 +02:00
|
|
|
}
|
|
|
|
|
2015-02-17 15:27:44 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2011-08-06 02:34:50 +02:00
|
|
|
/* We can check from base all the way up to the end of string... */
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (c->check_struct (this) && c->check_range ((char *) base, (unsigned int) length + offset));
|
2011-08-06 02:34:50 +02:00
|
|
|
}
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 platformID; /* Platform ID. */
|
|
|
|
HBUINT16 encodingID; /* Platform-specific encoding ID. */
|
|
|
|
HBUINT16 languageID; /* Language ID. */
|
|
|
|
HBUINT16 nameID; /* Name ID. */
|
|
|
|
HBUINT16 length; /* String length (in bytes). */
|
|
|
|
HBUINT16 offset; /* String offset from start of storage area (in bytes). */
|
2011-08-06 02:34:50 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (12);
|
|
|
|
};
|
|
|
|
|
2018-10-16 07:22:50 +02:00
|
|
|
static int
|
2018-10-24 05:30:40 +02:00
|
|
|
_hb_ot_name_entry_cmp_key (const void *pa, const void *pb)
|
2018-10-16 07:22:50 +02:00
|
|
|
{
|
|
|
|
const hb_ot_name_entry_t *a = (const hb_ot_name_entry_t *) pa;
|
|
|
|
const hb_ot_name_entry_t *b = (const hb_ot_name_entry_t *) pb;
|
2018-10-16 07:42:04 +02:00
|
|
|
|
2018-10-24 05:30:40 +02:00
|
|
|
/* Compare by name_id, then language. */
|
2018-10-16 07:42:04 +02:00
|
|
|
|
2018-10-16 07:22:50 +02:00
|
|
|
if (a->name_id != b->name_id)
|
|
|
|
return a->name_id < b->name_id ? -1 : +1;
|
2018-10-16 07:42:04 +02:00
|
|
|
|
2018-10-24 07:19:09 +02:00
|
|
|
if (a->language == b->language) return 0;
|
|
|
|
if (!a->language) return -1;
|
|
|
|
if (!b->language) return +1;
|
2018-10-24 05:30:40 +02:00
|
|
|
return strcmp (hb_language_to_string (a->language),
|
|
|
|
hb_language_to_string (b->language));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_hb_ot_name_entry_cmp (const void *pa, const void *pb)
|
|
|
|
{
|
|
|
|
/* Compare by name_id, then language, then score, then index. */
|
|
|
|
|
|
|
|
int v = _hb_ot_name_entry_cmp_key (pa, pb);
|
|
|
|
if (v)
|
|
|
|
return v;
|
|
|
|
|
|
|
|
const hb_ot_name_entry_t *a = (const hb_ot_name_entry_t *) pa;
|
|
|
|
const hb_ot_name_entry_t *b = (const hb_ot_name_entry_t *) pb;
|
2018-10-16 07:42:04 +02:00
|
|
|
|
2018-10-16 22:06:56 +02:00
|
|
|
if (a->entry_score != b->entry_score)
|
|
|
|
return a->entry_score < b->entry_score ? -1 : +1;
|
2018-10-16 07:42:04 +02:00
|
|
|
|
2018-10-16 22:06:56 +02:00
|
|
|
if (a->entry_index != b->entry_index)
|
|
|
|
return a->entry_index < b->entry_index ? -1 : +1;
|
2018-10-16 07:42:04 +02:00
|
|
|
|
2018-10-16 07:22:50 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-06 02:34:50 +02:00
|
|
|
struct name
|
|
|
|
{
|
2018-11-29 21:04:34 +01:00
|
|
|
enum { tableTag = HB_OT_TAG_name };
|
2011-08-06 02:34:50 +02:00
|
|
|
|
2013-07-21 23:05:02 +02:00
|
|
|
inline unsigned int get_size (void) const
|
2018-09-10 23:29:26 +02:00
|
|
|
{ return min_size + count * nameRecordZ[0].min_size; }
|
2013-07-21 23:05:02 +02:00
|
|
|
|
2015-03-04 21:03:39 +01:00
|
|
|
inline bool sanitize_records (hb_sanitize_context_t *c) const {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2018-10-24 08:05:55 +02:00
|
|
|
const void *string_pool = (this+stringOffset).arrayZ;
|
2011-08-06 02:34:50 +02:00
|
|
|
unsigned int _count = count;
|
2018-10-16 08:00:27 +02:00
|
|
|
/* Move to run-time?! */
|
2011-08-06 02:34:50 +02:00
|
|
|
for (unsigned int i = 0; i < _count; i++)
|
2018-09-10 23:29:26 +02:00
|
|
|
if (!nameRecordZ[i].sanitize (c, string_pool)) return_trace (false);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (true);
|
2011-08-06 02:34:50 +02:00
|
|
|
}
|
|
|
|
|
2015-02-17 15:27:44 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
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) &&
|
|
|
|
likely (format == 0 || format == 1) &&
|
2018-09-10 23:29:26 +02:00
|
|
|
c->check_array (nameRecordZ.arrayZ, count) &&
|
2018-10-24 08:16:06 +02:00
|
|
|
c->check_range (this, stringOffset));
|
2011-08-06 02:34:50 +02:00
|
|
|
}
|
|
|
|
|
2018-10-16 07:22:50 +02:00
|
|
|
struct accelerator_t
|
|
|
|
{
|
|
|
|
inline void init (hb_face_t *face)
|
|
|
|
{
|
2018-11-11 05:52:15 +01:00
|
|
|
this->table = hb_sanitize_context_t().reference_table<name> (face);
|
|
|
|
assert (this->table.get_length () >= this->table->stringOffset);
|
2018-10-24 08:16:06 +02:00
|
|
|
this->pool = (this->table+this->table->stringOffset).arrayZ;
|
2018-11-11 05:52:15 +01:00
|
|
|
this->pool_len = this->table.get_length () - this->table->stringOffset;
|
2018-10-23 12:16:03 +02:00
|
|
|
const hb_array_t<const NameRecord> all_names (this->table->nameRecordZ.arrayZ,
|
|
|
|
this->table->count);
|
2018-10-16 07:22:50 +02:00
|
|
|
|
|
|
|
this->names.init ();
|
2018-10-16 08:28:49 +02:00
|
|
|
this->names.alloc (all_names.len);
|
2018-10-16 07:22:50 +02:00
|
|
|
|
2018-10-16 07:42:04 +02:00
|
|
|
for (uint16_t i = 0; i < all_names.len; i++)
|
2018-10-16 07:22:50 +02:00
|
|
|
{
|
2018-10-16 22:06:56 +02:00
|
|
|
hb_ot_name_entry_t *entry = this->names.push ();
|
2018-10-16 07:22:50 +02:00
|
|
|
|
2018-10-28 16:26:30 +01:00
|
|
|
entry->name_id = all_names[i].nameID;
|
2018-10-24 08:33:44 +02:00
|
|
|
entry->language = all_names[i].language (face);
|
2018-10-16 22:06:56 +02:00
|
|
|
entry->entry_score = all_names[i].score ();
|
|
|
|
entry->entry_index = i;
|
2018-10-16 07:22:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this->names.qsort (_hb_ot_name_entry_cmp);
|
2018-10-24 05:51:53 +02:00
|
|
|
/* Walk and pick best only for each name_id,language pair,
|
|
|
|
* while dropping unsupported encodings. */
|
2018-10-16 07:42:04 +02:00
|
|
|
unsigned int j = 0;
|
2018-10-24 05:51:53 +02:00
|
|
|
for (unsigned int i = 0; i < this->names.len; i++)
|
2018-10-16 07:42:04 +02:00
|
|
|
{
|
2018-10-24 21:40:15 +02:00
|
|
|
if (this->names[i].entry_score == UNSUPPORTED ||
|
|
|
|
this->names[i].language == HB_LANGUAGE_INVALID)
|
2018-10-24 05:51:53 +02:00
|
|
|
continue;
|
|
|
|
if (i &&
|
|
|
|
this->names[i - 1].name_id == this->names[i].name_id &&
|
2018-10-16 07:42:04 +02:00
|
|
|
this->names[i - 1].language == this->names[i].language)
|
|
|
|
continue;
|
|
|
|
this->names[j++] = this->names[i];
|
|
|
|
}
|
|
|
|
this->names.resize (j);
|
2018-10-16 07:22:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
|
|
|
this->names.fini ();
|
2018-11-11 17:40:57 +01:00
|
|
|
this->table.destroy ();
|
2018-10-16 07:22:50 +02:00
|
|
|
}
|
|
|
|
|
2018-10-30 22:04:09 +01:00
|
|
|
inline int get_index (hb_ot_name_id_t name_id,
|
|
|
|
hb_language_t language,
|
|
|
|
unsigned int *width=nullptr) const
|
2018-10-24 05:30:40 +02:00
|
|
|
{
|
|
|
|
const hb_ot_name_entry_t key = {name_id, {0}, language};
|
|
|
|
const hb_ot_name_entry_t *entry = (const hb_ot_name_entry_t *)
|
|
|
|
hb_bsearch (&key,
|
|
|
|
this->names.arrayZ(),
|
|
|
|
this->names.len,
|
|
|
|
sizeof (key),
|
|
|
|
_hb_ot_name_entry_cmp_key);
|
2018-10-24 05:51:53 +02:00
|
|
|
if (!entry)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
*width = entry->entry_score < 10 ? 2 : 1;
|
|
|
|
|
|
|
|
return entry->entry_index;
|
2018-10-24 05:30:40 +02:00
|
|
|
}
|
|
|
|
|
2018-10-24 08:16:06 +02:00
|
|
|
inline hb_bytes_t get_name (unsigned int idx) const
|
|
|
|
{
|
|
|
|
const hb_array_t<const NameRecord> all_names (table->nameRecordZ.arrayZ, table->count);
|
|
|
|
const NameRecord &record = all_names[idx];
|
|
|
|
const hb_array_t<const char> string_pool ((const char *) pool, pool_len);
|
|
|
|
return string_pool.sub_array (record.offset, record.length).as_bytes ();
|
|
|
|
}
|
|
|
|
|
2018-10-16 07:22:50 +02:00
|
|
|
private:
|
2018-10-24 08:16:06 +02:00
|
|
|
const void *pool;
|
|
|
|
unsigned int pool_len;
|
2018-10-16 07:48:48 +02:00
|
|
|
public:
|
2018-11-11 05:52:15 +01:00
|
|
|
hb_blob_ptr_t<name> table;
|
2018-10-16 07:22:50 +02:00
|
|
|
hb_vector_t<hb_ot_name_entry_t> names;
|
|
|
|
};
|
|
|
|
|
2011-08-06 02:34:50 +02:00
|
|
|
/* We only implement format 0 for now. */
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 format; /* Format selector (=0/1). */
|
|
|
|
HBUINT16 count; /* Number of name records. */
|
2018-10-24 08:05:55 +02:00
|
|
|
OffsetTo<UnsizedArrayOf<HBUINT8>, HBUINT16, false>
|
|
|
|
stringOffset; /* Offset to start of string storage (from start of table). */
|
2018-09-10 23:29:26 +02:00
|
|
|
UnsizedArrayOf<NameRecord>
|
|
|
|
nameRecordZ; /* The name records where count is the number of records. */
|
2011-08-06 02:34:50 +02:00
|
|
|
public:
|
2018-09-10 23:29:26 +02:00
|
|
|
DEFINE_SIZE_ARRAY (6, nameRecordZ);
|
2011-08-06 02:34:50 +02:00
|
|
|
};
|
|
|
|
|
2018-10-16 07:22:50 +02:00
|
|
|
struct name_accelerator_t : name::accelerator_t {};
|
2011-08-06 02:34:50 +02:00
|
|
|
|
2012-11-17 03:49:54 +01:00
|
|
|
} /* namespace OT */
|
2012-08-28 23:57:49 +02:00
|
|
|
|
2011-08-06 02:34:50 +02:00
|
|
|
|
2011-08-17 14:19:59 +02:00
|
|
|
#endif /* HB_OT_NAME_TABLE_HH */
|