/* ---- This file is part of SECONDO. Copyright (C) 2004, University in Hagen, Department of Computer Science, Database Systems for New Applications. SECONDO 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; either version 2 of the License, or (at your option) any later version. SECONDO 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 SECONDO; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ---- //[_] [\_] */ /* [1] DBAccessGuard Oktober 2011 Thomas Achmann DBAccessGuard implements a threadsave access to the database. Most of the DB functionality is not threadsave. Therefor the access to the database by certain functions must be guarded. This class is implemented using the singelton pattern */ #ifndef _DBACCESSGUARD_H_ #define _DBACCESSGUARD_H_ // uncomment this line to use ZThread::FastMutex #define MYFASTMUTEX 1 #if defined MYFASTMUTEX #include "zthread/FastMutex.h" typedef ZThread::FastMutex MyMutex; #else #include "zthread/Mutex.h" typedef ZThread:Mutex MyMutex; #endif #include "Algebras/Relation-C++/RelationAlgebra.h" #include "Stream.h" #include "NestedList.h" #include "zthread/Guard.h" class DBAccessGuard { private: // Singelton Pattern: c-tors are private DBAccessGuard() {} DBAccessGuard(const DBAccessGuard&) {} DBAccessGuard &operator= (const DBAccessGuard&) {return *this;} MyMutex lock; MyMutex buf_lock; MyMutex nl_lock; public: virtual ~DBAccessGuard() {} static DBAccessGuard *getInstance(); /* 2 TupleType Access */ /* 2.1 TT[_]New[_]2 returns TupleType - ptr Allocates a new object of TupleType */ TupleType* TT_New(const ListExpr& inTT_Rel) { ZThread::Guard g(lock); return new TupleType(inTT_Rel); } /* 2.2 TT[_]DeleteIfAllowed deletes a tuple */ void TT_DeleteIfAllowed(TupleType* tt) { ZThread::Guard g(lock); tt-> DeleteIfAllowed(); } /* 3 Tuple Access 3.0 T[_]New creates a new tuple object */ Tuple* T_New(TupleType* inTupleType) { ZThread::Guard g(lock); return new Tuple(inTupleType); } /* 3.1 T[_]WriteToBin restores a Tuple from binary representation */ void T_WriteToBin(Tuple* t, char* buffer, size_t cS, size_t eS, size_t fS) { ZThread::Guard g(lock); t -> WriteToBin(buffer,cS,eS,fS); } /* 3.2 T[_]WriteToBinAndDel restores a Tuple from binary representation */ void T_WriteToBinAndDel(Tuple* t, char* buffer, size_t cS, size_t eS, size_t fS) { ZThread::Guard g(lock); t -> WriteToBin(buffer,cS,eS,fS); t -> DeleteIfAllowed(); } /* 3.3 T[_]ReadFromBin restores a Tuple from binary representation */ void T_ReadFromBin(Tuple* t, char* buffer) { ZThread::Guard g(lock); t-> ReadFromBin(buffer); } /* 3.4 T[_]DeleteIfAllowed deletes a tuple */ void T_DeleteIfAllowed(Tuple* t) { ZThread::Guard g(lock); t-> DeleteIfAllowed(); } void T_IncReference(Tuple* t) { ZThread::Guard g(lock); t-> IncReference(); } /* 3.5 T[_]GetBlockSize deletes a tuple */ size_t T_GetBlockSize(Tuple* t, size_t& outCs, size_t& outEs, size_t& outFs) { ZThread::Guard g(lock); return t -> GetBlockSize(outCs,outEs,outFs); } /* 4 TupleBuffer Access 4.1 TB[_]Clear clears a TupleBuffer */ void TB_Clear(TupleBuffer *tb) { ZThread::Guard g(lock); tb -> Clear(); } /* 5 TupleBufferIterator Access 5.1 TBI[_]GetNextTuple returns Tuple - ptr Retruns the next tuple of an iterator */ Tuple* TBI_GetNextTuple(TupleBufferIterator *tbi) { ZThread::Guard g(lock); return tbi -> GetNextTuple(); } /* 6 GenericRelation Access 6.1 REL[_]AppendTuple */ void REL_AppendTuple(GenericRelation *rel, Tuple* t) { ZThread::Guard g(lock); rel -> AppendTuple(t); } /* 6 Tuple Stream 6.1 TS[_]Request */ Tuple* TS_Request(Stream &is) { ZThread::Guard g(lock); return is.request(); } /* 7 NestedList Access 7.1 NL[_]ToString */ void NL_ToString(const ListExpr &l, string& out) { ZThread::Guard g(nl_lock); out = nl -> ToString(l); } /* 7.2 NL[_]ReadFromString */ void NL_ReadFromString(const string& inStr, ListExpr &l) { ZThread::Guard g(nl_lock); nl -> ReadFromString(inStr, l); } /* 7.2 NL[_]Second */ ListExpr NL_Second(ListExpr &l) { ZThread::Guard g(nl_lock); return nl -> Second( l); } void NL_Assign(ListExpr &l, ListExpr &r) { ZThread::Guard g(nl_lock); l = r; } /* 8 NestedList Access 8.1 BUF[_]Alloc allocates a certain amount of memory */ char* BUF_Alloc(size_t buf_size) { ZThread::Guard g(buf_lock); char* buffer = new char[buf_size]; memset(buffer,0,buf_size); return buffer; } /* 8.1 BUF[_]Free frees previously allocated memory */ void BUF_Free(char* buffer) { ZThread::Guard g(buf_lock); delete [] buffer; } }; typedef DBAccessGuard DBAccess; #endif // _DBACCESSGUARD_H_