1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
##
# Copyright (c) 2005-2017 Apple Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
"""
Generic SQL database access object.
"""
__all__ = [
"db_prefix",
"DatabaseError",
"AbstractSQLDatabase",
]
import os
try:
import sqlite3 as sqlite
except ImportError:
from pysqlite2 import dbapi2 as sqlite
sqlite.connect(":memory:")
from twext.python.log import Logger
log = Logger()
db_prefix = ".db."
DatabaseError = sqlite.DatabaseError
class AbstractSQLDatabase (object):
"""
A generic SQL database.
"""
def __init__(self, dbpath, persistent, autocommit=False):
"""
@param dbpath: the path where the db file is stored.
@type dbpath: str
@param persistent: C{True} if the data in the DB must be perserved during upgrades,
C{False} if the DB data can be re-created from an external source.
@type persistent: bool
@param autocommit: C{True} if auto-commit mode is desired, C{False} otherwise
@type autocommit: bool
"""
self.dbpath = dbpath
self.persistent = persistent
self.autocommit = autocommit
def __repr__(self):
return "<%s %r>" % (self.__class__.__name__, self.dbpath)
def _db_version(self):
"""
@return: the schema version assigned to this index.
"""
raise NotImplementedError
def _db_type(self):
"""
@return: the collection type assigned to this index.
"""
raise NotImplementedError
def _db(self):
"""
Access the underlying database.
@return: a db2 connection object for this index's underlying data store.
"""
if not hasattr(self, "_db_connection"):
db_filename = self.dbpath
try:
if self.autocommit:
self._db_connection = sqlite.connect(db_filename, isolation_level=None)
else:
self._db_connection = sqlite.connect(db_filename)
except DatabaseError:
raise DatabaseError("Unable to open database %s" % (self.dbpath,))
q = self._db_connection.cursor()
#
# Set Journal mode to PERSIST to avoid constant unlink calls
#
q.execute("PRAGMA journal_mode = PERSIST")
#
# Set up the schema
#
try:
# Create CALDAV table if needed
if self._test_schema_table(q):
version, dbtype = self._get_schema_version(q)
if (version != self._db_version()) or (dbtype != self._db_type()):
# Clean-up first
q.close()
q = None
self._db_connection.close()
del(self._db_connection)
if dbtype != self._db_type():
log.error(
"Database {f} has different type ({t1} vs. {t2})",
f=db_filename, t1=dbtype, t2=self._db_type(),
)
# Delete this index and start over
os.remove(db_filename)
return self._db()
if version != self._db_version():
log.error(
"Database {f} has different schema (v.{v1} vs. v.{v2})",
f=db_filename, v1=version, v2=self._db_version(),
)
# Upgrade the DB
return self._db_upgrade(version)
else:
self._db_init(db_filename, q)
self._db_connection.commit()
finally:
if q is not None:
q.close()
return self._db_connection
def _test_schema_table(self, q):
q.execute("""
select (1) from SQLITE_MASTER
where TYPE = 'table' and NAME = 'CALDAV'
""")
return q.fetchone()
def _get_schema_version(self, q):
q.execute(
"""
select VALUE from CALDAV
where KEY = 'SCHEMA_VERSION'
""")
version = q.fetchone()
if version is not None:
version = version[0]
q.execute(
"""
select VALUE from CALDAV
where KEY = 'TYPE'
""")
dbtype = q.fetchone()
if dbtype is not None:
dbtype = dbtype[0]
return version, dbtype
def _db_init(self, db_filename, q):
"""
Initialise the underlying database tables.
@param db_filename: the file name of the index database.
@param q: a database cursor to use.
"""
log.info("Initializing database {f}", f=db_filename)
# We need an exclusive lock here as we are making a big change to the database and we don't
# want other processes to get stomped on or stomp on us.
old_isolation = self._db_connection.isolation_level
self._db_connection.isolation_level = None
try:
q.execute("begin exclusive transaction")
# We re-check whether the schema table is present again AFTER we've got an exclusive
# lock as some other server process may have snuck in and already created it
# before we got the lock, or whilst we were waiting for it.
if not self._test_schema_table(q):
self._db_init_schema_table(q)
self._db_init_data_tables(q)
self._db_recreate(False)
q.execute("commit")
except DatabaseError:
pass
self._db_connection.isolation_level = old_isolation
def _db_init_schema_table(self, q):
"""
Initialise the underlying database tables.
@param db_filename: the file name of the index database.
@param q: a database cursor to use.
"""
#
# CALDAV table keeps track of our schema version and type
#
q.execute(
"""
create table CALDAV (
KEY text unique, VALUE text unique
)
"""
)
q.execute(
"""
insert into CALDAV (KEY, VALUE)
values ('SCHEMA_VERSION', :1)
""", [self._db_version()]
)
q.execute(
"""
insert into CALDAV (KEY, VALUE)
values ('TYPE', :1)
""", [self._db_type()]
)
def _db_init_data_tables(self, q):
"""
Initialise the underlying database tables.
@param db_filename: the file name of the index database.
@param q: a database cursor to use.
"""
raise NotImplementedError
def _db_recreate(self, do_commit=True):
"""
Recreate the database tables.
"""
# Always commit at the end of this method as we have an open transaction from previous methods.
if do_commit:
self._db_commit()
def _db_can_upgrade(self, old_version):
return self.persistent
def _db_upgrade(self, old_version):
"""
Upgrade the database tables.
"""
if self._db_can_upgrade(old_version):
self._db_connection = sqlite.connect(self.dbpath, isolation_level=None)
q = self._db_connection.cursor()
q.execute("begin exclusive transaction")
# We re-check whether the schema version again AFTER we've got an exclusive
# lock as some other server process may have snuck in and already upgraded it
# before we got the lock, or whilst we were waiting for it.
version, _ignore_dbtype = self._get_schema_version(q)
if version != self._db_version():
self._db_upgrade_data_tables(q, old_version)
self._db_upgrade_schema(q)
q.execute("commit")
self._db_close()
else:
# Non-persistent DB's by default can be removed and re-created. However, for simple
# DB upgrades they SHOULD override this method and handle those for better performance.
os.remove(self.dbpath)
return self._db()
def _db_upgrade_data_tables(self, q, old_version):
"""
Upgrade the data from an older version of the DB.
"""
# Persistent DB's MUST override this method and do a proper upgrade. Their data
# cannot be thrown away.
raise NotImplementedError("Persistent databases MUST support an upgrade method.")
def _db_upgrade_schema(self, q):
"""
Upgrade the stored schema version to the current one.
"""
q.execute(
"""
insert or replace into CALDAV (KEY, VALUE)
values ('SCHEMA_VERSION', :1)
""", [self._db_version()]
)
def _db_close(self):
if hasattr(self, "_db_connection"):
self._db_connection.close()
del self._db_connection
def _db_values_for_sql(self, sql, *query_params):
"""
Execute an SQL query and obtain the resulting values.
@param sql: the SQL query to execute.
@param query_params: parameters to C{sql}.
@return: an interable of values in the first column of each row
resulting from executing C{sql} with C{query_params}.
@raise AssertionError: if the query yields multiple columns.
"""
return (row[0] for row in self._db_execute(sql, *query_params))
def _db_value_for_sql(self, sql, *query_params):
"""
Execute an SQL query and obtain a single value.
@param sql: the SQL query to execute.
@param query_params: parameters to C{sql}.
@return: the value resulting from the executing C{sql} with
C{query_params}.
@raise AssertionError: if the query yields multiple rows or columns.
"""
value = None
for row in self._db_values_for_sql(sql, *query_params):
assert value is None, "Multiple values in DB for %s %s" % (sql, query_params)
value = row
return value
def _db_execute(self, sql, *query_params):
"""
Execute an SQL query and obtain the resulting values.
@param sql: the SQL query to execute.
@param query_params: parameters to C{sql}.
@return: an interable of tuples for each row resulting from executing
C{sql} with C{query_params}.
"""
q = self._db().cursor()
try:
q.execute(sql, query_params)
self.lastrowid = q.lastrowid
return q.fetchall()
except DatabaseError:
log.error("Exception while executing SQL on DB {s!r}: {q!r} {p!r}", s=self, q=sql, p=query_params)
raise
finally:
q.close()
def _db_commit(self):
self._db_connection.commit()
def _db_rollback(self):
self._db_connection.rollback()
|