2010-07-06 11:39:32 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2010-10-27 18:57:51 -07:00
|
|
|
#ifndef ANDROID_HWUI_LAYER_CACHE_H
|
|
|
|
#define ANDROID_HWUI_LAYER_CACHE_H
|
2010-07-06 11:39:32 -07:00
|
|
|
|
2010-11-10 11:59:15 -08:00
|
|
|
#include "Debug.h"
|
2010-07-06 11:39:32 -07:00
|
|
|
#include "Layer.h"
|
2011-08-22 14:01:34 -07:00
|
|
|
#include "Properties.h"
|
2010-10-08 15:49:53 -07:00
|
|
|
#include "utils/SortedList.h"
|
2010-07-06 11:39:32 -07:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace uirenderer {
|
|
|
|
|
2010-07-08 11:45:51 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Defines
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Debug
|
|
|
|
#if DEBUG_LAYERS
|
2011-12-20 16:23:08 +00:00
|
|
|
#define LAYER_LOGD(...) ALOGD(__VA_ARGS__)
|
2010-07-08 11:45:51 -07:00
|
|
|
#else
|
|
|
|
#define LAYER_LOGD(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Cache
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-10-08 15:49:53 -07:00
|
|
|
class LayerCache {
|
2010-07-06 11:39:32 -07:00
|
|
|
public:
|
2010-08-23 21:05:08 -07:00
|
|
|
LayerCache();
|
2010-07-06 11:39:32 -07:00
|
|
|
~LayerCache();
|
|
|
|
|
|
|
|
/**
|
2010-10-08 15:49:53 -07:00
|
|
|
* Returns a layer large enough for the specified dimensions. If no suitable
|
|
|
|
* layer can be found, a new one is created and returned. If creating a new
|
2010-07-08 11:45:51 -07:00
|
|
|
* layer fails, NULL is returned.
|
|
|
|
*
|
|
|
|
* When a layer is obtained from the cache, it is removed and the total
|
|
|
|
* size of the cache goes down.
|
|
|
|
*
|
2010-10-08 15:49:53 -07:00
|
|
|
* @param width The desired width of the layer
|
|
|
|
* @param width The desired height of the layer
|
2010-07-06 11:39:32 -07:00
|
|
|
*/
|
2010-10-08 15:49:53 -07:00
|
|
|
Layer* get(const uint32_t width, const uint32_t height);
|
2010-10-05 18:14:38 -07:00
|
|
|
|
2010-07-06 11:39:32 -07:00
|
|
|
/**
|
|
|
|
* Adds the layer to the cache. The layer will not be added if there is
|
2010-10-08 15:49:53 -07:00
|
|
|
* not enough space available. Adding a layer can cause other layers to
|
|
|
|
* be removed from the cache.
|
2010-07-06 11:39:32 -07:00
|
|
|
*
|
2010-07-08 11:45:51 -07:00
|
|
|
* @param layer The layer to add to the cache
|
|
|
|
*
|
2010-07-06 11:39:32 -07:00
|
|
|
* @return True if the layer was added, false otherwise.
|
|
|
|
*/
|
2010-10-08 15:49:53 -07:00
|
|
|
bool put(Layer* layer);
|
2010-07-06 11:39:32 -07:00
|
|
|
/**
|
|
|
|
* Clears the cache. This causes all layers to be deleted.
|
|
|
|
*/
|
|
|
|
void clear();
|
2011-02-02 20:28:09 -08:00
|
|
|
/**
|
|
|
|
* Resize the specified layer if needed.
|
|
|
|
*
|
|
|
|
* @param layer The layer to resize
|
|
|
|
* @param width The new width of the layer
|
|
|
|
* @param height The new height of the layer
|
|
|
|
*
|
|
|
|
* @return True if the layer was resized or nothing happened, false if
|
|
|
|
* a failure occurred during the resizing operation
|
|
|
|
*/
|
|
|
|
bool resize(Layer* layer, const uint32_t width, const uint32_t height);
|
2010-07-06 11:39:32 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the maximum size of the cache in bytes.
|
|
|
|
*/
|
|
|
|
void setMaxSize(uint32_t maxSize);
|
|
|
|
/**
|
|
|
|
* Returns the maximum size of the cache in bytes.
|
|
|
|
*/
|
|
|
|
uint32_t getMaxSize();
|
|
|
|
/**
|
|
|
|
* Returns the current size of the cache in bytes.
|
|
|
|
*/
|
|
|
|
uint32_t getSize();
|
|
|
|
|
2011-07-26 20:35:55 -07:00
|
|
|
/**
|
|
|
|
* Prints out the content of the cache.
|
|
|
|
*/
|
|
|
|
void dump();
|
|
|
|
|
2010-07-06 11:39:32 -07:00
|
|
|
private:
|
|
|
|
void deleteLayer(Layer* layer);
|
|
|
|
|
2010-10-08 15:49:53 -07:00
|
|
|
struct LayerEntry {
|
|
|
|
LayerEntry():
|
|
|
|
mLayer(NULL), mWidth(0), mHeight(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
LayerEntry(const uint32_t layerWidth, const uint32_t layerHeight): mLayer(NULL) {
|
|
|
|
mWidth = uint32_t(ceilf(layerWidth / float(LAYER_SIZE)) * LAYER_SIZE);
|
|
|
|
mHeight = uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
LayerEntry(Layer* layer):
|
2011-07-07 20:50:11 -07:00
|
|
|
mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
|
2010-10-08 15:49:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const LayerEntry& rhs) const {
|
|
|
|
if (mWidth == rhs.mWidth) {
|
|
|
|
return mHeight < rhs.mHeight;
|
|
|
|
}
|
|
|
|
return mWidth < rhs.mWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const LayerEntry& rhs) const {
|
|
|
|
return mWidth == rhs.mWidth && mHeight == rhs.mHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
Layer* mLayer;
|
|
|
|
uint32_t mWidth;
|
|
|
|
uint32_t mHeight;
|
|
|
|
}; // struct LayerEntry
|
|
|
|
|
|
|
|
SortedList<LayerEntry> mCache;
|
2010-07-06 11:39:32 -07:00
|
|
|
|
|
|
|
uint32_t mSize;
|
|
|
|
uint32_t mMaxSize;
|
|
|
|
}; // class LayerCache
|
|
|
|
|
|
|
|
}; // namespace uirenderer
|
|
|
|
}; // namespace android
|
|
|
|
|
2010-10-27 18:57:51 -07:00
|
|
|
#endif // ANDROID_HWUI_LAYER_CACHE_H
|