2013-04-16 23:57:20 -04:00
|
|
|
#include "includes.h"
|
2013-04-16 23:57:18 -04:00
|
|
|
#include "test.h"
|
|
|
|
|
2013-04-16 23:57:20 -04:00
|
|
|
static void
|
|
|
|
flush (CACHEFILE cf __attribute__((__unused__)),
|
2013-04-16 23:59:02 -04:00
|
|
|
int UU(fd),
|
2013-04-16 23:57:20 -04:00
|
|
|
CACHEKEY key __attribute__((__unused__)),
|
|
|
|
void *v __attribute__((__unused__)),
|
|
|
|
void *extraargs __attribute__((__unused__)),
|
|
|
|
long size __attribute__((__unused__)),
|
|
|
|
BOOL write_me __attribute__((__unused__)),
|
|
|
|
BOOL keep_me __attribute__((__unused__)),
|
2013-04-16 23:57:47 -04:00
|
|
|
BOOL for_checkpoint __attribute__((__unused__))
|
2013-04-16 23:57:20 -04:00
|
|
|
) {
|
2013-04-16 23:57:18 -04:00
|
|
|
assert((long) key.b == size);
|
2013-04-16 23:57:33 -04:00
|
|
|
if (!keep_me) toku_free(v);
|
2013-04-16 23:57:18 -04:00
|
|
|
}
|
|
|
|
|
2013-04-16 23:57:20 -04:00
|
|
|
static int
|
2013-04-16 23:59:25 -04:00
|
|
|
fetch (CACHEFILE cf, int UU(fd), CACHEKEY key, u_int32_t hash, void **vptr, long *sizep, int *dirtyp, void *extra) {
|
2013-04-16 23:58:01 -04:00
|
|
|
cf = cf; hash = hash; extra = extra;
|
2013-04-16 23:57:18 -04:00
|
|
|
*sizep = (long) key.b;
|
2013-04-16 23:57:33 -04:00
|
|
|
*vptr = toku_malloc(*sizep);
|
2013-04-16 23:59:25 -04:00
|
|
|
*dirtyp = 0;
|
2013-04-16 23:57:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-04-16 23:57:20 -04:00
|
|
|
static int
|
|
|
|
fetch_error (CACHEFILE cf __attribute__((__unused__)),
|
2013-04-16 23:59:02 -04:00
|
|
|
int UU(fd),
|
2013-04-16 23:57:20 -04:00
|
|
|
CACHEKEY key __attribute__((__unused__)),
|
|
|
|
u_int32_t fullhash __attribute__((__unused__)),
|
|
|
|
void **value __attribute__((__unused__)),
|
|
|
|
long *sizep __attribute__((__unused__)),
|
2013-04-16 23:59:25 -04:00
|
|
|
int *dirtyp __attribute__((__unused__)),
|
2013-04-16 23:58:01 -04:00
|
|
|
void*extraargs __attribute__((__unused__))
|
2013-04-16 23:57:20 -04:00
|
|
|
) {
|
2013-04-16 23:57:18 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-04-16 23:59:40 -04:00
|
|
|
static int
|
|
|
|
pe_callback (
|
|
|
|
void *brtnode_pv __attribute__((__unused__)),
|
|
|
|
long bytes_to_free __attribute__((__unused__)),
|
|
|
|
long* bytes_freed,
|
|
|
|
void* extraargs __attribute__((__unused__))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
*bytes_freed = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-04-16 23:59:41 -04:00
|
|
|
static BOOL pf_req_callback(void* UU(brtnode_pv), void* UU(read_extraargs)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-04-16 23:59:41 -04:00
|
|
|
static int pf_callback(void* UU(brtnode_pv), void* UU(read_extraargs), int UU(fd), long* UU(sizep)) {
|
2013-04-16 23:59:41 -04:00
|
|
|
assert(FALSE);
|
|
|
|
}
|
2013-04-16 23:59:40 -04:00
|
|
|
|
|
|
|
|
2013-04-16 23:57:20 -04:00
|
|
|
static void
|
|
|
|
cachetable_getandpin_test (int n) {
|
2013-04-16 23:57:18 -04:00
|
|
|
const int test_limit = 1024*1024;
|
|
|
|
int r;
|
|
|
|
CACHETABLE ct;
|
|
|
|
r = toku_create_cachetable(&ct, test_limit, ZERO_LSN, NULL_LOGGER); assert(r == 0);
|
|
|
|
char fname1[] = __FILE__ "test_getandpin.dat";
|
2013-04-16 23:57:47 -04:00
|
|
|
unlink(fname1);
|
2013-04-16 23:57:18 -04:00
|
|
|
CACHEFILE f1;
|
2013-04-16 23:59:03 -04:00
|
|
|
r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0);
|
2013-04-16 23:57:18 -04:00
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// test get_and_pin fails
|
|
|
|
for (i=1; i<=n; i++) {
|
|
|
|
u_int32_t hi;
|
|
|
|
hi = toku_cachetable_hash(f1, make_blocknum(i));
|
|
|
|
void *v; long size;
|
2013-04-16 23:59:41 -04:00
|
|
|
r = toku_cachetable_get_and_pin(f1, make_blocknum(i), hi, &v, &size, flush, fetch_error, pe_callback, pf_req_callback, pf_callback, 0, 0);
|
2013-04-16 23:57:18 -04:00
|
|
|
assert(r == -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// test get_and_pin size
|
|
|
|
for (i=1; i<=n; i++) {
|
|
|
|
u_int32_t hi;
|
|
|
|
hi = toku_cachetable_hash(f1, make_blocknum(i));
|
|
|
|
void *v; long size;
|
2013-04-16 23:59:41 -04:00
|
|
|
r = toku_cachetable_get_and_pin(f1, make_blocknum(i), hi, &v, &size, flush, fetch, pe_callback, pf_req_callback, pf_callback, 0, 0);
|
2013-04-16 23:57:18 -04:00
|
|
|
assert(r == 0);
|
|
|
|
assert(size == i);
|
|
|
|
|
|
|
|
r = toku_cachetable_unpin(f1, make_blocknum(i), hi, CACHETABLE_CLEAN, i);
|
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
toku_cachetable_verify(ct);
|
|
|
|
|
2013-04-16 23:58:06 -04:00
|
|
|
r = toku_cachefile_close(&f1, 0, FALSE, ZERO_LSN); assert(r == 0 && f1 == 0);
|
2013-04-16 23:57:18 -04:00
|
|
|
r = toku_cachetable_close(&ct); assert(r == 0 && ct == 0);
|
|
|
|
}
|
|
|
|
|
2013-04-16 23:57:32 -04:00
|
|
|
int
|
|
|
|
test_main(int argc, const char *argv[]) {
|
2013-04-16 23:57:20 -04:00
|
|
|
default_parse_args(argc, argv);
|
2013-04-16 23:57:18 -04:00
|
|
|
cachetable_getandpin_test(8);
|
|
|
|
return 0;
|
|
|
|
}
|