SkPDF: cache metrics once.
authorhalcanary <halcanary@google.com>
Wed, 17 Aug 2016 21:21:42 +0000 (14:21 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 17 Aug 2016 21:21:42 +0000 (14:21 -0700)
commit0a61270f4ba85d10659fb63a86817b435ec04c94
treedcdc5d23af09dcdb2a85da2c49598c6412e26959
parent69c166d2ce3f4d2099f35f8e88f1aa56ceeaf960
SkPDF:  cache metrics once.

Motivation: drawText can look up unicode mapping at draw time to see
if ActualText should be used after crrev.com/2084533004 lands.

For each SkTypeface, only call getAdvancedTypefaceMetrics() once per
document.  Cache the result in the SkPDFCanon, indexed by SkFontID.
Also cache PDF FontDescriptors in the canon, also indexed by SkFontID
(Type1 fonts only).

Simplify PDF font lookup, map SkFontID+SkGlyphID into a uint64_t.  Map
that uint64_t to SkPDFFonts.  Remove SkPDFCanon::findFont(),
SkPDFCanon::addFont(), SkPDFFont::IsMatch(), and enum SkPDFFont::Match.

SkPDFFont no longer holds on to ref of SkAdvancedTypefaceMetrics.
Instead, SkPDFFont::GetFontResource() and SkPDFFont::getFontSubset()
get metrics from canon.

SkPDFFont multybite bool is now a function of type.
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2253993002

Review-Url: https://codereview.chromium.org/2253993002
src/pdf/SkPDFCanon.cpp
src/pdf/SkPDFCanon.h
src/pdf/SkPDFDocument.cpp
src/pdf/SkPDFFont.cpp
src/pdf/SkPDFFont.h