Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions | Variables
ImageCacheTest.cpp File Reference
#include "include/core/SkRefCnt.h"
#include "include/core/SkTypes.h"
#include "include/private/chromium/SkDiscardableMemory.h"
#include "src/core/SkResourceCache.h"
#include "src/lazy/SkDiscardableMemoryPool.h"
#include "tests/Test.h"
#include <cstddef>
#include <cstdint>

Go to the source code of this file.

Functions

static void test_cache (skiatest::Reporter *reporter, SkResourceCache &cache, bool testPurge)
 
static void test_cache_purge_shared_id (skiatest::Reporter *reporter, SkResourceCache &cache)
 
static SkDiscardableMemorypool_factory (size_t bytes)
 
 DEF_TEST (ImageCache, reporter)
 
 DEF_TEST (ImageCache_doubleAdd, r)
 

Variables

static const int COUNT = 10
 
static const int DIM = 256
 
static SkDiscardableMemoryPoolgPool
 

Function Documentation

◆ DEF_TEST() [1/2]

DEF_TEST ( ImageCache  ,
reporter   
)

Definition at line 120 of file ImageCacheTest.cpp.

120 {
121 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop
122
123 {
124 SkResourceCache cache(defLimit);
125 test_cache(reporter, cache, true);
126 }
127 {
129 gPool = pool.get();
131 test_cache(reporter, cache, true);
132 }
133 {
135 test_cache(reporter, cache, false);
136 }
137 {
138 SkResourceCache cache(defLimit);
140 }
141}
AutoreleasePool pool
reporter
static void test_cache_purge_shared_id(skiatest::Reporter *reporter, SkResourceCache &cache)
static const int COUNT
static const int DIM
static SkDiscardableMemory * pool_factory(size_t bytes)
static SkDiscardableMemoryPool * gPool
static void test_cache(skiatest::Reporter *reporter, SkResourceCache &cache, bool testPurge)
static sk_sp< SkDiscardableMemoryPool > Make(size_t size)
static SkDiscardableMemory * Create(size_t bytes)
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

◆ DEF_TEST() [2/2]

DEF_TEST ( ImageCache_doubleAdd  ,
 
)

Definition at line 143 of file ImageCacheTest.cpp.

143 {
144 // Adding the same key twice should be safe.
146
147 TestingKey key(1);
148
149 cache.add(new TestingRec(key, 2));
150 cache.add(new TestingRec(key, 3));
151
152 // Lookup can return either value.
153 intptr_t value = -1;
154 REPORTER_ASSERT(r, cache.find(key, TestingRec::Visitor, &value));
155 REPORTER_ASSERT(r, 2 == value || 3 == value);
156}
#define REPORTER_ASSERT(r, cond,...)
Definition Test.h:286
uint8_t value

◆ pool_factory()

static SkDiscardableMemory * pool_factory ( size_t  bytes)
static

Definition at line 115 of file ImageCacheTest.cpp.

115 {
117 return gPool->create(bytes);
118}
#define SkASSERT(cond)
Definition SkAssert.h:116
virtual SkDiscardableMemory * create(size_t bytes)=0

◆ test_cache()

static void test_cache ( skiatest::Reporter reporter,
SkResourceCache cache,
bool  testPurge 
)
static

Definition at line 51 of file ImageCacheTest.cpp.

51 {
52 for (int i = 0; i < COUNT; ++i) {
53 TestingKey key(i);
54 intptr_t value = -1;
55
56 REPORTER_ASSERT(reporter, !cache.find(key, TestingRec::Visitor, &value));
57 REPORTER_ASSERT(reporter, -1 == value);
58
59 cache.add(new TestingRec(key, i));
60
61 REPORTER_ASSERT(reporter, cache.find(key, TestingRec::Visitor, &value));
62 REPORTER_ASSERT(reporter, i == value);
63 }
64
65 if (testPurge) {
66 // stress test, should trigger purges
67 for (int i = 0; i < COUNT * 100; ++i) {
68 TestingKey key(i);
69 cache.add(new TestingRec(key, i));
70 }
71 }
72
73 // test the originals after all that purging
74 for (int i = 0; i < COUNT; ++i) {
75 intptr_t value;
76 (void)cache.find(TestingKey(i), TestingRec::Visitor, &value);
77 }
78
79 cache.setTotalByteLimit(0);
80}

◆ test_cache_purge_shared_id()

static void test_cache_purge_shared_id ( skiatest::Reporter reporter,
SkResourceCache cache 
)
static

Definition at line 82 of file ImageCacheTest.cpp.

82 {
83 for (int i = 0; i < COUNT; ++i) {
84 TestingKey key(i, i & 1); // every other key will have a 1 for its sharedID
85 cache.add(new TestingRec(key, i));
86 }
87
88 // Ensure that everyone is present
89 for (int i = 0; i < COUNT; ++i) {
90 TestingKey key(i, i & 1); // every other key will have a 1 for its sharedID
91 intptr_t value = -1;
92
93 REPORTER_ASSERT(reporter, cache.find(key, TestingRec::Visitor, &value));
94 REPORTER_ASSERT(reporter, value == i);
95 }
96
97 // Now purge the ones that had a non-zero sharedID (the odd-indexed ones)
98 cache.purgeSharedID(1);
99
100 // Ensure that only the even ones are still present
101 for (int i = 0; i < COUNT; ++i) {
102 TestingKey key(i, i & 1); // every other key will have a 1 for its sharedID
103 intptr_t value = -1;
104
105 if (i & 1) {
106 REPORTER_ASSERT(reporter, !cache.find(key, TestingRec::Visitor, &value));
107 } else {
108 REPORTER_ASSERT(reporter, cache.find(key, TestingRec::Visitor, &value));
109 REPORTER_ASSERT(reporter, value == i);
110 }
111 }
112}

Variable Documentation

◆ COUNT

const int COUNT = 10
static

Definition at line 48 of file ImageCacheTest.cpp.

◆ DIM

const int DIM = 256
static

Definition at line 49 of file ImageCacheTest.cpp.

◆ gPool

SkDiscardableMemoryPool* gPool
static

Definition at line 114 of file ImageCacheTest.cpp.