blob: adb2a13d64d475894e81b40f87deef2a18ca6fcc [file] [log] [blame]
/*
** 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.
*/
#include "egl_cache.h"
#include "egl_display.h"
#include "egl_impl.h"
#include "egldefs.h"
// Cache size limits.
static const size_t maxKeySize = 1024;
static const size_t maxValueSize = 4096;
static const size_t maxTotalSize = 64 * 1024;
// ----------------------------------------------------------------------------
namespace android {
// ----------------------------------------------------------------------------
#define BC_EXT_STR "EGL_ANDROID_blob_cache"
//
// Callback functions passed to EGL.
//
static void setBlob(const void* key, EGLsizei keySize, const void* value,
EGLsizei valueSize) {
egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
}
static EGLsizei getBlob(const void* key, EGLsizei keySize, void* value,
EGLsizei valueSize) {
return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
}
//
// egl_cache_t definition
//
egl_cache_t::egl_cache_t() :
mInitialized(false),
mBlobCache(NULL) {
}
egl_cache_t::~egl_cache_t() {
}
egl_cache_t* egl_cache_t::get() {
static egl_cache_t theCache;
return &theCache;
}
void egl_cache_t::initialize(egl_display_t *display) {
Mutex::Autolock lock(mMutex);
for (int i = 0; i < IMPL_NUM_IMPLEMENTATIONS; i++) {
egl_connection_t* const cnx = &gEGLImpl[i];
if (cnx->dso && cnx->major >= 0 && cnx->minor >= 0) {
const char* exts = display->disp[i].queryString.extensions;
size_t bcExtLen = strlen(BC_EXT_STR);
size_t extsLen = strlen(exts);
bool equal = !strcmp(BC_EXT_STR, exts);
bool atStart = !strncmp(BC_EXT_STR " ", exts, bcExtLen+1);
bool atEnd = (bcExtLen+1) < extsLen &&
!strcmp(" " BC_EXT_STR, exts + extsLen - (bcExtLen+1));
bool inMiddle = strstr(" " BC_EXT_STR " ", exts);
if (equal || atStart || atEnd || inMiddle) {
PFNEGLSETBLOBCACHEFUNCSPROC eglSetBlobCacheFuncs;
eglSetBlobCacheFuncs =
reinterpret_cast<PFNEGLSETBLOBCACHEFUNCSPROC>(
cnx->egl.eglGetProcAddress("eglSetBlobCacheFuncs"));
if (eglSetBlobCacheFuncs == NULL) {
LOGE("EGL_ANDROID_blob_cache advertised by display %d, "
"but unable to get eglSetBlobCacheFuncs", i);
continue;
}
eglSetBlobCacheFuncs(display->disp[i].dpy, android::setBlob,
android::getBlob);
EGLint err = cnx->egl.eglGetError();
if (err != EGL_SUCCESS) {
LOGE("eglSetBlobCacheFuncs resulted in an error: %#x",
err);
}
}
}
}
mInitialized = true;
}
void egl_cache_t::terminate() {
Mutex::Autolock lock(mMutex);
if (mBlobCache != NULL) {
saveBlobCacheLocked();
mBlobCache = NULL;
}
mInitialized = false;
}
void egl_cache_t::setBlob(const void* key, EGLsizei keySize, const void* value,
EGLsizei valueSize) {
Mutex::Autolock lock(mMutex);
if (keySize < 0 || valueSize < 0) {
LOGW("EGL_ANDROID_blob_cache set: negative sizes are not allowed");
return;
}
if (mInitialized) {
sp<BlobCache> bc = getBlobCacheLocked();
bc->set(key, keySize, value, valueSize);
}
}
EGLsizei egl_cache_t::getBlob(const void* key, EGLsizei keySize, void* value,
EGLsizei valueSize) {
Mutex::Autolock lock(mMutex);
if (keySize < 0 || valueSize < 0) {
LOGW("EGL_ANDROID_blob_cache set: negative sizes are not allowed");
return 0;
}
if (mInitialized) {
sp<BlobCache> bc = getBlobCacheLocked();
return bc->get(key, keySize, value, valueSize);
}
return 0;
}
sp<BlobCache> egl_cache_t::getBlobCacheLocked() {
if (mBlobCache == NULL) {
mBlobCache = new BlobCache(maxKeySize, maxValueSize, maxTotalSize);
loadBlobCacheLocked();
}
return mBlobCache;
}
void egl_cache_t::saveBlobCacheLocked() {
}
void egl_cache_t::loadBlobCacheLocked() {
}
// ----------------------------------------------------------------------------
}; // namespace android
// ----------------------------------------------------------------------------