harfbuzz/src/hb-ot-layout-base-table.hh

411 lines
8.8 KiB
C++
Raw Normal View History

2017-02-18 19:54:33 +01:00
/*
* Copyright © 2016 Elie Roux <elie.roux@telecom-bretagne.eu>
*
* 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.
*
*/
#ifndef HB_OT_BASE_TABLE_HH
#define HB_OT_BASE_TABLE_HH
#include "hb-open-type-private.hh"
#include "hb-ot-layout-common-private.hh"
#define HB_OT_TAG_BASE HB_TAG('B','A','S','E')
// https://www.microsoft.com/typography/otspec/baselinetags.htm
#define HB_OT_TAG_BASE_HANG HB_TAG('h','a','n','g')
#define HB_OT_TAG_BASE_ICFB HB_TAG('i','c','f','b')
#define HB_OT_TAG_BASE_ICFT HB_TAG('i','c','f','t')
#define HB_OT_TAG_BASE_IDEO HB_TAG('i','d','e','o')
#define HB_OT_TAG_BASE_IDTB HB_TAG('i','d','t','b')
#define HB_OT_TAG_BASE_MATH HB_TAG('m','a','t','h')
#define HB_OT_TAG_BASE_ROMN HB_TAG('r','o','m','n')
namespace OT {
/*
* BASE -- The BASE Table
*/
struct BaseCoordFormat1 {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this));
}
2017-02-18 19:54:33 +01:00
protected:
USHORT baseCoordFormat;
SHORT coordinate;
public:
DEFINE_SIZE_STATIC (4);
};
struct BaseCoordFormat2 {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this));
}
2017-02-18 19:54:33 +01:00
protected:
USHORT baseCoordFormat;
SHORT coordinate;
USHORT referenceGlyph;
USHORT baseCoordPoint;
public:
DEFINE_SIZE_STATIC (8);
};
struct BaseCoordFormat3 {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) && deviceTable.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
USHORT baseCoordFormat;
SHORT coordinate;
OffsetTo<Device> deviceTable;
public:
DEFINE_SIZE_STATIC (6);
};
struct BaseCoord {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
if (!u.baseCoordFormat.sanitize (c)) return_trace (false);
switch (u.baseCoordFormat) {
case 1: return_trace (u.format1.sanitize (c));
case 2: return_trace (u.format2.sanitize (c));
case 3: return_trace (u.format3.sanitize (c));
default:return_trace (true);
}
}
2017-02-18 19:54:33 +01:00
protected:
union {
USHORT baseCoordFormat;
BaseCoordFormat1 format1;
BaseCoordFormat2 format2;
BaseCoordFormat3 format3;
} u;
public:
DEFINE_SIZE_MIN (4);
};
struct FeatMinMaxRecord {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
minCoord.sanitize (c, base) &&
maxCoord.sanitize (c, base));
}
2017-02-18 19:54:33 +01:00
protected:
Tag featureTableTag;
OffsetTo<BaseCoord> minCoord;
OffsetTo<BaseCoord> maxCoord;
public:
DEFINE_SIZE_STATIC (8);
};
struct MinMaxTable {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
minCoord.sanitize (c, this) &&
maxCoord.sanitize (c, this) &&
featMinMaxRecordTable.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
OffsetTo<BaseCoord> minCoord;
OffsetTo<BaseCoord> maxCoord;
USHORT featMinMaxCount;
ArrayOf<FeatMinMaxRecord> featMinMaxRecordTable;
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_ARRAY (8, featMinMaxRecordTable);
2017-02-18 19:54:33 +01:00
};
struct BaseLangSysRecord {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
minMax.sanitize (c, base));
}
2017-02-18 19:54:33 +01:00
protected:
Tag baseLangSysTag;
OffsetTo<MinMaxTable> minMax;
public:
DEFINE_SIZE_STATIC (6);
};
struct BaseValuesTable {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseCoordTable.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
USHORT defaultIndex;
USHORT baseCoordCount;
2017-02-19 10:12:22 +01:00
OffsetArrayOf<BaseCoord> baseCoordTable;
2017-02-18 19:54:33 +01:00
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_ARRAY (6, baseCoordTable);
2017-02-18 19:54:33 +01:00
};
struct BaseScriptTable {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseValues.sanitize (c, this) &&
defaultMinMax.sanitize (c, this) &&
baseLangSysRecordTable.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
OffsetTo<BaseValuesTable> baseValues;
OffsetTo<MinMaxTable> defaultMinMax;
USHORT baseLangSysCount;
ArrayOf<BaseLangSysRecord> baseLangSysRecordTable;
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_ARRAY (8, baseLangSysRecordTable);
2017-02-18 19:54:33 +01:00
};
struct BaseScriptRecord {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseScript.sanitize (c, base));
}
2017-02-18 19:54:33 +01:00
protected:
Tag baseScriptTag;
OffsetTo<BaseScriptTable> baseScript;
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_STATIC (6);
2017-02-18 19:54:33 +01:00
};
struct BaseScriptList {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseScriptRecordTable.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
USHORT baseScriptCount;
ArrayOf<BaseScriptRecord> baseScriptRecordTable;
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_ARRAY (4, baseScriptRecordTable);
2017-02-18 19:54:33 +01:00
};
struct BaselineTag {
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this));
}
2017-02-18 19:54:33 +01:00
protected:
Tag tag;
public:
DEFINE_SIZE_STATIC (4);
};
struct BaseTagList
{
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseTagListTable.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
USHORT baseTagCount;
2017-02-19 10:12:22 +01:00
ArrayOf<BaselineTag> baseTagListTable;
2017-02-18 19:54:33 +01:00
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_ARRAY (4, baseTagListTable);
2017-02-18 19:54:33 +01:00
};
struct VertAxis
{
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseTagList.sanitize (c, this) &&
baseScriptList.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
OffsetTo<BaseTagList> baseTagList;
OffsetTo<BaseScriptList> baseScriptList;
public:
DEFINE_SIZE_STATIC (4);
};
struct HorizAxis
{
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
baseTagList.sanitize (c, this) &&
baseScriptList.sanitize (c, this));
}
2017-02-18 19:54:33 +01:00
protected:
OffsetTo<HorizAxis> baseTagList;
OffsetTo<VertAxis> baseScriptList;
public:
DEFINE_SIZE_STATIC (4);
};
2017-02-19 10:12:22 +01:00
struct BASEFormat1_1
{
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
horizAxis.sanitize (c, this) &&
vertAxis.sanitize (c, this) &&
itemVarStore.sanitize (c, this));
}
2017-02-19 10:12:22 +01:00
protected:
FixedVersion<>version;
OffsetTo<HorizAxis> horizAxis;
OffsetTo<VertAxis> vertAxis;
LOffsetTo<VariationStore> itemVarStore;
public:
DEFINE_SIZE_STATIC (12);
};
struct BASEFormat1_0
{
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
horizAxis.sanitize (c, this) &&
vertAxis.sanitize (c, this));
}
2017-02-19 10:12:22 +01:00
protected:
FixedVersion<>version;
OffsetTo<HorizAxis> horizAxis;
OffsetTo<VertAxis> vertAxis;
public:
DEFINE_SIZE_STATIC (8);
};
2017-02-18 19:54:33 +01:00
struct BASE
{
static const hb_tag_t tableTag = HB_OT_TAG_BASE;
2017-02-25 16:19:35 +01:00
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
2017-02-18 19:54:33 +01:00
{
TRACE_SANITIZE (this);
2017-02-25 16:19:35 +01:00
if (!u.version.sanitize (c)) return_trace (false);
if (!likely(u.version.major == 1)) return_trace (false);
switch (u.version.minor) {
case 0: return_trace (u.format1_0.sanitize (c));
case 1: return_trace (u.format1_1.sanitize (c));
default:return_trace (true);
}
2017-02-18 19:54:33 +01:00
}
protected:
2017-02-19 10:12:22 +01:00
union {
FixedVersion<>version; /* Version of the BASE table: 1.0 or 1.1 */
BASEFormat1_0 format1_0;
BASEFormat1_1 format1_1;
} u;
2017-02-18 19:54:33 +01:00
public:
2017-02-19 10:12:22 +01:00
DEFINE_SIZE_UNION (4, version);
2017-02-18 19:54:33 +01:00
};
} /* namespace OT */
#endif /* HB_OT_BASE_TABLE_HH */