2018-02-21 23:18:49 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Google, Inc.
|
|
|
|
*
|
|
|
|
* 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): Garret Rieger
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_OT_HDMX_TABLE_HH
|
|
|
|
#define HB_OT_HDMX_TABLE_HH
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-open-type.hh"
|
2018-02-21 23:18:49 +01:00
|
|
|
|
2018-02-23 01:40:50 +01:00
|
|
|
/*
|
2018-04-12 11:08:19 +02:00
|
|
|
* hdmx -- Horizontal Device Metrics
|
|
|
|
* https://docs.microsoft.com/en-us/typography/opentype/spec/hdmx
|
2018-02-23 01:40:50 +01:00
|
|
|
*/
|
|
|
|
#define HB_OT_TAG_hdmx HB_TAG('h','d','m','x')
|
2018-02-22 02:42:58 +01:00
|
|
|
|
2018-04-12 11:08:19 +02:00
|
|
|
|
|
|
|
namespace OT {
|
|
|
|
|
|
|
|
|
2018-02-23 19:34:26 +01:00
|
|
|
struct DeviceRecord
|
2018-02-21 23:18:49 +01:00
|
|
|
{
|
2018-02-23 19:34:26 +01:00
|
|
|
struct SubsetView
|
2018-02-22 02:42:58 +01:00
|
|
|
{
|
2018-02-23 19:34:26 +01:00
|
|
|
const DeviceRecord *source_device_record;
|
2018-03-21 00:31:21 +01:00
|
|
|
unsigned int size_device_record;
|
2018-02-23 19:34:26 +01:00
|
|
|
hb_subset_plan_t *subset_plan;
|
|
|
|
|
|
|
|
inline void init(const DeviceRecord *source_device_record,
|
2018-03-21 00:31:21 +01:00
|
|
|
unsigned int size_device_record,
|
2018-02-23 19:34:26 +01:00
|
|
|
hb_subset_plan_t *subset_plan)
|
2018-02-22 00:15:22 +01:00
|
|
|
{
|
2018-02-23 19:34:26 +01:00
|
|
|
this->source_device_record = source_device_record;
|
2018-03-21 00:31:21 +01:00
|
|
|
this->size_device_record = size_device_record;
|
2018-02-23 19:34:26 +01:00
|
|
|
this->subset_plan = subset_plan;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int len () const
|
2018-02-22 00:15:22 +01:00
|
|
|
{
|
2018-05-30 21:23:51 +02:00
|
|
|
return this->subset_plan->glyphs.len;
|
2018-02-22 00:15:22 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 00:31:21 +01:00
|
|
|
inline const HBUINT8* operator [] (unsigned int i) const
|
2018-02-22 00:15:22 +01:00
|
|
|
{
|
2018-03-21 00:31:21 +01:00
|
|
|
if (unlikely (i >= len())) return nullptr;
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_codepoint_t gid = this->subset_plan->glyphs [i];
|
2018-03-21 00:31:21 +01:00
|
|
|
|
2018-09-10 23:29:26 +02:00
|
|
|
const HBUINT8* width = &(this->source_device_record->widthsZ[gid]);
|
2018-03-21 00:31:21 +01:00
|
|
|
|
|
|
|
if (width < ((const HBUINT8 *) this->source_device_record) + size_device_record)
|
|
|
|
return width;
|
|
|
|
else
|
|
|
|
return nullptr;
|
2018-02-23 19:34:26 +01:00
|
|
|
}
|
|
|
|
};
|
2018-02-22 00:36:09 +01:00
|
|
|
|
2018-02-23 19:34:26 +01:00
|
|
|
static inline unsigned int get_size (unsigned int count)
|
|
|
|
{
|
2018-09-10 23:29:26 +02:00
|
|
|
return hb_ceil_to_4 (min_size + count * HBUINT8::static_size);
|
2018-02-23 19:34:26 +01:00
|
|
|
}
|
2018-02-22 00:15:22 +01:00
|
|
|
|
2018-02-23 19:34:26 +01:00
|
|
|
inline bool serialize (hb_serialize_context_t *c, const SubsetView &subset_view)
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
2018-02-22 00:15:22 +01:00
|
|
|
|
2018-09-06 03:04:52 +02:00
|
|
|
unsigned int size = get_size (subset_view.len());
|
|
|
|
if (unlikely (!c->allocate_size<DeviceRecord> (size)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "Couldn't allocate enough space for DeviceRecord: %d.",
|
|
|
|
size);
|
2018-02-23 19:34:26 +01:00
|
|
|
return_trace (false);
|
2018-09-06 03:04:52 +02:00
|
|
|
}
|
2018-02-22 00:15:22 +01:00
|
|
|
|
2018-02-23 19:34:26 +01:00
|
|
|
this->pixel_size.set (subset_view.source_device_record->pixel_size);
|
|
|
|
this->max_width.set (subset_view.source_device_record->max_width);
|
2018-02-22 00:15:22 +01:00
|
|
|
|
2018-02-23 19:34:26 +01:00
|
|
|
for (unsigned int i = 0; i < subset_view.len(); i++)
|
2018-03-21 00:31:21 +01:00
|
|
|
{
|
|
|
|
const HBUINT8 *width = subset_view[i];
|
|
|
|
if (!width)
|
|
|
|
{
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "HDMX width for new gid %d is missing.", i);
|
|
|
|
return_trace (false);
|
|
|
|
}
|
2018-09-10 23:29:26 +02:00
|
|
|
widthsZ[i].set (*width);
|
2018-03-21 00:31:21 +01:00
|
|
|
}
|
2018-02-21 23:18:49 +01:00
|
|
|
|
2018-02-23 19:34:26 +01:00
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int size_device_record) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (likely (c->check_struct (this) &&
|
|
|
|
c->check_range (this, size_device_record)));
|
|
|
|
}
|
|
|
|
|
2018-09-10 23:29:26 +02:00
|
|
|
HBUINT8 pixel_size; /* Pixel size for following widths (as ppem). */
|
|
|
|
HBUINT8 max_width; /* Maximum width. */
|
|
|
|
UnsizedArrayOf<HBUINT8> widthsZ; /* Array of widths (numGlyphs is from the 'maxp' table). */
|
2018-02-23 19:38:35 +01:00
|
|
|
public:
|
2018-09-10 23:29:26 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, widthsZ);
|
2018-02-23 19:34:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct hdmx
|
|
|
|
{
|
|
|
|
static const hb_tag_t tableTag = HB_OT_TAG_hdmx;
|
2018-02-22 00:15:22 +01:00
|
|
|
|
2018-02-21 23:18:49 +01:00
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{
|
|
|
|
return min_size + num_records * size_device_record;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const DeviceRecord& operator [] (unsigned int i) const
|
|
|
|
{
|
|
|
|
if (unlikely (i >= num_records)) return Null(DeviceRecord);
|
2018-09-10 23:29:26 +02:00
|
|
|
return StructAtOffset<DeviceRecord> (&this->dataZ, i * size_device_record);
|
2018-02-21 23:18:49 +01:00
|
|
|
}
|
|
|
|
|
2018-02-22 00:15:22 +01:00
|
|
|
inline bool serialize (hb_serialize_context_t *c, const hdmx *source_hdmx, hb_subset_plan_t *plan)
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
|
|
|
if (unlikely (!c->extend_min ((*this)))) return_trace (false);
|
|
|
|
|
|
|
|
this->version.set (source_hdmx->version);
|
|
|
|
this->num_records.set (source_hdmx->num_records);
|
2018-05-30 21:23:51 +02:00
|
|
|
this->size_device_record.set (DeviceRecord::get_size (plan->glyphs.len));
|
2018-02-22 00:15:22 +01:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < source_hdmx->num_records; i++)
|
|
|
|
{
|
|
|
|
DeviceRecord::SubsetView subset_view;
|
2018-03-21 00:31:21 +01:00
|
|
|
subset_view.init (&(*source_hdmx)[i], source_hdmx->size_device_record, plan);
|
2018-02-22 00:15:22 +01:00
|
|
|
|
2018-03-21 00:31:21 +01:00
|
|
|
if (!c->start_embed<DeviceRecord> ()->serialize (c, subset_view))
|
|
|
|
return_trace (false);
|
2018-02-22 00:15:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
2018-09-06 03:04:52 +02:00
|
|
|
static inline size_t get_subsetted_size (const hdmx *source_hdmx, hb_subset_plan_t *plan)
|
2018-02-22 00:43:47 +01:00
|
|
|
{
|
2018-09-06 03:04:52 +02:00
|
|
|
return min_size + source_hdmx->num_records * DeviceRecord::get_size (plan->glyphs.len);
|
2018-02-22 00:43:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-22 00:15:22 +01:00
|
|
|
inline bool subset (hb_subset_plan_t *plan) const
|
|
|
|
{
|
2018-09-06 03:04:52 +02:00
|
|
|
size_t dest_size = get_subsetted_size (this, plan);
|
2018-02-22 01:00:10 +01:00
|
|
|
hdmx *dest = (hdmx *) malloc (dest_size);
|
|
|
|
if (unlikely (!dest))
|
|
|
|
{
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Unable to alloc %lu for hdmx subset output.", (unsigned long) dest_size);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
hb_serialize_context_t c (dest, dest_size);
|
|
|
|
hdmx *hdmx_prime = c.start_serialize<hdmx> ();
|
2018-09-06 01:24:28 +02:00
|
|
|
if (!hdmx_prime || !hdmx_prime->serialize (&c, this, plan))
|
|
|
|
{
|
2018-02-22 01:00:10 +01:00
|
|
|
free (dest);
|
2018-09-06 03:04:52 +02:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Failed to serialize write new hdmx.");
|
2018-02-22 01:00:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
c.end_serialize ();
|
|
|
|
|
|
|
|
hb_blob_t *hdmx_prime_blob = hb_blob_create ((const char *) dest,
|
2018-02-23 19:38:35 +01:00
|
|
|
dest_size,
|
|
|
|
HB_MEMORY_MODE_READONLY,
|
|
|
|
dest,
|
|
|
|
free);
|
2018-05-30 21:23:51 +02:00
|
|
|
bool result = plan->add_table (HB_OT_TAG_hdmx, hdmx_prime_blob);
|
2018-02-22 01:00:10 +01:00
|
|
|
hb_blob_destroy (hdmx_prime_blob);
|
|
|
|
|
|
|
|
return result;
|
2018-02-22 00:15:22 +01:00
|
|
|
}
|
|
|
|
|
2018-02-21 23:18:49 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-02-23 19:45:03 +01:00
|
|
|
return_trace (c->check_struct (this) && version == 0 &&
|
2018-07-10 14:12:37 +02:00
|
|
|
!hb_unsigned_mul_overflows (num_records, size_device_record) &&
|
2018-03-27 04:56:56 +02:00
|
|
|
size_device_record >= DeviceRecord::min_size &&
|
2018-02-23 19:45:03 +01:00
|
|
|
c->check_range (this, get_size()));
|
2018-02-21 23:18:49 +01:00
|
|
|
}
|
|
|
|
|
2018-02-23 19:45:03 +01:00
|
|
|
protected:
|
2018-09-10 23:29:26 +02:00
|
|
|
HBUINT16 version; /* Table version number (0) */
|
|
|
|
HBUINT16 num_records; /* Number of device records. */
|
|
|
|
HBUINT32 size_device_record; /* Size of a device record, 32-bit aligned. */
|
|
|
|
UnsizedArrayOf<HBUINT8> dataZ; /* Array of device records. */
|
2018-02-23 19:45:03 +01:00
|
|
|
public:
|
2018-09-10 23:29:26 +02:00
|
|
|
DEFINE_SIZE_ARRAY (8, dataZ);
|
2018-02-21 23:18:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace OT */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HB_OT_HDMX_TABLE_HH */
|