/* * Copyright (C) 2007,2008,2009 Red Hat, Inc. * * 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 */ #ifndef HB_OT_LAYOUT_COMMON_PRIVATE_HH #define HB_OT_LAYOUT_COMMON_PRIVATE_HH #include "hb-ot-layout-private.h" #include "hb-open-type-private.hh" #define NO_CONTEXT ((unsigned int) 0x110000) #define NOT_COVERED ((unsigned int) 0x110000) #define MAX_NESTING_LEVEL 8 /* * * OpenType Layout Common Table Formats * */ /* * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList */ template struct Record { static inline unsigned int get_size () { return sizeof (Record); } inline bool sanitize (SANITIZE_ARG_DEF, const void *base) { TRACE_SANITIZE (); return SANITIZE (tag) && SANITIZE_BASE (offset, base); } Tag tag; /* 4-byte Tag identifier */ OffsetTo offset; /* Offset from beginning of object holding * the Record */ }; template struct RecordArrayOf : ArrayOf > { inline const Tag& get_tag (unsigned int i) const { if (HB_UNLIKELY (i >= this->len)) return Null(Tag); return (*this)[i].tag; } inline bool get_tags (unsigned int *record_count /* IN/OUT */, hb_tag_t *record_tags /* OUT */) const { const Record *a = this->const_array(); unsigned int count = MIN (this->len, *record_count); for (unsigned int i = 0; i < count; i++) record_tags[i] = a[i].tag; *record_count = this->len; return !!this->len; } inline bool find_index (hb_tag_t tag, unsigned int *index) const { Tag t; t.set (tag); // TODO bsearch const Record *a = this->const_array(); unsigned int count = this->len; for (unsigned int i = 0; i < count; i++) { if (t == a[i].tag) { if (index) *index = i; return true; } } if (index) *index = NO_INDEX; return false; } }; template struct RecordListOf : RecordArrayOf { inline const Type& operator [] (unsigned int i) const { return this+RecordArrayOf::operator[](i).offset; } inline bool sanitize (SANITIZE_ARG_DEF) { TRACE_SANITIZE (); return RecordArrayOf::sanitize (SANITIZE_ARG, CONST_CHARP(this)); } }; struct IndexArray : ArrayOf { inline unsigned int operator [] (unsigned int i) const { if (HB_UNLIKELY (i >= this->len)) return NO_INDEX; return this->const_array()[i]; } inline bool get_indexes (unsigned int *_count /* IN/OUT */, unsigned int *_indexes /* OUT */) const { unsigned int count = MIN (this->len, *_count); const USHORT *a = this->const_array(); for (unsigned int i = 0; i < count; i++) _indexes[i] = a[i]; *_count = this->len; return !!this->len; } }; struct Script; struct LangSys; struct Feature; struct LangSys { inline unsigned int get_feature_count (void) const { return featureIndex.len; } inline hb_tag_t get_feature_index (unsigned int i) const { return featureIndex[i]; } inline bool get_feature_indexes (unsigned int *feature_count /* IN/OUT */, unsigned int *feature_indexes /* OUT */) const { return featureIndex.get_indexes (feature_count, feature_indexes); } inline bool has_required_feature (void) const { return reqFeatureIndex != 0xffff; } inline int get_required_feature_index (void) const { if (reqFeatureIndex == 0xffff) return NO_INDEX; return reqFeatureIndex;; } inline bool sanitize (SANITIZE_ARG_DEF) { TRACE_SANITIZE (); return SANITIZE_SELF () && SANITIZE (featureIndex); } Offset lookupOrder; /* = Null (reserved for an offset to a * reordering table) */ USHORT reqFeatureIndex;/* Index of a feature required for this * language system--if no required features * = 0xFFFF */ IndexArray featureIndex; /* Array of indices into the FeatureList */ }; ASSERT_SIZE (LangSys, 6); DEFINE_NULL_DATA (LangSys, 6, "\0\0\xFF\xFF"); struct Script { inline unsigned int get_lang_sys_count (void) const { return langSys.len; } inline const Tag& get_lang_sys_tag (unsigned int i) const { return langSys.get_tag (i); } inline bool get_lang_sys_tags (unsigned int *lang_sys_count /* IN/OUT */, hb_tag_t *lang_sys_tags /* OUT */) const { return langSys.get_tags (lang_sys_count, lang_sys_tags); } inline const LangSys& get_lang_sys (unsigned int i) const { if (i == NO_INDEX) return get_default_lang_sys (); return this+langSys[i].offset; } inline bool find_lang_sys_index (hb_tag_t tag, unsigned int *index) const { return langSys.find_index (tag, index); } inline bool has_default_lang_sys (void) const { return defaultLangSys != 0; } inline const LangSys& get_default_lang_sys (void) const { return this+defaultLangSys; } inline bool sanitize (SANITIZE_ARG_DEF) { TRACE_SANITIZE (); return SANITIZE_THIS (defaultLangSys) && SANITIZE_THIS (langSys); } private: OffsetTo defaultLangSys; /* Offset to DefaultLangSys table--from * beginning of Script table--may be Null */ RecordArrayOf langSys; /* Array of LangSysRecords--listed * alphabetically by LangSysTag */ }; ASSERT_SIZE (Script, 4); typedef RecordListOf