parent
ca0df565f7
commit
68b90153ea
5 changed files with 156 additions and 3 deletions
@ -0,0 +1,141 @@ |
||||
/*
|
||||
* Copyright © 2022 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 |
||||
*/ |
||||
|
||||
#include "graph.hh" |
||||
#include "../hb-ot-layout-common.hh" |
||||
|
||||
#ifndef GRAPH_CLASSDEF_GRAPH_HH |
||||
#define GRAPH_CLASSDEF_GRAPH_HH |
||||
|
||||
namespace graph { |
||||
|
||||
struct ClassDefFormat1 : public OT::ClassDefFormat1_3<SmallTypes> |
||||
{ |
||||
bool sanitize (graph_t::vertex_t& vertex) const |
||||
{ |
||||
int64_t vertex_len = vertex.obj.tail - vertex.obj.head; |
||||
constexpr unsigned min_size = OT::ClassDefFormat1_3<SmallTypes>::min_size; |
||||
if (vertex_len < min_size) return false; |
||||
return vertex_len >= min_size + classValue.get_size () - classValue.len.get_size (); |
||||
} |
||||
}; |
||||
|
||||
struct ClassDefFormat2 : public OT::ClassDefFormat2_4<SmallTypes> |
||||
{ |
||||
bool sanitize (graph_t::vertex_t& vertex) const |
||||
{ |
||||
int64_t vertex_len = vertex.obj.tail - vertex.obj.head; |
||||
constexpr unsigned min_size = OT::ClassDefFormat2_4<SmallTypes>::min_size; |
||||
if (vertex_len < min_size) return false; |
||||
return vertex_len >= min_size + rangeRecord.get_size () - rangeRecord.len.get_size (); |
||||
} |
||||
}; |
||||
|
||||
struct ClassDef : public OT::ClassDef |
||||
{ |
||||
template<typename It> |
||||
static bool clone_class_def (gsubgpos_graph_context_t& c, |
||||
unsigned class_def_id, |
||||
unsigned new_parent_id, |
||||
unsigned link_position, |
||||
It glyphs) |
||||
{ |
||||
unsigned class_def_size = c.graph.vertices_[class_def_id].table_size (); |
||||
auto& class_def_v = c.graph.vertices_[class_def_id]; |
||||
ClassDef* class_def_table = (ClassDef*) class_def_v.obj.head; |
||||
if (!class_def_table->sanitize (class_def_v)) |
||||
return false; |
||||
|
||||
auto new_class_def = |
||||
+ glyphs |
||||
| hb_map_retains_sorting ([&] (hb_codepoint_t gid) { |
||||
return hb_pair (gid, class_def_table[gid]); |
||||
}) |
||||
; |
||||
|
||||
unsigned class_def_prime_id = c.graph.new_node (nullptr, nullptr); |
||||
auto& class_def_prime_vertex = c.graph.vertices_[class_def_prime_id]; |
||||
if (!make_class_def (c, new_class_def, class_def_prime_id, class_def_size)) |
||||
return false; |
||||
|
||||
auto* class_def_link = c.graph.vertices_[new_parent_id].obj.real_links.push (); |
||||
class_def_link->width = SmallTypes::size; |
||||
class_def_link->objidx = class_def_prime_id; |
||||
class_def_link->position = link_position; |
||||
class_def_prime_vertex.parents.push (new_parent_id); |
||||
|
||||
return true; |
||||
} |
||||
|
||||
template<typename It> |
||||
static bool make_class_def (gsubgpos_graph_context_t& c, |
||||
It glyph_and_class, |
||||
unsigned dest_obj, |
||||
unsigned max_size) |
||||
{ |
||||
char* buffer = (char*) hb_calloc (1, max_size); |
||||
hb_serialize_context_t serializer (buffer, max_size); |
||||
ClassDef_serialize (&serializer, glyph_and_class); |
||||
serializer.end_serialize (); |
||||
if (serializer.in_error ()) |
||||
{ |
||||
hb_free (buffer); |
||||
return false; |
||||
} |
||||
|
||||
hb_bytes_t class_def_copy = serializer.copy_bytes (); |
||||
c.add_buffer ((char *) class_def_copy.arrayZ); // Give ownership to the context, it will cleanup the buffer.
|
||||
|
||||
auto& obj = c.graph.vertices_[dest_obj].obj; |
||||
obj.head = (char *) class_def_copy.arrayZ; |
||||
obj.tail = obj.head + class_def_copy.length; |
||||
|
||||
hb_free (buffer); |
||||
return true; |
||||
} |
||||
|
||||
bool sanitize (graph_t::vertex_t& vertex) const |
||||
{ |
||||
int64_t vertex_len = vertex.obj.tail - vertex.obj.head; |
||||
if (vertex_len < OT::ClassDef::min_size) return false; |
||||
switch (u.format) |
||||
{ |
||||
case 1: return ((ClassDefFormat1*)this)->sanitize (vertex); |
||||
case 2: return ((ClassDefFormat2*)this)->sanitize (vertex); |
||||
#ifndef HB_NO_BORING_EXPANSION |
||||
// Not currently supported
|
||||
case 3: |
||||
case 4: |
||||
#endif |
||||
default: return false; |
||||
} |
||||
} |
||||
}; |
||||
|
||||
|
||||
} |
||||
|
||||
#endif // GRAPH_CLASSDEF_GRAPH_HH
|
Loading…
Reference in new issue