2008-01-23 22:14:38 +01:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2007,2008,2009,2010 Red Hat, Inc.
|
2012-05-11 01:25:34 +02:00
|
|
|
* Copyright © 2012 Google, Inc.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
2012-05-11 01:25:34 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2008-01-23 22:14:38 +01:00
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#ifndef HB_OPEN_TYPE_HH
|
|
|
|
#define HB_OPEN_TYPE_HH
|
2006-12-28 12:10:59 +01:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
|
|
|
#include "hb-blob.hh"
|
|
|
|
#include "hb-face.hh"
|
|
|
|
#include "hb-machinery.hh"
|
2018-09-01 01:31:00 +02:00
|
|
|
#include "hb-subset.hh"
|
2006-12-28 12:10:59 +01:00
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2012-08-28 23:57:49 +02:00
|
|
|
namespace OT {
|
|
|
|
|
2010-04-23 00:29:09 +02:00
|
|
|
|
2006-12-22 08:21:55 +01:00
|
|
|
/*
|
|
|
|
*
|
2009-08-08 01:46:30 +02:00
|
|
|
* The OpenType Font File: Data Types
|
2006-12-22 08:21:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* "The following data types are used in the OpenType font file.
|
|
|
|
* All OpenType fonts use Motorola-style byte ordering (Big Endian):" */
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
/*
|
|
|
|
* Int types
|
|
|
|
*/
|
|
|
|
|
2010-04-22 05:11:45 +02:00
|
|
|
/* Integer types in big-endian order and no alignment requirement */
|
2012-12-11 22:00:43 +01:00
|
|
|
template <typename Type, unsigned int Size>
|
2010-04-21 09:11:46 +02:00
|
|
|
struct IntType
|
|
|
|
{
|
2018-10-20 00:23:49 +02:00
|
|
|
typedef Type type;
|
2010-07-23 20:46:57 +02:00
|
|
|
inline void set (Type i) { v.set (i); }
|
2010-04-22 04:49:56 +02:00
|
|
|
inline operator Type(void) const { return v; }
|
2015-02-19 15:03:02 +01:00
|
|
|
inline bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; }
|
|
|
|
inline bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); }
|
2012-12-11 22:00:43 +01:00
|
|
|
static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
|
2017-10-27 22:29:12 +02:00
|
|
|
template <typename Type2>
|
|
|
|
inline int cmp (Type2 a) const
|
2015-02-19 14:57:12 +01:00
|
|
|
{
|
|
|
|
Type b = v;
|
2017-10-27 22:29:12 +02:00
|
|
|
if (sizeof (Type) < sizeof (int) && sizeof (Type2) < sizeof (int))
|
2015-02-19 14:57:12 +01:00
|
|
|
return (int) a - (int) b;
|
|
|
|
else
|
|
|
|
return a < b ? -1 : a == b ? 0 : +1;
|
|
|
|
}
|
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 (likely (c->check_struct (this)));
|
2010-04-21 09:11:46 +02:00
|
|
|
}
|
2010-05-10 23:55:03 +02:00
|
|
|
protected:
|
2012-12-11 22:00:43 +01:00
|
|
|
BEInt<Type, Size> v;
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
2012-12-11 22:00:43 +01:00
|
|
|
DEFINE_SIZE_STATIC (Size);
|
2010-04-21 09:11:46 +02:00
|
|
|
};
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
typedef IntType<uint8_t, 1> HBUINT8; /* 8-bit unsigned integer. */
|
|
|
|
typedef IntType<int8_t, 1> HBINT8; /* 8-bit signed integer. */
|
|
|
|
typedef IntType<uint16_t, 2> HBUINT16; /* 16-bit unsigned integer. */
|
|
|
|
typedef IntType<int16_t, 2> HBINT16; /* 16-bit signed integer. */
|
|
|
|
typedef IntType<uint32_t, 4> HBUINT32; /* 32-bit unsigned integer. */
|
|
|
|
typedef IntType<int32_t, 4> HBINT32; /* 32-bit signed integer. */
|
2018-04-15 18:48:48 +02:00
|
|
|
typedef IntType<uint32_t, 3> HBUINT24; /* 24-bit unsigned integer. */
|
2010-04-21 09:11:46 +02:00
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
/* 16-bit signed integer (HBINT16) that describes a quantity in FUnits. */
|
|
|
|
typedef HBINT16 FWORD;
|
2011-08-17 14:43:45 +02:00
|
|
|
|
2018-10-11 01:58:20 +02:00
|
|
|
/* 32-bit signed integer (HBINT32) that describes a quantity in FUnits. */
|
|
|
|
typedef HBINT32 FWORD32;
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
/* 16-bit unsigned integer (HBUINT16) that describes a quantity in FUnits. */
|
|
|
|
typedef HBUINT16 UFWORD;
|
2011-08-17 14:43:45 +02:00
|
|
|
|
2016-03-01 08:41:53 +01:00
|
|
|
/* 16-bit signed fixed number with the low 14 bits of fraction (2.14). */
|
2018-01-10 03:07:30 +01:00
|
|
|
struct F2DOT14 : HBINT16
|
2016-03-01 08:41:53 +01:00
|
|
|
{
|
2018-04-15 19:38:50 +02:00
|
|
|
// 16384 means 1<<14
|
2018-04-23 17:06:53 +02:00
|
|
|
inline float to_float (void) const { return ((int32_t) v) / 16384.f; }
|
|
|
|
inline void set_float (float f) { v.set (round (f * 16384.f)); }
|
2016-03-01 08:41:53 +01:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (2);
|
|
|
|
};
|
|
|
|
|
2016-04-30 19:20:56 +02:00
|
|
|
/* 32-bit signed fixed-point number (16.16). */
|
2018-04-15 19:38:50 +02:00
|
|
|
struct Fixed : HBINT32
|
2016-04-30 19:20:56 +02:00
|
|
|
{
|
2018-04-15 19:38:50 +02:00
|
|
|
// 65536 means 1<<16
|
2018-04-23 17:06:53 +02:00
|
|
|
inline float to_float (void) const { return ((int32_t) v) / 65536.f; }
|
|
|
|
inline void set_float (float f) { v.set (round (f * 65536.f)); }
|
2016-04-30 19:20:56 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
|
|
|
};
|
|
|
|
|
2010-05-19 17:47:17 +02:00
|
|
|
/* Date represented in number of seconds since 12:00 midnight, January 1,
|
|
|
|
* 1904. The value is represented as a signed 64-bit integer. */
|
|
|
|
struct LONGDATETIME
|
|
|
|
{
|
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 (likely (c->check_struct (this)));
|
2010-05-19 17:47:17 +02:00
|
|
|
}
|
2014-01-23 20:18:49 +01:00
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
HBINT32 major;
|
|
|
|
HBUINT32 minor;
|
2010-05-19 17:47:17 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
|
|
|
};
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
/* Array of four uint8s (length = 32 bits) used to identify a script, language
|
|
|
|
* system, feature, or baseline */
|
2018-01-10 03:07:30 +01:00
|
|
|
struct Tag : HBUINT32
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2006-12-25 15:14:52 +01:00
|
|
|
/* What the char* converters return is NOT nul-terminated. Print using "%.4s" */
|
2010-05-10 23:55:03 +02:00
|
|
|
inline operator const char* (void) const { return reinterpret_cast<const char *> (&this->v); }
|
|
|
|
inline operator char* (void) { return reinterpret_cast<char *> (&this->v); }
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Glyph index number, same as uint16 (length = 16 bits) */
|
2018-01-10 03:07:30 +01:00
|
|
|
typedef HBUINT16 GlyphID;
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2010-05-11 04:22:22 +02:00
|
|
|
/* Script/language-system/feature index */
|
2018-01-10 03:07:30 +01:00
|
|
|
struct Index : HBUINT16 {
|
2018-09-07 21:02:57 +02:00
|
|
|
enum { NOT_FOUND_INDEX = 0xFFFFu };
|
2010-05-11 04:22:22 +02:00
|
|
|
};
|
2018-08-06 06:41:52 +02:00
|
|
|
DECLARE_NULL_NAMESPACE_BYTES (OT, Index);
|
2010-05-11 04:22:22 +02:00
|
|
|
|
2018-10-23 06:18:27 +02:00
|
|
|
typedef Index NameID;
|
|
|
|
|
2014-06-27 21:12:52 +02:00
|
|
|
/* Offset, Null offset = 0 */
|
2018-09-13 18:45:35 +02:00
|
|
|
template <typename Type, bool has_null=true>
|
2014-06-27 21:12:52 +02:00
|
|
|
struct Offset : Type
|
2013-01-08 23:15:46 +01:00
|
|
|
{
|
2018-10-20 00:23:49 +02:00
|
|
|
typedef Type type;
|
|
|
|
|
2018-09-13 18:45:35 +02:00
|
|
|
inline bool is_null (void) const { return has_null && 0 == *this; }
|
2018-02-08 04:13:10 +01:00
|
|
|
|
|
|
|
inline void *serialize (hb_serialize_context_t *c, const void *base)
|
|
|
|
{
|
|
|
|
void *t = c->start_embed<void> ();
|
|
|
|
this->set ((char *) t - (char *) base); /* TODO(serialize) Overflow? */
|
|
|
|
return t;
|
|
|
|
}
|
2018-02-26 04:06:25 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (sizeof(Type));
|
2013-01-08 23:15:46 +01:00
|
|
|
};
|
2009-05-25 08:27:29 +02:00
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
typedef Offset<HBUINT16> Offset16;
|
|
|
|
typedef Offset<HBUINT32> Offset32;
|
2017-11-15 06:09:03 +01:00
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
/* CheckSum */
|
2018-01-10 03:07:30 +01:00
|
|
|
struct CheckSum : HBUINT32
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2013-07-21 23:05:02 +02:00
|
|
|
/* This is reference implementation from the spec. */
|
2018-01-10 03:07:30 +01:00
|
|
|
static inline uint32_t CalcTableChecksum (const HBUINT32 *Table, uint32_t Length)
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2006-12-22 04:31:10 +01:00
|
|
|
uint32_t Sum = 0L;
|
2018-02-24 00:51:26 +01:00
|
|
|
assert (0 == (Length & 3));
|
|
|
|
const HBUINT32 *EndPtr = Table + Length / HBUINT32::static_size;
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
while (Table < EndPtr)
|
|
|
|
Sum += *Table++;
|
|
|
|
return Sum;
|
|
|
|
}
|
2013-07-21 23:05:02 +02:00
|
|
|
|
|
|
|
/* Note: data should be 4byte aligned and have 4byte padding at the end. */
|
|
|
|
inline void set_for_data (const void *data, unsigned int length)
|
2018-01-10 03:07:30 +01:00
|
|
|
{ set (CalcTableChecksum ((const HBUINT32 *) data, length)); }
|
2013-07-21 23:05:02 +02:00
|
|
|
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Version Numbers
|
|
|
|
*/
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
template <typename FixedType=HBUINT16>
|
2009-05-24 07:03:24 +02:00
|
|
|
struct FixedVersion
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2016-04-04 23:34:25 +02:00
|
|
|
inline uint32_t to_int (void) const { return (major << (sizeof(FixedType) * 8)) + minor; }
|
2009-05-24 18:30:40 +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));
|
2009-08-04 08:09:34 +02:00
|
|
|
}
|
|
|
|
|
2016-02-22 03:44:45 +01:00
|
|
|
FixedType major;
|
|
|
|
FixedType minor;
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2016-02-22 03:44:45 +01:00
|
|
|
DEFINE_SIZE_STATIC (2 * sizeof(FixedType));
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
/*
|
2014-06-27 21:12:52 +02:00
|
|
|
* Template subclasses of Offset that do the dereferencing.
|
2010-05-03 00:14:25 +02:00
|
|
|
* Use: (base+offset)
|
2009-05-17 06:54:25 +02:00
|
|
|
*/
|
|
|
|
|
2018-09-16 19:33:48 +02:00
|
|
|
template <typename Type, bool has_null_> struct assert_has_min_size { static_assert (Type::min_size > 0, ""); };
|
2018-09-15 19:43:33 +02:00
|
|
|
template <typename Type> struct assert_has_min_size<Type, false> {};
|
|
|
|
|
2018-09-13 18:45:35 +02:00
|
|
|
template <typename Type, typename OffsetType=HBUINT16, bool has_null=true>
|
|
|
|
struct OffsetTo : Offset<OffsetType, has_null>
|
2009-08-04 16:41:32 +02:00
|
|
|
{
|
2018-09-16 19:33:48 +02:00
|
|
|
static_assert (sizeof (assert_has_min_size<Type, has_null>) || true, "");
|
2018-09-15 19:43:33 +02:00
|
|
|
|
2010-04-21 05:50:45 +02:00
|
|
|
inline const Type& operator () (const void *base) const
|
2009-08-04 16:41:32 +02:00
|
|
|
{
|
2018-09-13 18:45:35 +02:00
|
|
|
if (unlikely (this->is_null ())) return Null(Type);
|
|
|
|
return StructAtOffset<const Type> (base, *this);
|
2018-06-01 02:58:40 +02:00
|
|
|
}
|
|
|
|
inline Type& operator () (void *base) const
|
|
|
|
{
|
2018-09-13 18:45:35 +02:00
|
|
|
if (unlikely (this->is_null ())) return Crap(Type);
|
|
|
|
return StructAtOffset<Type> (base, *this);
|
2009-08-04 16:41:32 +02:00
|
|
|
}
|
2012-09-02 02:48:22 +02:00
|
|
|
|
2015-02-17 15:27:44 +01:00
|
|
|
inline Type& serialize (hb_serialize_context_t *c, const void *base)
|
2012-09-02 02:48:22 +02:00
|
|
|
{
|
2018-02-08 04:13:10 +01:00
|
|
|
return * (Type *) Offset<OffsetType>::serialize (c, base);
|
2012-09-02 02:48:22 +02:00
|
|
|
}
|
2009-08-04 16:41:32 +02:00
|
|
|
|
2018-09-02 03:34:50 +02:00
|
|
|
template <typename T>
|
|
|
|
inline void serialize_subset (hb_subset_context_t *c, const T &src, const void *base)
|
|
|
|
{
|
|
|
|
if (&src == &Null(T))
|
|
|
|
{
|
|
|
|
this->set (0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
serialize (c->serializer, base);
|
|
|
|
if (!src.subset (c))
|
|
|
|
this->set (0);
|
|
|
|
}
|
|
|
|
|
2018-09-13 16:29:49 +02:00
|
|
|
inline bool sanitize_shallow (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);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!c->check_struct (this))) return_trace (false);
|
2018-09-13 18:45:35 +02:00
|
|
|
if (unlikely (this->is_null ())) return_trace (true);
|
|
|
|
if (unlikely (!c->check_range (base, *this))) return_trace (false);
|
2018-09-13 16:29:49 +02:00
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-09-13 16:31:31 +02:00
|
|
|
return_trace (sanitize_shallow (c, base) &&
|
2018-09-13 18:45:35 +02:00
|
|
|
(this->is_null () ||
|
2018-09-13 16:47:33 +02:00
|
|
|
StructAtOffset<Type> (base, *this).sanitize (c) ||
|
2018-09-13 16:31:31 +02:00
|
|
|
neuter (c)));
|
2009-08-04 16:41:32 +02:00
|
|
|
}
|
2018-09-13 16:39:30 +02:00
|
|
|
template <typename T1>
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base, T1 d1) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2018-09-13 16:31:31 +02:00
|
|
|
return_trace (sanitize_shallow (c, base) &&
|
2018-09-13 18:45:35 +02:00
|
|
|
(this->is_null () ||
|
2018-09-13 16:47:33 +02:00
|
|
|
StructAtOffset<Type> (base, *this).sanitize (c, d1) ||
|
2018-09-13 16:31:31 +02:00
|
|
|
neuter (c)));
|
2010-05-04 20:38:08 +02:00
|
|
|
}
|
2018-09-13 16:29:49 +02:00
|
|
|
template <typename T1, typename T2>
|
2018-09-13 16:39:30 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base, T1 d1, T2 d2) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (sanitize_shallow (c, base) &&
|
2018-09-13 18:45:35 +02:00
|
|
|
(this->is_null () ||
|
2018-09-13 16:47:33 +02:00
|
|
|
StructAtOffset<Type> (base, *this).sanitize (c, d1, d2) ||
|
2018-09-13 16:39:30 +02:00
|
|
|
neuter (c)));
|
|
|
|
}
|
|
|
|
template <typename T1, typename T2, typename T3>
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base, T1 d1, T2 d2, T3 d3) const
|
2018-09-13 16:29:49 +02:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-09-13 16:31:31 +02:00
|
|
|
return_trace (sanitize_shallow (c, base) &&
|
2018-09-13 18:45:35 +02:00
|
|
|
(this->is_null () ||
|
2018-09-13 16:47:33 +02:00
|
|
|
StructAtOffset<Type> (base, *this).sanitize (c, d1, d2, d3) ||
|
2018-09-13 16:31:31 +02:00
|
|
|
neuter (c)));
|
2018-09-13 16:29:49 +02:00
|
|
|
}
|
2010-05-04 20:38:08 +02:00
|
|
|
|
|
|
|
/* Set the offset to Null */
|
2018-09-13 18:45:35 +02:00
|
|
|
inline bool neuter (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
if (!has_null) return false;
|
2014-06-05 00:42:32 +02:00
|
|
|
return c->try_set (this, 0);
|
2009-08-04 19:30:49 +02:00
|
|
|
}
|
2014-06-27 21:39:47 +02:00
|
|
|
DEFINE_SIZE_STATIC (sizeof(OffsetType));
|
2009-08-04 16:41:32 +02:00
|
|
|
};
|
2018-09-14 18:59:53 +02:00
|
|
|
template <typename Type, bool has_null=true> struct LOffsetTo : OffsetTo<Type, HBUINT32, has_null> {};
|
2018-09-13 18:45:35 +02:00
|
|
|
template <typename Base, typename OffsetType, bool has_null, typename Type>
|
|
|
|
static inline const Type& operator + (const Base &base, const OffsetTo<Type, OffsetType, has_null> &offset) { return offset (base); }
|
|
|
|
template <typename Base, typename OffsetType, bool has_null, typename Type>
|
|
|
|
static inline Type& operator + (Base &base, OffsetTo<Type, OffsetType, has_null> &offset) { return offset (base); }
|
2009-08-04 16:41:32 +02:00
|
|
|
|
2009-08-08 01:46:30 +02:00
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
/*
|
|
|
|
* Array Types
|
|
|
|
*/
|
|
|
|
|
2018-03-14 16:18:42 +01:00
|
|
|
template <typename Type>
|
|
|
|
struct UnsizedArrayOf
|
|
|
|
{
|
2018-11-11 01:54:08 +01:00
|
|
|
enum { item_size = Type::static_size };
|
|
|
|
|
2018-10-30 00:00:23 +01:00
|
|
|
HB_NO_CREATE_COPY_ASSIGN_TEMPLATE (UnsizedArrayOf, Type);
|
2018-10-29 19:25:35 +01:00
|
|
|
|
2018-11-10 22:35:39 +01:00
|
|
|
/* Unlikely other places, use "int i" instead of "unsigned int i" for our
|
|
|
|
* indexing operator. For two reasons:
|
|
|
|
* 1. For UnsizedArrayOf, it's not totally unimaginable to want to look
|
|
|
|
* at items before the start of current array.
|
|
|
|
* 2. Fixes MSVC 2008 "overloads have similar conversions" issue with the
|
|
|
|
* built-in operator [] that takes int, in expressions like sizeof(array[0])).
|
|
|
|
* I suppose I could fix that by replacing 0 with 0u, but like this fix
|
|
|
|
* more now. */
|
|
|
|
inline const Type& operator [] (int i) const { return arrayZ[i]; }
|
|
|
|
inline Type& operator [] (int i) { return arrayZ[i]; }
|
2018-03-14 16:18:42 +01:00
|
|
|
|
2018-11-02 17:14:21 +01:00
|
|
|
template <typename T> inline operator T * (void) { return arrayZ; }
|
2018-10-31 07:33:30 +01:00
|
|
|
template <typename T> inline operator const T * (void) const { return arrayZ; }
|
|
|
|
|
2018-11-02 16:38:00 +01:00
|
|
|
inline unsigned int get_size (unsigned int len) const
|
|
|
|
{ return len * Type::static_size; }
|
|
|
|
|
2018-11-02 16:46:24 +01:00
|
|
|
inline hb_array_t<Type> as_array (unsigned int len) { return hb_array_t<Type> (arrayZ, len); }
|
|
|
|
inline hb_array_t<const Type> as_array (unsigned int len) const { return hb_array_t<const Type> (arrayZ, len); }
|
|
|
|
|
2018-03-14 16:18:42 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c, count))) return_trace (false);
|
|
|
|
|
|
|
|
/* Note: for structs that do not reference other structs,
|
|
|
|
* we do not need to call their sanitize() as we already did
|
|
|
|
* a bound check on the aggregate array size. We just include
|
|
|
|
* a small unreachable expression to make sure the structs
|
|
|
|
* pointed to do have a simple sanitize(), ie. they do not
|
|
|
|
* reference other structs via offsets.
|
|
|
|
*/
|
|
|
|
(void) (false && arrayZ[0].sanitize (c));
|
|
|
|
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count, const void *base) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c, count))) return_trace (false);
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (unlikely (!arrayZ[i].sanitize (c, base)))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
template <typename T>
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count, const void *base, T user_data) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c, count))) return_trace (false);
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (unlikely (!arrayZ[i].sanitize (c, base, user_data)))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c, unsigned int count) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-09-10 23:18:07 +02:00
|
|
|
return_trace (c->check_array (arrayZ, count));
|
2018-03-14 16:18:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2018-09-10 23:29:26 +02:00
|
|
|
Type arrayZ[VAR];
|
2018-03-14 16:18:42 +01:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (0, arrayZ);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Unsized array of offset's */
|
2018-10-17 00:40:44 +02:00
|
|
|
template <typename Type, typename OffsetType, bool has_null=true>
|
|
|
|
struct UnsizedOffsetArrayOf : UnsizedArrayOf<OffsetTo<Type, OffsetType, has_null> > {};
|
2018-03-14 16:18:42 +01:00
|
|
|
|
|
|
|
/* Unsized array of offsets relative to the beginning of the array itself. */
|
2018-10-17 00:40:44 +02:00
|
|
|
template <typename Type, typename OffsetType, bool has_null=true>
|
|
|
|
struct UnsizedOffsetListOf : UnsizedOffsetArrayOf<Type, OffsetType, has_null>
|
2018-03-14 16:18:42 +01:00
|
|
|
{
|
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
|
|
|
return this+this->arrayZ[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-10-17 00:40:44 +02:00
|
|
|
return_trace ((UnsizedOffsetArrayOf<Type, OffsetType, has_null>::sanitize (c, count, this)));
|
2018-03-14 16:18:42 +01:00
|
|
|
}
|
|
|
|
template <typename T>
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count, T user_data) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-10-17 00:40:44 +02:00
|
|
|
return_trace ((UnsizedOffsetArrayOf<Type, OffsetType, has_null>::sanitize (c, count, this, user_data)));
|
2018-03-14 16:18:42 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-27 21:09:42 +02:00
|
|
|
/* An array with a number of elements. */
|
2018-01-10 03:07:30 +01:00
|
|
|
template <typename Type, typename LenType=HBUINT16>
|
2014-06-27 21:09:42 +02:00
|
|
|
struct ArrayOf
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2018-11-11 01:54:08 +01:00
|
|
|
enum { item_size = Type::static_size };
|
|
|
|
|
2018-10-30 00:00:23 +01:00
|
|
|
HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2 (ArrayOf, Type, LenType);
|
2018-10-29 19:25:35 +01:00
|
|
|
|
2018-10-22 21:40:38 +02:00
|
|
|
inline const Type *sub_array (unsigned int start_offset, unsigned int *pcount /* IN/OUT */) const
|
2009-11-04 22:59:50 +01:00
|
|
|
{
|
|
|
|
unsigned int count = len;
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (start_offset > count))
|
2009-11-04 22:59:50 +01:00
|
|
|
count = 0;
|
|
|
|
else
|
|
|
|
count -= start_offset;
|
|
|
|
count = MIN (count, *pcount);
|
|
|
|
*pcount = count;
|
2018-05-09 01:56:11 +02:00
|
|
|
return arrayZ + start_offset;
|
2009-11-04 22:59:50 +01:00
|
|
|
}
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (i >= len)) return Null(Type);
|
2018-05-09 01:56:11 +02:00
|
|
|
return arrayZ[i];
|
2009-05-17 06:54:25 +02:00
|
|
|
}
|
2012-08-30 03:08:59 +02:00
|
|
|
inline Type& operator [] (unsigned int i)
|
|
|
|
{
|
2018-05-24 20:33:15 +02:00
|
|
|
if (unlikely (i >= len)) return Crap(Type);
|
2018-05-09 01:56:11 +02:00
|
|
|
return arrayZ[i];
|
2012-08-30 03:08:59 +02:00
|
|
|
}
|
2018-10-31 07:33:30 +01:00
|
|
|
|
2010-10-02 00:58:50 +02:00
|
|
|
inline unsigned int get_size (void) const
|
2010-05-07 01:33:31 +02:00
|
|
|
{ return len.static_size + len * Type::static_size; }
|
2009-05-18 08:03:58 +02:00
|
|
|
|
2012-09-04 05:28:34 +02:00
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
unsigned int items_len)
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SERIALIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!c->extend_min (*this))) return_trace (false);
|
2012-09-04 05:28:34 +02:00
|
|
|
len.set (items_len); /* TODO(serialize) Overflow? */
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!c->extend (*this))) return_trace (false);
|
|
|
|
return_trace (true);
|
2012-09-04 05:28:34 +02:00
|
|
|
}
|
2012-09-02 03:43:38 +02:00
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
2012-09-05 00:17:57 +02:00
|
|
|
Supplier<Type> &items,
|
2012-09-02 03:43:38 +02:00
|
|
|
unsigned int items_len)
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SERIALIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!serialize (c, items_len))) return_trace (false);
|
2012-09-05 02:10:17 +02:00
|
|
|
for (unsigned int i = 0; i < items_len; i++)
|
2018-05-09 01:56:11 +02:00
|
|
|
arrayZ[i] = items[i];
|
2018-02-10 20:15:57 +01:00
|
|
|
items += items_len;
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (true);
|
2012-09-02 03:43:38 +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
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
2010-11-03 20:11:04 +01:00
|
|
|
|
2010-04-21 06:49:40 +02:00
|
|
|
/* Note: for structs that do not reference other structs,
|
|
|
|
* we do not need to call their sanitize() as we already did
|
2010-11-03 20:11:04 +01:00
|
|
|
* a bound check on the aggregate array size. We just include
|
|
|
|
* a small unreachable expression to make sure the structs
|
|
|
|
* pointed to do have a simple sanitize(), ie. they do not
|
|
|
|
* reference other structs via offsets.
|
2010-04-21 06:49:40 +02:00
|
|
|
*/
|
2018-05-09 01:56:11 +02:00
|
|
|
(void) (false && arrayZ[0].sanitize (c));
|
2010-11-03 20:11:04 +01:00
|
|
|
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (true);
|
2009-08-04 06:58:28 +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);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
2009-08-04 16:23:01 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-05-09 01:56:11 +02:00
|
|
|
if (unlikely (!arrayZ[i].sanitize (c, base)))
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
2009-08-04 16:23:01 +02:00
|
|
|
}
|
2010-05-05 04:46:21 +02:00
|
|
|
template <typename T>
|
2015-02-17 15:27:44 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base, T user_data) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
2009-08-04 19:30:49 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-05-09 01:56:11 +02:00
|
|
|
if (unlikely (!arrayZ[i].sanitize (c, base, user_data)))
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
2009-08-04 19:30:49 +02:00
|
|
|
}
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2014-05-09 00:24:31 +02:00
|
|
|
template <typename SearchType>
|
2014-06-19 21:39:18 +02:00
|
|
|
inline int lsearch (const SearchType &x) const
|
2014-05-09 00:24:31 +02:00
|
|
|
{
|
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-05-09 01:56:11 +02:00
|
|
|
if (!this->arrayZ[i].cmp (x))
|
2014-05-09 00:24:31 +02:00
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-02-08 04:13:10 +01:00
|
|
|
inline void qsort (void)
|
|
|
|
{
|
2018-05-09 01:56:11 +02:00
|
|
|
::qsort (arrayZ, len, sizeof (Type), Type::cmp);
|
2018-02-08 04:13:10 +01:00
|
|
|
}
|
|
|
|
|
2015-02-17 15:27:44 +01:00
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2018-09-10 23:18:07 +02:00
|
|
|
return_trace (len.sanitize (c) && c->check_array (arrayZ, len));
|
2010-05-04 20:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2018-09-10 23:29:26 +02:00
|
|
|
LenType len;
|
|
|
|
Type arrayZ[VAR];
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2018-05-09 01:56:11 +02:00
|
|
|
DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ);
|
2009-05-18 08:03:58 +02:00
|
|
|
};
|
2018-01-10 03:07:30 +01:00
|
|
|
template <typename Type> struct LArrayOf : ArrayOf<Type, HBUINT32> {};
|
2018-07-01 12:02:00 +02:00
|
|
|
typedef ArrayOf<HBUINT8, HBUINT8> PString;
|
2009-05-18 08:03:58 +02:00
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
/* Array of Offset's */
|
2018-10-29 00:29:09 +01:00
|
|
|
template <typename Type>
|
|
|
|
struct OffsetArrayOf : ArrayOf<OffsetTo<Type, HBUINT16> > {};
|
|
|
|
template <typename Type>
|
|
|
|
struct LOffsetArrayOf : ArrayOf<OffsetTo<Type, HBUINT32> > {};
|
2018-10-29 00:27:18 +01:00
|
|
|
template <typename Type>
|
|
|
|
struct LOffsetLArrayOf : ArrayOf<OffsetTo<Type, HBUINT32>, HBUINT32> {};
|
2009-08-04 16:41:32 +02:00
|
|
|
|
2009-08-15 00:40:56 +02:00
|
|
|
/* Array of offsets relative to the beginning of the array itself. */
|
|
|
|
template <typename Type>
|
|
|
|
struct OffsetListOf : OffsetArrayOf<Type>
|
|
|
|
{
|
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (i >= this->len)) return Null(Type);
|
2018-05-09 01:56:11 +02:00
|
|
|
return this+this->arrayZ[i];
|
2009-08-15 00:40:56 +02:00
|
|
|
}
|
2018-05-24 20:33:15 +02:00
|
|
|
inline const Type& operator [] (unsigned int i)
|
|
|
|
{
|
|
|
|
if (unlikely (i >= this->len)) return Crap(Type);
|
|
|
|
return this+this->arrayZ[i];
|
|
|
|
}
|
2009-08-15 00:40:56 +02:00
|
|
|
|
2018-09-02 03:34:50 +02:00
|
|
|
inline bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
struct OffsetListOf<Type> *out = c->serializer->embed (*this);
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
unsigned int count = this->len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-09-04 01:37:17 +02:00
|
|
|
out->arrayZ[i].serialize_subset (c, (*this)[i], out);
|
2018-09-02 03:34:50 +02:00
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
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 (OffsetArrayOf<Type>::sanitize (c, this));
|
2009-08-15 00:40:56 +02:00
|
|
|
}
|
2010-05-05 04:46:21 +02:00
|
|
|
template <typename T>
|
2015-02-17 15:27:44 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, T user_data) const
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (OffsetArrayOf<Type>::sanitize (c, this, user_data));
|
2009-08-15 00:40:56 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-27 21:27:15 +02:00
|
|
|
/* An array starting at second element. */
|
2018-01-10 03:07:30 +01:00
|
|
|
template <typename Type, typename LenType=HBUINT16>
|
2009-05-20 05:58:54 +02:00
|
|
|
struct HeadlessArrayOf
|
|
|
|
{
|
2018-11-11 01:54:08 +01:00
|
|
|
enum { item_size = Type::static_size };
|
|
|
|
|
2018-10-30 00:00:23 +01:00
|
|
|
HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2 (HeadlessArrayOf, Type, LenType);
|
2018-10-29 19:25:35 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2018-09-13 20:21:54 +02:00
|
|
|
if (unlikely (i >= lenP1 || !i)) return Null(Type);
|
2018-05-09 01:56:11 +02:00
|
|
|
return arrayZ[i-1];
|
2009-05-18 08:03:58 +02:00
|
|
|
}
|
2018-05-24 20:33:15 +02:00
|
|
|
inline Type& operator [] (unsigned int i)
|
|
|
|
{
|
2018-09-13 20:21:54 +02:00
|
|
|
if (unlikely (i >= lenP1 || !i)) return Crap(Type);
|
2018-05-24 20:33:15 +02:00
|
|
|
return arrayZ[i-1];
|
|
|
|
}
|
2010-10-02 00:58:50 +02:00
|
|
|
inline unsigned int get_size (void) const
|
2018-09-13 20:21:54 +02:00
|
|
|
{ return lenP1.static_size + (lenP1 ? lenP1 - 1 : 0) * Type::static_size; }
|
2009-05-17 06:54:25 +02:00
|
|
|
|
2012-09-05 00:17:57 +02:00
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
Supplier<Type> &items,
|
|
|
|
unsigned int items_len)
|
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SERIALIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!c->extend_min (*this))) return_trace (false);
|
2018-09-13 20:21:54 +02:00
|
|
|
lenP1.set (items_len); /* TODO(serialize) Overflow? */
|
2015-09-29 15:57:02 +02:00
|
|
|
if (unlikely (!items_len)) return_trace (true);
|
|
|
|
if (unlikely (!c->extend (*this))) return_trace (false);
|
2012-09-06 04:19:28 +02:00
|
|
|
for (unsigned int i = 0; i < items_len - 1; i++)
|
2018-05-09 01:56:11 +02:00
|
|
|
arrayZ[i] = items[i];
|
2018-02-10 20:15:57 +01:00
|
|
|
items += items_len - 1;
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (true);
|
2012-09-05 00:17:57 +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
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
2010-11-03 20:11:04 +01:00
|
|
|
|
2010-04-21 06:49:40 +02:00
|
|
|
/* Note: for structs that do not reference other structs,
|
|
|
|
* we do not need to call their sanitize() as we already did
|
2010-11-03 20:11:04 +01:00
|
|
|
* a bound check on the aggregate array size. We just include
|
|
|
|
* a small unreachable expression to make sure the structs
|
|
|
|
* pointed to do have a simple sanitize(), ie. they do not
|
|
|
|
* reference other structs via offsets.
|
2010-04-21 06:49:40 +02:00
|
|
|
*/
|
2018-05-09 01:56:11 +02:00
|
|
|
(void) (false && arrayZ[0].sanitize (c));
|
2010-11-03 20:11:04 +01:00
|
|
|
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (true);
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 01:10:40 +01:00
|
|
|
private:
|
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-09-13 20:21:54 +02:00
|
|
|
return_trace (lenP1.sanitize (c) &&
|
|
|
|
(!lenP1 || c->check_array (arrayZ, lenP1 - 1)));
|
2017-11-01 01:10:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2018-09-13 20:21:54 +02:00
|
|
|
LenType lenP1;
|
2018-09-10 23:29:26 +02:00
|
|
|
Type arrayZ[VAR];
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2018-05-09 01:56:11 +02:00
|
|
|
DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ);
|
2009-05-17 06:54:25 +02:00
|
|
|
};
|
|
|
|
|
2018-09-13 20:30:04 +02:00
|
|
|
/* An array storing length-1. */
|
|
|
|
template <typename Type, typename LenType=HBUINT16>
|
|
|
|
struct ArrayOfM1
|
|
|
|
{
|
2018-10-30 00:00:23 +01:00
|
|
|
HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2 (ArrayOfM1, Type, LenType);
|
2018-10-29 19:25:35 +01:00
|
|
|
|
2018-09-13 20:30:04 +02:00
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
|
|
|
if (unlikely (i > lenM1)) return Null(Type);
|
|
|
|
return arrayZ[i];
|
|
|
|
}
|
|
|
|
inline Type& operator [] (unsigned int i)
|
|
|
|
{
|
|
|
|
if (unlikely (i > lenM1)) return Crap(Type);
|
|
|
|
return arrayZ[i];
|
|
|
|
}
|
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{ return lenM1.static_size + (lenM1 + 1) * Type::static_size; }
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base, T user_data) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
|
|
|
unsigned int count = lenM1 + 1;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (unlikely (!arrayZ[i].sanitize (c, base, user_data)))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (lenM1.sanitize (c) &&
|
|
|
|
(c->check_array (arrayZ, lenM1 + 1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
LenType lenM1;
|
|
|
|
Type arrayZ[VAR];
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ);
|
|
|
|
};
|
|
|
|
|
2018-07-26 01:58:47 +02:00
|
|
|
/* An array with sorted elements. Supports binary searching. */
|
2018-01-10 03:07:30 +01:00
|
|
|
template <typename Type, typename LenType=HBUINT16>
|
2014-06-27 21:09:42 +02:00
|
|
|
struct SortedArrayOf : ArrayOf<Type, LenType>
|
2014-05-09 00:21:04 +02:00
|
|
|
{
|
2010-07-08 06:40:04 +02:00
|
|
|
template <typename SearchType>
|
2014-06-19 21:39:18 +02:00
|
|
|
inline int bsearch (const SearchType &x) const
|
2013-04-19 20:33:17 +02:00
|
|
|
{
|
|
|
|
/* Hand-coded bsearch here since this is in the hot inner loop. */
|
2018-05-09 01:56:11 +02:00
|
|
|
const Type *arr = this->arrayZ;
|
2013-04-19 20:33:17 +02:00
|
|
|
int min = 0, max = (int) this->len - 1;
|
|
|
|
while (min <= max)
|
|
|
|
{
|
2018-10-25 22:19:34 +02:00
|
|
|
int mid = ((unsigned int) min + (unsigned int) max) / 2;
|
2018-01-11 18:19:42 +01:00
|
|
|
int c = arr[mid].cmp (x);
|
2013-04-19 20:33:17 +02:00
|
|
|
if (c < 0)
|
|
|
|
max = mid - 1;
|
|
|
|
else if (c > 0)
|
|
|
|
min = mid + 1;
|
|
|
|
else
|
|
|
|
return mid;
|
2012-06-09 06:50:40 +02:00
|
|
|
}
|
2013-04-19 20:33:17 +02:00
|
|
|
return -1;
|
2010-07-08 06:40:04 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-08 04:28:45 +02:00
|
|
|
/*
|
|
|
|
* Binary-search arrays
|
|
|
|
*/
|
|
|
|
|
2018-10-08 04:30:42 +02:00
|
|
|
template <typename LenType=HBUINT16>
|
2017-11-01 03:05:37 +01:00
|
|
|
struct BinSearchHeader
|
|
|
|
{
|
|
|
|
inline operator uint32_t (void) const { return len; }
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
2018-02-08 04:13:10 +01:00
|
|
|
inline void set (unsigned int v)
|
|
|
|
{
|
|
|
|
len.set (v);
|
|
|
|
assert (len == v);
|
2018-07-10 14:12:37 +02:00
|
|
|
entrySelector.set (MAX (1u, hb_bit_storage (v)) - 1);
|
2018-05-02 20:59:14 +02:00
|
|
|
searchRange.set (16 * (1u << entrySelector));
|
|
|
|
rangeShift.set (v * 16 > searchRange
|
|
|
|
? 16 * v - searchRange
|
|
|
|
: 0);
|
2018-02-08 04:13:10 +01:00
|
|
|
}
|
|
|
|
|
2017-11-01 03:05:37 +01:00
|
|
|
protected:
|
2018-10-08 04:30:42 +02:00
|
|
|
LenType len;
|
|
|
|
LenType searchRange;
|
|
|
|
LenType entrySelector;
|
|
|
|
LenType rangeShift;
|
2017-11-01 03:05:37 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
|
|
|
};
|
|
|
|
|
2018-10-08 04:30:42 +02:00
|
|
|
template <typename Type, typename LenType=HBUINT16>
|
|
|
|
struct BinSearchArrayOf : SortedArrayOf<Type, BinSearchHeader<LenType> > {};
|
2017-11-01 03:05:37 +01:00
|
|
|
|
2018-10-29 19:25:35 +01:00
|
|
|
|
2018-10-08 04:28:45 +02:00
|
|
|
struct VarSizedBinSearchHeader
|
|
|
|
{
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
|
|
|
HBUINT16 unitSize; /* Size of a lookup unit for this search in bytes. */
|
|
|
|
HBUINT16 nUnits; /* Number of units of the preceding size to be searched. */
|
|
|
|
HBUINT16 searchRange; /* The value of unitSize times the largest power of 2
|
|
|
|
* that is less than or equal to the value of nUnits. */
|
|
|
|
HBUINT16 entrySelector; /* The log base 2 of the largest power of 2 less than
|
|
|
|
* or equal to the value of nUnits. */
|
|
|
|
HBUINT16 rangeShift; /* The value of unitSize times the difference of the
|
|
|
|
* value of nUnits minus the largest power of 2 less
|
|
|
|
* than or equal to the value of nUnits. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (10);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Type>
|
|
|
|
struct VarSizedBinSearchArrayOf
|
|
|
|
{
|
2018-11-11 01:54:08 +01:00
|
|
|
enum { item_size = Type::static_size };
|
|
|
|
|
2018-10-30 00:00:23 +01:00
|
|
|
HB_NO_CREATE_COPY_ASSIGN_TEMPLATE (VarSizedBinSearchArrayOf, Type);
|
2018-10-29 19:25:35 +01:00
|
|
|
|
2018-10-08 04:28:45 +02:00
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
|
|
|
if (unlikely (i >= header.nUnits)) return Null(Type);
|
|
|
|
return StructAtOffset<Type> (&bytesZ, i * header.unitSize);
|
|
|
|
}
|
|
|
|
inline Type& operator [] (unsigned int i)
|
|
|
|
{
|
|
|
|
return StructAtOffset<Type> (&bytesZ, i * header.unitSize);
|
|
|
|
}
|
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{ return header.static_size + header.nUnits * header.unitSize; }
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
|
|
|
|
|
|
|
/* Note: for structs that do not reference other structs,
|
|
|
|
* we do not need to call their sanitize() as we already did
|
|
|
|
* a bound check on the aggregate array size. We just include
|
|
|
|
* a small unreachable expression to make sure the structs
|
|
|
|
* pointed to do have a simple sanitize(), ie. they do not
|
|
|
|
* reference other structs via offsets.
|
|
|
|
*/
|
|
|
|
(void) (false && StructAtOffset<Type> (&bytesZ, 0).sanitize (c));
|
|
|
|
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
|
|
|
unsigned int count = header.nUnits;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (unlikely (!(*this)[i].sanitize (c, base)))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
2018-11-08 16:23:14 +01:00
|
|
|
template <typename T>
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base, T user_data) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (unlikely (!sanitize_shallow (c))) return_trace (false);
|
|
|
|
unsigned int count = header.nUnits;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (unlikely (!(*this)[i].sanitize (c, base, user_data)))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
2018-10-08 04:28:45 +02:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline const Type *bsearch (const T &key) const
|
|
|
|
{
|
|
|
|
unsigned int size = header.unitSize;
|
|
|
|
int min = 0, max = (int) header.nUnits - 1;
|
|
|
|
while (min <= max)
|
|
|
|
{
|
2018-10-25 22:19:34 +02:00
|
|
|
int mid = ((unsigned int) min + (unsigned int) max) / 2;
|
2018-10-08 04:28:45 +02:00
|
|
|
const Type *p = (const Type *) (((const char *) &bytesZ) + (mid * size));
|
|
|
|
int c = p->cmp (key);
|
|
|
|
if (c < 0)
|
|
|
|
max = mid - 1;
|
|
|
|
else if (c > 0)
|
|
|
|
min = mid + 1;
|
|
|
|
else
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (header.sanitize (c) &&
|
2018-10-11 22:41:01 +02:00
|
|
|
Type::static_size <= header.unitSize &&
|
2018-11-12 20:23:31 +01:00
|
|
|
c->check_range (bytesZ.arrayZ,
|
|
|
|
header.nUnits,
|
|
|
|
header.unitSize));
|
2018-10-08 04:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
VarSizedBinSearchHeader header;
|
|
|
|
UnsizedArrayOf<HBUINT8> bytesZ;
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (10, bytesZ);
|
|
|
|
};
|
|
|
|
|
2010-07-08 06:40:04 +02: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_OPEN_TYPE_HH */
|