stasis-aries-wal/src/lladd/operations/alloc.c

299 lines
8.3 KiB
C
Raw Normal View History

#include <config.h>
#include <lladd/common.h>
2005-01-20 21:19:47 +00:00
#include <lladd/operations.h>
#include <lladd/transactional.h>
2004-06-24 21:10:31 +00:00
#include <lladd/bufferManager.h>
#include "../blobManager.h"
#include "../page.h"
#include "../page/slotted.h"
#include <assert.h>
//try{
2004-06-24 21:10:31 +00:00
/**
@file
2004-06-24 21:10:31 +00:00
Implementation of Talloc() as an operation
This is a bit strange compared to other operations, as it happens
in two phases. The buffer manager reserves space for a record
before the log entry is allocated. Then, the recordid of this
space is written to the log. Finally, alloc tells bufferManager
that it will use the space.
@todo Currently, if the system crashes during an alloc, (before the
log is flushed, but after bufferManager returns a rid), then the
space alloced during the crash is leaked. This doesn't seem to be
too big of a deal, but it should be fixed someday. A more serious
problem results from crashes during blob allocation.
@todo The entire allocaction system needs to be redone.
Here are some requirements for the next version of alloc:
Space Reuse: There are many ways to implement this. One method
(that I'm not particularly attached to) is to maintain seperate
linked lists for each type of page, seperated by an estimate of the
amount of space free (actually 'un-reserved'; see below) on the
page. Allocation would move pages between linked lists, and search
in the appropriate linked list before expanding the page file.
Treserve: Hashtables, linked lists, and other graph-like structures
can be optimized by exploiting physical locality. A call such as
this allows page-level locality to be established / maintained:
int page = Treserve(int xid, int size)
This would tell Talloc to treat the page as though 'size' bytes had
already been reserved. The 'free space' that Talloc () reasons
about would be: max(reservedSpace, usedSpace). A seperate call,
TallocFromPage (xid, page, size) already exists, and should ignore
the presence of the 'reserved space' field.
Track level locality is another problem that Talloc should address,
especially for the blob implementation.
Better support for locking. Consider this sequence of events:
recordid rid1 = Talloc (xid1, 1);
recordid rid2 = Talloc (xid2, 1); // May deadlock if page level
// locking is used.
The lock manager needs a 'try lock' operation that allows
transactions to attempt to read multiple pages. When the current
lock manager returns "LLADD_DEADLOCK", it pretends the lock request
never happened (ie; it's externally visible state is left unchanged
by the call), effectively providing 'try lock' by default. Talloc
should make use of this by trying to alloc from a different page
whenever deadlock is encountered. Better, the system should
provide a list of 'cold' pages that are in memory, but haven't been
accessed recently. This requires integration with the page reuse
policy.
@ingroup OPERATIONS
$Id$
2004-06-24 21:10:31 +00:00
*/
//}end
static int operate(int xid, Page * p, lsn_t lsn, recordid rid, const void * dat) {
slottedPostRalloc(xid, p, lsn, rid);
2004-06-24 21:10:31 +00:00
return 0;
}
/** @todo Currently, we leak empty pages on dealloc. */
static int deoperate(int xid, Page * p, lsn_t lsn, recordid rid, const void * dat) {
assert(rid.page == p->id);
slottedDeRalloc(xid, p, lsn, rid);
return 0;
}
static int reoperate(int xid, Page *p, lsn_t lsn, recordid rid, const void * dat) {
// if(rid.size >= BLOB_THRESHOLD_SIZE) { // && rid.size != BLOB_SLOT) {
// rid.size = BLOB_REC_SIZE; /* Don't reuse blob space yet... */
// rid.size = BLOB_SLOT; //sizeof(blob_record_t);
// }
slottedPostRalloc(xid, p, lsn, rid);
/** @todo dat should be the pointer to the space in the blob store. */
writeRecord(xid, p, lsn, rid, dat);
2004-06-24 21:10:31 +00:00
return 0;
}
static pthread_mutex_t talloc_mutex;
2004-06-24 21:10:31 +00:00
Operation getAlloc() {
pthread_mutex_init(&talloc_mutex, NULL);
2004-06-24 21:10:31 +00:00
Operation o = {
OPERATION_ALLOC, /* ID */
0,
OPERATION_DEALLOC, /* OPERATION_NOOP, */
2004-06-24 21:10:31 +00:00
&operate
};
return o;
}
Operation getDealloc() {
Operation o = {
OPERATION_DEALLOC,
SIZEOF_RECORD,
OPERATION_REALLOC, /* OPERATION_NOOP, */
&deoperate
};
return o;
}
/*This is only used to undo deallocs... */
Operation getRealloc() {
Operation o = {
OPERATION_REALLOC,
0,
OPERATION_NOOP,
&reoperate
};
return o;
}
static uint64_t lastFreepage;
void TallocInit() {
lastFreepage = UINT64_MAX;
}
static compensated_function recordid TallocFromPageInternal(int xid, Page * p, unsigned long size);
compensated_function recordid Talloc(int xid, unsigned long size) {
short type;
if(size >= BLOB_THRESHOLD_SIZE) {
type = BLOB_SLOT;
} else {
type = size;
}
recordid rid;
begin_action_ret(pthread_mutex_unlock, &talloc_mutex, NULLRID) {
pthread_mutex_lock(&talloc_mutex);
Page * p;
if(lastFreepage == UINT64_MAX) {
try_ret(NULLRID) {
lastFreepage = TpageAlloc(xid);
} end_ret(NULLRID);
try_ret(NULLRID) {
p = loadPage(xid, lastFreepage);
} end_ret(NULLRID);
// assert(*page_type_ptr(p) == UNINITIALIZED_PAGE);
slottedPageInitialize(p);
} else {
try_ret(NULLRID) {
p = loadPage(xid, lastFreepage);
} end_ret(NULLRID);
}
if(slottedFreespace(p) < physical_slot_length(type) ) {
// XXX compact page?!?
releasePage(p);
try_ret(NULLRID) {
lastFreepage = TpageAlloc(xid);
} end_ret(NULLRID);
try_ret(NULLRID) {
p = loadPage(xid, lastFreepage);
} end_ret(NULLRID);
slottedPageInitialize(p);
}
rid = TallocFromPageInternal(xid, p, size);
2006-07-21 01:07:09 +00:00
releasePage(p);
} compensate_ret(NULLRID);
return rid;
}
compensated_function recordid TallocFromPage(int xid, long page, unsigned long size) {
Page * p = loadPage(xid, page);
recordid ret = TallocFromPageInternal(xid, p, size);
releasePage(p);
return ret;
}
static compensated_function recordid TallocFromPageInternal(int xid, Page * p, unsigned long size) {
recordid rid;
2006-06-16 00:27:02 +00:00
// Does TallocFromPage need to understand blobs? This function
// seems to be too complex; all it does it delegate the allocation
// request to the page type's implementation. (Does it really need
// to check for freespace?)
short type;
if(size >= BLOB_THRESHOLD_SIZE) {
type = BLOB_SLOT;
} else {
type = size;
}
unsigned long slotSize = INVALID_SLOT;
slotSize = physical_slot_length(type);
assert(slotSize < PAGE_SIZE && slotSize > 0);
if(slottedFreespace(p) < slotSize) {
slottedCompact(p);
2006-07-21 01:07:09 +00:00
}
if(slottedFreespace(p) < slotSize) {
rid = NULLRID;
} else {
rid = slottedRawRalloc(p, type);
assert(rid.size == type);
rid.size = size;
Tupdate(xid, rid, NULL, OPERATION_ALLOC);
if(type == BLOB_SLOT) {
allocBlob(xid, rid);
}
rid.size = type;
}
if(rid.size == type && // otherwise TallocFromPage failed
type == BLOB_SLOT // only special case blobs (for now)
) {
rid.size = size;
}
return rid;
}
compensated_function void Tdealloc(int xid, recordid rid) {
2006-06-16 00:27:02 +00:00
// @todo this needs to garbage collect emptry pages / storage regions.
void * preimage = malloc(rid.size);
Page * p;
try {
p = loadPage(xid, rid.page);
} end;
begin_action(releasePage, p) {
readRecord(xid, p, rid, preimage);
/** @todo race in Tdealloc; do we care, or is this something that the log manager should cope with? */
Tupdate(xid, rid, preimage, OPERATION_DEALLOC);
} compensate;
free(preimage);
2004-06-24 21:10:31 +00:00
}
2004-12-01 01:26:25 +00:00
compensated_function int TrecordType(int xid, recordid rid) {
Page * p;
try_ret(compensation_error()) {
p = loadPage(xid, rid.page);
} end_ret(compensation_error());
int ret;
ret = getRecordType(xid, p, rid);
2004-12-01 01:26:25 +00:00
releasePage(p);
return ret;
}
compensated_function int TrecordSize(int xid, recordid rid) {
int ret;
Page * p;
try_ret(compensation_error()) {
p = loadPage(xid, rid.page);
} end_ret(compensation_error());
ret = getRecordSize(xid, p, rid);
releasePage(p);
return ret;
}
compensated_function int TrecordsInPage(int xid, int pageid) {
Page * p;
try_ret(compensation_error()) {
p = loadPage(xid, pageid);
} end_ret(compensation_error());
readlock(p->rwlatch, 187);
int ret = *numslots_ptr(p);
unlock(p->rwlatch);
releasePage(p);
return ret;
}