1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

the begginning

This commit is contained in:
david hill
2016-01-06 14:08:59 -06:00
parent 66a31debcb
commit f6afc42dd0
18251 changed files with 16460679 additions and 2 deletions

View File

@ -0,0 +1,225 @@
/* Copyright (C) 2014 InfiniDB, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of
the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
/***************************************************************************
*
* $Id: filebuffermgr.h 2042 2013-01-30 16:12:54Z pleblanc $
*
* *
***************************************************************************/
#ifndef FILEBUFFERMGR_H
#define FILEBUFFERMGR_H
#include <iostream>
#include <fstream>
#include <iomanip>
#ifndef _MSC_VER
#include <tr1/unordered_set>
#else
#include <unordered_set>
#endif
#include <boost/thread.hpp>
#include <deque>
#include "primitivemsg.h"
#include "blocksize.h"
#include "filebuffer.h"
#include "rwlock_local.h"
/**
@author Jason Rodriguez <jrodriguez@calpont.com>
*/
/**
* @brief manages storage of Disk Block Buffers via and LRU cache using the stl classes unordered_set and list.
*
**/
namespace dbbc {
/**
* @brief used as the hasher algorithm for the unordered_set used to store the disk blocks
**/
struct FileBufferIndex
{
FileBufferIndex(BRM::LBID_t l, BRM::VER_t v, uint32_t p) : lbid(l), ver(v), poolIdx(p) {}
BRM::LBID_t lbid;
BRM::VER_t ver;
uint32_t poolIdx;
};
struct CacheInsert_t {
CacheInsert_t(const BRM::LBID_t &l, const BRM::VER_t &v, const uint8_t *d) :
lbid(l), ver(v), data(d) { }
BRM::LBID_t lbid;
BRM::VER_t ver;
const uint8_t *data;
};
typedef FileBufferIndex HashObject_t;
class bcHasher
{
public:
inline size_t operator()(const HashObject_t& rhs) const
{
return (((rhs.ver & 0xffffULL) << 48) | (rhs.lbid & 0xffffffffffffULL));
}
};
class bcEqual
{
public:
inline bool operator()(const HashObject_t& f1, const HashObject_t& f2) const
{
return ((f1.lbid == f2.lbid) && (f1.ver == f2.ver));
}
};
inline bool operator<(const HashObject_t& f1, const HashObject_t& f2)
{
return ((f1.lbid < f2.lbid) || (f1.lbid == f2.lbid && f1.ver < f2.ver));
}
class FileBufferMgr {
public:
typedef std::tr1::unordered_set<HashObject_t, bcHasher, bcEqual> filebuffer_uset_t;
typedef std::tr1::unordered_set<HashObject_t, bcHasher, bcEqual>::const_iterator filebuffer_uset_iter_t;
typedef std::pair<filebuffer_uset_t::iterator, bool> filebuffer_pair_t; // return type for insert
typedef std::deque<uint32_t> emptylist_t;
/**
* @brief ctor. Set max buffer size to numBlcks and block buffer size to blckSz
**/
FileBufferMgr(uint32_t numBlcks, uint32_t blckSz=BLOCK_SIZE, uint32_t deleteBlocks = 0);
/**
* @brief default dtor
**/
virtual ~FileBufferMgr();
/**
* @brief return TRUE if the Disk block lbid@ver is loaded into the Disk Block Buffer cache otherwise return FALSE.
**/
bool exists(const BRM::LBID_t& lbid, const BRM::VER_t& ver) const;
/**
* @brief return TRUE if the Disk block referenced by fb is loaded into the Disk Block Buffer cache otherwise return FALSE.
**/
bool exists(const HashObject_t& fb) const;
/**
* @brief add the Disk Block reference by fb into the Disk Block Buffer Cache
**/
int insert(const BRM::LBID_t lbid, const BRM::VER_t ver, const uint8_t* data);
int bulkInsert(const std::vector<CacheInsert_t> &);
/**
* @brief returns the total number of Disk Blocks in the Cache
**/
uint32_t size() const {return fbSet.size();}
/**
* @brief
**/
void flushCache();
/**
* @brief
**/
void flushOne(const BRM::LBID_t lbid, const BRM::VER_t ver);
/**
* @brief
**/
void flushMany(const LbidAtVer* laVptr, uint32_t cnt);
/**
* @brief flush all versions
**/
void flushManyAllversion(const BRM::LBID_t *laVptr, uint32_t cnt);
void flushOIDs(const uint32_t *oids, uint32_t count);
void flushPartition(const std::vector<BRM::OID_t> &oids, const std::set<BRM::LogicalPartition> &partitions);
/**
* @brief return the disk Block referenced by fb
**/
FileBuffer* findPtr(const HashObject_t& keyFb);
bool find(const HashObject_t& keyFb, FileBuffer& fb);
/**
* @brief return the disk Block referenced by bufferPtr
**/
bool find(const HashObject_t& keyFb, void* bufferPtr);
uint32_t bulkFind(const BRM::LBID_t *lbids, const BRM::VER_t *vers, uint8_t **buffers,
bool *wasCached, uint32_t blockCount);
uint32_t maxCacheSize() const {return fMaxNumBlocks;}
uint32_t listSize() const {return fbList.size();}
const filebuffer_uset_iter_t end() const {return fbSet.end();}
void setReportingFrequency(const uint32_t d);
const uint32_t ReportingFrequency() const {return fReportFrequency;}
std::ostream& formatLRUList(std::ostream& os) const;
private:
uint32_t fMaxNumBlocks; // the max number of blockSz blocks to keep in the Cache list
uint32_t fBlockSz; // size in bytes size of a data block - probably 8
mutable boost::mutex fWLock;
mutable filebuffer_uset_t fbSet;
mutable filebuffer_list_t fbList; // rename this
uint32_t fCacheSize;
FileBufferPool_t fFBPool; // vector<FileBuffer>
uint32_t fDeleteBlocks;
emptylist_t fEmptyPoolSlots; //keep track of FBPool slots that can be reused
void depleteCache();
uint64_t fBlksLoaded; // number of blocks inserted into cache
uint64_t fBlksNotUsed; // number of blocks inserted and not used
uint64_t fReportFrequency; // how many blocks are read between reports
std::ofstream fLog;
config::Config* fConfig;
// do not implement
FileBufferMgr(const FileBufferMgr& fbm);
const FileBufferMgr& operator =(const FileBufferMgr& fbm);
// used by bulkInsert
void updateLRU(const FBData_t &f);
uint32_t doBlockCopy(const BRM::LBID_t &lbid, const BRM::VER_t &ver, const uint8_t *data);
};
}
#endif