Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Torch Mobile, Inc. | 3 * Copyright (C) 2009 Torch Mobile, Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 29 | 29 |
| 30 #include "core/dom/TagCollection.h" | 30 #include "core/dom/TagCollection.h" |
| 31 #include "core/fetch/ResourceClientWalker.h" | 31 #include "core/fetch/ResourceClientWalker.h" |
| 32 #include "core/html/parser/TextResourceDecoder.h" | 32 #include "core/html/parser/TextResourceDecoder.h" |
| 33 #include "platform/SharedBuffer.h" | 33 #include "platform/SharedBuffer.h" |
| 34 #include "platform/fonts/FontCustomPlatformData.h" | 34 #include "platform/fonts/FontCustomPlatformData.h" |
| 35 #include "platform/fonts/FontPlatformData.h" | 35 #include "platform/fonts/FontPlatformData.h" |
| 36 #include "public/platform/Platform.h" | 36 #include "public/platform/Platform.h" |
| 37 #include "wtf/CurrentTime.h" | 37 #include "wtf/CurrentTime.h" |
| 38 | 38 |
| 39 #if ENABLE(SVG_FONTS) | |
| 40 #include "core/SVGNames.h" | |
| 41 #include "core/dom/XMLDocument.h" | |
| 42 #include "core/html/HTMLCollection.h" | |
| 43 #include "core/svg/SVGFontElement.h" | |
| 44 #endif | |
| 45 | |
| 46 namespace blink { | 39 namespace blink { |
| 47 | 40 |
| 48 static const double fontLoadWaitLimitSec = 3.0; | 41 static const double fontLoadWaitLimitSec = 3.0; |
| 49 | 42 |
| 50 enum FontPackageFormat { | 43 enum FontPackageFormat { |
| 51 PackageFormatUnknown, | 44 PackageFormatUnknown, |
| 52 PackageFormatSFNT, | 45 PackageFormatSFNT, |
| 53 PackageFormatWOFF, | 46 PackageFormatWOFF, |
| 54 PackageFormatWOFF2, | 47 PackageFormatWOFF2, |
| 55 PackageFormatSVG, | 48 PackageFormatSVG, |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 80 , m_exceedsFontLoadWaitLimit(false) | 73 , m_exceedsFontLoadWaitLimit(false) |
| 81 , m_corsFailed(false) | 74 , m_corsFailed(false) |
| 82 , m_fontLoadWaitLimitTimer(this, &FontResource::fontLoadWaitLimitCallback) | 75 , m_fontLoadWaitLimitTimer(this, &FontResource::fontLoadWaitLimitCallback) |
| 83 { | 76 { |
| 84 } | 77 } |
| 85 | 78 |
| 86 FontResource::~FontResource() | 79 FontResource::~FontResource() |
| 87 { | 80 { |
| 88 } | 81 } |
| 89 | 82 |
| 90 void FontResource::trace(Visitor* visitor) | 83 void FontResource::trace(Visitor* visitor) |
|
eae
2014/10/23 22:02:34
Remove the entire overloaded function?
pdr.
2014/10/23 22:15:34
Done.
| |
| 91 { | 84 { |
| 92 #if ENABLE(SVG_FONTS) | |
| 93 visitor->trace(m_externalSVGDocument); | |
| 94 #endif | |
| 95 Resource::trace(visitor); | 85 Resource::trace(visitor); |
| 96 } | 86 } |
| 97 | 87 |
| 98 void FontResource::didScheduleLoad() | 88 void FontResource::didScheduleLoad() |
| 99 { | 89 { |
| 100 if (m_state == Unloaded) | 90 if (m_state == Unloaded) |
| 101 m_state = LoadScheduled; | 91 m_state = LoadScheduled; |
| 102 } | 92 } |
| 103 | 93 |
| 104 void FontResource::didUnscheduleLoad() | 94 void FontResource::didUnscheduleLoad() |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 } else { | 136 } else { |
| 147 setStatus(DecodeError); | 137 setStatus(DecodeError); |
| 148 recordPackageFormatHistogram(PackageFormatUnknown); | 138 recordPackageFormatHistogram(PackageFormatUnknown); |
| 149 } | 139 } |
| 150 } | 140 } |
| 151 return m_fontData; | 141 return m_fontData; |
| 152 } | 142 } |
| 153 | 143 |
| 154 FontPlatformData FontResource::platformDataFromCustomData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant) | 144 FontPlatformData FontResource::platformDataFromCustomData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant) |
| 155 { | 145 { |
| 156 #if ENABLE(SVG_FONTS) | |
| 157 if (m_externalSVGDocument) | |
| 158 return FontPlatformData(size, bold, italic); | |
| 159 #endif | |
| 160 ASSERT(m_fontData); | 146 ASSERT(m_fontData); |
| 161 return m_fontData->fontPlatformData(size, bold, italic, orientation, widthVa riant); | 147 return m_fontData->fontPlatformData(size, bold, italic, orientation, widthVa riant); |
| 162 } | 148 } |
| 163 | 149 |
| 164 #if ENABLE(SVG_FONTS) | |
| 165 bool FontResource::ensureSVGFontData() | |
| 166 { | |
| 167 if (!m_externalSVGDocument && !errorOccurred() && !isLoading()) { | |
| 168 if (m_data) { | |
| 169 m_externalSVGDocument = XMLDocument::createSVG(); | |
| 170 | |
| 171 OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("a pplication/xml"); | |
| 172 String svgSource = decoder->decode(m_data->data(), m_data->size()); | |
| 173 svgSource = svgSource + decoder->flush(); | |
| 174 | |
| 175 m_externalSVGDocument->setContent(svgSource); | |
| 176 | |
| 177 if (decoder->sawError()) | |
| 178 m_externalSVGDocument = nullptr; | |
| 179 } | |
| 180 if (m_externalSVGDocument) { | |
| 181 recordPackageFormatHistogram(PackageFormatSVG); | |
| 182 } else { | |
| 183 setStatus(DecodeError); | |
| 184 recordPackageFormatHistogram(PackageFormatUnknown); | |
| 185 } | |
| 186 } | |
| 187 | |
| 188 return m_externalSVGDocument; | |
| 189 } | |
| 190 | |
| 191 SVGFontElement* FontResource::getSVGFontById(const String& fontName) const | |
| 192 { | |
| 193 RefPtrWillBeRawPtr<TagCollection> collection = m_externalSVGDocument->getEle mentsByTagNameNS(SVGNames::fontTag.namespaceURI(), SVGNames::fontTag.localName() ); | |
| 194 if (!collection) | |
| 195 return 0; | |
| 196 | |
| 197 unsigned collectionLength = collection->length(); | |
| 198 if (!collectionLength) | |
| 199 return 0; | |
| 200 | |
| 201 #if ENABLE(ASSERT) | |
| 202 for (unsigned i = 0; i < collectionLength; ++i) { | |
| 203 ASSERT(collection->item(i)); | |
| 204 ASSERT(isSVGFontElement(collection->item(i))); | |
| 205 } | |
| 206 #endif | |
| 207 | |
| 208 if (fontName.isEmpty()) | |
| 209 return toSVGFontElement(collection->item(0)); | |
| 210 | |
| 211 for (unsigned i = 0; i < collectionLength; ++i) { | |
| 212 SVGFontElement* element = toSVGFontElement(collection->item(i)); | |
| 213 if (element->getIdAttribute() == fontName) | |
| 214 return element; | |
| 215 } | |
| 216 | |
| 217 return 0; | |
| 218 } | |
| 219 #endif | |
| 220 | |
| 221 bool FontResource::isSafeToUnlock() const | 150 bool FontResource::isSafeToUnlock() const |
| 222 { | 151 { |
| 223 return m_data->hasOneRef(); | 152 return m_data->hasOneRef(); |
| 224 } | 153 } |
| 225 | 154 |
| 226 void FontResource::fontLoadWaitLimitCallback(Timer<FontResource>*) | 155 void FontResource::fontLoadWaitLimitCallback(Timer<FontResource>*) |
| 227 { | 156 { |
| 228 if (!isLoading()) | 157 if (!isLoading()) |
| 229 return; | 158 return; |
| 230 m_exceedsFontLoadWaitLimit = true; | 159 m_exceedsFontLoadWaitLimit = true; |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 241 | 170 |
| 242 void FontResource::checkNotify() | 171 void FontResource::checkNotify() |
| 243 { | 172 { |
| 244 m_fontLoadWaitLimitTimer.stop(); | 173 m_fontLoadWaitLimitTimer.stop(); |
| 245 ResourceClientWalker<FontResourceClient> w(m_clients); | 174 ResourceClientWalker<FontResourceClient> w(m_clients); |
| 246 while (FontResourceClient* c = w.next()) | 175 while (FontResourceClient* c = w.next()) |
| 247 c->fontLoaded(this); | 176 c->fontLoaded(this); |
| 248 } | 177 } |
| 249 | 178 |
| 250 } | 179 } |
| OLD | NEW |