Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Public Member Functions | Static Public Member Functions | Friends | List of all members
SkStrikeCache Class Referencefinal

#include <SkStrikeCache.h>

Inheritance diagram for SkStrikeCache:
sktext::StrikeForGPUCacheInterface

Public Member Functions

 SkStrikeCache ()=default
 
sk_sp< SkStrikefindStrike (const SkDescriptor &desc) SK_EXCLUDES(fLock)
 
sk_sp< SkStrikecreateStrike (const SkStrikeSpec &strikeSpec, SkFontMetrics *maybeMetrics=nullptr, std::unique_ptr< SkStrikePinner >=nullptr) SK_EXCLUDES(fLock)
 
sk_sp< SkStrikefindOrCreateStrike (const SkStrikeSpec &strikeSpec) SK_EXCLUDES(fLock)
 
sk_sp< sktext::StrikeForGPUfindOrCreateScopedStrike (const SkStrikeSpec &strikeSpec) override SK_EXCLUDES(fLock)
 
void purgeAll () SK_EXCLUDES(fLock)
 
void purgePinned (size_t minBytesNeeded=0) SK_EXCLUDES(fLock)
 
int getCacheCountLimit () const SK_EXCLUDES(fLock)
 
int setCacheCountLimit (int limit) SK_EXCLUDES(fLock)
 
int getCacheCountUsed () const SK_EXCLUDES(fLock)
 
size_t getCacheSizeLimit () const SK_EXCLUDES(fLock)
 
size_t setCacheSizeLimit (size_t limit) SK_EXCLUDES(fLock)
 
size_t getTotalMemoryUsed () const SK_EXCLUDES(fLock)
 
- Public Member Functions inherited from sktext::StrikeForGPUCacheInterface
virtual ~StrikeForGPUCacheInterface ()=default
 

Static Public Member Functions

static SkStrikeCacheGlobalStrikeCache ()
 
static void PurgeAll ()
 
static void Dump ()
 
static void DumpMemoryStatistics (SkTraceMemoryDump *dump)
 

Friends

class SkStrike
 

Detailed Description

Definition at line 41 of file SkStrikeCache.h.

Constructor & Destructor Documentation

◆ SkStrikeCache()

SkStrikeCache::SkStrikeCache ( )
default

Member Function Documentation

◆ createStrike()

sk_sp< SkStrike > SkStrikeCache::createStrike ( const SkStrikeSpec strikeSpec,
SkFontMetrics maybeMetrics = nullptr,
std::unique_ptr< SkStrikePinner pinner = nullptr 
)

Definition at line 125 of file SkStrikeCache.cpp.

128 {
129 SkAutoMutexExclusive ac(fLock);
130 return this->internalCreateStrike(strikeSpec, maybeMetrics, std::move(pinner));
131}

◆ Dump()

void SkStrikeCache::Dump ( )
static

Definition at line 57 of file SkStrikeCache.cpp.

57 {
58 SkDebugf("GlyphCache [ used budget ]\n");
59 SkDebugf(" bytes [ %8zu %8zu ]\n",
61 SkDebugf(" count [ %8d %8d ]\n",
63
64 auto visitor = [](const SkStrike& strike) {
65 strike.dump();
66 };
67
68 GlobalStrikeCache()->forEachStrike(visitor);
69}
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static int GetFontCacheCountLimit()
static size_t GetFontCacheLimit()
static int GetFontCacheCountUsed()
static size_t GetFontCacheUsed()
static SkStrikeCache * GlobalStrikeCache()

◆ DumpMemoryStatistics()

void SkStrikeCache::DumpMemoryStatistics ( SkTraceMemoryDump dump)
static

Definition at line 71 of file SkStrikeCache.cpp.

71 {
72 dump->dumpNumericValue(kGlyphCacheDumpName, "size", "bytes", SkGraphics::GetFontCacheUsed());
73 dump->dumpNumericValue(kGlyphCacheDumpName, "budget_size", "bytes",
75 dump->dumpNumericValue(kGlyphCacheDumpName, "glyph_count", "objects",
77 dump->dumpNumericValue(kGlyphCacheDumpName, "budget_glyph_count", "objects",
79
80 if (dump->getRequestedDetails() == SkTraceMemoryDump::kLight_LevelOfDetail) {
81 dump->setMemoryBacking(kGlyphCacheDumpName, "malloc", nullptr);
82 return;
83 }
84
85 auto visitor = [&](const SkStrike& strike) {
86 strike.dumpMemoryStatistics(dump);
87 };
88
89 GlobalStrikeCache()->forEachStrike(visitor);
90}
static void dump(const float m[20], SkYUVColorSpace cs, bool rgb2yuv)

◆ findOrCreateScopedStrike()

sk_sp< StrikeForGPU > SkStrikeCache::findOrCreateScopedStrike ( const SkStrikeSpec strikeSpec)
overridevirtual

Implements sktext::StrikeForGPUCacheInterface.

Definition at line 49 of file SkStrikeCache.cpp.

49 {
50 return this->findOrCreateStrike(strikeSpec);
51}
sk_sp< SkStrike > findOrCreateStrike(const SkStrikeSpec &strikeSpec) SK_EXCLUDES(fLock)

◆ findOrCreateStrike()

auto SkStrikeCache::findOrCreateStrike ( const SkStrikeSpec strikeSpec)

Definition at line 39 of file SkStrikeCache.cpp.

39 {
40 SkAutoMutexExclusive ac(fLock);
41 sk_sp<SkStrike> strike = this->internalFindStrikeOrNull(strikeSpec.descriptor());
42 if (strike == nullptr) {
43 strike = this->internalCreateStrike(strikeSpec);
44 }
45 this->internalPurge();
46 return strike;
47}
const SkDescriptor & descriptor() const

◆ findStrike()

sk_sp< SkStrike > SkStrikeCache::findStrike ( const SkDescriptor desc)

Definition at line 92 of file SkStrikeCache.cpp.

92 {
93 SkAutoMutexExclusive ac(fLock);
94 sk_sp<SkStrike> result = this->internalFindStrikeOrNull(desc);
95 this->internalPurge();
96 return result;
97}
GAsyncResult * result

◆ getCacheCountLimit()

int SkStrikeCache::getCacheCountLimit ( ) const

Definition at line 164 of file SkStrikeCache.cpp.

164 {
165 SkAutoMutexExclusive ac(fLock);
166 return fCacheCountLimit;
167}

◆ getCacheCountUsed()

int SkStrikeCache::getCacheCountUsed ( ) const

Definition at line 159 of file SkStrikeCache.cpp.

159 {
160 SkAutoMutexExclusive ac(fLock);
161 return fCacheCount;
162}

◆ getCacheSizeLimit()

size_t SkStrikeCache::getCacheSizeLimit ( ) const

Definition at line 178 of file SkStrikeCache.cpp.

178 {
179 SkAutoMutexExclusive ac(fLock);
180 return fCacheSizeLimit;
181}

◆ getTotalMemoryUsed()

size_t SkStrikeCache::getTotalMemoryUsed ( ) const

Definition at line 154 of file SkStrikeCache.cpp.

154 {
155 SkAutoMutexExclusive ac(fLock);
156 return fTotalMemoryUsed;
157}

◆ GlobalStrikeCache()

SkStrikeCache * SkStrikeCache::GlobalStrikeCache ( )
static

Definition at line 30 of file SkStrikeCache.cpp.

30 {
32 static thread_local auto* cache = new SkStrikeCache;
33 return cache;
34 }
35 static auto* cache = new SkStrikeCache;
36 return cache;
37}
bool gSkUseThreadLocalStrikeCaches_IAcknowledgeThisIsIncrediblyExperimental
SkStrikeCache()=default
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets Path to the Flutter assets directory enable service port Allow the VM service to fallback to automatic port selection if binding to a specified port fails trace Trace early application lifecycle Automatically switches to an endless trace buffer trace skia Filters out all Skia trace event categories except those that are specified in this comma separated list dump skp on shader Automatically dump the skp that triggers new shader compilations This is useful for writing custom ShaderWarmUp to reduce jank By this is not enabled to reduce the overhead purge persistent cache
Definition switches.h:191

◆ PurgeAll()

void SkStrikeCache::PurgeAll ( )
static

Definition at line 53 of file SkStrikeCache.cpp.

53 {
55}
void purgeAll() SK_EXCLUDES(fLock)

◆ purgeAll()

void SkStrikeCache::purgeAll ( )

Definition at line 149 of file SkStrikeCache.cpp.

149 {
150 SkAutoMutexExclusive ac(fLock);
151 this->internalPurge(fTotalMemoryUsed, /* checkPinners= */ true);
152}

◆ purgePinned()

void SkStrikeCache::purgePinned ( size_t  minBytesNeeded = 0)

Definition at line 144 of file SkStrikeCache.cpp.

144 {
145 SkAutoMutexExclusive ac(fLock);
146 this->internalPurge(minBytesNeeded, /* checkPinners= */ true);
147}

◆ setCacheCountLimit()

int SkStrikeCache::setCacheCountLimit ( int  limit)

Definition at line 183 of file SkStrikeCache.cpp.

183 {
184 if (newCount < 0) {
185 newCount = 0;
186 }
187
188 SkAutoMutexExclusive ac(fLock);
189
190 int prevCount = fCacheCountLimit;
191 fCacheCountLimit = newCount;
192 this->internalPurge();
193 return prevCount;
194}

◆ setCacheSizeLimit()

size_t SkStrikeCache::setCacheSizeLimit ( size_t  limit)

Definition at line 169 of file SkStrikeCache.cpp.

169 {
170 SkAutoMutexExclusive ac(fLock);
171
172 size_t prevLimit = fCacheSizeLimit;
173 fCacheSizeLimit = newLimit;
174 this->internalPurge();
175 return prevLimit;
176}

Friends And Related Symbol Documentation

◆ SkStrike

friend class SkStrike
friend

Definition at line 78 of file SkStrikeCache.h.


The documentation for this class was generated from the following files: