aboutsummaryrefslogtreecommitdiff
path: root/src/tests/cache.cpp
blob: 7fe660a0416ac57db2f46f135380c426d867eb44 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
 * Copyright (C) 2007-2010 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.
 */

#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include <unistd.h>

#include "bu/cache.h"
#include "bu/file.h"
#include "bu/fstring.h"
#include "bu/cachecalc.h"

class Bob
{
public:
	Bob()
	{
		TRACE();
	}

	Bob( int i ) :
		iInt( i )
	{
		TRACE( i );
	}

	virtual ~Bob()
	{
		TRACE();
	}

	void setInt( int i )
	{
		TRACE( i );
		iInt = i;
	}
	
	long getKey() const
	{
		TRACE( i );
		return iInt;
	}

	int getInt()
	{
		return iInt;
	}

	int iInt;
};

namespace Bu {
	template<>
	void __tracer_format<Bob*>( Bob* const &c )
	{
		printf("%08X=%d", (uint32_t)c, c->getInt() );
	}
}

class BobStore : public Bu::CacheStore<long, Bob>
{
public:
	BobStore() :
		cLastId( 0 )
	{
		TRACE();
		if( access( "bobcache/last", R_OK|W_OK ) )
		{
			mkdir("bobcache", 0755 );
			Bu::File f("bobcache/last", Bu::File::Write|Bu::File::Create );
			f.write("0", 1);
			printf("Initializing cache:  %s\n", strerror( errno ) );
		}
		else
		{
			cLastId = readNum("bobcache/last");
		}
	}

	~BobStore()
	{
		TRACE();
		writeNum("bobcache/last", cLastId );
	}

	long readNum( const Bu::FString &sFile )
	{
		TRACE( sFile );
		Bu::File f( sFile, Bu::File::Read );
		char buf[80];
		buf[f.read( buf, 80 )] = '\0';
		return strtol( buf, NULL, 0 );
	}

	void writeNum( const Bu::FString &sFile, long num )
	{
		TRACE( sFile, num );
		Bu::File f( sFile,
			Bu::File::Write|Bu::File::Create|Bu::File::Truncate
			);
		Bu::FString s;
		s.format("%d", num );
		f.write( s );
	}

	virtual void sync( Bob *, const long & )
	{
	}

	virtual void sync()
	{
	}

	virtual bool has( const long & )
	{
		return true;
	}

	virtual Bob *load( const long &key )
	{
		TRACE( key );
		Bu::FString sDest;
		sDest.format("bobcache/%d", key );
		return  new Bob( readNum( sDest ) );
	}

	virtual void unload( Bob *pObj, const long &key )
	{
		TRACE( pObj, key );
		Bu::FString sDest;
		sDest.format("bobcache/%d", key );
		writeNum( sDest, pObj->getInt() );
		delete pObj;
	}

	virtual long create( Bob *rSrc )
	{
		TRACE( rSrc );
		long id = ++cLastId;
		Bu::FString sDest;
		sDest.format("bobcache/%d", id );
		writeNum( sDest, rSrc->getInt() );
		return id;
	}

	virtual void destroy( Bob *pObj, const long &key )
	{
		TRACE( pObj, key );
		Bu::FString sDest;
		sDest.format("bobcache/%d", key );
		if( !access( sDest.getStr(), F_OK ) )
			unlink( sDest.getStr() );
		delete pObj;
	}

	virtual void destroy( const long &key )
	{
		TRACE( pObj, key );
		Bu::FString sDest;
		sDest.format("bobcache/%d", key );
		if( !access( sDest.getStr(), F_OK ) )
			unlink( sDest.getStr() );
	}

private:
	long cLastId;
};

class BobCalc : public Bu::CacheCalc<long, Bob>
{
public:
	BobCalc()
	{
	}

	virtual ~BobCalc()
	{
	}

	virtual void onLoad( Bob *, const long & )
	{
	}

	virtual void onUnload( Bob *, const long & )
	{
	}

	virtual void onDestroy( Bob *, const long & )
	{
	}

	virtual void onDestroy( const long & )
	{
	}

	virtual bool shouldSync( Bob *, const long &, time_t )
	{
		return false;
	}

private:

};

int main( int argc, char *argv[] )
{
	TRACE( argc, argv );
	typedef Bu::Cache<long, Bob> BobCache;
	typedef BobCache::Ptr BobPtr;

	if( argc < 3 )
	{
		printf("Try: %s [crudl] [<id/value>]\n\n", argv[0] );
		return 0;
	}

	BobCache cBob( new BobCalc(), new BobStore() );
	switch( argv[1][0] )
	{
		case 'c':
			{
				BobCache::Ptr pBob = cBob.insert(
					new Bob( strtol( argv[2], NULL, 0 ) )
					);
				printf("Key = %ld\n", pBob.getKey() );
			}
			return 0;

		case 'r':
			{
				BobCache::Ptr pBob = cBob.get( strtol( argv[2], NULL, 0 ) );
				printf("Value = %d\n", pBob->getInt() );
			}
			return 0;

		case 'u':
			{
				BobCache::Ptr pBob = cBob.get( strtol( argv[2], NULL, 0 ) );
				pBob->setInt( strtol( argv[3], NULL, 0 ) );
			}
			return 0;

		case 'd':
			{
				cBob.erase( strtol( argv[2], NULL, 0 ) );
			}
			return 0;

		case 'l':
			{
				BobCache::Ptr pBob = cBob.getLazy( strtol( argv[2], NULL, 0 ) );
				printf("isBound:  %s\n", pBob.isBound()?"yes":"no");
				printf("Value = %d\n", pBob->getInt() );
				printf("isBound:  %s\n", pBob.isBound()?"yes":"no");
			}
			return 0;
	}

}