/* * LMDB Abstraction Layer. * Copyright (C) 2023 Yury Gubich * * 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, either version 3 of the License, or * (at your option) any later version. * * 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, see . */ #ifndef LMDBAL_CURSOR_HPP #define LMDBAL_CURSOR_HPP #include "cursor.h" template LMDBAL::Cursor::Cursor(Storage* parent): storage(parent), cursor(nullptr), state(closed) { } template LMDBAL::Cursor::~Cursor () { close(); } template void LMDBAL::Cursor::terminated () const { close(); //for now it's the same, but if I ever going to make writable cursor - here is where it's gonna be different } template void LMDBAL::Cursor::open () const { storage->ensureOpened(openCursorMethodName); switch (state) { case closed: { TransactionID txn = storage->beginReadOnlyTransaction(); int result = mdb_cursor_open(txn, storage->dbi, &cursor); if (result != MDB_SUCCESS) storage->throwUnknown(result, txn); storage->transactionStarted(txn, true); state = openedPrivate; } break; default: break; } } template void LMDBAL::Cursor::open (TransactionID txn) const { storage->ensureOpened(openCursorMethodName); switch (state) { case closed: { int result = mdb_cursor_open(txn, storage->dbi, &cursor); if (result != MDB_SUCCESS) storage->throwUnknown(result); state = openedPublic; } break; default: break; } } template void LMDBAL::Cursor::renew () const { storage->ensureOpened(renewCursorMethodName); switch (state) { case openedPrivate: { TransactionID txn = mdb_cursor_txn(cursor); storage->abortTransaction(txn); storage->transactionAborted(txn); [[fallthrough]]; } case openedPublic: { TransactionID txn = storage->beginReadOnlyTransaction(); int result = mdb_cursor_renew(txn, cursor); if (result != MDB_SUCCESS) storage->throwUnknown(result, txn); storage->transactionStarted(txn, true); state = openedPrivate; } break; default: break; } } template void LMDBAL::Cursor::renew (TransactionID txn) const { storage->ensureOpened(renewCursorMethodName); switch (state) { case openedPrivate: { TransactionID txn = mdb_cursor_txn(cursor); storage->abortTransaction(txn); storage->transactionAborted(txn); [[fallthrough]]; } case openedPublic: { int result = mdb_cursor_renew(txn, cursor); if (result != MDB_SUCCESS) storage->throwUnknown(result); state = openedPublic; } break; default: break; } } template void LMDBAL::Cursor::close () const { switch (state) { case openedPublic: { mdb_cursor_close(cursor); state = closed; } break; case openedPrivate: { TransactionID txn = mdb_cursor_txn(cursor); mdb_cursor_close(cursor); storage->abortTransaction(txn); storage->transactionAborted(txn); state = closed; } break; default: break; } } template void LMDBAL::Cursor::first (K& key, V& value) const { operateCursorRead(key, value, MDB_FIRST, firstMethodName, firstOperationName); } template void LMDBAL::Cursor::last (K& key, V& value) const { operateCursorRead(key, value, MDB_LAST, lastMethodName, lastOperationName); } template void LMDBAL::Cursor::next (K& key, V& value) const { operateCursorRead(key, value, MDB_NEXT, nextMethodName, nextOperationName); } template void LMDBAL::Cursor::prev (K& key, V& value) const { operateCursorRead(key, value, MDB_PREV, prevMethodName, prevOperationName); } template void LMDBAL::Cursor::current (K& key, V& value) const { operateCursorRead(key, value, MDB_GET_CURRENT, currentMethodName, currentOperationName); } template std::pair LMDBAL::Cursor::first () const { std::pair result; operateCursorRead(result.first, result.second, MDB_FIRST, firstMethodName, firstOperationName); return result; } template std::pair LMDBAL::Cursor::last () const { std::pair result; operateCursorRead(result.first, result.second, MDB_LAST, lastMethodName, lastOperationName); return result; } template std::pair LMDBAL::Cursor::next () const { std::pair result; operateCursorRead(result.first, result.second, MDB_NEXT, nextMethodName, nextOperationName); return result; } template std::pair LMDBAL::Cursor::prev () const { std::pair result; operateCursorRead(result.first, result.second, MDB_PREV, prevMethodName, prevOperationName); return result; } template std::pair LMDBAL::Cursor::current () const { std::pair result; operateCursorRead(result.first, result.second, MDB_GET_CURRENT, currentMethodName, currentOperationName); return result; } template void LMDBAL::Cursor::operateCursorRead( K& key, V& value, MDB_cursor_op operation, const std::string& methodName, const std::string& operationName ) const { if (state == closed) storage->throwCursorNotReady(methodName); MDB_val mdbKey, mdbValue; int result = mdb_cursor_get(cursor, &mdbKey, &mdbValue, operation); if (result != MDB_SUCCESS) storage->throwNotFoundOrUnknown(result, operationName); storage->keySerializer.deserialize(mdbKey, key); storage->valueSerializer.deserialize(mdbValue, value); if (state == openedPrivate) storage->discoveredRecord(key, value); else storage->discoveredRecord(key, value, mdb_cursor_txn(cursor)); } #endif //LMDBAL_CURSOR_HPP