blob: cfa63251bf4dddfbc5f8d07d3ad562b4ef160578 [file] [log] [blame]
halcanary805ef152014-07-17 06:58:01 -07001/*
2 * Copyright 2014 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 */
reed30ad5302014-09-16 10:39:55 -07007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkCanvas.h"
9#include "include/core/SkGraphics.h"
10#include "include/core/SkPicture.h"
11#include "include/core/SkPictureRecorder.h"
12#include "include/core/SkSurface.h"
13#include "src/core/SkBitmapCache.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/core/SkMipMap.h"
15#include "src/core/SkResourceCache.h"
Mike Reed64acf4f2019-08-01 15:35:20 -040016#include "src/image/SkImage_Base.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/lazy/SkDiscardableMemoryPool.h"
18#include "tests/Test.h"
halcanary805ef152014-07-17 06:58:01 -070019
reed30ad5302014-09-16 10:39:55 -070020////////////////////////////////////////////////////////////////////////////////////////
mtklein26abcf12014-09-04 10:50:53 -070021
reed9d93c2e2014-10-08 05:17:12 -070022enum LockedState {
23 kNotLocked,
24 kLocked,
25};
26
27enum CachedState {
28 kNotInCache,
29 kInCache,
30};
31
32static void check_data(skiatest::Reporter* reporter, const SkCachedData* data,
33 int refcnt, CachedState cacheState, LockedState lockedState) {
34 REPORTER_ASSERT(reporter, data->testing_only_getRefCnt() == refcnt);
35 REPORTER_ASSERT(reporter, data->testing_only_isInCache() == (kInCache == cacheState));
halcanary96fcdcc2015-08-27 07:41:13 -070036 bool isLocked = (data->data() != nullptr);
reed9d93c2e2014-10-08 05:17:12 -070037 REPORTER_ASSERT(reporter, isLocked == (lockedState == kLocked));
38}
39
40static void test_mipmapcache(skiatest::Reporter* reporter, SkResourceCache* cache) {
41 cache->purgeAll();
42
43 SkBitmap src;
44 src.allocN32Pixels(5, 5);
45 src.setImmutable();
Brian Osman3a160732018-10-15 15:32:06 -040046 sk_sp<SkImage> img = SkImage::MakeFromBitmap(src);
Mike Reed64acf4f2019-08-01 15:35:20 -040047 const auto desc = SkBitmapCacheDesc::Make(img.get());
reed9d93c2e2014-10-08 05:17:12 -070048
Brian Osman3a160732018-10-15 15:32:06 -040049 const SkMipMap* mipmap = SkMipMapCache::FindAndRef(desc, cache);
halcanary96fcdcc2015-08-27 07:41:13 -070050 REPORTER_ASSERT(reporter, nullptr == mipmap);
reed9d93c2e2014-10-08 05:17:12 -070051
Mike Reed64acf4f2019-08-01 15:35:20 -040052 mipmap = SkMipMapCache::AddAndRef(as_IB(img.get()), cache);
reed9d93c2e2014-10-08 05:17:12 -070053 REPORTER_ASSERT(reporter, mipmap);
reed7eeba252015-02-24 13:54:23 -080054
55 {
Brian Osman3a160732018-10-15 15:32:06 -040056 const SkMipMap* mm = SkMipMapCache::FindAndRef(desc, cache);
reed7eeba252015-02-24 13:54:23 -080057 REPORTER_ASSERT(reporter, mm);
58 REPORTER_ASSERT(reporter, mm == mipmap);
59 mm->unref();
60 }
61
reed9d93c2e2014-10-08 05:17:12 -070062 check_data(reporter, mipmap, 2, kInCache, kLocked);
63
64 mipmap->unref();
65 // tricky, since technically after this I'm no longer an owner, but since the cache is
66 // local, I know it won't get purged behind my back
67 check_data(reporter, mipmap, 1, kInCache, kNotLocked);
68
69 // find us again
Brian Osman3a160732018-10-15 15:32:06 -040070 mipmap = SkMipMapCache::FindAndRef(desc, cache);
reed9d93c2e2014-10-08 05:17:12 -070071 check_data(reporter, mipmap, 2, kInCache, kLocked);
72
73 cache->purgeAll();
74 check_data(reporter, mipmap, 1, kNotInCache, kLocked);
75
76 mipmap->unref();
77}
78
reed7eeba252015-02-24 13:54:23 -080079static void test_mipmap_notify(skiatest::Reporter* reporter, SkResourceCache* cache) {
80 const int N = 3;
reed6644d932016-06-10 11:41:47 -070081
reed7eeba252015-02-24 13:54:23 -080082 SkBitmap src[N];
Brian Osman3a160732018-10-15 15:32:06 -040083 sk_sp<SkImage> img[N];
84 SkBitmapCacheDesc desc[N];
reed7eeba252015-02-24 13:54:23 -080085 for (int i = 0; i < N; ++i) {
86 src[i].allocN32Pixels(5, 5);
87 src[i].setImmutable();
Brian Osman3a160732018-10-15 15:32:06 -040088 img[i] = SkImage::MakeFromBitmap(src[i]);
Mike Reed64acf4f2019-08-01 15:35:20 -040089 SkMipMapCache::AddAndRef(as_IB(img[i].get()), cache)->unref();
90 desc[i] = SkBitmapCacheDesc::Make(img[i].get());
reed7eeba252015-02-24 13:54:23 -080091 }
92
93 for (int i = 0; i < N; ++i) {
Brian Osman3a160732018-10-15 15:32:06 -040094 const SkMipMap* mipmap = SkMipMapCache::FindAndRef(desc[i], cache);
95 // We're always using a local cache, so we know we won't be purged by other threads
96 REPORTER_ASSERT(reporter, mipmap);
97 SkSafeUnref(mipmap);
98
99 img[i].reset(); // delete the image, which *should not* remove us from the cache
100 mipmap = SkMipMapCache::FindAndRef(desc[i], cache);
101 REPORTER_ASSERT(reporter, mipmap);
reed7eeba252015-02-24 13:54:23 -0800102 SkSafeUnref(mipmap);
103
Brian Osman087c9172018-10-15 10:33:54 -0400104 src[i].reset(); // delete the underlying pixelref, which *should* remove us from the cache
Brian Osman3a160732018-10-15 15:32:06 -0400105 mipmap = SkMipMapCache::FindAndRef(desc[i], cache);
reed7eeba252015-02-24 13:54:23 -0800106 REPORTER_ASSERT(reporter, !mipmap);
107 }
108}
109
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500110#include "src/lazy/SkDiscardableMemoryPool.h"
aleksandar.stojiljkovic07e26922015-11-10 04:55:15 -0800111
Ben Wagnera93a14a2017-08-28 10:34:05 -0400112static SkDiscardableMemoryPool* gPool = nullptr;
aleksandar.stojiljkovic07e26922015-11-10 04:55:15 -0800113static SkDiscardableMemory* pool_factory(size_t bytes) {
114 SkASSERT(gPool);
115 return gPool->create(bytes);
116}
117
118static void testBitmapCache_discarded_bitmap(skiatest::Reporter* reporter, SkResourceCache* cache,
119 SkResourceCache::DiscardableFactory factory) {
reed9d93c2e2014-10-08 05:17:12 -0700120 test_mipmapcache(reporter, cache);
reed7eeba252015-02-24 13:54:23 -0800121 test_mipmap_notify(reporter, cache);
danakj790ffe32014-09-11 10:49:52 -0700122}
fmalita3b0d5322015-09-18 08:07:31 -0700123
aleksandar.stojiljkovic07e26922015-11-10 04:55:15 -0800124DEF_TEST(BitmapCache_discarded_bitmap, reporter) {
125 const size_t byteLimit = 100 * 1024;
126 {
127 SkResourceCache cache(byteLimit);
128 testBitmapCache_discarded_bitmap(reporter, &cache, nullptr);
129 }
130 {
Hal Canary788c3c42017-04-25 08:58:57 -0400131 sk_sp<SkDiscardableMemoryPool> pool(SkDiscardableMemoryPool::Make(byteLimit));
aleksandar.stojiljkovic07e26922015-11-10 04:55:15 -0800132 gPool = pool.get();
133 SkResourceCache::DiscardableFactory factory = pool_factory;
134 SkResourceCache cache(factory);
135 testBitmapCache_discarded_bitmap(reporter, &cache, factory);
136 }
137}
138
fmalita3b0d5322015-09-18 08:07:31 -0700139static void test_discarded_image(skiatest::Reporter* reporter, const SkMatrix& transform,
reed9ce9d672016-03-17 10:51:11 -0700140 sk_sp<SkImage> (*buildImage)()) {
reede8f30622016-03-23 18:59:25 -0700141 auto surface(SkSurface::MakeRasterN32Premul(10, 10));
fmalita3b0d5322015-09-18 08:07:31 -0700142 SkCanvas* canvas = surface->getCanvas();
143
144 // SkBitmapCache is global, so other threads could be evicting our bitmaps. Loop a few times
145 // to mitigate this risk.
146 const unsigned kRepeatCount = 42;
147 for (unsigned i = 0; i < kRepeatCount; ++i) {
148 SkAutoCanvasRestore acr(canvas, true);
149
reed9ce9d672016-03-17 10:51:11 -0700150 sk_sp<SkImage> image(buildImage());
fmalita3b0d5322015-09-18 08:07:31 -0700151
152 // always use high quality to ensure caching when scaled
153 SkPaint paint;
154 paint.setFilterQuality(kHigh_SkFilterQuality);
155
156 // draw the image (with a transform, to tickle different code paths) to ensure
157 // any associated resources get cached
158 canvas->concat(transform);
159 canvas->drawImage(image, 0, 0, &paint);
160
Mike Reed5fa3d6d2017-03-25 09:51:00 -0400161 const auto desc = SkBitmapCacheDesc::Make(image.get());
fmalita3b0d5322015-09-18 08:07:31 -0700162
163 // delete the image
164 image.reset(nullptr);
165
166 // all resources should have been purged
167 SkBitmap result;
Mike Reed5fa3d6d2017-03-25 09:51:00 -0400168 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(desc, &result));
fmalita3b0d5322015-09-18 08:07:31 -0700169 }
170}
171
172
173// Verify that associated bitmap cache entries are purged on SkImage destruction.
174DEF_TEST(BitmapCache_discarded_image, reporter) {
175 // Cache entries associated with SkImages fall into two categories:
176 //
177 // 1) generated image bitmaps (managed by the image cacherator)
178 // 2) scaled/resampled bitmaps (cached when HQ filters are used)
179 //
180 // To exercise the first cache type, we use generated/picture-backed SkImages.
181 // To exercise the latter, we draw scaled bitmap images using HQ filters.
182
183 const SkMatrix xforms[] = {
184 SkMatrix::MakeScale(1, 1),
185 SkMatrix::MakeScale(1.7f, 0.5f),
186 };
187
188 for (size_t i = 0; i < SK_ARRAY_COUNT(xforms); ++i) {
189 test_discarded_image(reporter, xforms[i], []() {
reede8f30622016-03-23 18:59:25 -0700190 auto surface(SkSurface::MakeRasterN32Premul(10, 10));
fmalita3b0d5322015-09-18 08:07:31 -0700191 surface->getCanvas()->clear(SK_ColorCYAN);
reed9ce9d672016-03-17 10:51:11 -0700192 return surface->makeImageSnapshot();
fmalita3b0d5322015-09-18 08:07:31 -0700193 });
194
195 test_discarded_image(reporter, xforms[i], []() {
196 SkPictureRecorder recorder;
197 SkCanvas* canvas = recorder.beginRecording(10, 10);
198 canvas->clear(SK_ColorCYAN);
reedca2622b2016-03-18 07:25:55 -0700199 return SkImage::MakeFromPicture(recorder.finishRecordingAsPicture(),
Brian Osman138ea972016-12-16 11:55:18 -0500200 SkISize::Make(10, 10), nullptr, nullptr,
Matt Sarette94255d2017-01-09 12:38:59 -0500201 SkImage::BitDepth::kU8,
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500202 SkColorSpace::MakeSRGB());
fmalita3b0d5322015-09-18 08:07:31 -0700203 });
204 }
205}
Mike Reed7a542c52017-04-11 12:03:44 -0400206
207///////////////////////////////////////////////////////////////////////////////////////////////////
208
209static void* gTestNamespace;
210
211struct TestKey : SkResourceCache::Key {
212 int32_t fData;
213
214 TestKey(int sharedID, int32_t data) : fData(data) {
215 this->init(&gTestNamespace, sharedID, sizeof(fData));
216 }
217};
218
219struct TestRec : SkResourceCache::Rec {
220 enum {
221 kDidInstall = 1 << 0,
222 };
223
224 TestKey fKey;
225 int* fFlags;
226 bool fCanBePurged;
227
228 TestRec(int sharedID, int32_t data, int* flagPtr) : fKey(sharedID, data), fFlags(flagPtr) {
229 fCanBePurged = false;
230 }
231
232 const Key& getKey() const override { return fKey; }
233 size_t bytesUsed() const override { return 1024; /* just need a value */ }
234 bool canBePurged() override { return fCanBePurged; }
235 void postAddInstall(void*) override {
236 *fFlags |= kDidInstall;
237 }
238 const char* getCategory() const override { return "test-category"; }
239};
240
241static void test_duplicate_add(SkResourceCache* cache, skiatest::Reporter* reporter,
242 bool purgable) {
243 int sharedID = 1;
244 int data = 0;
245
246 int flags0 = 0, flags1 = 0;
247
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500248 auto rec0 = std::make_unique<TestRec>(sharedID, data, &flags0);
249 auto rec1 = std::make_unique<TestRec>(sharedID, data, &flags1);
Mike Reed7a542c52017-04-11 12:03:44 -0400250 SkASSERT(rec0->getKey() == rec1->getKey());
251
252 TestRec* r0 = rec0.get(); // save the bare-pointer since we will release rec0
253 r0->fCanBePurged = purgable;
254
255 REPORTER_ASSERT(reporter, !(flags0 & TestRec::kDidInstall));
256 REPORTER_ASSERT(reporter, !(flags1 & TestRec::kDidInstall));
257
258 cache->add(rec0.release(), nullptr);
259 REPORTER_ASSERT(reporter, flags0 & TestRec::kDidInstall);
260 REPORTER_ASSERT(reporter, !(flags1 & TestRec::kDidInstall));
261 flags0 = 0; // reset the flag
262
263 cache->add(rec1.release(), nullptr);
264 if (purgable) {
265 // we purged rec0, and did install rec1
266 REPORTER_ASSERT(reporter, !(flags0 & TestRec::kDidInstall));
267 REPORTER_ASSERT(reporter, flags1 & TestRec::kDidInstall);
268 } else {
269 // we re-used rec0 and did not install rec1
270 REPORTER_ASSERT(reporter, flags0 & TestRec::kDidInstall);
271 REPORTER_ASSERT(reporter, !(flags1 & TestRec::kDidInstall));
272 r0->fCanBePurged = true; // so we can cleanup the cache
273 }
274}
275
276/*
277 * Test behavior when the same key is added more than once.
278 */
279DEF_TEST(ResourceCache_purge, reporter) {
280 for (bool purgable : { false, true }) {
281 {
282 SkResourceCache cache(1024 * 1024);
283 test_duplicate_add(&cache, reporter, purgable);
284 }
285 {
286 SkResourceCache cache(SkDiscardableMemory::Create);
287 test_duplicate_add(&cache, reporter, purgable);
288 }
289 }
290}