blob: 60ffa7dc7fd4cdcbf121c04668d70f95dbfa8ae9 [file] [log] [blame]
Chet Haase5c13d892010-10-08 08:37:55 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Romain Guy5b3b3522010-10-27 18:57:51 -070017#ifndef ANDROID_HWUI_RESOURCE_CACHE_H
18#define ANDROID_HWUI_RESOURCE_CACHE_H
Chet Haase5c13d892010-10-08 08:37:55 -070019
Romain Guy79537452011-10-12 13:48:51 -070020#include <cutils/compiler.h>
21
Chet Haase5c13d892010-10-08 08:37:55 -070022#include <SkBitmap.h>
Chet Haasead93c2b2010-10-22 16:17:12 -070023#include <SkiaColorFilter.h>
Chet Haase5c13d892010-10-08 08:37:55 -070024#include <SkiaShader.h>
25#include <utils/KeyedVector.h>
26
27namespace android {
28namespace uirenderer {
29
30/**
31 * Type of Resource being cached
32 */
33enum ResourceType {
34 kBitmap,
Chet Haase5c13d892010-10-08 08:37:55 -070035 kShader,
Chet Haasead93c2b2010-10-22 16:17:12 -070036 kColorFilter,
Chet Haase5a7e8282011-02-04 12:50:55 -080037 kPath,
Chet Haase5c13d892010-10-08 08:37:55 -070038};
39
40class ResourceReference {
41public:
42
43 ResourceReference() { refCount = 0; recycled = false; destroyed = false;}
44 ResourceReference(ResourceType type) {
45 refCount = 0; recycled = false; destroyed = false; resourceType = type;
46 }
47
48 int refCount;
49 bool recycled;
50 bool destroyed;
51 ResourceType resourceType;
52};
53
Romain Guy79537452011-10-12 13:48:51 -070054class ANDROID_API ResourceCache {
Chet Haase5c13d892010-10-08 08:37:55 -070055public:
56 ResourceCache();
57 ~ResourceCache();
Romain Guy58ecc202012-09-07 11:58:36 -070058
59 /**
60 * When using these two methods, make sure to only invoke the *Locked()
61 * variants of increment/decrementRefcount(), recyle() and destructor()
62 */
63 void lock();
64 void unlock();
65
Chet Haase5a7e8282011-02-04 12:50:55 -080066 void incrementRefcount(SkPath* resource);
Chet Haase5c13d892010-10-08 08:37:55 -070067 void incrementRefcount(SkBitmap* resource);
Chet Haase5c13d892010-10-08 08:37:55 -070068 void incrementRefcount(SkiaShader* resource);
Chet Haasead93c2b2010-10-22 16:17:12 -070069 void incrementRefcount(SkiaColorFilter* resource);
Romain Guy58ecc202012-09-07 11:58:36 -070070
71 void incrementRefcountLocked(SkPath* resource);
72 void incrementRefcountLocked(SkBitmap* resource);
73 void incrementRefcountLocked(SkiaShader* resource);
74 void incrementRefcountLocked(SkiaColorFilter* resource);
75
Chet Haase5c13d892010-10-08 08:37:55 -070076 void decrementRefcount(SkBitmap* resource);
Chet Haase5a7e8282011-02-04 12:50:55 -080077 void decrementRefcount(SkPath* resource);
Chet Haase5c13d892010-10-08 08:37:55 -070078 void decrementRefcount(SkiaShader* resource);
Chet Haasead93c2b2010-10-22 16:17:12 -070079 void decrementRefcount(SkiaColorFilter* resource);
Romain Guy58ecc202012-09-07 11:58:36 -070080
81 void decrementRefcountLocked(SkBitmap* resource);
82 void decrementRefcountLocked(SkPath* resource);
83 void decrementRefcountLocked(SkiaShader* resource);
84 void decrementRefcountLocked(SkiaColorFilter* resource);
85
Chet Haase5a7e8282011-02-04 12:50:55 -080086 void destructor(SkPath* resource);
Chet Haase5c13d892010-10-08 08:37:55 -070087 void destructor(SkBitmap* resource);
Chet Haase5c13d892010-10-08 08:37:55 -070088 void destructor(SkiaShader* resource);
Chet Haasead93c2b2010-10-22 16:17:12 -070089 void destructor(SkiaColorFilter* resource);
Romain Guy58ecc202012-09-07 11:58:36 -070090
91 void destructorLocked(SkPath* resource);
92 void destructorLocked(SkBitmap* resource);
93 void destructorLocked(SkiaShader* resource);
94 void destructorLocked(SkiaColorFilter* resource);
95
96 void recycle(SkBitmap* resource);
97 void recycleLocked(SkBitmap* resource);
98
Chet Haase5c13d892010-10-08 08:37:55 -070099private:
100 void deleteResourceReference(void* resource, ResourceReference* ref);
Romain Guy58ecc202012-09-07 11:58:36 -0700101
Chet Haase5c13d892010-10-08 08:37:55 -0700102 void incrementRefcount(void* resource, ResourceType resourceType);
Romain Guy58ecc202012-09-07 11:58:36 -0700103 void incrementRefcountLocked(void* resource, ResourceType resourceType);
104
105 void decrementRefcount(void* resource);
106 void decrementRefcountLocked(void* resource);
107
Chet Haase5c13d892010-10-08 08:37:55 -0700108 void logCache();
Chet Haasee7d22952010-11-11 16:30:16 -0800109
110 /**
111 * Used to increment, decrement, and destroy. Incrementing is generally accessed on the UI
112 * thread, but destroying resources may be called from the GC thread, the finalizer thread,
113 * or a reference queue finalization thread.
114 */
115 mutable Mutex mLock;
Romain Guy58ecc202012-09-07 11:58:36 -0700116
117 KeyedVector<void*, ResourceReference*>* mCache;
Chet Haase5c13d892010-10-08 08:37:55 -0700118};
119
120}; // namespace uirenderer
121}; // namespace android
122
Romain Guy5b3b3522010-10-27 18:57:51 -0700123#endif // ANDROID_HWUI_RESOURCE_CACHE_H