2004-06-24 21:10:31 +00:00
|
|
|
/*---
|
|
|
|
This software is copyrighted by the Regents of the University of
|
|
|
|
California, and other parties. The following terms apply to all files
|
|
|
|
associated with the software unless explicitly disclaimed in
|
|
|
|
individual files.
|
|
|
|
|
|
|
|
The authors hereby grant permission to use, copy, modify, distribute,
|
|
|
|
and license this software and its documentation for any purpose,
|
|
|
|
provided that existing copyright notices are retained in all copies
|
|
|
|
and that this notice is included verbatim in any distributions. No
|
|
|
|
written agreement, license, or royalty fee is required for any of the
|
|
|
|
authorized uses. Modifications to this software may be copyrighted by
|
|
|
|
their authors and need not follow the licensing terms described here,
|
|
|
|
provided that the new terms are clearly indicated on the first page of
|
|
|
|
each file where they apply.
|
|
|
|
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
|
|
|
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
|
|
|
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
|
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
|
|
|
|
NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND
|
|
|
|
THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
|
|
|
|
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
|
|
|
|
GOVERNMENT USE: If you are acquiring this software on behalf of the
|
|
|
|
U.S. government, the Government shall have only "Restricted Rights" in
|
|
|
|
the software and related documentation as defined in the Federal
|
|
|
|
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are
|
|
|
|
acquiring the software on behalf of the Department of Defense, the
|
|
|
|
software shall be classified as "Commercial Computer Software" and the
|
|
|
|
Government shall have only "Restricted Rights" as defined in Clause
|
|
|
|
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
|
|
|
|
authors grant the U.S. Government and others acting in its behalf
|
|
|
|
permission to use and distribute the software in accordance with the
|
|
|
|
terms specified in this license.
|
|
|
|
---*/
|
|
|
|
/*******************************
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* implementation of the page buffer
|
|
|
|
* *************************************************/
|
2004-07-06 01:22:18 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <lladd/common.h>
|
2004-07-20 00:15:17 +00:00
|
|
|
#include <latches.h>
|
2004-06-24 21:10:31 +00:00
|
|
|
#include <assert.h>
|
2004-07-23 20:21:44 +00:00
|
|
|
|
|
|
|
#include "page.h"
|
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
#include <lladd/bufferManager.h>
|
2004-06-25 18:56:43 +00:00
|
|
|
#include "blobManager.h"
|
2004-06-30 01:09:57 +00:00
|
|
|
#include <lladd/pageCache.h>
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-07-15 00:42:36 +00:00
|
|
|
#include "pageFile.h"
|
2004-07-14 20:49:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Invariant: This lock should be held while updating lastFreepage, or
|
|
|
|
while performing any operation that may decrease the amount of
|
|
|
|
freespace in the page that lastFreepage refers to.
|
|
|
|
|
|
|
|
Since pageCompact and pageDeRalloc may only increase this value,
|
|
|
|
they do not need to hold this lock. Since bufferManager is the
|
|
|
|
only place where pageRalloc is called, pageRalloc does not obtain
|
|
|
|
this lock.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static pthread_mutex_t lastFreepage_mutex;
|
2004-06-30 01:09:57 +00:00
|
|
|
static unsigned int lastFreepage = 0;
|
|
|
|
|
|
|
|
int bufInit() {
|
|
|
|
|
2004-07-14 20:49:18 +00:00
|
|
|
pageInit();
|
2004-06-30 01:09:57 +00:00
|
|
|
openPageFile();
|
|
|
|
pageCacheInit();
|
2004-06-25 18:56:43 +00:00
|
|
|
openBlobStore();
|
2004-07-14 20:49:18 +00:00
|
|
|
|
2004-07-15 00:42:36 +00:00
|
|
|
lastFreepage = 0;
|
|
|
|
pthread_mutex_init(&lastFreepage_mutex , NULL);
|
2004-06-24 21:10:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-06-30 01:09:57 +00:00
|
|
|
void bufDeinit() {
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-06-30 01:09:57 +00:00
|
|
|
closeBlobStore();
|
|
|
|
pageCacheDeinit();
|
|
|
|
closePageFile();
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-06-30 01:09:57 +00:00
|
|
|
return;
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
2004-06-30 01:09:57 +00:00
|
|
|
/**
|
|
|
|
Just close file descriptors, don't do any other clean up. (For
|
|
|
|
testing.)
|
2004-06-28 22:48:02 +00:00
|
|
|
*/
|
2004-06-30 01:09:57 +00:00
|
|
|
void simulateBufferManagerCrash() {
|
|
|
|
closeBlobStore();
|
|
|
|
closePageFile();
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
|
|
|
|
2004-06-30 01:09:57 +00:00
|
|
|
/* ** No file I/O below this line. ** */
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-07-23 20:21:44 +00:00
|
|
|
void releasePage (Page * p) {
|
|
|
|
unlock(p->loadlatch);
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Page * lastRallocPage = 0;
|
|
|
|
|
2004-07-20 03:40:57 +00:00
|
|
|
/** @todo ralloc ignores it's xid parameter; change the interface? */
|
2004-07-06 01:22:18 +00:00
|
|
|
recordid ralloc(int xid, /*lsn_t lsn,*/ long size) {
|
2004-07-09 22:05:33 +00:00
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
recordid ret;
|
2004-07-14 20:49:18 +00:00
|
|
|
Page * p;
|
2004-07-09 22:05:33 +00:00
|
|
|
|
2004-07-20 03:40:57 +00:00
|
|
|
/* DEBUG("Rallocing record of size %ld\n", (long int)size); */
|
2004-07-09 22:05:33 +00:00
|
|
|
|
2004-06-30 01:09:57 +00:00
|
|
|
assert(size < BLOB_THRESHOLD_SIZE || size == BLOB_SLOT);
|
2004-06-28 21:10:10 +00:00
|
|
|
|
2004-07-21 02:13:28 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&lastFreepage_mutex);
|
|
|
|
while(freespace(p = loadPage(lastFreepage)) < size ) {
|
2004-07-23 20:21:44 +00:00
|
|
|
releasePage(p);
|
2004-07-21 02:13:28 +00:00
|
|
|
lastFreepage++;
|
|
|
|
}
|
2004-07-09 22:05:33 +00:00
|
|
|
|
|
|
|
ret = pageRalloc(p, size);
|
2004-06-28 22:48:02 +00:00
|
|
|
|
2004-07-23 20:21:44 +00:00
|
|
|
releasePage(p);
|
2004-07-21 02:13:28 +00:00
|
|
|
|
2004-07-14 20:49:18 +00:00
|
|
|
pthread_mutex_unlock(&lastFreepage_mutex);
|
|
|
|
|
2004-07-20 03:40:57 +00:00
|
|
|
/* DEBUG("alloced rid = {%d, %d, %ld}\n", ret.page, ret.slot, ret.size); */
|
2004-07-09 22:05:33 +00:00
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
return ret;
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
2004-07-09 22:05:33 +00:00
|
|
|
|
2004-07-23 20:21:44 +00:00
|
|
|
void writeRecord(int xid, Page * p, lsn_t lsn, recordid rid, const void *dat) {
|
2004-06-28 21:10:10 +00:00
|
|
|
|
2004-07-23 20:21:44 +00:00
|
|
|
/* Page *p; */
|
2004-07-09 22:05:33 +00:00
|
|
|
|
|
|
|
if(rid.size > BLOB_THRESHOLD_SIZE) {
|
2004-07-20 00:15:17 +00:00
|
|
|
/* DEBUG("Writing blob.\n"); */
|
2004-07-26 20:37:04 +00:00
|
|
|
writeBlob(xid, p, lsn, rid, dat);
|
2004-07-09 22:05:33 +00:00
|
|
|
|
|
|
|
} else {
|
2004-07-20 00:15:17 +00:00
|
|
|
/* DEBUG("Writing record.\n"); */
|
2004-07-23 20:21:44 +00:00
|
|
|
|
2004-07-09 22:05:33 +00:00
|
|
|
assert( (p->id == rid.page) && (p->memAddr != NULL) );
|
2004-07-23 20:21:44 +00:00
|
|
|
|
2004-07-09 22:05:33 +00:00
|
|
|
/** @todo This assert should be here, but the tests are broken, so it causes bogus failures. */
|
|
|
|
/*assert(pageReadLSN(*p) <= lsn);*/
|
|
|
|
|
2004-07-14 20:49:18 +00:00
|
|
|
pageWriteRecord(xid, p, rid, lsn, dat);
|
2004-07-23 20:21:44 +00:00
|
|
|
|
|
|
|
assert( (p->id == rid.page) && (p->memAddr != NULL) );
|
2004-07-20 00:15:17 +00:00
|
|
|
|
2004-07-09 22:05:33 +00:00
|
|
|
}
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
2004-07-09 22:05:33 +00:00
|
|
|
|
2004-07-23 20:21:44 +00:00
|
|
|
void readRecord(int xid, Page * p, recordid rid, void *buf) {
|
2004-06-28 21:10:10 +00:00
|
|
|
if(rid.size > BLOB_THRESHOLD_SIZE) {
|
2004-07-20 00:15:17 +00:00
|
|
|
/* DEBUG("Reading blob. xid = %d rid = { %d %d %ld } buf = %x\n",
|
|
|
|
xid, rid.page, rid.slot, rid.size, (unsigned int)buf); */
|
2004-07-23 20:21:44 +00:00
|
|
|
/* @todo should readblob take a page pointer? */
|
2004-07-26 20:37:04 +00:00
|
|
|
readBlob(xid, p, rid, buf);
|
2004-06-28 21:10:10 +00:00
|
|
|
} else {
|
2004-07-20 00:15:17 +00:00
|
|
|
assert(rid.page == p->id);
|
|
|
|
/* DEBUG("Reading record xid = %d rid = { %d %d %ld } buf = %x\n",
|
|
|
|
xid, rid.page, rid.slot, rid.size, (unsigned int)buf); */
|
|
|
|
pageReadRecord(xid, p, rid, buf);
|
|
|
|
assert(rid.page == p->id);
|
2004-06-28 21:10:10 +00:00
|
|
|
}
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
int bufTransCommit(int xid, lsn_t lsn) {
|
|
|
|
|
|
|
|
commitBlobs(xid);
|
|
|
|
pageCommit(xid);
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
return 0;
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
int bufTransAbort(int xid, lsn_t lsn) {
|
2004-06-30 01:09:57 +00:00
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
abortBlobs(xid); /* abortBlobs doesn't write any log entries, so it doesn't need the lsn. */
|
|
|
|
pageAbort(xid);
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-06-28 21:10:10 +00:00
|
|
|
return 0;
|
2004-06-24 21:10:31 +00:00
|
|
|
}
|