2011-06-24 17:41:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
#include "ScaledFontDWrite.h"
|
|
|
|
#include "PathD2D.h"
|
2012-09-24 15:02:49 +00:00
|
|
|
#include "DrawTargetD2D.h"
|
2012-04-25 22:04:35 +00:00
|
|
|
#include "Logging.h"
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
#include <vector>
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2012-09-24 15:02:49 +00:00
|
|
|
struct ffReferenceKey
|
|
|
|
{
|
|
|
|
uint8_t *mData;
|
|
|
|
uint32_t mSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DWriteFontFileLoader : public IDWriteFontFileLoader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DWriteFontFileLoader()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// IUnknown interface
|
|
|
|
IFACEMETHOD(QueryInterface)(IID const& iid, OUT void** ppObject)
|
|
|
|
{
|
|
|
|
if (iid == __uuidof(IDWriteFontFileLoader)) {
|
|
|
|
*ppObject = static_cast<IDWriteFontFileLoader*>(this);
|
|
|
|
return S_OK;
|
|
|
|
} else if (iid == __uuidof(IUnknown)) {
|
|
|
|
*ppObject = static_cast<IUnknown*>(this);
|
|
|
|
return S_OK;
|
|
|
|
} else {
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHOD_(ULONG, AddRef)()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHOD_(ULONG, Release)()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDWriteFontFileLoader methods
|
|
|
|
/**
|
|
|
|
* Important! Note the key here -has- to be a pointer to an
|
|
|
|
* ffReferenceKey object.
|
|
|
|
*/
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE
|
|
|
|
CreateStreamFromKey(void const* fontFileReferenceKey,
|
|
|
|
UINT32 fontFileReferenceKeySize,
|
|
|
|
OUT IDWriteFontFileStream** fontFileStream);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the singleton loader instance. Note that when using this font
|
|
|
|
* loader, the key must be a pointer to an FallibleTArray<uint8_t>. This
|
|
|
|
* array will be empty when the function returns.
|
|
|
|
*/
|
|
|
|
static IDWriteFontFileLoader* Instance()
|
|
|
|
{
|
|
|
|
if (!mInstance) {
|
|
|
|
mInstance = new DWriteFontFileLoader();
|
|
|
|
DrawTargetD2D::GetDWriteFactory()->
|
|
|
|
RegisterFontFileLoader(mInstance);
|
|
|
|
}
|
|
|
|
return mInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static IDWriteFontFileLoader* mInstance;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DWriteFontFileStream : public IDWriteFontFileStream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Used by the FontFileLoader to create a new font stream,
|
|
|
|
* this font stream is created from data in memory. The memory
|
|
|
|
* passed may be released after object creation, it will be
|
|
|
|
* copied internally.
|
|
|
|
*
|
|
|
|
* @param aData Font data
|
|
|
|
*/
|
|
|
|
DWriteFontFileStream(uint8_t *aData, uint32_t aSize);
|
|
|
|
~DWriteFontFileStream();
|
|
|
|
|
|
|
|
// IUnknown interface
|
|
|
|
IFACEMETHOD(QueryInterface)(IID const& iid, OUT void** ppObject)
|
|
|
|
{
|
|
|
|
if (iid == __uuidof(IDWriteFontFileStream)) {
|
|
|
|
*ppObject = static_cast<IDWriteFontFileStream*>(this);
|
|
|
|
return S_OK;
|
|
|
|
} else if (iid == __uuidof(IUnknown)) {
|
|
|
|
*ppObject = static_cast<IUnknown*>(this);
|
|
|
|
return S_OK;
|
|
|
|
} else {
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHOD_(ULONG, AddRef)()
|
|
|
|
{
|
|
|
|
++mRefCnt;
|
|
|
|
return mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHOD_(ULONG, Release)()
|
|
|
|
{
|
|
|
|
--mRefCnt;
|
|
|
|
if (mRefCnt == 0) {
|
|
|
|
delete this;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDWriteFontFileStream methods
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE ReadFileFragment(void const** fragmentStart,
|
|
|
|
UINT64 fileOffset,
|
|
|
|
UINT64 fragmentSize,
|
|
|
|
OUT void** fragmentContext);
|
|
|
|
|
|
|
|
virtual void STDMETHODCALLTYPE ReleaseFileFragment(void* fragmentContext);
|
|
|
|
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE GetFileSize(OUT UINT64* fileSize);
|
|
|
|
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE GetLastWriteTime(OUT UINT64* lastWriteTime);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<uint8_t> mData;
|
|
|
|
uint32_t mRefCnt;
|
2012-11-23 01:53:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static BYTE
|
|
|
|
GetSystemTextQuality()
|
|
|
|
{
|
|
|
|
BOOL font_smoothing;
|
|
|
|
UINT smoothing_type;
|
|
|
|
|
|
|
|
if (!SystemParametersInfo(SPI_GETFONTSMOOTHING, 0, &font_smoothing, 0)) {
|
|
|
|
return DEFAULT_QUALITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (font_smoothing) {
|
|
|
|
if (!SystemParametersInfo(SPI_GETFONTSMOOTHINGTYPE,
|
|
|
|
0, &smoothing_type, 0)) {
|
|
|
|
return DEFAULT_QUALITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (smoothing_type == FE_FONTSMOOTHINGCLEARTYPE) {
|
|
|
|
return CLEARTYPE_QUALITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ANTIALIASED_QUALITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DEFAULT_QUALITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GASP_TAG 0x70736167
|
|
|
|
#define GASP_DOGRAY 0x2
|
|
|
|
|
|
|
|
static inline unsigned short
|
|
|
|
readShort(const char *aBuf)
|
|
|
|
{
|
|
|
|
return (*aBuf << 8) | *(aBuf + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-01-15 12:21:00 +00:00
|
|
|
DoGrayscale(IDWriteFontFace *aDWFace, Float ppem)
|
2012-11-23 01:53:12 +00:00
|
|
|
{
|
|
|
|
void *tableContext;
|
|
|
|
char *tableData;
|
|
|
|
UINT32 tableSize;
|
|
|
|
BOOL exists;
|
|
|
|
aDWFace->TryGetFontTable(GASP_TAG, (const void**)&tableData, &tableSize, &tableContext, &exists);
|
|
|
|
|
|
|
|
if (exists) {
|
|
|
|
if (tableSize < 4) {
|
|
|
|
aDWFace->ReleaseFontTable(tableContext);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
struct gaspRange {
|
|
|
|
unsigned short maxPPEM; // Stored big-endian
|
|
|
|
unsigned short behavior; // Stored big-endian
|
|
|
|
};
|
|
|
|
unsigned short numRanges = readShort(tableData + 2);
|
|
|
|
if (tableSize < (UINT)4 + numRanges * 4) {
|
|
|
|
aDWFace->ReleaseFontTable(tableContext);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
gaspRange *ranges = (gaspRange *)(tableData + 4);
|
|
|
|
for (int i = 0; i < numRanges; i++) {
|
|
|
|
if (readShort((char*)&ranges[i].maxPPEM) > ppem) {
|
|
|
|
if (!(readShort((char*)&ranges[i].behavior) & GASP_DOGRAY)) {
|
|
|
|
aDWFace->ReleaseFontTable(tableContext);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aDWFace->ReleaseFontTable(tableContext);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-09-24 15:02:49 +00:00
|
|
|
|
2013-07-20 08:48:55 +00:00
|
|
|
IDWriteFontFileLoader* DWriteFontFileLoader::mInstance = nullptr;
|
2012-09-24 15:02:49 +00:00
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE
|
|
|
|
DWriteFontFileLoader::CreateStreamFromKey(const void *fontFileReferenceKey,
|
|
|
|
UINT32 fontFileReferenceKeySize,
|
|
|
|
IDWriteFontFileStream **fontFileStream)
|
|
|
|
{
|
|
|
|
if (!fontFileReferenceKey || !fontFileStream) {
|
|
|
|
return E_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ffReferenceKey *key = static_cast<const ffReferenceKey*>(fontFileReferenceKey);
|
|
|
|
*fontFileStream =
|
|
|
|
new DWriteFontFileStream(key->mData, key->mSize);
|
|
|
|
|
|
|
|
if (!*fontFileStream) {
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
(*fontFileStream)->AddRef();
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWriteFontFileStream::DWriteFontFileStream(uint8_t *aData, uint32_t aSize)
|
|
|
|
: mRefCnt(0)
|
|
|
|
{
|
|
|
|
mData.resize(aSize);
|
|
|
|
memcpy(&mData.front(), aData, aSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
DWriteFontFileStream::~DWriteFontFileStream()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE
|
|
|
|
DWriteFontFileStream::GetFileSize(UINT64 *fileSize)
|
|
|
|
{
|
|
|
|
*fileSize = mData.size();
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE
|
|
|
|
DWriteFontFileStream::GetLastWriteTime(UINT64 *lastWriteTime)
|
|
|
|
{
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE
|
|
|
|
DWriteFontFileStream::ReadFileFragment(const void **fragmentStart,
|
|
|
|
UINT64 fileOffset,
|
|
|
|
UINT64 fragmentSize,
|
|
|
|
void **fragmentContext)
|
|
|
|
{
|
|
|
|
// We are required to do bounds checking.
|
2013-01-15 12:21:00 +00:00
|
|
|
if (fileOffset + fragmentSize > mData.size()) {
|
2012-09-24 15:02:49 +00:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
2013-01-15 12:21:00 +00:00
|
|
|
|
|
|
|
// truncate the 64 bit fileOffset to size_t sized index into mData
|
|
|
|
size_t index = static_cast<size_t>(fileOffset);
|
|
|
|
|
2012-09-24 15:02:49 +00:00
|
|
|
// We should be alive for the duration of this.
|
2013-01-15 12:21:00 +00:00
|
|
|
*fragmentStart = &mData[index];
|
2013-07-20 08:48:55 +00:00
|
|
|
*fragmentContext = nullptr;
|
2012-09-24 15:02:49 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE
|
|
|
|
DWriteFontFileStream::ReleaseFileFragment(void *fragmentContext)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScaledFontDWrite::ScaledFontDWrite(uint8_t *aData, uint32_t aSize,
|
|
|
|
uint32_t aIndex, Float aGlyphSize)
|
|
|
|
: ScaledFontBase(aGlyphSize)
|
|
|
|
{
|
|
|
|
IDWriteFactory *factory = DrawTargetD2D::GetDWriteFactory();
|
|
|
|
|
|
|
|
ffReferenceKey key;
|
|
|
|
key.mData = aData;
|
|
|
|
key.mSize = aSize;
|
|
|
|
|
|
|
|
RefPtr<IDWriteFontFile> fontFile;
|
|
|
|
if (FAILED(factory->CreateCustomFontFileReference(&key, sizeof(ffReferenceKey), DWriteFontFileLoader::Instance(), byRef(fontFile)))) {
|
|
|
|
gfxWarning() << "Failed to load font file from data!";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
IDWriteFontFile *ff = fontFile;
|
|
|
|
if (FAILED(factory->CreateFontFace(DWRITE_FONT_FACE_TYPE_TRUETYPE, 1, &ff, aIndex, DWRITE_FONT_SIMULATIONS_NONE, byRef(mFontFace)))) {
|
|
|
|
gfxWarning() << "Failed to create font face from font file data!";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
TemporaryRef<Path>
|
|
|
|
ScaledFontDWrite::GetPathForGlyphs(const GlyphBuffer &aBuffer, const DrawTarget *aTarget)
|
|
|
|
{
|
2014-01-10 19:06:16 +00:00
|
|
|
if (aTarget->GetType() != BackendType::DIRECT2D) {
|
2012-12-05 00:11:02 +00:00
|
|
|
return ScaledFontBase::GetPathForGlyphs(aBuffer, aTarget);
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
RefPtr<PathBuilder> pathBuilder = aTarget->CreatePathBuilder();
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
PathBuilderD2D *pathBuilderD2D =
|
|
|
|
static_cast<PathBuilderD2D*>(pathBuilder.get());
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2012-03-29 18:53:44 +00:00
|
|
|
CopyGlyphsToSink(aBuffer, pathBuilderD2D->GetSink());
|
|
|
|
|
|
|
|
return pathBuilder->Finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-12-12 22:37:00 +00:00
|
|
|
ScaledFontDWrite::CopyGlyphsToBuilder(const GlyphBuffer &aBuffer, PathBuilder *aBuilder, BackendType aBackendType, const Matrix *aTransformHint)
|
2012-03-29 18:53:44 +00:00
|
|
|
{
|
2014-01-10 19:06:16 +00:00
|
|
|
if (aBackendType != BackendType::DIRECT2D) {
|
2013-12-12 22:37:00 +00:00
|
|
|
ScaledFontBase::CopyGlyphsToBuilder(aBuffer, aBuilder, aBackendType, aTransformHint);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-03-29 18:53:44 +00:00
|
|
|
PathBuilderD2D *pathBuilderD2D =
|
|
|
|
static_cast<PathBuilderD2D*>(aBuilder);
|
|
|
|
|
|
|
|
CopyGlyphsToSink(aBuffer, pathBuilderD2D->GetSink());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ScaledFontDWrite::CopyGlyphsToSink(const GlyphBuffer &aBuffer, ID2D1GeometrySink *aSink)
|
|
|
|
{
|
2011-06-24 17:41:16 +00:00
|
|
|
std::vector<UINT16> indices;
|
|
|
|
std::vector<FLOAT> advances;
|
|
|
|
std::vector<DWRITE_GLYPH_OFFSET> offsets;
|
|
|
|
indices.resize(aBuffer.mNumGlyphs);
|
|
|
|
advances.resize(aBuffer.mNumGlyphs);
|
|
|
|
offsets.resize(aBuffer.mNumGlyphs);
|
2011-05-26 19:41:33 +00:00
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
memset(&advances.front(), 0, sizeof(FLOAT) * aBuffer.mNumGlyphs);
|
|
|
|
for (unsigned int i = 0; i < aBuffer.mNumGlyphs; i++) {
|
|
|
|
indices[i] = aBuffer.mGlyphs[i].mIndex;
|
|
|
|
offsets[i].advanceOffset = aBuffer.mGlyphs[i].mPosition.x;
|
|
|
|
offsets[i].ascenderOffset = -aBuffer.mGlyphs[i].mPosition.y;
|
2011-05-26 19:41:33 +00:00
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
mFontFace->GetGlyphRunOutline(mSize, &indices.front(), &advances.front(),
|
|
|
|
&offsets.front(), aBuffer.mNumGlyphs,
|
2012-03-29 18:53:44 +00:00
|
|
|
FALSE, FALSE, aSink);
|
2011-05-26 19:41:33 +00:00
|
|
|
}
|
|
|
|
|
2012-09-24 15:02:49 +00:00
|
|
|
bool
|
|
|
|
ScaledFontDWrite::GetFontFileData(FontFileDataOutput aDataCallback, void *aBaton)
|
|
|
|
{
|
|
|
|
UINT32 fileCount = 0;
|
|
|
|
mFontFace->GetFiles(&fileCount, nullptr);
|
|
|
|
|
|
|
|
if (fileCount > 1) {
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<IDWriteFontFile> file;
|
|
|
|
mFontFace->GetFiles(&fileCount, byRef(file));
|
|
|
|
|
|
|
|
const void *referenceKey;
|
|
|
|
UINT32 refKeySize;
|
|
|
|
// XXX - This can currently crash for webfonts, as when we get the reference
|
|
|
|
// key out of the file, that can be an invalid reference key for the loader
|
|
|
|
// we use it with. The fix to this is not obvious but it will probably
|
|
|
|
// have to happen inside thebes.
|
|
|
|
file->GetReferenceKey(&referenceKey, &refKeySize);
|
|
|
|
|
|
|
|
RefPtr<IDWriteFontFileLoader> loader;
|
|
|
|
file->GetLoader(byRef(loader));
|
|
|
|
|
|
|
|
RefPtr<IDWriteFontFileStream> stream;
|
|
|
|
loader->CreateStreamFromKey(referenceKey, refKeySize, byRef(stream));
|
|
|
|
|
2013-01-15 12:21:00 +00:00
|
|
|
UINT64 fileSize64;
|
|
|
|
stream->GetFileSize(&fileSize64);
|
|
|
|
if (fileSize64 > UINT32_MAX) {
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t fileSize = static_cast<uint32_t>(fileSize64);
|
2012-09-24 15:02:49 +00:00
|
|
|
const void *fragmentStart;
|
|
|
|
void *context;
|
|
|
|
stream->ReadFileFragment(&fragmentStart, 0, fileSize, &context);
|
|
|
|
|
|
|
|
aDataCallback((uint8_t*)fragmentStart, fileSize, mFontFace->GetIndex(), mSize, aBaton);
|
|
|
|
|
|
|
|
stream->ReleaseFileFragment(context);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-23 01:53:12 +00:00
|
|
|
AntialiasMode
|
|
|
|
ScaledFontDWrite::GetDefaultAAMode()
|
|
|
|
{
|
2014-01-10 19:06:17 +00:00
|
|
|
AntialiasMode defaultMode = AntialiasMode::SUBPIXEL;
|
2012-11-23 01:53:12 +00:00
|
|
|
|
|
|
|
switch (GetSystemTextQuality()) {
|
|
|
|
case CLEARTYPE_QUALITY:
|
2014-01-10 19:06:17 +00:00
|
|
|
defaultMode = AntialiasMode::SUBPIXEL;
|
2012-11-23 01:53:12 +00:00
|
|
|
break;
|
|
|
|
case ANTIALIASED_QUALITY:
|
2014-01-10 19:06:17 +00:00
|
|
|
defaultMode = AntialiasMode::GRAY;
|
2012-11-23 01:53:12 +00:00
|
|
|
break;
|
|
|
|
case DEFAULT_QUALITY:
|
2014-01-10 19:06:17 +00:00
|
|
|
defaultMode = AntialiasMode::NONE;
|
2012-11-23 01:53:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-01-10 19:06:17 +00:00
|
|
|
if (defaultMode == AntialiasMode::GRAY) {
|
2012-11-23 01:53:12 +00:00
|
|
|
if (!DoGrayscale(mFontFace, mSize)) {
|
2014-01-10 19:06:17 +00:00
|
|
|
defaultMode = AntialiasMode::NONE;
|
2012-11-23 01:53:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultMode;
|
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|