/* * Copyright 2019 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. */ #pragma once #include #include #include #include #include #include #include #include #include #include #define BUFFER_CACHE_MAX_SIZE 64 namespace android { class ClientCache : public Singleton { public: ClientCache(); bool add(const client_cache_t& cacheId, const sp& buffer); void erase(const client_cache_t& cacheId); sp get(const client_cache_t& cacheId); void removeProcess(const wp& processToken); class ErasedRecipient : public virtual RefBase { public: virtual void bufferErased(const client_cache_t& clientCacheId) = 0; }; bool registerErasedRecipient(const client_cache_t& cacheId, const wp& recipient); void unregisterErasedRecipient(const client_cache_t& cacheId, const wp& recipient); private: std::mutex mMutex; struct ClientCacheBuffer { sp buffer; std::set> recipients; }; std::map /*caching process*/, std::pair /*strong ref to caching process*/, std::unordered_map>> mBuffers GUARDED_BY(mMutex); class CacheDeathRecipient : public IBinder::DeathRecipient { public: void binderDied(const wp& who) override; }; sp mDeathRecipient; bool getBuffer(const client_cache_t& cacheId, ClientCacheBuffer** outClientCacheBuffer) REQUIRES(mMutex); }; }; // namespace android