Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 1 | /* |
| 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 Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_HWUI_LAYER_CACHE_H |
| 18 | #define ANDROID_HWUI_LAYER_CACHE_H |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 19 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 20 | #include "Debug.h" |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 21 | #include "Layer.h" |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 22 | #include "utils/SortedList.h" |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 23 | |
| 24 | namespace android { |
| 25 | namespace uirenderer { |
| 26 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 27 | class RenderState; |
| 28 | |
Chris Craik | 07adacf | 2014-12-19 10:08:40 -0800 | [diff] [blame] | 29 | /////////////////////////////////////////////////////////////////////////////// |
| 30 | // Defines |
| 31 | /////////////////////////////////////////////////////////////////////////////// |
| 32 | |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 33 | #if DEBUG_LAYERS |
Chris Craik | 07adacf | 2014-12-19 10:08:40 -0800 | [diff] [blame] | 34 | #define LAYER_LOGD(...) ALOGD(__VA_ARGS__) |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 35 | #else |
Chris Craik | 07adacf | 2014-12-19 10:08:40 -0800 | [diff] [blame] | 36 | #define LAYER_LOGD(...) |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 37 | #endif |
| 38 | |
| 39 | /////////////////////////////////////////////////////////////////////////////// |
| 40 | // Cache |
| 41 | /////////////////////////////////////////////////////////////////////////////// |
| 42 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 43 | class LayerCache { |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 44 | public: |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 45 | LayerCache(); |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 46 | ~LayerCache(); |
| 47 | |
| 48 | /** |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 49 | * Returns a layer large enough for the specified dimensions. If no suitable |
| 50 | * layer can be found, a new one is created and returned. If creating a new |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 51 | * layer fails, NULL is returned. |
| 52 | * |
| 53 | * When a layer is obtained from the cache, it is removed and the total |
| 54 | * size of the cache goes down. |
| 55 | * |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 56 | * @param width The desired width of the layer |
Romain Guy | 8d4aeb7 | 2013-02-12 16:08:55 -0800 | [diff] [blame] | 57 | * @param height The desired height of the layer |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 58 | */ |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 59 | Layer* get(RenderState& renderState, const uint32_t width, const uint32_t height); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 60 | |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 61 | /** |
| 62 | * Adds the layer to the cache. The layer will not be added if there is |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 63 | * not enough space available. Adding a layer can cause other layers to |
| 64 | * be removed from the cache. |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 65 | * |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 66 | * @param layer The layer to add to the cache |
| 67 | * |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 68 | * @return True if the layer was added, false otherwise. |
| 69 | */ |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 70 | bool put(Layer* layer); |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 71 | /** |
| 72 | * Clears the cache. This causes all layers to be deleted. |
| 73 | */ |
| 74 | void clear(); |
| 75 | |
| 76 | /** |
| 77 | * Sets the maximum size of the cache in bytes. |
| 78 | */ |
| 79 | void setMaxSize(uint32_t maxSize); |
| 80 | /** |
| 81 | * Returns the maximum size of the cache in bytes. |
| 82 | */ |
| 83 | uint32_t getMaxSize(); |
| 84 | /** |
| 85 | * Returns the current size of the cache in bytes. |
| 86 | */ |
| 87 | uint32_t getSize(); |
| 88 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 89 | size_t getCount(); |
| 90 | |
Romain Guy | eea6069 | 2011-07-26 20:35:55 -0700 | [diff] [blame] | 91 | /** |
| 92 | * Prints out the content of the cache. |
| 93 | */ |
| 94 | void dump(); |
| 95 | |
Romain Guy | 8d4aeb7 | 2013-02-12 16:08:55 -0800 | [diff] [blame] | 96 | private: |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 97 | struct LayerEntry { |
| 98 | LayerEntry(): |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 99 | mLayer(nullptr), mWidth(0), mHeight(0) { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 102 | LayerEntry(const uint32_t layerWidth, const uint32_t layerHeight): mLayer(nullptr) { |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 103 | mWidth = Layer::computeIdealWidth(layerWidth); |
| 104 | mHeight = Layer::computeIdealHeight(layerHeight); |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 107 | LayerEntry(Layer* layer): |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 108 | mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Romain Guy | e3a9b24 | 2013-01-08 11:15:30 -0800 | [diff] [blame] | 111 | static int compare(const LayerEntry& lhs, const LayerEntry& rhs); |
| 112 | |
| 113 | bool operator==(const LayerEntry& other) const { |
| 114 | return compare(*this, other) == 0; |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Romain Guy | e3a9b24 | 2013-01-08 11:15:30 -0800 | [diff] [blame] | 117 | bool operator!=(const LayerEntry& other) const { |
| 118 | return compare(*this, other) != 0; |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Romain Guy | 8d4aeb7 | 2013-02-12 16:08:55 -0800 | [diff] [blame] | 121 | friend inline int strictly_order_type(const LayerEntry& lhs, const LayerEntry& rhs) { |
| 122 | return LayerEntry::compare(lhs, rhs) < 0; |
| 123 | } |
| 124 | |
| 125 | friend inline int compare_type(const LayerEntry& lhs, const LayerEntry& rhs) { |
| 126 | return LayerEntry::compare(lhs, rhs); |
| 127 | } |
| 128 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 129 | Layer* mLayer; |
| 130 | uint32_t mWidth; |
| 131 | uint32_t mHeight; |
| 132 | }; // struct LayerEntry |
| 133 | |
Romain Guy | e3a9b24 | 2013-01-08 11:15:30 -0800 | [diff] [blame] | 134 | void deleteLayer(Layer* layer); |
| 135 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 136 | SortedList<LayerEntry> mCache; |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 137 | |
| 138 | uint32_t mSize; |
| 139 | uint32_t mMaxSize; |
| 140 | }; // class LayerCache |
| 141 | |
| 142 | }; // namespace uirenderer |
| 143 | }; // namespace android |
| 144 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 145 | #endif // ANDROID_HWUI_LAYER_CACHE_H |