2013-04-17 00:00:36 -04:00
|
|
|
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
// vim: expandtab:ts=8:sw=4:softtabstop=4:
|
2013-04-16 23:57:41 -04:00
|
|
|
|
|
|
|
// verify that closing the cachetable with an in progress prefetch works
|
2013-04-16 23:59:44 -04:00
|
|
|
#ident "$Id$"
|
|
|
|
#ident "Copyright (c) 2007-2011 Tokutek Inc. All rights reserved."
|
2013-04-16 23:57:41 -04:00
|
|
|
#include "includes.h"
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
flush (CACHEFILE f __attribute__((__unused__)),
|
2013-04-16 23:59:02 -04:00
|
|
|
int UU(fd),
|
2013-04-16 23:57:41 -04:00
|
|
|
CACHEKEY k __attribute__((__unused__)),
|
|
|
|
void *v __attribute__((__unused__)),
|
2013-04-17 00:00:13 -04:00
|
|
|
void** UU(dd),
|
2013-04-16 23:57:41 -04:00
|
|
|
void *e __attribute__((__unused__)),
|
2013-04-16 23:59:54 -04:00
|
|
|
PAIR_ATTR s __attribute__((__unused__)),
|
|
|
|
PAIR_ATTR* new_size __attribute__((__unused__)),
|
2013-04-16 23:57:41 -04:00
|
|
|
BOOL w __attribute__((__unused__)),
|
|
|
|
BOOL keep __attribute__((__unused__)),
|
2013-04-17 00:00:13 -04:00
|
|
|
BOOL c __attribute__((__unused__)),
|
|
|
|
BOOL UU(is_clone)
|
2013-04-16 23:57:41 -04:00
|
|
|
) {
|
|
|
|
assert(w == FALSE && v != NULL);
|
|
|
|
toku_free(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fetch_calls = 0;
|
|
|
|
|
|
|
|
static int
|
|
|
|
fetch (CACHEFILE f __attribute__((__unused__)),
|
2013-04-16 23:59:02 -04:00
|
|
|
int UU(fd),
|
2013-04-16 23:57:41 -04:00
|
|
|
CACHEKEY k __attribute__((__unused__)),
|
|
|
|
u_int32_t fullhash __attribute__((__unused__)),
|
|
|
|
void **value __attribute__((__unused__)),
|
2013-04-17 00:00:13 -04:00
|
|
|
void** UU(dd),
|
2013-04-16 23:59:54 -04:00
|
|
|
PAIR_ATTR *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:41 -04:00
|
|
|
) {
|
|
|
|
|
|
|
|
fetch_calls++;
|
|
|
|
sleep(10);
|
|
|
|
|
|
|
|
*value = toku_malloc(1);
|
2013-04-16 23:59:54 -04:00
|
|
|
*sizep = make_pair_attr(1);
|
2013-04-16 23:59:25 -04:00
|
|
|
*dirtyp = 0;
|
2013-04-16 23:57:41 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cachetable_prefetch_close_leak_test (void) {
|
|
|
|
const int test_limit = 1;
|
|
|
|
int r;
|
|
|
|
CACHETABLE ct;
|
|
|
|
r = toku_create_cachetable(&ct, test_limit, ZERO_LSN, NULL_LOGGER); assert(r == 0);
|
2013-04-17 00:00:30 -04:00
|
|
|
char fname1[] = __SRCFILE__ "test1.dat";
|
2013-04-16 23:57:41 -04:00
|
|
|
unlink(fname1);
|
|
|
|
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:41 -04:00
|
|
|
|
|
|
|
// prefetch block 0. this will take 10 seconds.
|
|
|
|
CACHEKEY key = make_blocknum(0);
|
|
|
|
u_int32_t fullhash = toku_cachetable_hash(f1, make_blocknum(0));
|
2013-04-17 00:00:09 -04:00
|
|
|
CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL);
|
|
|
|
wc.flush_callback = flush;
|
|
|
|
r = toku_cachefile_prefetch(f1, key, fullhash, wc, fetch, def_pf_req_callback, def_pf_callback, 0, NULL);
|
2013-04-16 23:57:41 -04:00
|
|
|
toku_cachetable_verify(ct);
|
|
|
|
|
|
|
|
// close with the prefetch in progress. the close should block until
|
|
|
|
// all of the reads and writes are complete.
|
2013-04-17 00:00:27 -04:00
|
|
|
r = toku_cachefile_close(&f1, 0, FALSE, ZERO_LSN); assert(r == 0);
|
2013-04-16 23:57:41 -04:00
|
|
|
r = toku_cachetable_close(&ct); assert(r == 0 && ct == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
test_main(int argc, const char *argv[]) {
|
|
|
|
default_parse_args(argc, argv);
|
|
|
|
cachetable_prefetch_close_leak_test();
|
|
|
|
return 0;
|
|
|
|
}
|