diff --git a/rdbms/Conn.cpp b/rdbms/Conn.cpp index 84e50c1d3feb6dc8192e211dbf256d378f4f76cd..7bd7cd24aad7277bbd7b2798a8593869c85f77e7 100644 --- a/rdbms/Conn.cpp +++ b/rdbms/Conn.cpp @@ -80,6 +80,28 @@ Conn &Conn::operator=(Conn &&rhs) { return *this; } +//------------------------------------------------------------------------------ +// setAutocommitMode +//------------------------------------------------------------------------------ +void Conn::setAutocommitMode(const AutocommitMode autocommitMode) { + if(nullptr != m_connAndStmts && nullptr != m_connAndStmts->conn) { + m_connAndStmts->conn->setAutocommitMode(autocommitMode); + } else { + throw exception::Exception(std::string(__FUNCTION__) + " failed: Conn does not contain a connection"); + } +} + +//------------------------------------------------------------------------------ +// getAutocommitMode +//------------------------------------------------------------------------------ +AutocommitMode Conn::getAutocommitMode() const noexcept { + if(nullptr != m_connAndStmts && nullptr != m_connAndStmts->conn) { + return m_connAndStmts->conn->getAutocommitMode(); + } else { + throw exception::Exception(std::string(__FUNCTION__) + " failed: Conn does not contain a connection"); + } +} + //------------------------------------------------------------------------------ // createStmt //------------------------------------------------------------------------------ diff --git a/rdbms/Conn.hpp b/rdbms/Conn.hpp index dc89fffab4fcceaffd7d225abc61214e304c1865..48f595120fdc7827b56cb54cf6e09ead70cab079 100644 --- a/rdbms/Conn.hpp +++ b/rdbms/Conn.hpp @@ -18,6 +18,8 @@ #pragma once +#include "common/exception/Exception.hpp" +#include "rdbms/AutocommitMode.hpp" #include "rdbms/ConnAndStmts.hpp" #include "rdbms/Stmt.hpp" @@ -83,6 +85,30 @@ public: */ Conn &operator=(Conn &&rhs); + /** + * Thrown when a requested autocommit mode is not supported. + */ + struct AutocommitModeNotSupported: public exception::Exception { + AutocommitModeNotSupported(const std::string &context = "", const bool embedBacktrace = true): + Exception(context, embedBacktrace) {} + }; + + /** + * Sets the autocommit mode of the connection. + * + * @param autocommitMode The autocommit mode of the connection. + * @throw AutocommitModeNotSupported If the specified autocommit mode is not + * supported. + */ + void setAutocommitMode(const AutocommitMode autocommitMode); + + /** + * Returns the autocommit mode of the connection. + * + * @return The autocommit mode of the connection. + */ + AutocommitMode getAutocommitMode() const noexcept; + /** * Creates a prepared statement. * diff --git a/rdbms/wrapper/Conn.hpp b/rdbms/wrapper/Conn.hpp index 3710d71efaa5ff1deb16d74546732335df7bd234..56a9cdb2380990f472fa82257f4632146d24bbed 100644 --- a/rdbms/wrapper/Conn.hpp +++ b/rdbms/wrapper/Conn.hpp @@ -18,6 +18,7 @@ #pragma once +#include "rdbms/AutocommitMode.hpp" #include "rdbms/wrapper/Stmt.hpp" #include <atomic> @@ -45,6 +46,22 @@ public: */ virtual void close() = 0; + /** + * Sets the autocommit mode of the connection. + * + * @param autocommitMode The autocommit mode of the connection. + * @throw AutocommitModeNotSupported If the specified autocommit mode is not + * supported. + */ + virtual void setAutocommitMode(const AutocommitMode autocommitMode) = 0; + + /** + * Returns the autocommit mode of the connection. + * + * @return The autocommit mode of the connection. + */ + virtual AutocommitMode getAutocommitMode() const noexcept = 0; + /** * Executes the statement. * diff --git a/rdbms/wrapper/MysqlConn.cpp b/rdbms/wrapper/MysqlConn.cpp index e643106cd61fc0e7c36c69b544e25885107b994a..09acbd7317fd4a9e57fb1ea497b73a558555e4a9 100644 --- a/rdbms/wrapper/MysqlConn.cpp +++ b/rdbms/wrapper/MysqlConn.cpp @@ -19,8 +19,7 @@ #include "common/exception/Exception.hpp" #include "common/make_unique.hpp" #include "common/threading/MutexLocker.hpp" - -// Mysql related +#include "rdbms/Conn.hpp" #include "rdbms/wrapper/Mysql.hpp" #include "rdbms/wrapper/MysqlConn.hpp" #include "rdbms/wrapper/MysqlStmt.hpp" @@ -98,6 +97,23 @@ void MysqlConn::close() { } } +//------------------------------------------------------------------------------ +// setAutocommitMode +//------------------------------------------------------------------------------ +void MysqlConn::setAutocommitMode(const AutocommitMode autocommitMode) { + if(AutocommitMode::AUTOCOMMIT_OFF == autocommitMode) { + throw rdbms::Conn::AutocommitModeNotSupported("Failed to set autocommit mode to AUTOCOMMIT_OFF: MysqlConn only" + " supports AUTOCOMMIT_ON"); + } +} + +//------------------------------------------------------------------------------ +// getAutocommitMode +//------------------------------------------------------------------------------ +AutocommitMode MysqlConn::getAutocommitMode() const noexcept{ + return AutocommitMode::AUTOCOMMIT_ON; +} + //------------------------------------------------------------------------------ // executeNonQuery //------------------------------------------------------------------------------ diff --git a/rdbms/wrapper/MysqlConn.hpp b/rdbms/wrapper/MysqlConn.hpp index a11db2faf8d76138969c265acbd629d208f4572e..3ed1996a9d1d445915ac35fbabb6ee262cf64e79 100644 --- a/rdbms/wrapper/MysqlConn.hpp +++ b/rdbms/wrapper/MysqlConn.hpp @@ -66,6 +66,22 @@ public: */ void close() override; + /** + * Sets the autocommit mode of the connection. + * + * @param autocommitMode The autocommit mode of the connection. + * @throw AutocommitModeNotSupported If the specified autocommit mode is not + * supported. + */ + void setAutocommitMode(const AutocommitMode autocommitMode) override; + + /** + * Returns the autocommit mode of the connection. + * + * @return The autocommit mode of the connection. + */ + AutocommitMode getAutocommitMode() const noexcept override; + /** * Executes the statement. * diff --git a/rdbms/wrapper/OcciConn.cpp b/rdbms/wrapper/OcciConn.cpp index a2d0f51b02b2d8e5f6fc7857ae4b4e7d69a6027d..8aad3699e0839c755dd61c21f9b81958af8c4c40 100644 --- a/rdbms/wrapper/OcciConn.cpp +++ b/rdbms/wrapper/OcciConn.cpp @@ -17,9 +17,13 @@ */ #include "common/exception/Exception.hpp" +#include "common/exception/Errnum.hpp" #include "common/exception/LostDatabaseConnection.hpp" #include "common/make_unique.hpp" #include "common/threading/MutexLocker.hpp" +#include "common/threading/RWLockRdLocker.hpp" +#include "common/threading/RWLockWrLocker.hpp" +#include "common/utils/utils.hpp" #include "rdbms/wrapper/OcciConn.hpp" #include "rdbms/wrapper/OcciEnv.hpp" #include "rdbms/wrapper/OcciStmt.hpp" @@ -36,7 +40,8 @@ namespace wrapper { //------------------------------------------------------------------------------ OcciConn::OcciConn(oracle::occi::Environment *const env, oracle::occi::Connection *const conn): m_env(env), - m_occiConn(conn) { + m_occiConn(conn), + m_autocommitMode(AutocommitMode::AUTOCOMMIT_ON) { if(nullptr == conn) { throw exception::Exception(std::string(__FUNCTION__) + " failed" ": The OCCI connection is a nullptr pointer"); @@ -66,6 +71,22 @@ void OcciConn::close() { } } +//------------------------------------------------------------------------------ +// setAutocommitMode +//------------------------------------------------------------------------------ +void OcciConn::setAutocommitMode(const AutocommitMode autocommitMode) { + threading::RWLockWrLocker wrLocker(m_autocommitModeRWLock); + m_autocommitMode = autocommitMode; +} + +//------------------------------------------------------------------------------ +// getAutocommitMode +//------------------------------------------------------------------------------ +AutocommitMode OcciConn::getAutocommitMode() const noexcept{ + threading::RWLockRdLocker rdLocker(m_autocommitModeRWLock); + return m_autocommitMode; +} + //------------------------------------------------------------------------------ // executeNonQuery //------------------------------------------------------------------------------ diff --git a/rdbms/wrapper/OcciConn.hpp b/rdbms/wrapper/OcciConn.hpp index be86880df67e8a020d865721979b90097e2af311..af59acc050aef86e5e8c521272f850f775da4158 100644 --- a/rdbms/wrapper/OcciConn.hpp +++ b/rdbms/wrapper/OcciConn.hpp @@ -19,6 +19,7 @@ #pragma once #include "common/threading/MutexLocker.hpp" +#include "common/threading/RWLock.hpp" #include "rdbms/wrapper/Conn.hpp" #include <occi.h> @@ -60,6 +61,22 @@ public: */ void close() override; + /** + * Sets the autocommit mode of the connection. + * + * @param autocommitMode The autocommit mode of the connection. + * @throw AutocommitModeNotSupported If the specified autocommit mode is not + * supported. + */ + void setAutocommitMode(const AutocommitMode autocommitMode) override; + + /** + * Returns the autocommit mode of the connection. + * + * @return The autocommit mode of the connection. + */ + AutocommitMode getAutocommitMode() const noexcept override; + /** * Executes the statement. * @@ -131,6 +148,16 @@ private: */ oracle::occi::Connection *m_occiConn; + /** + * Read-write lock to protect m_autocommitMode. + */ + mutable threading::RWLock m_autocommitModeRWLock; + + /** + * The autocommit mode of the connection. + */ + AutocommitMode m_autocommitMode; + /** * Closes the specified OCCI statement. * diff --git a/rdbms/wrapper/SqliteConn.cpp b/rdbms/wrapper/SqliteConn.cpp index fef6f7ad43abfd8ee0f0bf9d74bef0d308104a23..16bc5b59333a439b7bd41dd74453b411f5b8e33d 100644 --- a/rdbms/wrapper/SqliteConn.cpp +++ b/rdbms/wrapper/SqliteConn.cpp @@ -19,6 +19,7 @@ #include "common/exception/Exception.hpp" #include "common/make_unique.hpp" #include "common/threading/MutexLocker.hpp" +#include "rdbms/Conn.hpp" #include "rdbms/wrapper/Sqlite.hpp" #include "rdbms/wrapper/SqliteConn.hpp" #include "rdbms/wrapper/SqliteStmt.hpp" @@ -96,6 +97,23 @@ void SqliteConn::close() { } } +//------------------------------------------------------------------------------ +// setAutocommitMode +//------------------------------------------------------------------------------ +void SqliteConn::setAutocommitMode(const AutocommitMode autocommitMode) { + if(AutocommitMode::AUTOCOMMIT_OFF == autocommitMode) { + throw rdbms::Conn::AutocommitModeNotSupported("Failed to set autocommit mode to AUTOCOMMIT_OFF: SqliteConn only" + " supports AUTOCOMMIT_ON"); + } +} + +//------------------------------------------------------------------------------ +// getAutocommitMode +//------------------------------------------------------------------------------ +AutocommitMode SqliteConn::getAutocommitMode() const noexcept{ + return AutocommitMode::AUTOCOMMIT_ON; +} + //------------------------------------------------------------------------------ // executeNonQuery //------------------------------------------------------------------------------ diff --git a/rdbms/wrapper/SqliteConn.hpp b/rdbms/wrapper/SqliteConn.hpp index 52a2a0ee2fa5aa01a083fb18f12793fbe05544a1..3bbb0b5481c684ac7441b11f138041ee1345747d 100644 --- a/rdbms/wrapper/SqliteConn.hpp +++ b/rdbms/wrapper/SqliteConn.hpp @@ -62,6 +62,22 @@ public: */ void close() override; + /** + * Sets the autocommit mode of the connection. + * + * @param autocommitMode The autocommit mode of the connection. + * @throw AutocommitModeNotSupported If the specified autocommit mode is not + * supported. + */ + void setAutocommitMode(const AutocommitMode autocommitMode) override; + + /** + * Returns the autocommit mode of the connection. + * + * @return The autocommit mode of the connection. + */ + AutocommitMode getAutocommitMode() const noexcept override; + /** * Executes the statement. *