2013-06-25 01:01:17 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2007 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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 2 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, write to the Free Software
|
2014-08-09 07:59:07 +05:30
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-06-25 01:01:17 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
# test/LosHawlos_bsddbtest.py
|
|
|
|
|
2022-03-10 00:01:00 +05:30
|
|
|
import tempfile
|
|
|
|
from bsddb3 import db
|
2006-11-26 00:47:45 +05:30
|
|
|
|
2016-08-20 01:40:07 +05:30
|
|
|
print("Test that db.DBEnv().open() works")
|
2022-03-10 00:01:00 +05:30
|
|
|
with tempfile.TemporaryDirectory() as env_name:
|
|
|
|
env = db.DBEnv()
|
|
|
|
env.set_cachesize(0,0x2000000)
|
|
|
|
env.set_lk_max_locks(25000)
|
|
|
|
env.set_lk_max_objects(25000)
|
|
|
|
# env.set_flags(db.DB_LOG_AUTOREMOVE,1)
|
|
|
|
"""
|
|
|
|
BSDDB change log settings using new method with renamed attributes
|
|
|
|
"""
|
|
|
|
autoremove_flag = None
|
|
|
|
autoremove_method = None
|
|
|
|
for flag in ["DB_LOG_AUTO_REMOVE", "DB_LOG_AUTOREMOVE"]:
|
|
|
|
if hasattr(db, flag):
|
|
|
|
autoremove_flag = getattr(db, flag)
|
|
|
|
break
|
|
|
|
for method in ["log_set_config", "set_flags"]:
|
|
|
|
if hasattr(env, method):
|
|
|
|
autoremove_method = getattr(env, method)
|
|
|
|
break
|
|
|
|
if autoremove_method and autoremove_flag:
|
|
|
|
autoremove_method(autoremove_flag, 1)
|
|
|
|
else:
|
|
|
|
print("Failed to set autoremove flag")
|
|
|
|
env_flags = db.DB_CREATE|db.DB_RECOVER|db.DB_PRIVATE|\
|
|
|
|
db.DB_INIT_MPOOL|db.DB_INIT_LOCK|\
|
|
|
|
db.DB_INIT_LOG|db.DB_INIT_TXN|db.DB_THREAD
|
|
|
|
try:
|
|
|
|
env.open(env_name,env_flags)
|
|
|
|
except db.DBRunRecoveryError as e:
|
|
|
|
print("Exception: ")
|
|
|
|
print(e)
|
|
|
|
env.remove(env_name)
|
|
|
|
env.open(env_name,env_flags)
|
|
|
|
print("OK")
|