1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/*
* Copyright (c) 2012 Google Inc. All rights reserved.
* Copyright (c) 2012 Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "HarfBuzzFace.h"
#include "FontPlatformData.h"
#include "GlyphBuffer.h"
#include "HarfBuzzShaper.h"
#include "SimpleFontData.h"
#include "TextEncoding.h"
#include <cairo-ft.h>
#include <cairo.h>
#include <freetype/freetype.h>
#include <freetype/tttables.h>
#include <hb.h>
#include <wtf/text/CString.h>
namespace WebCore {
struct HarfBuzzFontData {
HarfBuzzFontData(WTF::HashMap<uint32_t, uint16_t>* glyphCacheForFaceCacheEntry, cairo_scaled_font_t* cairoScaledFont)
: m_glyphCacheForFaceCacheEntry(glyphCacheForFaceCacheEntry)
, m_cairoScaledFont(cairoScaledFont)
{ }
WTF::HashMap<uint32_t, uint16_t>* m_glyphCacheForFaceCacheEntry;
cairo_scaled_font_t* m_cairoScaledFont;
};
class CairoFtFaceLocker {
public:
CairoFtFaceLocker(cairo_scaled_font_t* cairoScaledFont) : m_scaledFont(cairoScaledFont) { };
FT_Face lock()
{
return cairo_ft_scaled_font_lock_face(m_scaledFont);
};
~CairoFtFaceLocker()
{
cairo_ft_scaled_font_unlock_face(m_scaledFont);
}
private:
cairo_scaled_font_t* m_scaledFont;
};
static hb_position_t floatToHarfBuzzPosition(float value)
{
return static_cast<hb_position_t>(value * (1 << 16));
}
static hb_position_t doubleToHarfBuzzPosition(double value)
{
return static_cast<hb_position_t>(value * (1 << 16));
}
static void CairoGetGlyphWidthAndExtents(cairo_scaled_font_t* scaledFont, hb_codepoint_t codepoint, hb_position_t* advance, hb_glyph_extents_t* extents)
{
cairo_text_extents_t glyphExtents;
cairo_glyph_t glyph;
glyph.index = codepoint;
glyph.x = 0;
glyph.y = 0;
cairo_scaled_font_glyph_extents(scaledFont, &glyph, 1, &glyphExtents);
if (advance)
*advance = doubleToHarfBuzzPosition(glyphExtents.x_advance);
if (extents) {
extents->x_bearing = doubleToHarfBuzzPosition(glyphExtents.x_bearing);
extents->y_bearing = doubleToHarfBuzzPosition(glyphExtents.y_bearing);
extents->width = doubleToHarfBuzzPosition(glyphExtents.width);
extents->height = doubleToHarfBuzzPosition(glyphExtents.height);
}
}
static hb_bool_t harfBuzzGetGlyph(hb_font_t*, void* fontData, hb_codepoint_t unicode, hb_codepoint_t, hb_codepoint_t* glyph, void*)
{
HarfBuzzFontData* hbFontData = reinterpret_cast<HarfBuzzFontData*>(fontData);
cairo_scaled_font_t* scaledFont = hbFontData->m_cairoScaledFont;
ASSERT(scaledFont);
WTF::HashMap<uint32_t, uint16_t>::AddResult result = hbFontData->m_glyphCacheForFaceCacheEntry->add(unicode, 0);
if (result.isNewEntry) {
cairo_glyph_t* glyphs = 0;
int numGlyphs = 0;
CString utf8Codepoint = UTF8Encoding().encode(reinterpret_cast<UChar*>(&unicode), 1, QuestionMarksForUnencodables);
if (cairo_scaled_font_text_to_glyphs(scaledFont, 0, 0, utf8Codepoint.data(), utf8Codepoint.length(), &glyphs, &numGlyphs, 0, 0, 0) != CAIRO_STATUS_SUCCESS)
return false;
if (!numGlyphs)
return false;
result.iterator->value = glyphs[0].index;
cairo_glyph_free(glyphs);
}
*glyph = result.iterator->value;
return !!*glyph;
}
static hb_position_t harfBuzzGetGlyphHorizontalAdvance(hb_font_t*, void* fontData, hb_codepoint_t glyph, void*)
{
HarfBuzzFontData* hbFontData = reinterpret_cast<HarfBuzzFontData*>(fontData);
cairo_scaled_font_t* scaledFont = hbFontData->m_cairoScaledFont;
ASSERT(scaledFont);
hb_position_t advance = 0;
CairoGetGlyphWidthAndExtents(scaledFont, glyph, &advance, 0);
return advance;
}
static hb_bool_t harfBuzzGetGlyphHorizontalOrigin(hb_font_t*, void*, hb_codepoint_t, hb_position_t*, hb_position_t*, void*)
{
// Just return true, following the way that Harfbuzz-FreeType
// implementation does.
return true;
}
static hb_bool_t harfBuzzGetGlyphExtents(hb_font_t*, void* fontData, hb_codepoint_t glyph, hb_glyph_extents_t* extents, void*)
{
HarfBuzzFontData* hbFontData = reinterpret_cast<HarfBuzzFontData*>(fontData);
cairo_scaled_font_t* scaledFont = hbFontData->m_cairoScaledFont;
ASSERT(scaledFont);
CairoGetGlyphWidthAndExtents(scaledFont, glyph, 0, extents);
return true;
}
static hb_font_funcs_t* harfBuzzCairoTextGetFontFuncs()
{
static hb_font_funcs_t* harfBuzzCairoFontFuncs = 0;
// We don't set callback functions which we can't support.
// Harfbuzz will use the fallback implementation if they aren't set.
if (!harfBuzzCairoFontFuncs) {
harfBuzzCairoFontFuncs = hb_font_funcs_create();
hb_font_funcs_set_glyph_func(harfBuzzCairoFontFuncs, harfBuzzGetGlyph, 0, 0);
hb_font_funcs_set_glyph_h_advance_func(harfBuzzCairoFontFuncs, harfBuzzGetGlyphHorizontalAdvance, 0, 0);
hb_font_funcs_set_glyph_h_origin_func(harfBuzzCairoFontFuncs, harfBuzzGetGlyphHorizontalOrigin, 0, 0);
hb_font_funcs_set_glyph_extents_func(harfBuzzCairoFontFuncs, harfBuzzGetGlyphExtents, 0, 0);
hb_font_funcs_make_immutable(harfBuzzCairoFontFuncs);
}
return harfBuzzCairoFontFuncs;
}
static hb_blob_t* harfBuzzCairoGetTable(hb_face_t*, hb_tag_t tag, void* userData)
{
cairo_scaled_font_t* scaledFont = reinterpret_cast<cairo_scaled_font_t*>(userData);
if (!scaledFont)
return 0;
CairoFtFaceLocker cairoFtFaceLocker(scaledFont);
FT_Face ftFont = cairoFtFaceLocker.lock();
if (!ftFont)
return 0;
FT_ULong tableSize = 0;
FT_Error error = FT_Load_Sfnt_Table(ftFont, tag, 0, 0, &tableSize);
if (error)
return 0;
FT_Byte* buffer = reinterpret_cast<FT_Byte*>(fastMalloc(tableSize));
if (!buffer)
return 0;
FT_ULong expectedTableSize = tableSize;
error = FT_Load_Sfnt_Table(ftFont, tag, 0, buffer, &tableSize);
if (error || tableSize != expectedTableSize) {
fastFree(buffer);
return 0;
}
return hb_blob_create(reinterpret_cast<const char*>(buffer), tableSize, HB_MEMORY_MODE_WRITABLE, buffer, fastFree);
}
static void destroyHarfBuzzFontData(void* userData)
{
HarfBuzzFontData* hbFontData = reinterpret_cast<HarfBuzzFontData*>(userData);
delete hbFontData;
}
hb_face_t* HarfBuzzFace::createFace()
{
hb_face_t* face = hb_face_create_for_tables(harfBuzzCairoGetTable, m_platformData->scaledFont(), 0);
ASSERT(face);
return face;
}
hb_font_t* HarfBuzzFace::createFont()
{
hb_font_t* font = hb_font_create(m_face);
HarfBuzzFontData* hbFontData = new HarfBuzzFontData(m_glyphCacheForFaceCacheEntry, m_platformData->scaledFont());
hb_font_set_funcs(font, harfBuzzCairoTextGetFontFuncs(), hbFontData, destroyHarfBuzzFontData);
const float size = m_platformData->size();
if (floorf(size) == size)
hb_font_set_ppem(font, size, size);
int scale = floatToHarfBuzzPosition(size);
hb_font_set_scale(font, scale, scale);
hb_font_make_immutable(font);
return font;
}
GlyphBufferAdvance HarfBuzzShaper::createGlyphBufferAdvance(float width, float height)
{
return GlyphBufferAdvance(width, height);
}
} // namespace WebCore
|