1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/platform/fonts/font_variant_alternates.h"
#include "third_party/blink/renderer/platform/wtf/hash_functions.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string_hash.h"
#include <hb.h>
namespace blink {
FontVariantAlternates::FontVariantAlternates() = default;
namespace {
constexpr uint32_t kSwshTag = HB_TAG('s', 'w', 's', 'h');
constexpr uint32_t kCswhTag = HB_TAG('c', 's', 'w', 'h');
constexpr uint32_t kHistTag = HB_TAG('h', 'i', 's', 't');
constexpr uint32_t kSaltTag = HB_TAG('s', 'a', 'l', 't');
constexpr uint32_t kNaltTag = HB_TAG('n', 'a', 'l', 't');
constexpr uint32_t kOrnmTag = HB_TAG('o', 'r', 'n', 'm');
constexpr uint32_t kMaxTag = 99;
uint32_t NumberedTag(uint32_t base_tag, uint32_t number) {
if (number > kMaxTag)
return base_tag;
base_tag |= (number / 10 + 48) << 8;
base_tag |= (number % 10 + 48);
return base_tag;
}
uint32_t ssTag(uint32_t number) {
uint32_t base_tag = HB_TAG('s', 's', 0, 0);
return NumberedTag(base_tag, number);
}
uint32_t cvTag(uint32_t number) {
uint32_t base_tag = HB_TAG('c', 'v', 0, 0);
return NumberedTag(base_tag, number);
}
} // namespace
const ResolvedFontFeatures& FontVariantAlternates::GetResolvedFontFeatures()
const {
#if DCHECK_IS_ON()
DCHECK(is_resolved_);
#endif
return resolved_features_;
}
scoped_refptr<FontVariantAlternates> FontVariantAlternates::Clone(
const FontVariantAlternates& other) {
auto new_object = base::AdoptRef(new FontVariantAlternates());
new_object->stylistic_ = other.stylistic_;
new_object->historical_forms_ = other.historical_forms_;
new_object->styleset_ = other.styleset_;
new_object->character_variant_ = other.character_variant_;
new_object->swash_ = other.swash_;
new_object->ornaments_ = other.ornaments_;
new_object->annotation_ = other.annotation_;
new_object->resolved_features_ = other.resolved_features_;
return new_object;
}
bool FontVariantAlternates::IsNormal() const {
return !stylistic_ && !historical_forms_ && !swash_ && !ornaments_ &&
!annotation_ && styleset_.empty() && character_variant_.empty();
}
void FontVariantAlternates::SetStylistic(AtomicString stylistic) {
stylistic_ = stylistic;
}
void FontVariantAlternates::SetHistoricalForms() {
historical_forms_ = true;
}
void FontVariantAlternates::SetSwash(AtomicString swash) {
swash_ = swash;
}
void FontVariantAlternates::SetOrnaments(AtomicString ornaments) {
ornaments_ = ornaments;
}
void FontVariantAlternates::SetAnnotation(AtomicString annotation) {
annotation_ = annotation;
}
void FontVariantAlternates::SetStyleset(Vector<AtomicString> styleset) {
styleset_ = std::move(styleset);
}
void FontVariantAlternates::SetCharacterVariant(
Vector<AtomicString> character_variant) {
character_variant_ = std::move(character_variant);
}
scoped_refptr<FontVariantAlternates> FontVariantAlternates::Resolve(
ResolverFunction resolve_stylistic,
ResolverFunction resolve_styleset,
ResolverFunction resolve_character_variant,
ResolverFunction resolve_swash,
ResolverFunction resolve_ornaments,
ResolverFunction resolve_annotation) const {
scoped_refptr<FontVariantAlternates> clone = Clone(*this);
// https://drafts.csswg.org/css-fonts-4/#multi-value-features
// "Most font specific functional values of the
// font-variant-alternates property take a single value
// (e.g. swash()). The character-variant() property value allows two
// values and styleset() allows an unlimited number.
// For the styleset property value, multiple values indicate the style
// sets to be enabled. Values between 1 and 99 enable OpenType
// features ss01 through ss99. [...]"
if (swash_) {
Vector<uint32_t> swash_resolved = resolve_swash(*swash_);
if (!swash_resolved.empty()) {
CHECK_EQ(swash_resolved.size(), 1u);
clone->resolved_features_.emplace_back(kSwshTag, swash_resolved[0]);
clone->resolved_features_.emplace_back(kCswhTag, swash_resolved[0]);
}
}
if (ornaments_) {
Vector<uint32_t> ornaments_resolved = resolve_ornaments(*ornaments_);
if (!ornaments_resolved.empty()) {
CHECK_EQ(ornaments_resolved.size(), 1u);
clone->resolved_features_.emplace_back(kOrnmTag, ornaments_resolved[0]);
}
}
if (annotation_) {
Vector<uint32_t> annotation_resolved = resolve_annotation(*annotation_);
if (!annotation_resolved.empty()) {
CHECK_EQ(annotation_resolved.size(), 1u);
clone->resolved_features_.emplace_back(kNaltTag, annotation_resolved[0]);
}
}
if (stylistic_) {
Vector<uint32_t> stylistic_resolved = resolve_stylistic(*stylistic_);
if (!stylistic_resolved.empty()) {
CHECK_EQ(stylistic_resolved.size(), 1u);
clone->resolved_features_.emplace_back(kSaltTag, stylistic_resolved[0]);
}
}
if (!styleset_.empty()) {
for (const AtomicString& styleset_alias : styleset_) {
Vector<uint32_t> styleset_resolved = resolve_styleset(styleset_alias);
if (!styleset_resolved.empty()) {
for (auto styleset_entry : styleset_resolved) {
if (styleset_entry <= kMaxTag) {
clone->resolved_features_.emplace_back(ssTag(styleset_entry), 1u);
}
}
}
}
}
if (!character_variant_.empty()) {
for (const AtomicString& character_variant_alias : character_variant_) {
Vector<uint32_t> character_variant_resolved =
resolve_character_variant(character_variant_alias);
if (!character_variant_resolved.empty() &&
character_variant_resolved.size() <= 2) {
uint32_t feature_value = 1;
if (character_variant_resolved.size() == 2) {
feature_value = character_variant_resolved[1];
}
if (character_variant_resolved[0] <= kMaxTag) {
clone->resolved_features_.emplace_back(
cvTag(character_variant_resolved[0]), feature_value);
}
}
}
}
if (historical_forms_) {
clone->resolved_features_.emplace_back(kHistTag, 1u);
}
#if DCHECK_IS_ON()
clone->is_resolved_ = true;
#endif
return clone;
}
unsigned FontVariantAlternates::GetHash() const {
unsigned computed_hash = 0;
WTF::AddIntToHash(computed_hash,
stylistic_.has_value() ? WTF::GetHash(*stylistic_) : -1);
WTF::AddIntToHash(computed_hash, historical_forms_);
WTF::AddIntToHash(computed_hash,
swash_.has_value() ? WTF::GetHash(*swash_) : -1);
WTF::AddIntToHash(computed_hash,
ornaments_.has_value() ? WTF::GetHash(*ornaments_) : -1);
WTF::AddIntToHash(computed_hash,
annotation_.has_value() ? WTF::GetHash(*annotation_) : -1);
if (!styleset_.empty()) {
for (const AtomicString& styleset_alias : styleset_) {
WTF::AddIntToHash(computed_hash, WTF::GetHash(styleset_alias));
}
}
if (!character_variant_.empty()) {
for (const AtomicString& character_variant_alias : character_variant_) {
WTF::AddIntToHash(computed_hash, WTF::GetHash(character_variant_alias));
}
}
WTF::AddIntToHash(computed_hash, resolved_features_.size());
return computed_hash;
}
bool FontVariantAlternates::operator==(
const FontVariantAlternates& other) const {
return stylistic_ == other.stylistic_ &&
historical_forms_ == other.historical_forms_ &&
styleset_ == other.styleset_ &&
character_variant_ == other.character_variant_ &&
swash_ == other.swash_ && ornaments_ == other.ornaments_ &&
annotation_ == other.annotation_ &&
resolved_features_ == other.resolved_features_;
}
} // namespace blink
|