mirror of
https://github.com/weewx/weewx.git
synced 2026-04-19 17:16:56 -04:00
204 lines
6.4 KiB
Python
204 lines
6.4 KiB
Python
#
|
|
# Copyright (c) 2009-2015 Tom Keffer <tkeffer@gmail.com>
|
|
#
|
|
# See the file LICENSE.txt for your full rights.
|
|
#
|
|
"""Middleware that sits above DBAPI and makes it a little more database independent.
|
|
|
|
Weedb generally follows the MySQL exception model. Specifically:
|
|
- Operations on a non-existent database result in a weedb.OperationalError exception
|
|
being raised.
|
|
- Operations on a non-existent table result in a weedb.ProgrammingError exception
|
|
being raised.
|
|
- Select statements requesting non-existing columns result in a weedb.OperationalError
|
|
exception being raised.
|
|
- Attempt to add a duplicate key results in a weedb.IntegrityError exception
|
|
being raised.
|
|
"""
|
|
|
|
import sys
|
|
|
|
# The exceptions that the weedb package can raise:
|
|
class DatabaseError(Exception):
|
|
"""Base class of all weedb exceptions."""
|
|
|
|
class IntegrityError(DatabaseError):
|
|
"""Operation attempted involving the relational integrity of the database."""
|
|
|
|
class ProgrammingError(DatabaseError):
|
|
"""SQL or other programming error."""
|
|
|
|
class DatabaseExistsError(ProgrammingError):
|
|
"""Attempt to create a database that already exists"""
|
|
|
|
class TableExistsError(ProgrammingError):
|
|
"""Attempt to create a table that already exists."""
|
|
|
|
class NoTableError(ProgrammingError):
|
|
"""Attempt to operate on a non-existing table."""
|
|
|
|
class OperationalError(DatabaseError):
|
|
"""Runtime database errors."""
|
|
|
|
class NoDatabaseError(OperationalError):
|
|
"""Operation attempted on a database that does not exist."""
|
|
|
|
class CannotConnectError(OperationalError):
|
|
"""Unable to connect to the database server."""
|
|
|
|
class DisconnectError(OperationalError):
|
|
"""Database went away."""
|
|
|
|
class NoColumnError(OperationalError):
|
|
"""Attempt to operate on a column that does not exist."""
|
|
|
|
class BadPasswordError(OperationalError):
|
|
"""Bad or missing password."""
|
|
|
|
class PermissionError(OperationalError):
|
|
"""Lacking necessary permissions."""
|
|
|
|
# For backwards compatibility:
|
|
DatabaseExists = DatabaseExistsError
|
|
NoDatabase = NoDatabaseError
|
|
CannotConnect = CannotConnectError
|
|
|
|
# In what follows, the test whether a database dictionary has function "dict" is
|
|
# to get around a bug in ConfigObj. It seems to be unable to unpack (using the
|
|
# '**' notation) a ConfigObj dictionary into a function. By calling .dict() a
|
|
# regular dictionary is returned, which can be unpacked.
|
|
|
|
def create(db_dict):
|
|
"""Create a database. If it already exists, an exception of type
|
|
weedb.DatabaseExistsError will be raised."""
|
|
__import__(db_dict['driver'])
|
|
driver_mod = sys.modules[db_dict['driver']]
|
|
# See note above
|
|
if hasattr(db_dict, "dict"):
|
|
return driver_mod.create(**db_dict.dict())
|
|
else:
|
|
return driver_mod.create(**db_dict)
|
|
|
|
|
|
def connect(db_dict):
|
|
"""Return a connection to a database. If the database does not
|
|
exist, an exception of type weedb.NoDatabaseError will be raised."""
|
|
__import__(db_dict['driver'])
|
|
driver_mod = sys.modules[db_dict['driver']]
|
|
# See note above
|
|
if hasattr(db_dict, "dict"):
|
|
return driver_mod.connect(**db_dict.dict())
|
|
else:
|
|
return driver_mod.connect(**db_dict)
|
|
|
|
|
|
def drop(db_dict):
|
|
"""Drop (delete) a database. If the database does not exist,
|
|
the exception weedb.NoDatabaseError will be raised."""
|
|
__import__(db_dict['driver'])
|
|
driver_mod = sys.modules[db_dict['driver']]
|
|
# See note above
|
|
if hasattr(db_dict, "dict"):
|
|
return driver_mod.drop(**db_dict.dict())
|
|
else:
|
|
return driver_mod.drop(**db_dict)
|
|
|
|
|
|
class Connection(object):
|
|
"""Abstract base class, representing a connection to a database."""
|
|
|
|
def __init__(self, connection, database_name, dbtype):
|
|
"""Superclass should raise exception of type weedb.OperationalError
|
|
if the database does not exist."""
|
|
self.connection = connection
|
|
self.database_name = database_name
|
|
self.dbtype = dbtype
|
|
|
|
def cursor(self):
|
|
"""Returns an appropriate database cursor."""
|
|
raise NotImplementedError
|
|
|
|
def execute(self, sql_string, sql_tuple=()):
|
|
"""Execute a sql statement. This version does not return a cursor,
|
|
so it can only be used for statements that do not return a result set."""
|
|
|
|
cursor = self.cursor()
|
|
try:
|
|
cursor.execute(sql_string, sql_tuple)
|
|
finally:
|
|
cursor.close()
|
|
|
|
def tables(self):
|
|
"""Returns a list of the tables in the database.
|
|
Returns an empty list if the database has no tables in it."""
|
|
raise NotImplementedError
|
|
|
|
def genSchemaOf(self, table):
|
|
"""Generator function that returns a summary of the table's schema.
|
|
It returns a 6-way tuple:
|
|
(number, column_name, column_type, can_be_null, default_value, is_primary)
|
|
|
|
Example:
|
|
(2, 'mintime', 'INTEGER', True, None, False)"""
|
|
raise NotImplementedError
|
|
|
|
def columnsOf(self, table):
|
|
"""Returns a list of the column names in the specified table. Implementers
|
|
should raise an exception of type weedb.ProgrammingError if the table does not exist."""
|
|
raise NotImplementedError
|
|
|
|
def get_variable(self, var_name):
|
|
"""Return a database specific operational variable. Generally, things like
|
|
pragmas, or optimization-related variables.
|
|
|
|
It returns a 2-way tuple:
|
|
(variable-name, variable-value)
|
|
If the variable does not exist, it returns None.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
def begin(self):
|
|
raise NotImplementedError
|
|
|
|
def commit(self):
|
|
raise NotImplementedError
|
|
|
|
def rollback(self):
|
|
raise NotImplementedError
|
|
|
|
def close(self):
|
|
try:
|
|
self.connection.close()
|
|
except DatabaseError:
|
|
pass
|
|
|
|
def __enter__(self):
|
|
return self
|
|
|
|
def __exit__(self, etyp, einst, etb): # @UnusedVariable
|
|
try:
|
|
self.close()
|
|
except DatabaseError:
|
|
pass
|
|
|
|
class Transaction(object):
|
|
"""Class to be used to wrap transactions in a 'with' clause."""
|
|
def __init__(self, connection):
|
|
self.connection = connection
|
|
self.cursor = self.connection.cursor()
|
|
|
|
def __enter__(self):
|
|
self.connection.begin()
|
|
return self.cursor
|
|
|
|
def __exit__(self, etyp, einst, etb): # @UnusedVariable
|
|
if etyp is None:
|
|
self.connection.commit()
|
|
else:
|
|
self.connection.rollback()
|
|
try:
|
|
self.cursor.close()
|
|
except DatabaseError:
|
|
pass
|
|
|