blob: 52f2bccd4b07494e9142a41187e11ea1ef54c883 [file] [log] [blame]
/**
* Copyright 2010 Google Inc.
*
* 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.
*/
// Author: jmarantz@google.com (Joshua Marantz)
#ifndef NET_INSTAWEB_UTIL_PUBLIC_THREADSAFE_CACHE_H_
#define NET_INSTAWEB_UTIL_PUBLIC_THREADSAFE_CACHE_H_
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "net/instaweb/util/public/cache_interface.h"
#include <string>
namespace net_instaweb {
class MessageHandler;
class Writer;
class AbstractMutex;
// Composes a cache with a Mutex to form a threadsafe cache.
class ThreadsafeCache : public CacheInterface {
public:
// Takes ownership of the cache that's passed in.
ThreadsafeCache(CacheInterface* cache, AbstractMutex* mutex)
: cache_(cache),
mutex_(mutex) {
}
virtual ~ThreadsafeCache();
virtual bool Get(const std::string& key, SharedString* value);
virtual void Put(const std::string& key, SharedString* value);
virtual void Delete(const std::string& key);
virtual KeyState Query(const std::string& key);
private:
scoped_ptr<CacheInterface> cache_;
AbstractMutex* mutex_;
DISALLOW_COPY_AND_ASSIGN(ThreadsafeCache);
};
} // namespace net_instaweb
#endif // NET_INSTAWEB_UTIL_PUBLIC_THREADSAFE_CACHE_H_