Upstream version 7.36.149.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/ResourceLoader.h"
31 #include "core/fetch/ResourcePtr.h"
32 #include "platform/Timer.h"
33 #include "platform/fonts/FontSelector.h"
34 #include "platform/fonts/GenericFontFamilySettings.h"
35 #include "platform/heap/Handle.h"
36 #include "wtf/Forward.h"
37 #include "wtf/HashMap.h"
38 #include "wtf/HashSet.h"
39
40 namespace WebCore {
41
42 class CSSFontFace;
43 class CSSFontFaceRule;
44 class CSSFontSelectorClient;
45 class CSSSegmentedFontFace;
46 class Document;
47 class FontDescription;
48 class FontResource;
49 class StyleRuleFontFace;
50
51 class FontLoader {
52     DISALLOW_ALLOCATION();
53 public:
54     explicit FontLoader(ResourceFetcher*);
55     ~FontLoader();
56
57     void addFontToBeginLoading(FontResource*);
58     void loadPendingFonts();
59
60 #if !ENABLE(OILPAN)
61     void clearResourceFetcher();
62 #endif
63
64     void trace(Visitor*);
65
66 private:
67     void beginLoadTimerFired(Timer<FontLoader>*);
68
69     Timer<FontLoader> m_beginLoadingTimer;
70
71     typedef Vector<std::pair<ResourcePtr<FontResource>, ResourceLoader::RequestCountTracker> > FontsToLoadVector;
72     FontsToLoadVector m_fontsToBeginLoading;
73     RawPtrWillBeMember<ResourceFetcher> m_resourceFetcher;
74 };
75
76 class CSSFontSelector FINAL : public FontSelector {
77 public:
78     static PassRefPtrWillBeRawPtr<CSSFontSelector> create(Document* document)
79     {
80         return adoptRefWillBeNoop(new CSSFontSelector(document));
81     }
82     virtual ~CSSFontSelector();
83
84     virtual unsigned version() const OVERRIDE { return m_fontFaceCache.version(); }
85
86     virtual PassRefPtr<FontData> getFontData(const FontDescription&, const AtomicString&) OVERRIDE;
87     virtual void willUseFontData(const FontDescription&, const AtomicString& family, UChar32) OVERRIDE;
88
89 #if !ENABLE(OILPAN)
90     void clearDocument();
91 #endif
92
93     void fontLoaded();
94
95     // FontCacheClient implementation
96     virtual void fontCacheInvalidated() OVERRIDE;
97
98     void registerForInvalidationCallbacks(CSSFontSelectorClient*);
99 #if !ENABLE(OILPAN)
100     void unregisterForInvalidationCallbacks(CSSFontSelectorClient*);
101 #endif
102
103     Document* document() const { return m_document; }
104     FontFaceCache* fontFaceCache() { return &m_fontFaceCache; }
105
106     const GenericFontFamilySettings& genericFontFamilySettings() const { return m_genericFontFamilySettings; }
107     void updateGenericFontFamilySettings(Document&);
108
109     void beginLoadingFontSoon(FontResource*);
110     void loadPendingFonts();
111
112     virtual void trace(Visitor*);
113
114 private:
115     explicit CSSFontSelector(Document*);
116
117     void dispatchInvalidationCallbacks();
118
119     RawPtrWillBeMember<Document> m_document;
120     // FIXME: Move to Document or StyleEngine.
121     FontFaceCache m_fontFaceCache;
122     WillBeHeapHashSet<RawPtrWillBeWeakMember<CSSFontSelectorClient> > m_clients;
123
124     FontLoader m_fontLoader;
125     GenericFontFamilySettings m_genericFontFamilySettings;
126 };
127
128 } // namespace WebCore
129
130 #endif // CSSFontSelector_h