f71e8fd0c5
Reason for revert: linux x86-64 release segfault in src/ports/SkFontHost_fontconfig.cpp:107 http://108.170.220.120:10117/builders/Test-Ubuntu12-ShuttleA-GTX660-x86_64-Release/builds/905/steps/RunTests/logs/stdio Original issue's description: > Port most uses of SkOnce to SkLazyPtr. > > BUG=skia: > > Committed: http://code.google.com/p/skia/source/detail?r=15006 > > Committed: http://code.google.com/p/skia/source/detail?r=15014 R=reed@google.com, mtklein@chromium.org TBR=mtklein@chromium.org, reed@google.com NOTREECHECKS=true NOTRY=true BUG=skia: Author: mtklein@google.com Review URL: https://codereview.chromium.org/306063004 git-svn-id: http://skia.googlecode.com/svn/trunk@15015 2bbb7eff-a529-9590-31e7-b0007b416f81
106 lines
3.6 KiB
C++
106 lines
3.6 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkFontMgr_indirect_DEFINED
|
|
#define SkFontMgr_indirect_DEFINED
|
|
|
|
#include "SkDataTable.h"
|
|
#include "SkFontMgr.h"
|
|
#include "SkFontStyle.h"
|
|
#include "SkOnce.h"
|
|
#include "SkRemotableFontMgr.h"
|
|
#include "SkTArray.h"
|
|
#include "SkTypeface.h"
|
|
|
|
class SkData;
|
|
class SkStream;
|
|
class SkString;
|
|
class SkTypeface;
|
|
|
|
class SK_API SkFontMgr_Indirect : public SkFontMgr {
|
|
public:
|
|
// TODO: The SkFontMgr is only used for createFromStream/File/Data.
|
|
// In the future these calls should be broken out into their own interface
|
|
// with a name like SkFontRenderer.
|
|
SkFontMgr_Indirect(SkFontMgr* impl, SkRemotableFontMgr* proxy)
|
|
: fImpl(SkRef(impl)), fProxy(SkRef(proxy)), fFamilyNamesInited(false)
|
|
{ }
|
|
|
|
protected:
|
|
virtual int onCountFamilies() const SK_OVERRIDE;
|
|
virtual void onGetFamilyName(int index, SkString* familyName) const SK_OVERRIDE;
|
|
virtual SkFontStyleSet* onCreateStyleSet(int index) const SK_OVERRIDE;
|
|
|
|
virtual SkFontStyleSet* onMatchFamily(const char familyName[]) const SK_OVERRIDE;
|
|
|
|
virtual SkTypeface* onMatchFamilyStyle(const char familyName[],
|
|
const SkFontStyle& fontStyle) const SK_OVERRIDE;
|
|
|
|
virtual SkTypeface* onMatchFamilyStyleCharacter(const char familyName[],
|
|
const SkFontStyle&,
|
|
const char bpc47[],
|
|
uint32_t character) const SK_OVERRIDE;
|
|
|
|
virtual SkTypeface* onMatchFaceStyle(const SkTypeface* familyMember,
|
|
const SkFontStyle& fontStyle) const SK_OVERRIDE;
|
|
|
|
virtual SkTypeface* onCreateFromStream(SkStream* stream, int ttcIndex) const SK_OVERRIDE;
|
|
virtual SkTypeface* onCreateFromFile(const char path[], int ttcIndex) const SK_OVERRIDE;
|
|
virtual SkTypeface* onCreateFromData(SkData* data, int ttcIndex) const SK_OVERRIDE;
|
|
|
|
virtual SkTypeface* onLegacyCreateTypeface(const char familyName[],
|
|
unsigned styleBits) const SK_OVERRIDE;
|
|
|
|
private:
|
|
SkTypeface* createTypefaceFromFontId(const SkFontIdentity& fontId) const;
|
|
|
|
SkAutoTUnref<SkFontMgr> fImpl;
|
|
SkAutoTUnref<SkRemotableFontMgr> fProxy;
|
|
|
|
struct DataEntry {
|
|
uint32_t fDataId; // key1
|
|
uint32_t fTtcIndex; // key2
|
|
SkTypeface* fTypeface; // value: weak ref to typeface
|
|
|
|
DataEntry() { }
|
|
|
|
// This is a move!!!
|
|
DataEntry(DataEntry& that)
|
|
: fDataId(that.fDataId)
|
|
, fTtcIndex(that.fTtcIndex)
|
|
, fTypeface(that.fTypeface)
|
|
{
|
|
SkDEBUGCODE(that.fDataId = SkFontIdentity::kInvalidDataId;)
|
|
SkDEBUGCODE(that.fTtcIndex = 0xbbadbeef;)
|
|
that.fTypeface = NULL;
|
|
}
|
|
|
|
~DataEntry() {
|
|
if (fTypeface) {
|
|
fTypeface->weak_unref();
|
|
}
|
|
}
|
|
};
|
|
/**
|
|
* This cache is essentially { dataId: { ttcIndex: typeface } }
|
|
* For data caching we want a mapping from data id to weak references to
|
|
* typefaces with that data id. By storing the index next to the typeface,
|
|
* this data cache also acts as a typeface cache.
|
|
*/
|
|
mutable SkTArray<DataEntry> fDataCache;
|
|
mutable SkMutex fDataCacheMutex;
|
|
|
|
mutable SkAutoTUnref<SkDataTable> fFamilyNames;
|
|
mutable bool fFamilyNamesInited;
|
|
mutable SkMutex fFamilyNamesMutex;
|
|
static void set_up_family_names(const SkFontMgr_Indirect* self);
|
|
|
|
friend class SkStyleSet_Indirect;
|
|
};
|
|
|
|
#endif
|