/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is Mozilla Foundation code. * * The Initial Developer of the Original Code is Mozilla Foundation. * Portions created by the Initial Developer are Copyright (C) 2010 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Bas Schouten * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #ifndef GFX_DWRITECOMMON_H #define GFX_DWRITECOMMON_H // Mozilla includes #include "nscore.h" #include "nsIServiceManager.h" #include "nsCOMPtr.h" #include "nsAutoPtr.h" #include "cairo-features.h" #include "gfxFontConstants.h" #include "nsTArray.h" #include "gfxWindowsPlatform.h" #include "nsIUUIDGenerator.h" #include #include static DWRITE_FONT_STRETCH DWriteFontStretchFromStretch(PRInt16 aStretch) { switch (aStretch) { case NS_FONT_STRETCH_ULTRA_CONDENSED: return DWRITE_FONT_STRETCH_ULTRA_CONDENSED; case NS_FONT_STRETCH_EXTRA_CONDENSED: return DWRITE_FONT_STRETCH_EXTRA_CONDENSED; case NS_FONT_STRETCH_CONDENSED: return DWRITE_FONT_STRETCH_CONDENSED; case NS_FONT_STRETCH_SEMI_CONDENSED: return DWRITE_FONT_STRETCH_SEMI_CONDENSED; case NS_FONT_STRETCH_NORMAL: return DWRITE_FONT_STRETCH_NORMAL; case NS_FONT_STRETCH_SEMI_EXPANDED: return DWRITE_FONT_STRETCH_SEMI_EXPANDED; case NS_FONT_STRETCH_EXPANDED: return DWRITE_FONT_STRETCH_EXPANDED; case NS_FONT_STRETCH_EXTRA_EXPANDED: return DWRITE_FONT_STRETCH_EXTRA_EXPANDED; case NS_FONT_STRETCH_ULTRA_EXPANDED: return DWRITE_FONT_STRETCH_ULTRA_EXPANDED; default: return DWRITE_FONT_STRETCH_UNDEFINED; } } static PRInt16 FontStretchFromDWriteStretch(DWRITE_FONT_STRETCH aStretch) { switch (aStretch) { case DWRITE_FONT_STRETCH_ULTRA_CONDENSED: return NS_FONT_STRETCH_ULTRA_CONDENSED; case DWRITE_FONT_STRETCH_EXTRA_CONDENSED: return NS_FONT_STRETCH_EXTRA_CONDENSED; case DWRITE_FONT_STRETCH_CONDENSED: return NS_FONT_STRETCH_CONDENSED; case DWRITE_FONT_STRETCH_SEMI_CONDENSED: return NS_FONT_STRETCH_SEMI_CONDENSED; case DWRITE_FONT_STRETCH_NORMAL: return NS_FONT_STRETCH_NORMAL; case DWRITE_FONT_STRETCH_SEMI_EXPANDED: return NS_FONT_STRETCH_SEMI_EXPANDED; case DWRITE_FONT_STRETCH_EXPANDED: return NS_FONT_STRETCH_EXPANDED; case DWRITE_FONT_STRETCH_EXTRA_EXPANDED: return NS_FONT_STRETCH_EXTRA_EXPANDED; case DWRITE_FONT_STRETCH_ULTRA_EXPANDED: return NS_FONT_STRETCH_ULTRA_EXPANDED; default: return NS_FONT_STRETCH_NORMAL; } } struct ffReferenceKey { FallibleTArray *mArray; nsID mGUID; }; class gfxDWriteFontFileLoader : public IDWriteFontFileLoader { public: gfxDWriteFontFileLoader() { } // IUnknown interface IFACEMETHOD(QueryInterface)(IID const& iid, OUT void** ppObject) { if (iid == __uuidof(IDWriteFontFileLoader)) { *ppObject = static_cast(this); return S_OK; } else if (iid == __uuidof(IUnknown)) { *ppObject = static_cast(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 * FallibleTArray. */ 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. This * array will be empty when the function returns. */ static IDWriteFontFileLoader* Instance() { if (!mInstance) { mInstance = new gfxDWriteFontFileLoader(); gfxWindowsPlatform::GetPlatform()->GetDWriteFactory()-> RegisterFontFileLoader(mInstance); } return mInstance; } private: static IDWriteFontFileLoader* mInstance; }; class gfxDWriteFontFileStream : 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 */ gfxDWriteFontFileStream(FallibleTArray *aData); ~gfxDWriteFontFileStream(); // IUnknown interface IFACEMETHOD(QueryInterface)(IID const& iid, OUT void** ppObject) { if (iid == __uuidof(IDWriteFontFileStream)) { *ppObject = static_cast(this); return S_OK; } else if (iid == __uuidof(IUnknown)) { *ppObject = static_cast(this); return S_OK; } else { return E_NOINTERFACE; } } IFACEMETHOD_(ULONG, AddRef)() { NS_PRECONDITION(PRInt32(mRefCnt) >= 0, "illegal refcnt"); ++mRefCnt; return mRefCnt; } IFACEMETHOD_(ULONG, Release)() { NS_PRECONDITION(0 != mRefCnt, "dup 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: FallibleTArray mData; nsAutoRefCnt mRefCnt; }; #endif /* GFX_DWRITECOMMON_H */