2008-01-23 22:14:38 +01:00
|
|
|
/*
|
2009-05-17 11:14:33 +02:00
|
|
|
* Copyright (C) 2007,2008,2009 Red Hat, Inc.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, an OpenType Layout engine 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.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#ifndef HB_OPEN_TYPES_PRIVATE_HH
|
|
|
|
#define HB_OPEN_TYPES_PRIVATE_HH
|
2006-12-28 12:10:59 +01:00
|
|
|
|
2009-08-03 01:57:00 +02:00
|
|
|
#include "hb-private.h"
|
2006-12-28 12:10:59 +01:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
#include "hb-blob.h"
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2008-01-28 11:58:50 +01:00
|
|
|
#define NO_INDEX ((unsigned int) 0xFFFF)
|
2009-05-18 10:37:37 +02:00
|
|
|
#define NO_CONTEXT ((unsigned int) 0x110000)
|
|
|
|
#define NOT_COVERED ((unsigned int) 0x110000)
|
|
|
|
#define MAX_NESTING_LEVEL 8
|
2009-04-16 10:45:30 +02:00
|
|
|
|
2008-01-28 11:58:50 +01:00
|
|
|
|
2009-08-04 17:04:32 +02:00
|
|
|
/*
|
|
|
|
* Casts
|
|
|
|
*/
|
|
|
|
|
2009-08-04 17:38:50 +02:00
|
|
|
#define CONST_CHARP(X) (reinterpret_cast<const char *>(X))
|
|
|
|
#define DECONST_CHARP(X) ((char *)reinterpret_cast<const char *>(X))
|
|
|
|
#define CHARP(X) (reinterpret_cast<char *>(X))
|
|
|
|
|
|
|
|
#define CONST_CAST(T,X,Ofs) (*(reinterpret_cast<const T *>(CONST_CHARP(&(X)) + Ofs)))
|
|
|
|
#define DECONST_CAST(T,X,Ofs) (*(reinterpret_cast<T *>((char *)CONST_CHARP(&(X)) + Ofs)))
|
|
|
|
#define CAST(T,X,Ofs) (*(reinterpret_cast<T *>(CHARP(&(X)) + Ofs)))
|
2009-08-04 17:04:32 +02:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2006-12-22 08:21:55 +01:00
|
|
|
/*
|
|
|
|
* Array types
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* get_len() is a method returning the number of items in an array-like object */
|
|
|
|
#define DEFINE_LEN(Type, array, num) \
|
|
|
|
inline unsigned int get_len(void) const { return num; } \
|
|
|
|
|
|
|
|
/* An array type is one that contains a variable number of objects
|
2009-05-17 06:22:37 +02:00
|
|
|
* as its last item. An array object is extended with get_len()
|
2006-12-22 08:21:55 +01:00
|
|
|
* methods, as well as overloaded [] operator. */
|
|
|
|
#define DEFINE_ARRAY_TYPE(Type, array, num) \
|
2008-01-23 10:36:40 +01:00
|
|
|
DEFINE_INDEX_OPERATOR(Type, array, num) \
|
2009-05-09 03:12:18 +02:00
|
|
|
DEFINE_LEN(Type, array, num)
|
2008-01-23 10:36:40 +01:00
|
|
|
#define DEFINE_INDEX_OPERATOR(Type, array, num) \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& operator[] (unsigned int i) const \
|
|
|
|
{ \
|
2009-05-17 04:48:14 +02:00
|
|
|
if (HB_UNLIKELY (i >= num)) return Null(Type); \
|
2006-12-22 08:21:55 +01:00
|
|
|
return array[i]; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* An offset array type is like an array type, but it contains a table
|
|
|
|
* of offsets to the objects, relative to the beginning of the current
|
|
|
|
* object. */
|
|
|
|
#define DEFINE_OFFSET_ARRAY_TYPE(Type, array, num) \
|
2008-01-23 10:36:40 +01:00
|
|
|
DEFINE_OFFSET_INDEX_OPERATOR(Type, array, num) \
|
2009-05-09 03:12:18 +02:00
|
|
|
DEFINE_LEN(Offset, array, num)
|
2008-01-23 10:36:40 +01:00
|
|
|
#define DEFINE_OFFSET_INDEX_OPERATOR(Type, array, num) \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& operator[] (unsigned int i) const \
|
|
|
|
{ \
|
2009-05-17 04:48:14 +02:00
|
|
|
if (HB_UNLIKELY (i >= num)) return Null(Type); \
|
|
|
|
if (HB_UNLIKELY (!array[i])) return Null(Type); \
|
2009-05-25 09:20:18 +02:00
|
|
|
return *(const Type)((const char*)this + array[i]); \
|
2006-12-22 08:21:55 +01:00
|
|
|
}
|
|
|
|
|
2008-01-24 09:11:09 +01:00
|
|
|
|
|
|
|
#define DEFINE_ARRAY_INTERFACE(Type, name) \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& get_##name (unsigned int i) const { return (*this)[i]; } \
|
|
|
|
inline unsigned int get_##name##_count (void) const { return this->get_len (); }
|
2008-01-24 09:11:09 +01:00
|
|
|
#define DEFINE_INDEX_ARRAY_INTERFACE(name) \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline unsigned int get_##name##_index (unsigned int i) const \
|
|
|
|
{ \
|
2008-01-28 13:40:10 +01:00
|
|
|
if (HB_UNLIKELY (i >= get_len ())) return NO_INDEX; \
|
2008-01-24 09:11:09 +01:00
|
|
|
return (*this)[i]; \
|
|
|
|
} \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline unsigned int get_##name##_count (void) const { return get_len (); }
|
2008-01-24 09:11:09 +01:00
|
|
|
|
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/*
|
|
|
|
* List types
|
|
|
|
*/
|
2006-12-22 08:21:55 +01:00
|
|
|
|
2008-01-28 08:30:48 +01:00
|
|
|
#define DEFINE_LIST_INTERFACE(Type, name) \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& get_##name (unsigned int i) const { return (this+name##List)[i]; } \
|
|
|
|
inline unsigned int get_##name##_count (void) const { return (this+name##List).len; }
|
2008-01-28 08:30:48 +01:00
|
|
|
|
2009-08-05 01:31:02 +02:00
|
|
|
|
2008-01-28 08:30:48 +01:00
|
|
|
/*
|
|
|
|
* Tag types
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DEFINE_TAG_ARRAY_INTERFACE(Type, name) \
|
|
|
|
DEFINE_ARRAY_INTERFACE (Type, name); \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Tag& get_##name##_tag (unsigned int i) const { return (*this)[i].tag; }
|
2008-01-28 08:30:48 +01:00
|
|
|
#define DEFINE_TAG_LIST_INTERFACE(Type, name) \
|
|
|
|
DEFINE_LIST_INTERFACE (Type, name); \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Tag& get_##name##_tag (unsigned int i) const { return (this+name##List).get_tag (i); }
|
2008-01-28 08:30:48 +01:00
|
|
|
|
|
|
|
#define DEFINE_TAG_FIND_INTERFACE(Type, name) \
|
2009-05-25 09:10:06 +02:00
|
|
|
inline bool find_##name##_index (hb_tag_t tag, unsigned int *index) const { \
|
2008-01-28 11:58:50 +01:00
|
|
|
const Tag t = tag; \
|
2009-05-20 05:58:54 +02:00
|
|
|
for (unsigned int i = 0; i < get_##name##_count (); i++) \
|
|
|
|
{ \
|
|
|
|
if (t == get_##name##_tag (i)) \
|
|
|
|
{ \
|
2009-05-25 09:10:06 +02:00
|
|
|
if (index) *index = i; \
|
2008-01-28 11:58:50 +01:00
|
|
|
return true; \
|
|
|
|
} \
|
|
|
|
} \
|
2009-05-25 09:10:06 +02:00
|
|
|
if (index) *index = NO_INDEX; \
|
2008-01-28 11:58:50 +01:00
|
|
|
return false; \
|
2008-01-28 08:30:48 +01:00
|
|
|
} \
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& get_##name##_by_tag (hb_tag_t tag) const \
|
|
|
|
{ \
|
2008-01-28 11:58:50 +01:00
|
|
|
unsigned int i; \
|
|
|
|
if (find_##name##_index (tag, &i)) \
|
|
|
|
return get_##name (i); \
|
2008-01-28 08:30:48 +01:00
|
|
|
else \
|
2009-05-17 04:48:14 +02:00
|
|
|
return Null(Type); \
|
2008-01-23 10:36:40 +01:00
|
|
|
}
|
2008-01-23 08:01:37 +01:00
|
|
|
|
2009-08-05 01:31:02 +02:00
|
|
|
|
|
|
|
|
2008-01-23 08:01:37 +01:00
|
|
|
/*
|
|
|
|
* Class features
|
|
|
|
*/
|
|
|
|
|
2009-05-17 04:48:14 +02:00
|
|
|
|
|
|
|
/* Null objects */
|
|
|
|
|
|
|
|
/* Global nul-content Null pool. Enlarge as necessary. */
|
|
|
|
static const char NullPool[16] = "";
|
|
|
|
|
|
|
|
/* Generic template for nul-content sizeof-sized Null objects. */
|
|
|
|
template <typename Type>
|
2009-05-20 05:58:54 +02:00
|
|
|
struct Null
|
|
|
|
{
|
2009-05-18 01:47:54 +02:00
|
|
|
ASSERT_STATIC (sizeof (Type) <= sizeof (NullPool));
|
2009-05-25 09:20:18 +02:00
|
|
|
static inline const Type &get () { return *(const Type*)NullPool; }
|
2009-05-17 04:48:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Specializaiton for arbitrary-content arbitrary-sized Null objects. */
|
|
|
|
#define DEFINE_NULL_DATA(Type, size, data) \
|
2009-05-25 09:10:06 +02:00
|
|
|
static const char _Null##Type[size] = data; \
|
2009-05-17 04:48:14 +02:00
|
|
|
template <> \
|
2009-05-20 05:58:54 +02:00
|
|
|
struct Null <Type> \
|
|
|
|
{ \
|
2009-05-25 09:20:18 +02:00
|
|
|
static inline const Type &get () { return *(const Type*)_Null##Type; } \
|
2009-05-17 04:48:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Accessor macro. */
|
|
|
|
#define Null(Type) (Null<Type>::get())
|
|
|
|
|
|
|
|
|
|
|
|
#define ASSERT_SIZE_DATA(Type, size, data) \
|
2008-01-23 10:36:40 +01:00
|
|
|
ASSERT_SIZE (Type, size); \
|
|
|
|
DEFINE_NULL_DATA (Type, size, data)
|
|
|
|
|
2008-01-23 08:01:37 +01:00
|
|
|
/* get_for_data() is a static class method returning a reference to an
|
|
|
|
* instance of Type located at the input data location. It's just a
|
2008-01-28 03:19:51 +01:00
|
|
|
* fancy, NULL-safe, cast! */
|
2008-01-24 09:11:09 +01:00
|
|
|
#define STATIC_DEFINE_GET_FOR_DATA(Type) \
|
2009-05-20 05:58:54 +02:00
|
|
|
static inline const Type& get_for_data (const char *data) \
|
|
|
|
{ \
|
2009-05-17 04:48:14 +02:00
|
|
|
if (HB_UNLIKELY (data == NULL)) return Null(Type); \
|
2009-05-25 09:20:18 +02:00
|
|
|
return *(const Type*)data; \
|
2009-05-24 06:50:27 +02:00
|
|
|
}
|
|
|
|
/* Like get_for_data(), but checks major version first. */
|
2009-08-04 08:09:34 +02:00
|
|
|
#define STATIC_DEFINE_GET_FOR_DATA_CHECK_MAJOR_VERSION(Type, MajorMin, MajorMax) \
|
2009-05-24 06:50:27 +02:00
|
|
|
static inline const Type& get_for_data (const char *data) \
|
|
|
|
{ \
|
|
|
|
if (HB_UNLIKELY (data == NULL)) return Null(Type); \
|
2009-05-25 09:20:18 +02:00
|
|
|
const Type& t = *(const Type*)data; \
|
2009-08-04 08:09:34 +02:00
|
|
|
if (HB_UNLIKELY (t.version.major < MajorMin || t.version.major > MajorMax)) return Null(Type); \
|
2009-05-24 06:50:27 +02:00
|
|
|
return t; \
|
|
|
|
}
|
2008-01-23 08:01:37 +01:00
|
|
|
|
|
|
|
|
2009-08-05 01:31:02 +02:00
|
|
|
/*
|
|
|
|
* Sanitize
|
|
|
|
*/
|
|
|
|
|
2009-08-05 04:35:36 +02:00
|
|
|
#if HB_DEBUG
|
|
|
|
#define SANITIZE_DEBUG_ARG_DEF , unsigned int sanitize_depth
|
|
|
|
#define SANITIZE_DEBUG_ARG , sanitize_depth + 1
|
|
|
|
#define SANITIZE_DEBUG_ARG_INIT , 0
|
|
|
|
#define SANITIZE_DEBUG() \
|
|
|
|
HB_STMT_START { \
|
|
|
|
printf ("SANITIZE(%p) %-*d-> %s\n", \
|
|
|
|
(CONST_CHARP (this) == NullPool) ? 0 : this, \
|
|
|
|
sanitize_depth+1, sanitize_depth, \
|
|
|
|
__PRETTY_FUNCTION__); \
|
|
|
|
} HB_STMT_END
|
|
|
|
#else
|
|
|
|
#define SANITIZE_DEBUG_ARG_DEF
|
|
|
|
#define SANITIZE_DEBUG_ARG
|
|
|
|
#define SANITIZE_DEBUG_ARG_INIT
|
|
|
|
#define SANITIZE_DEBUG() HB_STMT_START {} HB_STMT_END
|
|
|
|
#endif
|
|
|
|
|
2009-08-05 01:31:02 +02:00
|
|
|
typedef struct _hb_sanitize_context_t hb_sanitize_context_t;
|
|
|
|
struct _hb_sanitize_context_t
|
|
|
|
{
|
|
|
|
const char *start, *end;
|
|
|
|
int edit_count;
|
|
|
|
hb_blob_t *blob;
|
|
|
|
};
|
|
|
|
|
|
|
|
static HB_GNUC_UNUSED void
|
2009-08-05 02:52:47 +02:00
|
|
|
_hb_sanitize_init (hb_sanitize_context_t *context,
|
|
|
|
hb_blob_t *blob)
|
2009-08-05 01:31:02 +02:00
|
|
|
{
|
|
|
|
context->blob = blob;
|
|
|
|
context->start = hb_blob_lock (blob);
|
|
|
|
context->end = context->start + hb_blob_get_length (blob);
|
|
|
|
context->edit_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HB_GNUC_UNUSED void
|
2009-08-05 02:52:47 +02:00
|
|
|
_hb_sanitize_fini (hb_sanitize_context_t *context,
|
|
|
|
bool unlock)
|
2009-08-05 01:31:02 +02:00
|
|
|
{
|
|
|
|
if (unlock)
|
|
|
|
hb_blob_unlock (context->blob);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HB_GNUC_UNUSED bool
|
2009-08-05 02:52:47 +02:00
|
|
|
_hb_sanitize_edit (hb_sanitize_context_t *context)
|
2009-08-05 01:31:02 +02:00
|
|
|
{
|
2009-08-05 03:47:29 +02:00
|
|
|
context->edit_count++;
|
|
|
|
return hb_blob_try_writeable_inplace (context->blob);
|
2009-08-05 01:31:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define SANITIZE_ARG_DEF \
|
2009-08-05 04:35:36 +02:00
|
|
|
hb_sanitize_context_t *context SANITIZE_DEBUG_ARG_DEF
|
2009-08-05 01:31:02 +02:00
|
|
|
#define SANITIZE_ARG \
|
2009-08-05 04:35:36 +02:00
|
|
|
context SANITIZE_DEBUG_ARG
|
|
|
|
#define SANITIZE_ARG_INIT \
|
|
|
|
&context SANITIZE_DEBUG_ARG_INIT
|
2009-08-05 01:31:02 +02:00
|
|
|
|
|
|
|
#define SANITIZE(X) HB_LIKELY ((X).sanitize (SANITIZE_ARG))
|
|
|
|
#define SANITIZE2(X,Y) (SANITIZE (X) && SANITIZE (Y))
|
|
|
|
|
|
|
|
#define SANITIZE_THIS(X) HB_LIKELY ((X).sanitize (SANITIZE_ARG, CONST_CHARP(this)))
|
|
|
|
#define SANITIZE_THIS2(X,Y) (SANITIZE_THIS (X) && SANITIZE_THIS (Y))
|
|
|
|
#define SANITIZE_THIS3(X,Y,Z) (SANITIZE_THIS (X) && SANITIZE_THIS (Y) && SANITIZE_THIS(Z))
|
|
|
|
|
|
|
|
#define SANITIZE_BASE(X,B) HB_LIKELY ((X).sanitize (SANITIZE_ARG, B))
|
|
|
|
#define SANITIZE_BASE2(X,Y,B) (SANITIZE_BASE (X,B) && SANITIZE_BASE (Y,B))
|
|
|
|
|
|
|
|
#define SANITIZE_SELF() SANITIZE_OBJ (*this)
|
|
|
|
#define SANITIZE_OBJ(X) SANITIZE_MEM(&(X), sizeof (X))
|
|
|
|
#define SANITIZE_GET_SIZE() SANITIZE_SELF() && SANITIZE_MEM (this, this->get_size ())
|
|
|
|
|
|
|
|
#define SANITIZE_MEM(B,L) HB_LIKELY (context->start <= CONST_CHARP(B) && CONST_CHARP(B) + (L) <= context->end) /* XXX overflow */
|
|
|
|
|
2009-08-05 02:52:47 +02:00
|
|
|
#define NEUTER(Var, Val) (SANITIZE_OBJ (Var) && _hb_sanitize_edit (context) && ((Var) = (Val), true))
|
2009-08-05 01:31:02 +02:00
|
|
|
|
|
|
|
|
2009-08-05 02:52:47 +02:00
|
|
|
/* Template to sanitize an object. */
|
|
|
|
template <typename Type>
|
|
|
|
struct Sanitizer
|
|
|
|
{
|
|
|
|
static hb_blob_t *sanitize (hb_blob_t *blob) {
|
|
|
|
hb_sanitize_context_t context;
|
|
|
|
bool sane;
|
|
|
|
|
|
|
|
/* XXX is_sane() stuff */
|
|
|
|
|
|
|
|
retry:
|
|
|
|
_hb_sanitize_init (&context, blob);
|
|
|
|
|
|
|
|
Type *t = &CAST (Type, context.start, 0);
|
|
|
|
|
2009-08-05 04:35:36 +02:00
|
|
|
sane = t->sanitize (SANITIZE_ARG_INIT);
|
2009-08-05 02:52:47 +02:00
|
|
|
if (sane) {
|
|
|
|
if (context.edit_count) {
|
|
|
|
/* sanitize again to ensure not toe-stepping */
|
|
|
|
context.edit_count = 0;
|
2009-08-05 04:35:36 +02:00
|
|
|
sane = t->sanitize (SANITIZE_ARG_INIT);
|
2009-08-05 02:52:47 +02:00
|
|
|
if (context.edit_count) {
|
|
|
|
sane = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_hb_sanitize_fini (&context, true);
|
|
|
|
} else {
|
|
|
|
_hb_sanitize_fini (&context, true);
|
|
|
|
if (context.edit_count && !hb_blob_is_writeable (blob) && hb_blob_try_writeable (blob)) {
|
|
|
|
/* ok, we made it writeable by relocating. try again */
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sane)
|
|
|
|
return blob;
|
|
|
|
else {
|
|
|
|
hb_blob_destroy (blob);
|
|
|
|
return hb_blob_create_empty ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-05 03:32:57 +02:00
|
|
|
static const Type& lock_instance (hb_blob_t *blob) {
|
2009-08-05 02:52:47 +02:00
|
|
|
return Type::get_for_data (hb_blob_lock (blob));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-04-16 01:50:16 +02:00
|
|
|
|
2006-12-22 08:21:55 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* The OpenType Font File
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data Types
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* "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
|
|
|
|
*/
|
|
|
|
|
2009-05-25 08:41:49 +02:00
|
|
|
/* TODO On machines that do not allow unaligned access, fix the accessors. */
|
|
|
|
#define DEFINE_INT_TYPE1(NAME, TYPE, BIG_ENDIAN, BYTES) \
|
2009-05-20 05:58:54 +02:00
|
|
|
struct NAME \
|
|
|
|
{ \
|
2009-05-25 08:41:49 +02:00
|
|
|
inline NAME& operator = (TYPE i) { (TYPE&) v = BIG_ENDIAN (i); return *this; } \
|
|
|
|
inline operator TYPE(void) const { return BIG_ENDIAN ((TYPE&) v); } \
|
|
|
|
inline bool operator== (NAME o) const { return (TYPE&) v == (TYPE&) o.v; } \
|
2009-08-05 04:35:36 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF) { \
|
|
|
|
SANITIZE_DEBUG (); \
|
|
|
|
return SANITIZE_SELF (); \
|
|
|
|
} \
|
2009-05-25 08:41:49 +02:00
|
|
|
private: char v[BYTES]; \
|
2009-05-17 06:54:25 +02:00
|
|
|
}; \
|
2009-05-25 08:41:49 +02:00
|
|
|
ASSERT_SIZE (NAME, BYTES)
|
2009-08-02 02:46:02 +02:00
|
|
|
#define DEFINE_INT_TYPE0(NAME, type, b) DEFINE_INT_TYPE1 (NAME, type##_t, hb_be_##type, b)
|
|
|
|
#define DEFINE_INT_TYPE(NAME, u, w) DEFINE_INT_TYPE0 (NAME, u##int##w, (w / 8))
|
2009-05-17 06:54:25 +02:00
|
|
|
|
2006-12-22 08:21:55 +01:00
|
|
|
|
2009-05-25 08:41:49 +02:00
|
|
|
DEFINE_INT_TYPE (USHORT, u, 16); /* 16-bit unsigned integer. */
|
|
|
|
DEFINE_INT_TYPE (SHORT, , 16); /* 16-bit signed integer. */
|
|
|
|
DEFINE_INT_TYPE (ULONG, u, 32); /* 32-bit unsigned integer. */
|
|
|
|
DEFINE_INT_TYPE (LONG, , 32); /* 32-bit signed integer. */
|
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 */
|
2009-05-25 08:41:49 +02:00
|
|
|
struct Tag : ULONG
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-25 09:20:18 +02:00
|
|
|
inline Tag (const Tag &o) { *(ULONG*)this = (ULONG&) o; }
|
|
|
|
inline Tag (uint32_t i) { *(ULONG*)this = i; }
|
|
|
|
inline Tag (const char *c) { *(ULONG*)this = *(ULONG*)c; }
|
|
|
|
inline bool operator== (const char *c) const { return *(ULONG*)this == *(ULONG*)c; }
|
2006-12-25 15:14:52 +01:00
|
|
|
/* What the char* converters return is NOT nul-terminated. Print using "%.4s" */
|
2009-08-04 17:38:50 +02:00
|
|
|
inline operator const char* (void) const { return CONST_CHARP(this); }
|
|
|
|
inline operator char* (void) { return CHARP(this); }
|
2009-08-04 20:42:46 +02:00
|
|
|
|
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 20:42:46 +02:00
|
|
|
/* Note: Only accept ASCII-visible tags (mind DEL)
|
|
|
|
* This is one of the few times (only time?) we check
|
|
|
|
* for data integrity, as opposed o just boundary checks
|
|
|
|
*/
|
|
|
|
return SANITIZE_SELF () && (((uint32_t) *this) & 0x80808080) == 0;
|
|
|
|
}
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
2008-01-23 06:20:48 +01:00
|
|
|
ASSERT_SIZE (Tag, 4);
|
2009-05-18 01:31:18 +02:00
|
|
|
#define _NULL_TAG_INIT {' ', ' ', ' ', ' '}
|
|
|
|
DEFINE_NULL_DATA (Tag, 4, _NULL_TAG_INIT);
|
|
|
|
#undef _NULL_TAG_INIT
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
/* Glyph index number, same as uint16 (length = 16 bits) */
|
2009-05-25 08:27:29 +02:00
|
|
|
typedef USHORT GlyphID;
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/* Offset to a table, same as uint16 (length = 16 bits), Null offset = 0x0000 */
|
2009-05-25 08:27:29 +02:00
|
|
|
typedef USHORT Offset;
|
|
|
|
|
|
|
|
/* LongOffset to a table, same as uint32 (length = 32 bits), Null offset = 0x00000000 */
|
|
|
|
typedef ULONG LongOffset;
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
/* CheckSum */
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CheckSum : ULONG
|
|
|
|
{
|
|
|
|
static uint32_t CalcTableChecksum (ULONG *Table, uint32_t Length)
|
|
|
|
{
|
2006-12-22 04:31:10 +01:00
|
|
|
uint32_t Sum = 0L;
|
2006-12-22 04:31:31 +01:00
|
|
|
ULONG *EndPtr = Table+((Length+3) & ~3) / sizeof(ULONG);
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
while (Table < EndPtr)
|
|
|
|
Sum += *Table++;
|
|
|
|
return Sum;
|
|
|
|
}
|
|
|
|
};
|
2009-05-17 04:48:14 +02:00
|
|
|
ASSERT_SIZE (CheckSum, 4);
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Version Numbers
|
|
|
|
*/
|
|
|
|
|
2009-05-24 07:03:24 +02:00
|
|
|
struct FixedVersion
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-27 01:48:16 +02:00
|
|
|
inline operator uint32_t (void) const { return (major << 16) + minor; }
|
2009-05-24 18:30:40 +02:00
|
|
|
|
2009-08-04 08:09:34 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 08:09:34 +02:00
|
|
|
return SANITIZE_SELF ();
|
|
|
|
}
|
|
|
|
|
2009-05-25 08:27:29 +02:00
|
|
|
USHORT major;
|
2009-05-24 07:03:24 +02:00
|
|
|
USHORT minor;
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
2009-05-24 07:03:24 +02:00
|
|
|
ASSERT_SIZE (FixedVersion, 4);
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
/*
|
2009-08-04 16:41:32 +02:00
|
|
|
* Template subclasses of Offset and LongOffset that do the dereferencing.
|
|
|
|
* Use: (this+memberName)
|
2009-05-17 06:54:25 +02:00
|
|
|
*/
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
template <typename OffsetType, typename Type>
|
|
|
|
struct GenericOffsetTo : OffsetType
|
|
|
|
{
|
|
|
|
inline const Type& operator() (const void *base) const
|
|
|
|
{
|
|
|
|
unsigned int offset = *this;
|
|
|
|
if (HB_UNLIKELY (!offset)) return Null(Type);
|
2009-08-04 18:05:24 +02:00
|
|
|
return CONST_CAST(Type, *CONST_CHARP(base), offset);
|
2009-08-04 16:41:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF, const void *base) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 16:41:32 +02:00
|
|
|
if (!SANITIZE_OBJ (*this)) return false;
|
|
|
|
unsigned int offset = *this;
|
|
|
|
if (HB_UNLIKELY (!offset)) return true;
|
2009-08-04 20:10:39 +02:00
|
|
|
return SANITIZE (CAST(Type, *DECONST_CHARP(base), offset)) || NEUTER (DECONST_CAST(OffsetType,*this,0), 0);
|
2009-08-04 16:41:32 +02:00
|
|
|
}
|
2009-08-04 21:07:24 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF, const void *base, const void *base2) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 21:07:24 +02:00
|
|
|
if (!SANITIZE_OBJ (*this)) return false;
|
|
|
|
unsigned int offset = *this;
|
|
|
|
if (HB_UNLIKELY (!offset)) return true;
|
|
|
|
return SANITIZE_BASE (CAST(Type, *DECONST_CHARP(base), offset), base2) || NEUTER (DECONST_CAST(OffsetType,*this,0), 0);
|
|
|
|
}
|
2009-08-04 19:30:49 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF, const void *base, unsigned int user_data) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 19:30:49 +02:00
|
|
|
if (!SANITIZE_OBJ (*this)) return false;
|
|
|
|
unsigned int offset = *this;
|
|
|
|
if (HB_UNLIKELY (!offset)) return true;
|
2009-08-04 20:10:39 +02:00
|
|
|
return SANITIZE_BASE (CAST(Type, *DECONST_CHARP(base), offset), user_data) || NEUTER (DECONST_CAST(OffsetType,*this,0), 0);
|
2009-08-04 19:30:49 +02:00
|
|
|
}
|
2009-08-04 16:41:32 +02:00
|
|
|
};
|
|
|
|
template <typename Base, typename OffsetType, typename Type>
|
|
|
|
inline const Type& operator + (const Base &base, GenericOffsetTo<OffsetType, Type> offset) { return offset (base); }
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
template <typename Type>
|
2009-08-04 16:41:32 +02:00
|
|
|
struct OffsetTo : GenericOffsetTo<Offset, Type> {};
|
|
|
|
|
|
|
|
template <typename Type>
|
|
|
|
struct LongOffsetTo : GenericOffsetTo<LongOffset, Type> {};
|
|
|
|
/*
|
|
|
|
* Array Types
|
|
|
|
*/
|
|
|
|
|
|
|
|
template <typename LenType, typename Type>
|
|
|
|
struct GenericArrayOf
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2009-05-17 06:54:25 +02:00
|
|
|
if (HB_UNLIKELY (i >= len)) return Null(Type);
|
|
|
|
return array[i];
|
|
|
|
}
|
2009-05-20 05:58:54 +02:00
|
|
|
inline unsigned int get_size () const
|
2009-05-26 18:24:16 +02:00
|
|
|
{ return sizeof (len) + len * sizeof (array[0]); }
|
2009-05-18 08:03:58 +02:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 18:26:26 +02:00
|
|
|
if (!SANITIZE_GET_SIZE()) return false;
|
2009-08-04 08:10:48 +02:00
|
|
|
/* Note; for non-recursive types, this is not much needed
|
2009-08-04 06:58:28 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!SANITIZE (array[i]))
|
|
|
|
return false;
|
2009-08-04 08:10:48 +02:00
|
|
|
*/
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
2009-08-04 17:38:50 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF, const void *base) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 18:26:26 +02:00
|
|
|
if (!SANITIZE_GET_SIZE()) return false;
|
2009-08-04 16:23:01 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2009-08-04 18:05:24 +02:00
|
|
|
if (!array[i].sanitize (SANITIZE_ARG, base))
|
2009-08-04 16:23:01 +02:00
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 16:23:01 +02:00
|
|
|
}
|
2009-08-04 21:07:24 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF, const void *base, const void *base2) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 21:07:24 +02:00
|
|
|
if (!SANITIZE_GET_SIZE()) return false;
|
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!array[i].sanitize (SANITIZE_ARG, base, base2))
|
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 21:07:24 +02:00
|
|
|
}
|
2009-08-04 19:30:49 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF, const void *base, unsigned int user_data) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 19:30:49 +02:00
|
|
|
if (!SANITIZE_GET_SIZE()) return false;
|
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!array[i].sanitize (SANITIZE_ARG, base, user_data))
|
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 19:30:49 +02:00
|
|
|
}
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
LenType len;
|
2009-05-18 08:03:58 +02:00
|
|
|
Type array[];
|
|
|
|
};
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
/* An array with a USHORT number of elements. */
|
|
|
|
template <typename Type>
|
|
|
|
struct ArrayOf : GenericArrayOf<USHORT, Type> {};
|
|
|
|
|
|
|
|
/* An array with a ULONG number of elements. */
|
|
|
|
template <typename Type>
|
|
|
|
struct LongArrayOf : GenericArrayOf<ULONG, Type> {};
|
|
|
|
|
|
|
|
/* Array of Offset's */
|
|
|
|
template <typename Type>
|
|
|
|
struct OffsetArrayOf : ArrayOf<OffsetTo<Type> > {};
|
|
|
|
|
|
|
|
/* Array of LongOffset's */
|
|
|
|
template <typename Type>
|
|
|
|
struct LongOffsetArrayOf : ArrayOf<LongOffsetTo<Type> > {};
|
|
|
|
|
|
|
|
/* LongArray of LongOffset's */
|
|
|
|
template <typename Type>
|
|
|
|
struct LongOffsetLongArrayOf : LongArrayOf<LongOffsetTo<Type> > {};
|
|
|
|
|
2009-05-18 08:03:58 +02:00
|
|
|
/* An array with a USHORT number of elements,
|
|
|
|
* starting at second element. */
|
|
|
|
template <typename Type>
|
2009-05-20 05:58:54 +02:00
|
|
|
struct HeadlessArrayOf
|
|
|
|
{
|
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2009-05-18 08:03:58 +02:00
|
|
|
if (HB_UNLIKELY (i >= len || !i)) return Null(Type);
|
|
|
|
return array[i-1];
|
|
|
|
}
|
2009-05-20 05:58:54 +02:00
|
|
|
inline unsigned int get_size () const
|
2009-05-26 18:24:16 +02:00
|
|
|
{ return sizeof (len) + (len ? len - 1 : 0) * sizeof (array[0]); }
|
2009-05-17 06:54:25 +02:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
inline bool sanitize (SANITIZE_ARG_DEF) {
|
2009-08-05 04:35:36 +02:00
|
|
|
SANITIZE_DEBUG ();
|
2009-08-04 18:26:26 +02:00
|
|
|
if (!SANITIZE_GET_SIZE()) return false;
|
2009-08-04 08:10:48 +02:00
|
|
|
/* Note; for non-recursive types, this is not much needed
|
2009-08-04 19:57:41 +02:00
|
|
|
unsigned int count = len ? len - 1 : 0;
|
2009-08-04 06:58:28 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!SANITIZE (array[i]))
|
|
|
|
return false;
|
2009-08-04 08:10:48 +02:00
|
|
|
*/
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
USHORT len;
|
|
|
|
Type array[];
|
|
|
|
};
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#endif /* HB_OPEN_TYPES_PRIVATE_HH */
|