Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / CSSFontSelector.h
1 /*
2  * Copyright (C) 2007, 2008, 2011 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 #ifndef CSSFontSelector_h
27 #define CSSFontSelector_h
28
29 #include "core/css/FontFaceCache.h"
30 #include "core/fetch/ResourcePtr.h"
31 #include "platform/Timer.h"
32 #include "platform/fonts/FontSelector.h"
33 #include "platform/fonts/GenericFontFamilySettings.h"
34 #include "wtf/Forward.h"
35 #include "wtf/HashMap.h"
36 #include "wtf/HashSet.h"
37
38 namespace WebCore {
39
40 class CSSFontFace;
41 class CSSFontFaceRule;
42 class CSSFontSelectorClient;
43 class CSSSegmentedFontFace;
44 class FontResource;
45 class Document;
46 class FontDescription;
47 class StyleRuleFontFace;
48
49 class FontLoader {
50 public:
51     explicit FontLoader(ResourceFetcher*);
52
53     void addFontToBeginLoading(FontResource*);
54     void loadPendingFonts();
55
56     void clearResourceFetcher();
57
58 private:
59     void beginLoadTimerFired(Timer<FontLoader>*);
60
61     Timer<FontLoader> m_beginLoadingTimer;
62     Vector<ResourcePtr<FontResource> > m_fontsToBeginLoading;
63     ResourceFetcher* m_resourceFetcher;
64 };
65
66 class CSSFontSelector FINAL : public FontSelector {
67 public:
68     static PassRefPtr<CSSFontSelector> create(Document* document)
69     {
70         return adoptRef(new CSSFontSelector(document));
71     }
72     virtual ~CSSFontSelector();
73
74     virtual unsigned version() const OVERRIDE { return m_fontFaceCache.version(); }
75
76     virtual PassRefPtr<FontData> getFontData(const FontDescription&, const AtomicString&) OVERRIDE;
77     virtual void willUseFontData(const FontDescription&, const AtomicString& family) OVERRIDE;
78
79     void clearDocument();
80
81     void fontLoaded();
82
83     // FontCacheClient implementation
84     virtual void fontCacheInvalidated() OVERRIDE;
85
86     void registerForInvalidationCallbacks(CSSFontSelectorClient*);
87     void unregisterForInvalidationCallbacks(CSSFontSelectorClient*);
88
89     Document* document() const { return m_document; }
90     FontFaceCache* fontFaceCache() { return &m_fontFaceCache; }
91
92     const GenericFontFamilySettings& genericFontFamilySettings() const { return m_genericFontFamilySettings; }
93     void updateGenericFontFamilySettings(Document&);
94
95     void beginLoadingFontSoon(FontResource*);
96     void loadPendingFonts();
97
98 private:
99     explicit CSSFontSelector(Document*);
100
101     void dispatchInvalidationCallbacks();
102
103     Document* m_document;
104     // FIXME: Move to Document or StyleEngine.
105     FontFaceCache m_fontFaceCache;
106     HashSet<CSSFontSelectorClient*> m_clients;
107
108     FontLoader m_fontLoader;
109     GenericFontFamilySettings m_genericFontFamilySettings;
110 };
111
112 } // namespace WebCore
113
114 #endif // CSSFontSelector_h