/* * 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 #include "hb-open-type-private.hh" namespace OT { #define HB_OT_TAG_hdmx HB_TAG('h','d','m','x') struct DeviceRecord { struct SubsetView { const DeviceRecord *source_device_record; hb_subset_plan_t *subset_plan; inline void init(const DeviceRecord *source_device_record, hb_subset_plan_t *subset_plan) { this->source_device_record = source_device_record; this->subset_plan = subset_plan; } inline unsigned int len () const { return this->subset_plan->gids_to_retain_sorted.len; } inline const HBUINT8& operator [] (unsigned int i) const { if (unlikely (i >= len())) return Null(HBUINT8); hb_codepoint_t gid = this->subset_plan->gids_to_retain_sorted [i]; return this->source_device_record->widths[gid]; } }; inline bool serialize (hb_serialize_context_t *c, const SubsetView &subset_view) { TRACE_SERIALIZE (this); if (unlikely (!c->extend_min ((*this)))) return_trace (false); this->pixel_size.set (subset_view.source_device_record->pixel_size); this->max_width.set (subset_view.source_device_record->max_width); for (unsigned int i = 0; i < subset_view.len(); i++) { HBUINT8 *width = c->extend (this->widths[i]); if (unlikely (!width)) return_trace (false); width->set (subset_view[i]); } return_trace (true); } HBUINT8 pixel_size; HBUINT8 max_width; HBUINT8 widths[VAR]; DEFINE_SIZE_MIN (2); }; struct hdmx { 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); return StructAtOffset (this, min_size + i * size_device_record); } 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); this->size_device_record.set (source_hdmx->size_device_record); for (unsigned int i = 0; i < source_hdmx->num_records; i++) { DeviceRecord::SubsetView subset_view; subset_view.init (&(*source_hdmx)[i], plan); c->start_embed ()->serialize (c, subset_view); } return_trace (true); } inline bool subset (hb_subset_plan_t *plan) const { // TODO(grieger) return false; } inline bool sanitize (hb_sanitize_context_t *c) const { TRACE_SANITIZE (this); return_trace (likely (c->check_struct (this) && version == 0)); } HBUINT16 version; HBINT16 num_records; HBINT32 size_device_record; DEFINE_SIZE_MIN (8); private: DeviceRecord records[VAR]; }; } /* namespace OT */ #endif /* HB_OT_HDMX_TABLE_HH */