From f1ed7196eb270b02eefa3fdb7cebb8df9bb04bd9 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Fri, 19 Feb 2016 18:22:47 +0000 Subject: dbx_lmdb: last commit temporary reverted git-svn-id: http://svn.miranda-ng.org/main/trunk@16312 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dbx_mdb/src/stdafx.h | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'plugins/Dbx_mdb/src/stdafx.h') diff --git a/plugins/Dbx_mdb/src/stdafx.h b/plugins/Dbx_mdb/src/stdafx.h index 3f193dda47..0a777f5e5b 100644 --- a/plugins/Dbx_mdb/src/stdafx.h +++ b/plugins/Dbx_mdb/src/stdafx.h @@ -50,9 +50,9 @@ class txn_ptr MDB_txn *m_txn; public: - __forceinline txn_ptr(MDB_env *pEnv) + __forceinline txn_ptr(MDB_env *pEnv, bool bReadOnly = false) { - mdb_txn_begin(pEnv, NULL, 0, &m_txn); + mdb_txn_begin(pEnv, NULL, (bReadOnly) ? MDB_RDONLY : 0, &m_txn); } __forceinline ~txn_ptr() @@ -118,24 +118,6 @@ public: __forceinline operator MDB_cursor*() const { return m_cursor; } }; -class cursor_ptr_ro -{ - static MDB_cursor *m_cursor; - -public: - __forceinline cursor_ptr_ro(MDB_txn *_txn, MDB_dbi _dbi) - { - if (!m_cursor) - mdb_cursor_open(_txn, _dbi, &m_cursor); - } - - __forceinline ~cursor_ptr_ro() - { - } - - __forceinline operator MDB_cursor*() const { return m_cursor; } -}; - #define MDB_CHECK(A,B) \ switch(A) { \ case MDB_SUCCESS: break; \ -- cgit v1.2.3