📄 xvilla.cc
字号:
/************************************************************************************************* * Implementation of Villa for C++ * Copyright (C) 2000-2003 Mikio Hirabayashi * This file is part of QDBM, Quick Database Manager. * QDBM is free software; you can redistribute it and/or modify it under the terms of the GNU * Lesser General Public License as published by the Free Software Foundation; either version * 2.1 of the License or any later version. QDBM 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 Lesser General Public License for more * details. * You should have received a copy of the GNU Lesser General Public License along with QDBM; if * not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA. *************************************************************************************************/#include "xvilla.h"#include <new>#include <cstdlib>extern "C" {#include <depot.h>#include <cabin.h>#include <villa.h>#include <pthread.h>}using namespace qdbm;/************************************************************************************************* * Villa_error *************************************************************************************************/Villa_error::Villa_error() throw() : DBM_error(){ ecode = DP_EMISC; return;}Villa_error::Villa_error(int ecode) throw() : DBM_error(){ this->ecode = ecode; return;}Villa_error::Villa_error(const Villa_error& ve) throw() : DBM_error(ve){ ecode = ve.ecode; return;}Villa_error::~Villa_error() throw(){ return;}Villa_error& Villa_error::operator =(const Villa_error& ve) throw(){ this->ecode = ve.ecode; return *this;}Villa_error& Villa_error::operator =(int ecode) throw(){ this->ecode = ecode; return *this;}bool Villa_error::operator ==(const Villa_error& ve) const throw(){ return ecode == ve.ecode;}bool Villa_error::operator !=(const Villa_error& ve) const throw(){ return ecode != ve.ecode;}bool Villa_error::operator ==(int ecode) const throw(){ return this->ecode == ecode;}bool Villa_error::operator !=(int ecode) const throw(){ return this->ecode != ecode;}Villa_error::operator const char*() const throw(){ return dperrmsg(ecode);}int Villa_error::code() const throw(){ return ecode;}const char* Villa_error::message() const throw(){ return dperrmsg(ecode);}/************************************************************************************************* * Villa *************************************************************************************************/const int Villa::ENOERR = DP_ENOERR;const int Villa::EFATAL = DP_EFATAL;const int Villa::EMODE = DP_EMODE;const int Villa::EBROKEN = DP_EBROKEN;const int Villa::EKEEP = DP_EKEEP;const int Villa::ENOITEM = DP_ENOITEM;const int Villa::EALLOC = DP_EALLOC;const int Villa::EMAP = DP_EMAP;const int Villa::EOPEN = DP_EOPEN;const int Villa::ECLOSE = DP_ECLOSE;const int Villa::ETRUNC = DP_ETRUNC;const int Villa::ESYNC = DP_ESYNC;const int Villa::ESTAT = DP_ESTAT;const int Villa::ESEEK = DP_ESEEK;const int Villa::EREAD = DP_EREAD;const int Villa::EWRITE = DP_EWRITE;const int Villa::ELOCK = DP_ELOCK;const int Villa::EUNLINK = DP_EUNLINK;const int Villa::EMKDIR = DP_EMKDIR;const int Villa::ERMDIR = DP_ERMDIR;const int Villa::EMISC = DP_EMISC;const int Villa::OREADER = VL_OREADER;const int Villa::OWRITER = VL_OWRITER;const int Villa::OCREAT = VL_OCREAT;const int Villa::OTRUNC = VL_OTRUNC;const int Villa::ONOLCK = VL_ONOLCK;const int Villa::DOVER = VL_DOVER;const int Villa::DKEEP = VL_DKEEP;const int Villa::DDUP = VL_DDUP;const int Villa::JFORWARD = VL_JFORWARD;const int Villa::JBACKWARD = VL_JBACKWARD;const char* Villa::version() throw(){ return dpversion;}void Villa::remove(const char* name) throw(Villa_error){ if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlremove(name)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}int Villa::cmplex(const char *aptr, int asiz, const char *bptr, int bsiz) throw(){ return VL_CMPLEX(aptr, asiz, bptr, bsiz);}int Villa::cmpint(const char *aptr, int asiz, const char *bptr, int bsiz) throw(){ return VL_CMPINT(aptr, asiz, bptr, bsiz);}int Villa::cmpnum(const char *aptr, int asiz, const char *bptr, int bsiz) throw(){ return VL_CMPNUM(aptr, asiz, bptr, bsiz);}int Villa::cmpdec(const char *aptr, int asiz, const char *bptr, int bsiz) throw(){ return VL_CMPDEC(aptr, asiz, bptr, bsiz);}Villa::Villa(const char* name, int omode, VLCFUNC cmp) throw(Villa_error) : ADBM(){ if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!(villa = vlopen(name, omode, cmp))){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_init(&tranmutex, NULL); pthread_mutex_unlock(&mutex);}Villa::~Villa() throw(){ pthread_mutex_destroy(&tranmutex); if(!villa) return; pthread_mutex_lock(&mutex); vlclose(villa); villa = 0; pthread_mutex_unlock(&mutex);}void Villa::close() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlclose(villa)){ villa = 0; pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } villa = 0; pthread_mutex_unlock(&mutex);}void Villa::put(const char* kbuf, int ksiz, const char* vbuf, int vsiz, int dmode) throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlput(villa, kbuf, ksiz, vbuf, vsiz, dmode)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::out(const char* kbuf, int ksiz) throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlout(villa, kbuf, ksiz)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}char* Villa::get(const char* kbuf, int ksiz, int* sp) throw(Villa_error){ char* vbuf; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!(vbuf = vlget(villa, kbuf, ksiz, sp))){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex); return vbuf;}int Villa::vnum(const char *kbuf, int ksiz) throw(Villa_error){ int vnum; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); vnum = vlvnum(villa, kbuf, ksiz); pthread_mutex_unlock(&mutex); return vnum;}void Villa::curfirst() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlcurfirst(villa)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::curlast() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlcurlast(villa)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::curprev() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlcurprev(villa)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::curnext() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlcurnext(villa)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::curjump(const char* kbuf, int ksiz, int jmode) throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlcurjump(villa, kbuf, ksiz, jmode)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}char* Villa::curkey(int *sp) throw(Villa_error){ char* kbuf; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!(kbuf = vlcurkey(villa, sp))){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex); return kbuf;}char* Villa::curval(int *sp) throw(Villa_error){ char* vbuf; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!(vbuf = vlcurval(villa, sp))){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex); return vbuf;}void Villa::settuning(int lrecmax, int nidxmax, int lcnum, int ncnum) throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); vlsettuning(villa, lrecmax, nidxmax, lcnum, ncnum); pthread_mutex_unlock(&mutex);}void Villa::sync() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vlsync(villa)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::optimize() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vloptimize(villa)){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}char* Villa::name() throw(Villa_error){ char* buf; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!(buf = vlname(villa))){ pthread_mutex_unlock(&mutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex); return buf;}int Villa::fsiz() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vlfsiz(villa); pthread_mutex_unlock(&mutex); return rv;}int Villa::lnum() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vllnum(villa); pthread_mutex_unlock(&mutex); return rv;}int Villa::nnum() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vlnnum(villa); pthread_mutex_unlock(&mutex); return rv;}int Villa::rnum() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vlrnum(villa); pthread_mutex_unlock(&mutex); return rv;}bool Villa::writable() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vlwritable(villa); pthread_mutex_unlock(&mutex); return rv ? true : false;}bool Villa::fatalerror() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vlfatalerror(villa); pthread_mutex_unlock(&mutex); return rv ? true : false;}int Villa::inode() throw(Villa_error){ int rv; if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); rv = vlinode(villa); pthread_mutex_unlock(&mutex); return rv;}void Villa::tranbegin() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&tranmutex) != 0) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0){ pthread_mutex_unlock(&tranmutex); throw Villa_error(); } if(!vltranbegin(villa)){ pthread_mutex_unlock(&mutex); pthread_mutex_unlock(&tranmutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex);}void Villa::trancommit() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vltrancommit(villa)){ pthread_mutex_unlock(&mutex); pthread_mutex_unlock(&tranmutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex); if(pthread_mutex_unlock(&tranmutex) != 0) throw Villa_error();}void Villa::tranabort() throw(Villa_error){ if(!villa) throw Villa_error(); if(pthread_mutex_lock(&mutex) != 0) throw Villa_error(); if(!vltranabort(villa)){ pthread_mutex_unlock(&mutex); pthread_mutex_unlock(&tranmutex); throw Villa_error(dpecode); } pthread_mutex_unlock(&mutex); if(pthread_mutex_unlock(&tranmutex) != 0) throw Villa_error();}void Villa::storerec(const Datum& key, const Datum& val, bool replace) throw(Villa_error){ put(key.ptr(), key.size(), val.ptr(), val.size(), replace ? VL_DOVER : VL_DKEEP);}void Villa::deleterec(const Datum& key) throw(Villa_error){ out(key.ptr(), key.size());}Datum Villa::fetchrec(const Datum& key) throw(Villa_error){ char* vbuf; int vsiz; vbuf = get(key.ptr(), key.size(), &vsiz); return Datum(vbuf, vsiz, true);}Datum Villa::firstkey() throw(Villa_error){ char* kbuf; int ksiz; curfirst(); kbuf = curkey(&ksiz); return Datum(kbuf, ksiz, true);}Datum Villa::nextkey() throw(Villa_error){ char* kbuf; int ksiz; curnext(); kbuf = curkey(&ksiz); return Datum(kbuf, ksiz, true);}bool Villa::error() throw(Villa_error){ return fatalerror();}Villa::Villa(const Villa& villa) throw(Villa_error){ throw Villa_error();}Villa& Villa::operator =(const Villa& villa) throw(Villa_error){ throw Villa_error();}/* END OF FILE */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -