Home | History | Annotate | Download | only in css
      1 /*
      2  * Copyright (C) 2007, 2010 Apple Inc. All rights reserved.
      3  *
      4  * Redistribution and use in source and binary forms, with or without
      5  * modification, are permitted provided that the following conditions
      6  * are met:
      7  * 1. Redistributions of source code must retain the above copyright
      8  *    notice, this list of conditions and the following disclaimer.
      9  * 2. Redistributions in binary form must reproduce the above copyright
     10  *    notice, this list of conditions and the following disclaimer in the
     11  *    documentation and/or other materials provided with the distribution.
     12  *
     13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
     14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
     17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
     21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     24  */
     25 
     26 #include "config.h"
     27 #include "core/css/CSSFontFaceSrcValue.h"
     28 
     29 #include "FetchInitiatorTypeNames.h"
     30 #include "core/css/StyleSheetContents.h"
     31 #include "core/dom/Document.h"
     32 #include "core/dom/Node.h"
     33 #include "core/fetch/FetchRequest.h"
     34 #include "core/fetch/FontResource.h"
     35 #include "core/fetch/ResourceFetcher.h"
     36 #include "core/svg/SVGFontFaceElement.h"
     37 #include "platform/fonts/FontCustomPlatformData.h"
     38 #include "wtf/text/StringBuilder.h"
     39 
     40 namespace WebCore {
     41 
     42 #if ENABLE(SVG_FONTS)
     43 bool CSSFontFaceSrcValue::isSVGFontFaceSrc() const
     44 {
     45     return equalIgnoringCase(m_format, "svg");
     46 }
     47 #endif
     48 
     49 bool CSSFontFaceSrcValue::isSupportedFormat() const
     50 {
     51     // Normally we would just check the format, but in order to avoid conflicts with the old WinIE style of font-face,
     52     // we will also check to see if the URL ends with .eot.  If so, we'll go ahead and assume that we shouldn't load it.
     53     if (m_format.isEmpty()) {
     54         // Check for .eot.
     55         if (!m_resource.startsWith("data:", false) && m_resource.endsWith(".eot", false))
     56             return false;
     57         return true;
     58     }
     59 
     60     return FontCustomPlatformData::supportsFormat(m_format)
     61 #if ENABLE(SVG_FONTS)
     62            || isSVGFontFaceSrc()
     63 #endif
     64            ;
     65 }
     66 
     67 String CSSFontFaceSrcValue::customCSSText() const
     68 {
     69     StringBuilder result;
     70     if (isLocal())
     71         result.appendLiteral("local(");
     72     else
     73         result.appendLiteral("url(");
     74     result.append(m_resource);
     75     result.append(')');
     76     if (!m_format.isEmpty()) {
     77         result.appendLiteral(" format(");
     78         result.append(m_format);
     79         result.append(')');
     80     }
     81     return result.toString();
     82 }
     83 
     84 void CSSFontFaceSrcValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const StyleSheetContents* styleSheet) const
     85 {
     86     if (!isLocal())
     87         addSubresourceURL(urls, styleSheet->completeURL(m_resource));
     88 }
     89 
     90 bool CSSFontFaceSrcValue::hasFailedOrCanceledSubresources() const
     91 {
     92     if (!m_fetched)
     93         return false;
     94     return m_fetched->loadFailedOrCanceled();
     95 }
     96 
     97 FontResource* CSSFontFaceSrcValue::fetch(Document* document)
     98 {
     99     if (!m_fetched) {
    100         FetchRequest request(ResourceRequest(document->completeURL(m_resource)), FetchInitiatorTypeNames::css);
    101         m_fetched = document->fetcher()->fetchFont(request);
    102     }
    103     return m_fetched.get();
    104 }
    105 
    106 bool CSSFontFaceSrcValue::equals(const CSSFontFaceSrcValue& other) const
    107 {
    108     return m_isLocal == other.m_isLocal && m_format == other.m_format && m_resource == other.m_resource;
    109 }
    110 
    111 }
    112