2010-02-19 00:52:21 +00:00
|
|
|
/*
|
|
|
|
* diskTreeComponent.h
|
|
|
|
*
|
|
|
|
* Created on: Feb 18, 2010
|
|
|
|
* Author: sears
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DISKTREECOMPONENT_H_
|
|
|
|
#define DISKTREECOMPONENT_H_
|
|
|
|
|
|
|
|
#include <stasis/transactional.h>
|
|
|
|
|
|
|
|
#include <stasis/operations.h>
|
|
|
|
#include <stasis/bufferManager.h>
|
|
|
|
#include <stasis/allocationPolicy.h>
|
|
|
|
#include <stasis/blobManager.h>
|
|
|
|
#include <stasis/page.h>
|
|
|
|
#include <stasis/truncation.h>
|
|
|
|
|
2010-03-09 20:29:03 +00:00
|
|
|
#include "regionAllocator.h"
|
2010-02-19 00:52:21 +00:00
|
|
|
#include "datapage.h"
|
|
|
|
#include "tuplemerger.h"
|
|
|
|
#include "datatuple.h"
|
|
|
|
|
2010-03-09 19:47:12 +00:00
|
|
|
class diskTreeComponent {
|
2010-03-09 20:23:15 +00:00
|
|
|
|
2010-02-19 00:52:21 +00:00
|
|
|
public:
|
2010-03-09 19:47:12 +00:00
|
|
|
class internalNodes{
|
|
|
|
public:
|
2010-03-09 20:23:15 +00:00
|
|
|
struct indexnode_rec {
|
|
|
|
pageid_t ptr;
|
|
|
|
};
|
|
|
|
|
2010-03-09 23:17:03 +00:00
|
|
|
internalNodes(int xid)
|
|
|
|
: lastLeaf(-1),
|
|
|
|
internal_node_alloc(new RegionAllocator(xid, 1000)),
|
|
|
|
datapage_alloc(new RegionAllocator(xid, 10000))
|
|
|
|
{ create(xid); } // XXX shouldn't hardcode region size.
|
2010-03-09 20:23:15 +00:00
|
|
|
|
2010-03-09 22:18:55 +00:00
|
|
|
internalNodes(int xid, recordid root, recordid internal_node_state, recordid datapage_state)
|
2010-03-09 23:17:03 +00:00
|
|
|
: lastLeaf(-1),
|
2010-03-09 19:47:12 +00:00
|
|
|
root_rec(root),
|
2010-03-09 23:17:03 +00:00
|
|
|
internal_node_alloc(new RegionAllocator(xid, internal_node_state)),
|
|
|
|
datapage_alloc(new RegionAllocator(xid, datapage_state))
|
|
|
|
{ }
|
2010-03-09 19:47:12 +00:00
|
|
|
private:
|
|
|
|
recordid create(int xid);
|
|
|
|
public:
|
|
|
|
void print_tree(int xid);
|
2010-02-19 00:52:21 +00:00
|
|
|
|
2010-03-09 19:47:12 +00:00
|
|
|
static void init_stasis();
|
|
|
|
static void deinit_stasis();
|
|
|
|
private:
|
|
|
|
|
2010-03-09 23:48:42 +00:00
|
|
|
void writeNodeRecord(int xid, Page *p, recordid &rid,
|
2010-03-09 19:47:12 +00:00
|
|
|
const byte *key, size_t keylen, pageid_t ptr);
|
|
|
|
//reads the given record and returns the page id stored in it
|
|
|
|
static pageid_t lookupLeafPageFromRid(int xid, recordid rid);
|
|
|
|
|
2010-03-09 23:17:03 +00:00
|
|
|
recordid appendInternalNode(int xid, Page *p,
|
2010-03-09 19:47:12 +00:00
|
|
|
int64_t depth,
|
|
|
|
const byte *key, size_t key_len,
|
2010-03-09 23:48:42 +00:00
|
|
|
pageid_t val_page);
|
2010-03-09 19:47:12 +00:00
|
|
|
|
2010-03-09 23:17:03 +00:00
|
|
|
recordid buildPathToLeaf(int xid, recordid root, Page *root_p,
|
2010-03-09 19:47:12 +00:00
|
|
|
int64_t depth, const byte *key, size_t key_len,
|
2010-03-09 23:48:42 +00:00
|
|
|
pageid_t val_page);
|
2010-03-09 19:47:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Initialize a page for use as an internal node of the tree.
|
|
|
|
*/
|
|
|
|
inline static void initializeNodePage(int xid, Page *p);
|
|
|
|
|
2010-03-09 22:18:55 +00:00
|
|
|
|
|
|
|
//return the left-most leaf, these are not data pages, although referred to as leaf
|
|
|
|
static pageid_t findFirstLeaf(int xid, Page *root, int64_t depth);
|
|
|
|
//return the right-most leaf
|
|
|
|
static pageid_t findLastLeaf(int xid, Page *root, int64_t depth) ;
|
|
|
|
|
|
|
|
|
|
|
|
//returns a record that stores the pageid where the given key should be in, i.e. if it exists
|
|
|
|
static recordid lookup(int xid, Page *node, int64_t depth, const byte *key,
|
|
|
|
size_t keySize);
|
2010-02-19 00:52:21 +00:00
|
|
|
|
2010-03-09 00:09:38 +00:00
|
|
|
public:
|
|
|
|
|
2010-03-09 22:18:55 +00:00
|
|
|
//returns the id of the data page that could contain the given key
|
|
|
|
pageid_t findPage(int xid, const byte *key, size_t keySize);
|
|
|
|
|
|
|
|
|
|
|
|
//appends a leaf page, val_page is the id of the leaf page
|
2010-03-09 23:17:03 +00:00
|
|
|
recordid appendPage(int xid, const byte *key,size_t keySize, pageid_t val_page);
|
2010-03-09 22:18:55 +00:00
|
|
|
|
|
|
|
inline RegionAllocator* get_datapage_alloc() { return datapage_alloc; }
|
2010-03-09 23:17:03 +00:00
|
|
|
inline RegionAllocator* get_internal_node_alloc() { return internal_node_alloc; }
|
|
|
|
const recordid &get_root_rec(){return root_rec;}
|
2010-03-09 22:18:55 +00:00
|
|
|
|
|
|
|
private:
|
2010-03-09 19:47:12 +00:00
|
|
|
const static int64_t DEPTH;
|
|
|
|
const static int64_t COMPARATOR;
|
|
|
|
const static int64_t FIRST_SLOT;
|
|
|
|
const static size_t root_rec_size;
|
|
|
|
const static int64_t PREV_LEAF;
|
|
|
|
const static int64_t NEXT_LEAF;
|
2010-03-09 22:18:55 +00:00
|
|
|
pageid_t lastLeaf;
|
2010-03-09 00:09:38 +00:00
|
|
|
|
2010-03-09 19:47:12 +00:00
|
|
|
void print_tree(int xid, pageid_t pid, int64_t depth);
|
2010-03-09 00:09:38 +00:00
|
|
|
|
2010-03-09 19:47:12 +00:00
|
|
|
recordid root_rec;
|
2010-03-09 23:17:03 +00:00
|
|
|
RegionAllocator* internal_node_alloc;
|
2010-03-09 22:18:55 +00:00
|
|
|
RegionAllocator* datapage_alloc;
|
2010-03-09 00:09:38 +00:00
|
|
|
|
2010-03-09 19:47:12 +00:00
|
|
|
public:
|
|
|
|
class iterator {
|
|
|
|
public:
|
|
|
|
iterator(int xid, recordid root);
|
|
|
|
iterator(int xid, recordid root, const byte* key, len_t keylen);
|
|
|
|
int next();
|
|
|
|
void close();
|
|
|
|
|
|
|
|
inline size_t key (byte **key) {
|
|
|
|
*key = (byte*)(t+1);
|
|
|
|
return current.size - sizeof(indexnode_rec);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline size_t value(byte **value) {
|
|
|
|
*value = (byte*)&(t->ptr);
|
|
|
|
return sizeof(t->ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void tupleDone() { }
|
|
|
|
inline void releaseLock() { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Page * p;
|
|
|
|
int xid_;
|
|
|
|
bool done;
|
|
|
|
recordid current;
|
|
|
|
indexnode_rec *t;
|
|
|
|
int justOnePage;
|
|
|
|
|
|
|
|
};
|
2010-03-09 00:09:38 +00:00
|
|
|
};
|
2010-02-20 01:18:39 +00:00
|
|
|
};
|
2010-02-19 00:52:21 +00:00
|
|
|
#endif /* DISKTREECOMPONENT_H_ */
|