tagging audio streams and changing audio sink to pulseaudio
[profile/ivi/webkit-efl.git] / Source / WebCore / platform / graphics / FontFallbackList.cpp
1 /*
2  * Copyright (C) 2006 Apple Computer, 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  *
8  * 1.  Redistributions of source code must retain the above copyright
9  *     notice, this list of conditions and the following disclaimer. 
10  * 2.  Redistributions in binary form must reproduce the above copyright
11  *     notice, this list of conditions and the following disclaimer in the
12  *     documentation and/or other materials provided with the distribution. 
13  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14  *     its contributors may be used to endorse or promote products derived
15  *     from this software without specific prior written permission. 
16  *
17  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include "config.h"
30 #include "FontFallbackList.h"
31
32 #include "Font.h"
33 #include "FontCache.h"
34 #include "SegmentedFontData.h"
35
36 namespace WebCore {
37
38 FontFallbackList::FontFallbackList()
39     : m_pageZero(0)
40     , m_cachedPrimarySimpleFontData(0)
41     , m_fontSelector(0)
42     , m_fontSelectorVersion(0)
43     , m_familyIndex(0)
44     , m_generation(fontCache()->generation())
45     , m_pitch(UnknownPitch)
46     , m_loadingCustomFonts(false)
47 {
48 }
49
50 void FontFallbackList::invalidate(PassRefPtr<FontSelector> fontSelector)
51 {
52     releaseFontData();
53     m_fontList.clear();
54     m_pageZero = 0;
55     m_pages.clear();
56     m_cachedPrimarySimpleFontData = 0;
57     m_familyIndex = 0;    
58     m_pitch = UnknownPitch;
59     m_loadingCustomFonts = false;
60     m_fontSelector = fontSelector;
61     m_fontSelectorVersion = m_fontSelector ? m_fontSelector->version() : 0;
62     m_generation = fontCache()->generation();
63 }
64
65 void FontFallbackList::releaseFontData()
66 {
67     unsigned numFonts = m_fontList.size();
68     for (unsigned i = 0; i < numFonts; ++i) {
69         if (!m_fontList[i].second) {
70             ASSERT(!m_fontList[i].first->isSegmented());
71             fontCache()->releaseFontData(static_cast<const SimpleFontData*>(m_fontList[i].first));
72         }
73     }
74 }
75
76 void FontFallbackList::determinePitch(const Font* font) const
77 {
78     const FontData* fontData = primaryFontData(font);
79     if (!fontData->isSegmented())
80         m_pitch = static_cast<const SimpleFontData*>(fontData)->pitch();
81     else {
82         const SegmentedFontData* segmentedFontData = static_cast<const SegmentedFontData*>(fontData);
83         unsigned numRanges = segmentedFontData->numRanges();
84         if (numRanges == 1)
85             m_pitch = segmentedFontData->rangeAt(0).fontData()->pitch();
86         else
87             m_pitch = VariablePitch;
88     }
89 }
90
91 const FontData* FontFallbackList::fontDataAt(const Font* font, unsigned realizedFontIndex) const
92 {
93     if (realizedFontIndex < m_fontList.size())
94         return m_fontList[realizedFontIndex].first; // This fallback font is already in our list.
95
96     // Make sure we're not passing in some crazy value here.
97     ASSERT(realizedFontIndex == m_fontList.size());
98     if (m_familyIndex == cAllFamiliesScanned)
99         return 0;
100
101     // Ask the font cache for the font data.
102     // We are obtaining this font for the first time.  We keep track of the families we've looked at before
103     // in |m_familyIndex|, so that we never scan the same spot in the list twice.  getFontData will adjust our
104     // |m_familyIndex| as it scans for the right font to make.
105     ASSERT(fontCache()->generation() == m_generation);
106     const FontData* result = fontCache()->getFontData(*font, m_familyIndex, m_fontSelector.get());
107     if (result) {
108         if (m_fontList.find(pair<const FontData*, bool>(result, result->isCustomFont())) == -1)
109             m_fontList.append(pair<const FontData*, bool>(result, result->isCustomFont()));
110         if (result->isLoading())
111             m_loadingCustomFonts = true;
112     }
113     return result;
114 }
115
116 void FontFallbackList::setPlatformFont(const FontPlatformData& platformData)
117 {
118     m_familyIndex = cAllFamiliesScanned;
119     ASSERT(fontCache()->generation() == m_generation);
120     const FontData* fontData = fontCache()->getCachedFontData(&platformData);
121     m_fontList.append(pair<const FontData*, bool>(fontData, fontData->isCustomFont()));
122 }
123
124 }