2011-11-04 00:42:43 +00:00
|
|
|
/*
|
|
|
|
** Copyright 2011, 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.
|
|
|
|
*/
|
|
|
|
|
2011-11-06 22:14:33 +00:00
|
|
|
#ifndef ANDROID_EGL_CACHE_H
|
|
|
|
#define ANDROID_EGL_CACHE_H
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
|
|
|
|
#include <utils/BlobCache.h>
|
2011-11-08 01:03:54 +00:00
|
|
|
#include <utils/String8.h>
|
2011-11-06 22:14:33 +00:00
|
|
|
#include <utils/StrongPointer.h>
|
|
|
|
|
2011-11-04 00:42:43 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace android {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class egl_display_t;
|
|
|
|
|
2011-11-08 01:03:54 +00:00
|
|
|
class EGLAPI egl_cache_t {
|
2011-11-04 00:42:43 +00:00
|
|
|
public:
|
|
|
|
|
2011-11-06 22:14:33 +00:00
|
|
|
// get returns a pointer to the singleton egl_cache_t object. This
|
|
|
|
// singleton object will never be destroyed.
|
2011-11-04 00:42:43 +00:00
|
|
|
static egl_cache_t* get();
|
|
|
|
|
2011-11-06 22:14:33 +00:00
|
|
|
// initialize puts the egl_cache_t into an initialized state, such that it
|
|
|
|
// is able to insert and retrieve entries from the cache. This should be
|
|
|
|
// called when EGL is initialized. When not in the initialized state the
|
|
|
|
// getBlob and setBlob methods will return without performing any cache
|
|
|
|
// operations.
|
2011-11-04 00:42:43 +00:00
|
|
|
void initialize(egl_display_t* display);
|
2011-11-06 22:14:33 +00:00
|
|
|
|
|
|
|
// terminate puts the egl_cache_t back into the uninitialized state. When
|
|
|
|
// in this state the getBlob and setBlob methods will return without
|
|
|
|
// performing any cache operations.
|
|
|
|
void terminate();
|
|
|
|
|
|
|
|
// setBlob attempts to insert a new key/value blob pair into the cache.
|
|
|
|
// This will be called by the hardware vendor's EGL implementation via the
|
|
|
|
// EGL_ANDROID_blob_cache extension.
|
2011-11-09 23:35:34 +00:00
|
|
|
void setBlob(const void* key, EGLsizeiANDROID keySize, const void* value,
|
|
|
|
EGLsizeiANDROID valueSize);
|
2011-11-06 22:14:33 +00:00
|
|
|
|
|
|
|
// getBlob attempts to retrieve the value blob associated with a given key
|
|
|
|
// blob from cache. This will be called by the hardware vendor's EGL
|
|
|
|
// implementation via the EGL_ANDROID_blob_cache extension.
|
2011-11-09 23:35:34 +00:00
|
|
|
EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
|
|
|
|
void* value, EGLsizeiANDROID valueSize);
|
2011-11-06 22:14:33 +00:00
|
|
|
|
2011-11-08 01:03:54 +00:00
|
|
|
// setCacheFilename sets the name of the file that should be used to store
|
|
|
|
// cache contents from one program invocation to another.
|
|
|
|
void setCacheFilename(const char* filename);
|
|
|
|
|
2011-11-06 22:14:33 +00:00
|
|
|
private:
|
|
|
|
// Creation and (the lack of) destruction is handled internally.
|
|
|
|
egl_cache_t();
|
|
|
|
~egl_cache_t();
|
|
|
|
|
|
|
|
// Copying is disallowed.
|
|
|
|
egl_cache_t(const egl_cache_t&); // not implemented
|
|
|
|
void operator=(const egl_cache_t&); // not implemented
|
|
|
|
|
|
|
|
// getBlobCacheLocked returns the BlobCache object being used to store the
|
|
|
|
// key/value blob pairs. If the BlobCache object has not yet been created,
|
|
|
|
// this will do so, loading the serialized cache contents from disk if
|
|
|
|
// possible.
|
|
|
|
sp<BlobCache> getBlobCacheLocked();
|
|
|
|
|
|
|
|
// saveBlobCache attempts to save the current contents of mBlobCache to
|
|
|
|
// disk.
|
|
|
|
void saveBlobCacheLocked();
|
|
|
|
|
|
|
|
// loadBlobCache attempts to load the saved cache contents from disk into
|
|
|
|
// mBlobCache.
|
|
|
|
void loadBlobCacheLocked();
|
|
|
|
|
|
|
|
// mInitialized indicates whether the egl_cache_t is in the initialized
|
|
|
|
// state. It is initialized to false at construction time, and gets set to
|
|
|
|
// true when initialize is called. It is set back to false when terminate
|
|
|
|
// is called. When in this state, the cache behaves as normal. When not,
|
|
|
|
// the getBlob and setBlob methods will return without performing any cache
|
|
|
|
// operations.
|
|
|
|
bool mInitialized;
|
|
|
|
|
|
|
|
// mBlobCache is the cache in which the key/value blob pairs are stored. It
|
|
|
|
// is initially NULL, and will be initialized by getBlobCacheLocked the
|
|
|
|
// first time it's needed.
|
|
|
|
sp<BlobCache> mBlobCache;
|
|
|
|
|
2011-11-08 01:03:54 +00:00
|
|
|
// mFilename is the name of the file for storing cache contents in between
|
|
|
|
// program invocations. It is initialized to an empty string at
|
|
|
|
// construction time, and can be set with the setCacheFilename method. An
|
|
|
|
// empty string indicates that the cache should not be saved to or restored
|
|
|
|
// from disk.
|
|
|
|
String8 mFilename;
|
|
|
|
|
2011-11-09 01:59:36 +00:00
|
|
|
// mSavePending indicates whether or not a deferred save operation is
|
|
|
|
// pending. Each time a key/value pair is inserted into the cache via
|
|
|
|
// setBlob, a deferred save is initiated if one is not already pending.
|
|
|
|
// This will wait some amount of time and then trigger a save of the cache
|
|
|
|
// contents to disk.
|
|
|
|
bool mSavePending;
|
|
|
|
|
2011-11-06 22:14:33 +00:00
|
|
|
// mMutex is the mutex used to prevent concurrent access to the member
|
|
|
|
// variables. It must be locked whenever the member variables are accessed.
|
|
|
|
mutable Mutex mMutex;
|
2011-11-08 01:03:54 +00:00
|
|
|
|
|
|
|
// sCache is the singleton egl_cache_t object.
|
|
|
|
static egl_cache_t sCache;
|
2011-11-04 00:42:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
}; // namespace android
|
|
|
|
// ----------------------------------------------------------------------------
|
2011-11-06 22:14:33 +00:00
|
|
|
|
|
|
|
#endif // ANDROID_EGL_CACHE_H
|