added Poco::Data::Session::isGood()

This commit is contained in:
Günter Obiltschnig
2020-01-13 20:13:27 +01:00
parent c04a1f28d9
commit 43b79ffdbe
13 changed files with 200 additions and 44 deletions

View File

@@ -44,6 +44,9 @@ public:
MySQLException(const MySQLException& exc);
/// Creates MySQLException.
MySQLException(const std::string& msg, int code);
/// Creates MySQLException.
~MySQLException() noexcept;
/// Destroys MySQLexception.

View File

@@ -70,6 +70,9 @@ public:
void reset();
/// Reset connection with dababase and clears session state, but without disconnecting
bool ping();
/// Checks if the connection is alive.
operator MYSQL* ();
private:

View File

@@ -54,10 +54,10 @@ public:
/// for compress and auto-reconnect correct values are true/false
/// for port - numeric in decimal notation
///
~SessionImpl();
/// Destroys the SessionImpl.
Poco::SharedPtr<Poco::Data::StatementImpl> createStatementImpl();
/// Returns an MySQL StatementImpl
@@ -69,10 +69,22 @@ public:
void reset();
/// Reset connection with dababase and clears session state, but without disconnecting
bool isConnected() const;
/// Returns true if connected, false otherwise.
bool isGood() const;
/// Returns true iff the database session is good.
/// For the session to be considered good:
/// - it must be connected
/// - and it's last error code must be 0,
/// or mysql_ping() must be okay.
///
/// Furthermore, if the "failIfInnoReadOnly" property
/// has been set to true, the innodb_read_only setting
/// must be false. The flag is only checked if the
/// session has a non-zero error code.
void setConnectionTimeout(std::size_t timeout);
/// Sets the session connection timeout value.
@@ -81,13 +93,13 @@ public:
void begin();
/// Starts a transaction
void commit();
/// Commits and ends a transaction
/// Commits and ends a transaction
void rollback();
/// Aborts a transaction
bool canTransact() const;
/// Returns true if session has transaction capabilities.
@@ -107,7 +119,7 @@ public:
bool isTransactionIsolation(Poco::UInt32 ti) const;
/// Returns true iff the transaction isolation level corresponds
/// to the supplied bitmask.
void autoCommit(const std::string&, bool val);
/// Sets autocommit property for the session.
@@ -116,10 +128,24 @@ public:
void setInsertId(const std::string&, const Poco::Any&);
/// Try to set insert id - do nothing.
Poco::Any getInsertId(const std::string&) const;
/// Get insert id
void setFailIfInnoReadOnly(const std::string&, bool value);
/// Sets the "failIfInnoReadOnly" feature. If set, isGood() will
/// return false if the database is in read-only mode.
bool getFailIfInnoReadOnly(const std::string&) const;
/// Returns the state of the "failIfInnoReadOnly" feature.
void setLastError(int err);
/// Sets an error code. If a non-zero error code is set, the session
/// is considered bad.
int getLastError() const;
/// Returns the last set error code.
SessionHandle& handle();
// Get handle
@@ -158,7 +184,9 @@ private:
mutable SessionHandle _handle;
bool _connected;
bool _inTransaction;
bool _failIfInnoReadOnly;
std::size_t _timeout;
mutable int _lastError;
Poco::FastMutex _mutex;
};
@@ -183,6 +211,30 @@ inline Poco::Any SessionImpl::getInsertId(const std::string&) const
}
inline void SessionImpl::setFailIfInnoReadOnly(const std::string&, bool value)
{
_failIfInnoReadOnly = value;
}
inline bool SessionImpl::getFailIfInnoReadOnly(const std::string&) const
{
return _failIfInnoReadOnly;
}
inline void SessionImpl::setLastError(int err)
{
_lastError = err;
}
inline int SessionImpl::getLastError() const
{
return _lastError;
}
inline SessionHandle& SessionImpl::handle()
{
return _handle;
@@ -207,12 +259,6 @@ inline bool SessionImpl::isTransactionIsolation(Poco::UInt32 ti) const
}
inline bool SessionImpl::isConnected() const
{
return _connected;
}
inline std::size_t SessionImpl::getConnectionTimeout() const
{
return _timeout;

View File

@@ -32,6 +32,11 @@ MySQLException::MySQLException(const MySQLException& exc) : Poco::Data::DataExce
}
MySQLException::MySQLException(const std::string& msg, int code) : Poco::Data::DataException(std::string("[MySQL]: ") + msg, code)
{
}
MySQLException::~MySQLException() noexcept
{
}

View File

@@ -21,10 +21,10 @@ namespace MySQL {
MySQLStatementImpl::MySQLStatementImpl(SessionImpl& h) :
Poco::Data::StatementImpl(h),
_stmt(h.handle()),
Poco::Data::StatementImpl(h),
_stmt(h.handle()),
_pBinder(new Binder),
_pExtractor(new Extractor(_stmt, _metadata)),
_pExtractor(new Extractor(_stmt, _metadata)),
_hasNext(NEXT_DONTKNOW)
{
}
@@ -46,13 +46,13 @@ int MySQLStatementImpl::affectedRowCount() const
return _stmt.getAffectedRowCount();
}
const MetaColumn& MySQLStatementImpl::metaColumn(std::size_t pos) const
{
return _metadata.metaColumn(pos);
}
bool MySQLStatementImpl::hasNext()
{
if (_hasNext == NEXT_DONTKNOW)
@@ -79,11 +79,11 @@ bool MySQLStatementImpl::hasNext()
return false;
}
std::size_t MySQLStatementImpl::next()
{
if (!hasNext())
throw StatementException("No data received");
throw StatementException("No data received");
Poco::Data::AbstractExtractionVec::iterator it = extractions().begin();
Poco::Data::AbstractExtractionVec::iterator itEnd = extractions().end();
@@ -119,12 +119,21 @@ bool MySQLStatementImpl::canCompile() const
void MySQLStatementImpl::compileImpl()
{
_metadata.reset();
_stmt.prepare(toString());
_metadata.init(_stmt);
try
{
_metadata.reset();
_stmt.prepare(toString());
_metadata.init(_stmt);
if (_metadata.columnsReturned() > 0)
_stmt.bindResult(_metadata.row());
if (_metadata.columnsReturned() > 0)
_stmt.bindResult(_metadata.row());
}
catch (MySQLException& exc)
{
static_cast<SessionImpl&>(session()).setLastError(exc.code());
throw;
}
static_cast<SessionImpl&>(session()).setLastError(0);
}
@@ -141,8 +150,17 @@ void MySQLStatementImpl::bindImpl()
}
_stmt.bindParams(_pBinder->getBindArray(), _pBinder->size());
_stmt.execute();
try
{
_stmt.execute();
}
catch (MySQLException& exc)
{
static_cast<SessionImpl&>(session()).setLastError(exc.code());
throw;
}
_hasNext = NEXT_DONTKNOW;
static_cast<SessionImpl&>(session()).setLastError(0);
}

View File

@@ -42,23 +42,23 @@ public:
if (pthread_key_create(&_key, &ThreadCleanupHelper::cleanup) != 0)
throw Poco::SystemException("cannot create TLS key for mysql cleanup");
}
void init()
{
if (pthread_setspecific(_key, reinterpret_cast<void*>(1)))
throw Poco::SystemException("cannot set TLS key for mysql cleanup");
}
static ThreadCleanupHelper& instance()
{
return *_sh.get();
}
static void cleanup(void* data)
{
mysql_thread_end();
}
private:
pthread_key_t _key;
static Poco::SingletonHolder<ThreadCleanupHelper> _sh;
@@ -192,4 +192,11 @@ void SessionHandle::reset()
}
bool SessionHandle::ping()
{
int rc = mysql_ping(_pHandle);
return rc == 0;
}
} } } // namespace Poco::Data::MySQL

View File

@@ -49,10 +49,13 @@ SessionImpl::SessionImpl(const std::string& connectionString, std::size_t loginT
_connector("MySQL"),
_handle(0),
_connected(false),
_inTransaction(false)
_inTransaction(false),
_failIfInnoReadOnly(false),
_lastError(0)
{
addProperty("insertId", &SessionImpl::setInsertId, &SessionImpl::getInsertId);
setProperty("handle", static_cast<MYSQL*>(_handle));
addFeature("failIfInnoReadOnly", &SessionImpl::setFailIfInnoReadOnly, &SessionImpl::getFailIfInnoReadOnly);
open();
}
@@ -129,7 +132,7 @@ void SessionImpl::open(const std::string& connect)
else if (!options["auto-reconnect"].empty())
throw MySQLException("create session: specify correct auto-reconnect option (true or false) or skip it");
#ifdef MYSQL_SECURE_AUTH
#ifdef MYSQL_SECURE_AUTH
if (options["secure-auth"] == "true")
_handle.options(MYSQL_SECURE_AUTH, true);
else if (options["secure-auth"] == "false")
@@ -266,6 +269,50 @@ void SessionImpl::reset()
}
inline bool SessionImpl::isConnected() const
{
return _connected;
}
bool SessionImpl::isGood() const
{
if (_connected)
{
if (_lastError)
{
if (_failIfInnoReadOnly)
{
try
{
int ro = 0;
if (0 == getSetting("innodb_read_only", ro))
{
_lastError = 0;
return true;
}
}
catch (...)
{
}
return false;
}
else
{
if (_handle.ping())
{
_lastError = 0;
return true;
}
return false;
}
}
else return true;
}
else return false;
}
void SessionImpl::close()
{
if (_connected)