blob: 4805b28d8719b208d7b6bf119c101349b66d8979 [file] [log] [blame]
reed@google.com602a1d72013-07-23 19:13:54 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
reed011f39a2014-08-28 13:35:23 -07008#ifndef SkResourceCache_DEFINED
9#define SkResourceCache_DEFINED
reed@google.com602a1d72013-07-23 19:13:54 +000010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkBitmap.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/private/SkTDArray.h"
Ben Wagner21bca282019-05-15 10:15:52 -040013#include "src/core/SkMessageBus.h"
reed@google.com602a1d72013-07-23 19:13:54 +000014
reed9d93c2e2014-10-08 05:17:12 -070015class SkCachedData;
reed@google.come4eb1222013-12-09 22:29:30 +000016class SkDiscardableMemory;
ssid33c594c2015-08-27 09:23:54 -070017class SkTraceMemoryDump;
reed@google.comd94697c2013-07-24 14:31:33 +000018
reed@google.com602a1d72013-07-23 19:13:54 +000019/**
20 * Cache object for bitmaps (with possible scale in X Y as part of the key).
21 *
22 * Multiple caches can be instantiated, but each instance is not implicitly
23 * thread-safe, so if a given instance is to be shared across threads, the
24 * caller must manage the access itself (e.g. via a mutex).
25 *
26 * As a convenience, a global instance is also defined, which can be safely
27 * access across threads via the static methods (e.g. FindAndLock, etc.).
28 */
reed011f39a2014-08-28 13:35:23 -070029class SkResourceCache {
reed@google.com602a1d72013-07-23 19:13:54 +000030public:
reed4f987e92014-08-20 13:41:56 -070031 struct Key {
bungeman70bb8082016-02-17 10:13:49 -080032 /** Key subclasses must call this after their own fields and data are initialized.
33 * All fields and data must be tightly packed.
34 * @param nameSpace must be unique per Key subclass.
35 * @param sharedID == 0 means ignore this field, does not support group purging.
36 * @param dataSize is size of fields and data of the subclass, must be a multiple of 4.
37 */
38 void init(void* nameSpace, uint64_t sharedID, size_t dataSize);
reed4f987e92014-08-20 13:41:56 -070039
bungeman70bb8082016-02-17 10:13:49 -080040 /** Returns the size of this key. */
41 size_t size() const {
42 return fCount32 << 2;
43 }
reed7eeba252015-02-24 13:54:23 -080044
45 void* getNamespace() const { return fNamespace; }
46 uint64_t getSharedID() const { return ((uint64_t)fSharedID_hi << 32) | fSharedID_lo; }
reed4f987e92014-08-20 13:41:56 -070047
48 // This is only valid after having called init().
49 uint32_t hash() const { return fHash; }
50
51 bool operator==(const Key& other) const {
52 const uint32_t* a = this->as32();
53 const uint32_t* b = other.as32();
mtklein484bbe52014-10-21 10:55:22 -070054 for (int i = 0; i < fCount32; ++i) { // (This checks fCount == other.fCount first.)
reed4f987e92014-08-20 13:41:56 -070055 if (a[i] != b[i]) {
56 return false;
57 }
58 }
59 return true;
60 }
61
reed4f987e92014-08-20 13:41:56 -070062 private:
fmalita171e5b72014-10-22 11:20:40 -070063 int32_t fCount32; // local + user contents count32
reed4f987e92014-08-20 13:41:56 -070064 uint32_t fHash;
reed7eeba252015-02-24 13:54:23 -080065 // split uint64_t into hi and lo so we don't force ourselves to pad on 32bit machines.
66 uint32_t fSharedID_lo;
67 uint32_t fSharedID_hi;
fmalita171e5b72014-10-22 11:20:40 -070068 void* fNamespace; // A unique namespace tag. This is hashed.
reed4f987e92014-08-20 13:41:56 -070069 /* uint32_t fContents32[] */
70
71 const uint32_t* as32() const { return (const uint32_t*)this; }
reed4f987e92014-08-20 13:41:56 -070072 };
73
reed680fb9e2014-08-26 09:08:04 -070074 struct Rec {
reed011f39a2014-08-28 13:35:23 -070075 typedef SkResourceCache::Key Key;
reed680fb9e2014-08-26 09:08:04 -070076
reedc90e0142014-09-15 11:39:44 -070077 Rec() {}
reed680fb9e2014-08-26 09:08:04 -070078 virtual ~Rec() {}
79
80 uint32_t getHash() const { return this->getKey().hash(); }
piotaixr81591462014-09-02 11:27:11 -070081
reed680fb9e2014-08-26 09:08:04 -070082 virtual const Key& getKey() const = 0;
83 virtual size_t bytesUsed() const = 0;
piotaixr81591462014-09-02 11:27:11 -070084
Mike Reed7a542c52017-04-11 12:03:44 -040085 // Called if the cache needs to purge/remove/delete the Rec. Default returns true.
86 // Subclass may return false if there are outstanding references to it (e.g. bitmaps).
87 // Will only be deleted/removed-from-the-cache when this returns true.
88 virtual bool canBePurged() { return true; }
89
90 // A rec is first created/initialized, and then added to the cache. As part of the add(),
91 // the cache will callback into the rec with postAddInstall, passing in whatever payload
92 // was passed to add/Add.
93 //
94 // This late-install callback exists because the process of add-ing might end up deleting
95 // the new rec (if an existing rec in the cache has the same key and cannot be purged).
96 // If the new rec will be deleted during add, the pre-existing one (with the same key)
97 // will have postAddInstall() called on it instead, so that either way an "install" will
98 // happen during the add.
99 virtual void postAddInstall(void*) {}
100
reed216b6432015-08-19 12:25:40 -0700101 // for memory usage diagnostics
102 virtual const char* getCategory() const = 0;
halcanary96fcdcc2015-08-27 07:41:13 -0700103 virtual SkDiscardableMemory* diagnostic_only_getDiscardable() const { return nullptr; }
reed216b6432015-08-19 12:25:40 -0700104
reed680fb9e2014-08-26 09:08:04 -0700105 private:
106 Rec* fNext;
107 Rec* fPrev;
piotaixr81591462014-09-02 11:27:11 -0700108
reed011f39a2014-08-28 13:35:23 -0700109 friend class SkResourceCache;
reed680fb9e2014-08-26 09:08:04 -0700110 };
111
reed7eeba252015-02-24 13:54:23 -0800112 // Used with SkMessageBus
113 struct PurgeSharedIDMessage {
114 PurgeSharedIDMessage(uint64_t sharedID) : fSharedID(sharedID) {}
Chris Dalton9a986cf2018-10-18 15:27:59 -0600115 uint64_t fSharedID;
reed7eeba252015-02-24 13:54:23 -0800116 };
117
reed680fb9e2014-08-26 09:08:04 -0700118 typedef const Rec* ID;
119
reed@google.come4eb1222013-12-09 22:29:30 +0000120 /**
reedc90e0142014-09-15 11:39:44 -0700121 * Callback function for find(). If called, the cache will have found a match for the
122 * specified Key, and will pass in the corresponding Rec, along with a caller-specified
123 * context. The function can read the data in Rec, and copy whatever it likes into context
124 * (casting context to whatever it really is).
125 *
126 * The return value determines what the cache will do with the Rec. If the function returns
127 * true, then the Rec is considered "valid". If false is returned, the Rec will be considered
128 * "stale" and will be purged from the cache.
129 */
reed7eeba252015-02-24 13:54:23 -0800130 typedef bool (*FindVisitor)(const Rec&, void* context);
reedc90e0142014-09-15 11:39:44 -0700131
132 /**
reed@google.come4eb1222013-12-09 22:29:30 +0000133 * Returns a locked/pinned SkDiscardableMemory instance for the specified
halcanary96fcdcc2015-08-27 07:41:13 -0700134 * number of bytes, or nullptr on failure.
reed@google.come4eb1222013-12-09 22:29:30 +0000135 */
136 typedef SkDiscardableMemory* (*DiscardableFactory)(size_t bytes);
137
reed@google.com602a1d72013-07-23 19:13:54 +0000138 /*
139 * The following static methods are thread-safe wrappers around a global
140 * instance of this cache.
141 */
142
reedc90e0142014-09-15 11:39:44 -0700143 /**
144 * Returns true if the visitor was called on a matching Key, and the visitor returned true.
145 *
146 * Find() will search the cache for the specified Key. If no match is found, return false and
reed7eeba252015-02-24 13:54:23 -0800147 * do not call the FindVisitor. If a match is found, return whatever the visitor returns.
reedc90e0142014-09-15 11:39:44 -0700148 * Its return value is interpreted to mean:
149 * true : Rec is valid
150 * false : Rec is "stale" -- the cache will purge it.
151 */
reed7eeba252015-02-24 13:54:23 -0800152 static bool Find(const Key& key, FindVisitor, void* context);
Mike Reed7a542c52017-04-11 12:03:44 -0400153 static void Add(Rec*, void* payload = nullptr);
reed@google.com602a1d72013-07-23 19:13:54 +0000154
reed216b6432015-08-19 12:25:40 -0700155 typedef void (*Visitor)(const Rec&, void* context);
156 // Call the visitor for every Rec in the cache.
157 static void VisitAll(Visitor, void* context);
158
halcanary805ef152014-07-17 06:58:01 -0700159 static size_t GetTotalBytesUsed();
160 static size_t GetTotalByteLimit();
161 static size_t SetTotalByteLimit(size_t newLimit);
162
163 static size_t SetSingleAllocationByteLimit(size_t);
164 static size_t GetSingleAllocationByteLimit();
reed1d9e80f2015-01-26 11:24:37 -0800165 static size_t GetEffectiveSingleAllocationByteLimit();
reed@google.com602a1d72013-07-23 19:13:54 +0000166
reed56b00d92014-09-11 12:22:34 -0700167 static void PurgeAll();
168
reed216b6432015-08-19 12:25:40 -0700169 static void TestDumpMemoryStatistics();
170
ssid33c594c2015-08-27 09:23:54 -0700171 /** Dump memory usage statistics of every Rec in the cache using the
172 SkTraceMemoryDump interface.
173 */
174 static void DumpMemoryStatistics(SkTraceMemoryDump* dump);
175
piotaixr81591462014-09-02 11:27:11 -0700176 /**
halcanary96fcdcc2015-08-27 07:41:13 -0700177 * Returns the DiscardableFactory used by the global cache, or nullptr.
reed30ad5302014-09-16 10:39:55 -0700178 */
179 static DiscardableFactory GetDiscardableFactory();
180
qiankun.miaod9aac342014-10-23 07:58:17 -0700181 static SkCachedData* NewCachedData(size_t bytes);
182
reed7eeba252015-02-24 13:54:23 -0800183 static void PostPurgeSharedID(uint64_t sharedID);
184
reed@google.comfa7fd802013-12-12 21:37:25 +0000185 /**
186 * Call SkDebugf() with diagnostic information about the state of the cache
187 */
188 static void Dump();
189
reed@google.com602a1d72013-07-23 19:13:54 +0000190 ///////////////////////////////////////////////////////////////////////////
191
reed@google.come4eb1222013-12-09 22:29:30 +0000192 /**
193 * Construct the cache to call DiscardableFactory when it
194 * allocates memory for the pixels. In this mode, the cache has
halcanary805ef152014-07-17 06:58:01 -0700195 * not explicit budget, and so methods like getTotalBytesUsed()
196 * and getTotalByteLimit() will return 0, and setTotalByteLimit
197 * will ignore its argument and return 0.
reed@google.come4eb1222013-12-09 22:29:30 +0000198 */
reed011f39a2014-08-28 13:35:23 -0700199 SkResourceCache(DiscardableFactory);
reed@google.come4eb1222013-12-09 22:29:30 +0000200
201 /**
202 * Construct the cache, allocating memory with malloc, and respect the
203 * byteLimit, purging automatically when a new image is added to the cache
204 * that pushes the total bytesUsed over the limit. Note: The limit can be
halcanary805ef152014-07-17 06:58:01 -0700205 * changed at runtime with setTotalByteLimit.
reed@google.come4eb1222013-12-09 22:29:30 +0000206 */
reed011f39a2014-08-28 13:35:23 -0700207 explicit SkResourceCache(size_t byteLimit);
208 ~SkResourceCache();
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +0000209
reed595aa052014-09-15 10:15:18 -0700210 /**
reedc90e0142014-09-15 11:39:44 -0700211 * Returns true if the visitor was called on a matching Key, and the visitor returned true.
212 *
213 * find() will search the cache for the specified Key. If no match is found, return false and
reed7eeba252015-02-24 13:54:23 -0800214 * do not call the FindVisitor. If a match is found, return whatever the visitor returns.
reedc90e0142014-09-15 11:39:44 -0700215 * Its return value is interpreted to mean:
216 * true : Rec is valid
217 * false : Rec is "stale" -- the cache will purge it.
reed595aa052014-09-15 10:15:18 -0700218 */
reed7eeba252015-02-24 13:54:23 -0800219 bool find(const Key&, FindVisitor, void* context);
Mike Reed7a542c52017-04-11 12:03:44 -0400220 void add(Rec*, void* payload = nullptr);
reed216b6432015-08-19 12:25:40 -0700221 void visitAll(Visitor, void* context);
reed@google.com602a1d72013-07-23 19:13:54 +0000222
halcanary805ef152014-07-17 06:58:01 -0700223 size_t getTotalBytesUsed() const { return fTotalBytesUsed; }
224 size_t getTotalByteLimit() const { return fTotalByteLimit; }
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +0000225
reed@google.com602a1d72013-07-23 19:13:54 +0000226 /**
halcanary805ef152014-07-17 06:58:01 -0700227 * This is respected by SkBitmapProcState::possiblyScaleImage.
228 * 0 is no maximum at all; this is the default.
229 * setSingleAllocationByteLimit() returns the previous value.
230 */
231 size_t setSingleAllocationByteLimit(size_t maximumAllocationSize);
232 size_t getSingleAllocationByteLimit() const;
reed1d9e80f2015-01-26 11:24:37 -0800233 // returns the logical single allocation size (pinning against the budget when the cache
234 // is not backed by discardable memory.
235 size_t getEffectiveSingleAllocationByteLimit() const;
236
halcanary805ef152014-07-17 06:58:01 -0700237 /**
reed@google.com602a1d72013-07-23 19:13:54 +0000238 * Set the maximum number of bytes available to this cache. If the current
239 * cache exceeds this new value, it will be purged to try to fit within
240 * this new limit.
241 */
halcanary805ef152014-07-17 06:58:01 -0700242 size_t setTotalByteLimit(size_t newLimit);
reed@google.com602a1d72013-07-23 19:13:54 +0000243
reed7eeba252015-02-24 13:54:23 -0800244 void purgeSharedID(uint64_t sharedID);
245
reed56b00d92014-09-11 12:22:34 -0700246 void purgeAll() {
247 this->purgeAsNeeded(true);
248 }
249
reed30ad5302014-09-16 10:39:55 -0700250 DiscardableFactory discardableFactory() const { return fDiscardableFactory; }
reed@google.come4eb1222013-12-09 22:29:30 +0000251
reed9d93c2e2014-10-08 05:17:12 -0700252 SkCachedData* newCachedData(size_t bytes);
253
reed@google.comfa7fd802013-12-12 21:37:25 +0000254 /**
255 * Call SkDebugf() with diagnostic information about the state of the cache
256 */
257 void dump() const;
258
reed@google.com5d1e5582013-07-25 14:36:15 +0000259private:
reed@google.com602a1d72013-07-23 19:13:54 +0000260 Rec* fHead;
261 Rec* fTail;
262
reed@google.com5d1e5582013-07-25 14:36:15 +0000263 class Hash;
264 Hash* fHash;
265
reed@google.come4eb1222013-12-09 22:29:30 +0000266 DiscardableFactory fDiscardableFactory;
reed@google.come4eb1222013-12-09 22:29:30 +0000267
halcanary805ef152014-07-17 06:58:01 -0700268 size_t fTotalBytesUsed;
269 size_t fTotalByteLimit;
270 size_t fSingleAllocationByteLimit;
reed@google.com602a1d72013-07-23 19:13:54 +0000271 int fCount;
272
reed7eeba252015-02-24 13:54:23 -0800273 SkMessageBus<PurgeSharedIDMessage>::Inbox fPurgeSharedIDInbox;
274
275 void checkMessages();
reed56b00d92014-09-11 12:22:34 -0700276 void purgeAsNeeded(bool forcePurge = false);
reed@google.com602a1d72013-07-23 19:13:54 +0000277
278 // linklist management
279 void moveToHead(Rec*);
280 void addToHead(Rec*);
mtklein18300a32016-03-16 13:53:35 -0700281 void release(Rec*);
reedc90e0142014-09-15 11:39:44 -0700282 void remove(Rec*);
reed@google.come4eb1222013-12-09 22:29:30 +0000283
284 void init(); // called by constructors
285
reed@google.com602a1d72013-07-23 19:13:54 +0000286#ifdef SK_DEBUG
287 void validate() const;
288#else
289 void validate() const {}
290#endif
291};
reed@google.com602a1d72013-07-23 19:13:54 +0000292#endif