2009-08-16 06:52:12 -07:00
|
|
|
/* -*- 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 Corporation code.
|
|
|
|
*
|
2009-12-21 13:50:30 -08:00
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
2009-08-16 06:52:12 -07:00
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2008-2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Jonathan Kew <jfkthame@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 GFXPLATFORMFONTLIST_H_
|
|
|
|
#define GFXPLATFORMFONTLIST_H_
|
|
|
|
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
2010-02-11 04:00:07 -08:00
|
|
|
#include "nsHashSets.h"
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
#include "gfxFontUtils.h"
|
|
|
|
#include "gfxFont.h"
|
|
|
|
#include "gfxPlatform.h"
|
|
|
|
|
2010-05-19 16:22:19 -07:00
|
|
|
#include "mozilla/FunctionTimer.h"
|
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
// gfxPlatformFontList is an abstract class for the global font list on the system;
|
|
|
|
// concrete subclasses for each platform implement the actual interface to the system fonts.
|
|
|
|
// This class exists because we cannot rely on the platform font-finding APIs to behave
|
|
|
|
// in sensible/similar ways, particularly with rich, complex OpenType families,
|
|
|
|
// so we do our own font family/style management here instead.
|
|
|
|
|
|
|
|
// Much of this is based on the old gfxQuartzFontCache, but adapted for use on all platforms.
|
|
|
|
|
|
|
|
class gfxPlatformFontList : protected gfxFontInfoLoader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static gfxPlatformFontList* PlatformFontList() {
|
|
|
|
return sPlatformFontList;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult Init() {
|
2010-05-19 16:22:19 -07:00
|
|
|
NS_TIME_FUNCTION;
|
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
NS_ASSERTION(!sPlatformFontList, "What's this doing here?");
|
2010-11-08 03:02:27 -08:00
|
|
|
gfxPlatform::GetPlatform()->CreatePlatformFontList();
|
|
|
|
if (!sPlatformFontList) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2009-08-16 06:52:12 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Shutdown() {
|
|
|
|
delete sPlatformFontList;
|
|
|
|
sPlatformFontList = nsnull;
|
|
|
|
}
|
|
|
|
|
2010-11-08 03:02:27 -08:00
|
|
|
// initialize font lists
|
|
|
|
virtual nsresult InitFontList();
|
|
|
|
|
2010-02-24 09:57:57 -08:00
|
|
|
void GetFontList (nsIAtom *aLangGroup,
|
2009-08-16 06:52:12 -07:00
|
|
|
const nsACString& aGenericFamily,
|
|
|
|
nsTArray<nsString>& aListOfFonts);
|
|
|
|
|
|
|
|
virtual PRBool ResolveFontName(const nsAString& aFontName,
|
|
|
|
nsAString& aResolvedFontName);
|
|
|
|
|
|
|
|
void UpdateFontList() { InitFontList(); }
|
|
|
|
|
|
|
|
void ClearPrefFonts() { mPrefFonts.Clear(); }
|
|
|
|
|
|
|
|
void GetFontFamilyList(nsTArray<nsRefPtr<gfxFontFamily> >& aFamilyArray);
|
|
|
|
|
|
|
|
gfxFontEntry* FindFontForChar(const PRUint32 aCh, gfxFont *aPrevFont);
|
|
|
|
|
2009-10-07 10:16:52 -07:00
|
|
|
// TODO: make this virtual, for lazily adding to the font list
|
2009-08-16 06:52:12 -07:00
|
|
|
gfxFontFamily* FindFamily(const nsAString& aFamily);
|
|
|
|
|
|
|
|
gfxFontEntry* FindFontForFamily(const nsAString& aFamily, const gfxFontStyle* aStyle, PRBool& aNeedsBold);
|
|
|
|
|
|
|
|
PRBool GetPrefFontFamilyEntries(eFontPrefLang aLangGroup, nsTArray<nsRefPtr<gfxFontFamily> > *array);
|
|
|
|
void SetPrefFontFamilyEntries(eFontPrefLang aLangGroup, nsTArray<nsRefPtr<gfxFontFamily> >& array);
|
|
|
|
|
2010-01-28 17:41:25 -08:00
|
|
|
// name lookup table methods
|
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
void AddOtherFamilyName(gfxFontFamily *aFamilyEntry, nsAString& aOtherFamilyName);
|
|
|
|
|
2010-01-28 17:41:25 -08:00
|
|
|
void AddFullname(gfxFontEntry *aFontEntry, nsAString& aFullname);
|
|
|
|
|
|
|
|
void AddPostscriptName(gfxFontEntry *aFontEntry, nsAString& aPostscriptName);
|
|
|
|
|
|
|
|
PRBool NeedFullnamePostscriptNames() { return mNeedFullnamePostscriptNames; }
|
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
// pure virtual functions, to be provided by concrete subclasses
|
|
|
|
|
|
|
|
// get the system default font
|
|
|
|
virtual gfxFontEntry* GetDefaultFont(const gfxFontStyle* aStyle,
|
|
|
|
PRBool& aNeedsBold) = 0;
|
|
|
|
|
|
|
|
// look up a font by name on the host platform
|
|
|
|
virtual gfxFontEntry* LookupLocalFont(const gfxProxyFontEntry *aProxyEntry,
|
|
|
|
const nsAString& aFontName) = 0;
|
|
|
|
|
|
|
|
// create a new platform font from downloaded data (@font-face)
|
2009-08-30 06:55:24 -07:00
|
|
|
// this method is responsible to ensure aFontData is NS_Free()'d
|
2009-10-07 07:13:40 -07:00
|
|
|
virtual gfxFontEntry* MakePlatformFont(const gfxProxyFontEntry *aProxyEntry,
|
2009-08-16 06:52:12 -07:00
|
|
|
const PRUint8 *aFontData,
|
|
|
|
PRUint32 aLength) = 0;
|
|
|
|
|
|
|
|
// get the standard family name on the platform for a given font name
|
2009-10-07 07:13:40 -07:00
|
|
|
// (platforms may override, eg Mac)
|
|
|
|
virtual PRBool GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
protected:
|
2010-01-28 17:41:25 -08:00
|
|
|
gfxPlatformFontList(PRBool aNeedFullnamePostscriptNames = PR_TRUE);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
static gfxPlatformFontList *sPlatformFontList;
|
|
|
|
|
|
|
|
static PLDHashOperator FindFontForCharProc(nsStringHashKey::KeyType aKey,
|
|
|
|
nsRefPtr<gfxFontFamily>& aFamilyEntry,
|
|
|
|
void* userArg);
|
|
|
|
|
|
|
|
// separate initialization for reading in name tables, since this is expensive
|
|
|
|
void InitOtherFamilyNames();
|
|
|
|
|
2010-01-28 17:41:25 -08:00
|
|
|
static PLDHashOperator InitOtherFamilyNamesProc(nsStringHashKey::KeyType aKey,
|
|
|
|
nsRefPtr<gfxFontFamily>& aFamilyEntry,
|
|
|
|
void* userArg);
|
|
|
|
|
|
|
|
// read in all fullname/Postscript names for all font faces
|
|
|
|
void InitFaceNameLists();
|
|
|
|
|
|
|
|
static PLDHashOperator InitFaceNameListsProc(nsStringHashKey::KeyType aKey,
|
|
|
|
nsRefPtr<gfxFontFamily>& aFamilyEntry,
|
|
|
|
void* userArg);
|
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
// commonly used fonts for which the name table should be loaded at startup
|
|
|
|
virtual void PreloadNamesList();
|
|
|
|
|
2010-01-27 22:56:16 -08:00
|
|
|
// load the bad underline blacklist from pref.
|
|
|
|
void LoadBadUnderlineList();
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
// explicitly set fixed-pitch flag for all faces
|
|
|
|
void SetFixedPitch(const nsAString& aFamilyName);
|
|
|
|
|
|
|
|
void GenerateFontListKey(const nsAString& aKeyName, nsAString& aResult);
|
|
|
|
|
|
|
|
static PLDHashOperator
|
|
|
|
HashEnumFuncForFamilies(nsStringHashKey::KeyType aKey,
|
|
|
|
nsRefPtr<gfxFontFamily>& aFamilyEntry,
|
|
|
|
void* aUserArg);
|
|
|
|
|
|
|
|
// gfxFontInfoLoader overrides, used to load in font cmaps
|
|
|
|
virtual void InitLoader();
|
|
|
|
virtual PRBool RunLoader();
|
|
|
|
virtual void FinishLoader();
|
|
|
|
|
2009-10-07 10:16:52 -07:00
|
|
|
// canonical family name ==> family entry (unique, one name per family entry)
|
2010-01-28 17:41:25 -08:00
|
|
|
nsRefPtrHashtable<nsStringHashKey, gfxFontFamily> mFontFamilies;
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2010-01-28 17:41:25 -08:00
|
|
|
// other family name ==> family entry (not unique, can have multiple names per
|
2009-10-07 10:16:52 -07:00
|
|
|
// family entry, only names *other* than the canonical names are stored here)
|
2010-01-28 17:41:25 -08:00
|
|
|
nsRefPtrHashtable<nsStringHashKey, gfxFontFamily> mOtherFamilyNames;
|
|
|
|
|
2009-10-07 10:16:52 -07:00
|
|
|
// flag set after InitOtherFamilyNames is called upon first name lookup miss
|
|
|
|
PRPackedBool mOtherFamilyNamesInitialized;
|
|
|
|
|
2010-01-28 17:41:25 -08:00
|
|
|
// flag set after fullname and Postcript name lists are populated
|
|
|
|
PRPackedBool mFaceNamesInitialized;
|
|
|
|
|
|
|
|
// whether these are needed for a given platform
|
|
|
|
PRPackedBool mNeedFullnamePostscriptNames;
|
|
|
|
|
|
|
|
// fullname ==> font entry (unique, one name per font entry)
|
|
|
|
nsRefPtrHashtable<nsStringHashKey, gfxFontEntry> mFullnames;
|
|
|
|
|
|
|
|
// Postscript name ==> font entry (unique, one name per font entry)
|
|
|
|
nsRefPtrHashtable<nsStringHashKey, gfxFontEntry> mPostscriptNames;
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
// cached pref font lists
|
|
|
|
// maps list of family names ==> array of family entries, one per lang group
|
|
|
|
nsDataHashtable<nsUint32HashKey, nsTArray<nsRefPtr<gfxFontFamily> > > mPrefFonts;
|
|
|
|
|
|
|
|
// when system-wide font lookup fails for a character, cache it to skip future searches
|
|
|
|
gfxSparseBitSet mCodepointsWithNoFonts;
|
|
|
|
|
|
|
|
// the family to use for U+FFFD fallback, to avoid expensive search every time
|
|
|
|
// on pages with lots of problems
|
|
|
|
nsString mReplacementCharFallbackFamily;
|
|
|
|
|
2010-02-11 04:00:07 -08:00
|
|
|
nsStringHashSet mBadUnderlineFamilyNames;
|
2010-01-27 22:56:16 -08:00
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
// data used as part of the font cmap loading process
|
|
|
|
nsTArray<nsRefPtr<gfxFontFamily> > mFontFamiliesToLoad;
|
|
|
|
PRUint32 mStartIndex;
|
|
|
|
PRUint32 mIncrement;
|
|
|
|
PRUint32 mNumFamilies;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFXPLATFORMFONTLIST_H_ */
|