From 14e3b0cf41d9657c39f1f921f7e09a1418fa3278 Mon Sep 17 00:00:00 2001 From: Rod Sheeter Date: Tue, 21 May 2019 20:09:36 -0700 Subject: [PATCH] [subset] Code review feedback --- src/hb-ot-glyf-table.hh | 53 +++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/src/hb-ot-glyf-table.hh b/src/hb-ot-glyf-table.hh index a5a81ad..2ef0952 100644 --- a/src/hb-ot-glyf-table.hh +++ b/src/hb-ot-glyf-table.hh @@ -85,23 +85,22 @@ struct glyf static bool _add_loca_and_head (hb_subset_plan_t * plan, Iterator padded_offsets) { - unsigned int max_offset = - + padded_offsets - | hb_reduce (hb_max, 0); - bool use_short_loca = max_offset <= 131070; - unsigned int loca_prime_size = padded_offsets.len () * (use_short_loca ? 2 : 4); - char *loca_prime_data = (char *) calloc(1, loca_prime_size); + unsigned int max_offset = + padded_offsets | hb_reduce (hb_max, 0); + unsigned num_offsets = padded_offsets.len () + 1; + bool use_short_loca = max_offset < 0x1FFFF; + unsigned entry_size = use_short_loca ? 2 : 4; + char *loca_prime_data = (char *) calloc(entry_size, num_offsets); if (unlikely (!loca_prime_data)) return false; if (use_short_loca) - _write_loca (padded_offsets, 1, hb_array_t ((HBUINT16*) loca_prime_data, padded_offsets.len ())); + _write_loca (padded_offsets, 1, hb_array_t ((HBUINT16*) loca_prime_data, num_offsets)); else - _write_loca (padded_offsets, 0, hb_array_t ((HBUINT32*) loca_prime_data, padded_offsets.len ())); + _write_loca (padded_offsets, 0, hb_array_t ((HBUINT32*) loca_prime_data, num_offsets)); hb_blob_t * loca_blob = hb_blob_create (loca_prime_data, - loca_prime_size, - HB_MEMORY_MODE_READONLY, + entry_size * num_offsets, + HB_MEMORY_MODE_WRITABLE, loca_prime_data, free); @@ -112,21 +111,24 @@ struct glyf return true; } - template + hb_requires (hb_is_sink_of (IteratorOut, EntryType))> static void _write_loca (IteratorIn it, unsigned right_shift, IteratorOut dest) { unsigned int offset = 0; + it - | hb_map ([&] (unsigned int padded_size) { - unsigned int result = offset >> right_shift; - DEBUG_MSG(SUBSET, nullptr, "loca entry offset %d shifted %d", offset, result); + | hb_map ([=, &offset] (unsigned int padded_size) { + unsigned result = offset >> right_shift; + DEBUG_MSG(SUBSET, nullptr, "loca entry offset %d", offset); offset += padded_size; return result; }) - | hb_sink (dest); + | hb_sink (dest) + ; + DEBUG_MSG(SUBSET, nullptr, "loca entry offset %d", offset); + dest << (offset >> right_shift); } // requires source of SubsetGlyph complains the identifier isn't declared @@ -138,7 +140,8 @@ struct glyf TRACE_SERIALIZE (this); + it - | hb_apply ( [&] (const SubsetGlyph& _) { _.serialize (c, plan); }); + | hb_apply ([=] (const SubsetGlyph& _) { _.serialize (c, plan); }) + ; return_trace (true); } @@ -148,7 +151,7 @@ struct glyf TRACE_SUBSET (this); glyf *glyf_prime = c->serializer->start_embed (); - if (unlikely (!glyf_prime)) return_trace (false); + if (unlikely (!c->serializer->check_success (glyf_prime))) return_trace (false); // Byte region(s) per glyph to output // unpadded, hints removed if so requested @@ -158,15 +161,12 @@ struct glyf glyf_prime->serialize (c->serializer, hb_iter (glyphs), c->plan); - hb_vector_t padded_offsets; + auto padded_offsets = + hb_iter (glyphs) - | hb_map ([&] (const SubsetGlyph& _) { return _.padded_size(); }) - | hb_sink (padded_offsets); + | hb_map (&SubsetGlyph::padded_size) + ; - // loca ends with a final entry == last offset (+0) - padded_offsets << 0; - - return_trace (c->serializer->check_success (_add_loca_and_head (c->plan, hb_iter (padded_offsets)))); + return_trace (c->serializer->check_success (_add_loca_and_head (c->plan, padded_offsets))); } template @@ -191,7 +191,8 @@ struct glyf return subset_glyph; }) - | hb_sink (glyphs); + | hb_sink (glyphs) + ; glyf.fini(); } -- 2.7.4