blob: a332e49b761b86b30d9efca5d7f2dd41974dd982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* Copyright (C) 2007-2012 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#ifndef BU_CACHE_STORE_H
#define BU_CACHE_STORE_H
#include "bu/list.h"
namespace Bu
{
/**
* Handles I/O for data in the cache. This also assigns ID's to the newly
* created objects that are requested through this system.
*/
template<class keytype, class obtype>
class CacheStore
{
public:
CacheStore()
{
}
virtual ~CacheStore()
{
}
virtual obtype *load( const keytype &key )=0;
virtual void unload( obtype *pObj, const keytype &key )=0;
virtual keytype create( obtype *pSrc )=0;
virtual void sync()=0;
virtual void sync( obtype *pObj, const keytype &key )=0;
virtual void destroy( obtype *pObj, const keytype &key )=0;
virtual void destroy( const keytype &key )=0;
virtual bool has( const keytype &key )=0;
virtual Bu::List<keytype> getKeys() { return Bu::List<keytype>(); }
virtual int getSize() { return -1; }
private:
};
};
#endif
|