/usr/share/pyshared/trytond/backend/database.py is in tryton-server 2.2.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
from trytond.const import CONTEXT_CACHE_SIZE, MODEL_CACHE_SIZE
DatabaseIntegrityError = None
DatabaseOperationalError = None
class DatabaseInterface(object):
'''
Define generic interface for database connection
'''
def __new__(cls, database_name=''):
return object.__new__(cls)
def __init__(self, database_name=''):
self.database_name = database_name
def connect(self):
'''
Connect to the database
:return: the database
'''
raise NotImplementedError
def cursor(self, autocommit=False, readonly=False):
'''
Retreive a cursor on the database
:param autocommit: a boolean to active autocommit
:return: a Cursor
'''
raise NotImplementedError
def close(self):
'''
Close all connection
'''
raise NotImplementedError
def create(self, cursor, database_name):
'''
Create a database
:param database_name: the database name
'''
raise NotImplementedError
def drop(self, cursor, database_name):
'''
Drop a database
:param cursor: a cursor on an other database
:param database_name: the database name
'''
raise NotImplementedError
@staticmethod
def dump(database_name):
'''
Dump a database
:param database_name: the database name
:return: the dump
'''
raise NotImplementedError
@staticmethod
def restore(database_name, data):
'''
Restore a database
:param database_name: the database name
:param data: the data
:return: True if succeed
'''
raise NotImplementedError
@staticmethod
def list(cursor):
'''
Get the list of database
:return: a list of database name
'''
raise NotImplementedError
@staticmethod
def init(cursor):
'''
Initialize a database
:param cursor: a cursor on the database
'''
raise NotImplementedError
class CursorInterface(object):
'''
Define generic interface for database cursor
'''
sql_log = False
IN_MAX = 1000
def __init__(self):
from trytond.cache import LRUDict
self.cache = LRUDict(CONTEXT_CACHE_SIZE)
def get_cache(self, context=None):
'''
Return cache for the context
:param context: the context
:return: the cache dictionary
'''
from trytond.cache import LRUDict
from trytond.transaction import Transaction
user = Transaction().user
if context is None:
context = {}
cache_ctx = context.copy()
for i in ('_timestamp', '_delete', '_create_records',
'_delete_records'):
if i in cache_ctx:
del cache_ctx[i]
return self.cache.setdefault((user, repr(cache_ctx)),
LRUDict(MODEL_CACHE_SIZE))
def execute(self, sql, params=None):
'''
Execute a query
:param sql: a sql query string
:param params: a tuple or list of parameters
'''
raise NotImplementedError
def close(self, close=False):
'''
Close the cursor
:param close: boolean to not release cursor in pool
'''
raise NotImplementedError
def commit(self):
'''
Commit the cursor
'''
self.cache = {}
def rollback(self):
'''
Rollback the cursor
'''
self.cache = {}
def test(self):
'''
Test if it is a Tryton database.
'''
raise NotImplementedError
def nextid(self, table):
'''
Return the next sequenced id for a table.
:param table: the table name
:return: an integer
'''
def setnextid(self, table, value):
'''
Set the current sequenced id for a table.
:param table: the table name
'''
def currid(self, table):
'''
Return the current sequenced id for a table.
:param table: the table name
:return: an integer
'''
def lastid(self):
'''
Return the last id inserted.
:return: an integer
'''
def lock(self, table):
'''
Lock the table
:param table: the table name
'''
raise NotImplementedError
def has_constraint(self):
'''
Return True if database handle constraint.
:return: a boolean
'''
raise NotImplementedError
def limit_clause(self, select, limit=None, offset=None):
'''
Return SELECT queries with limit and offset
:param select: the SELECT query string
:param limit: the limit
:param offset: the offset
:return: a string
'''
raise NotImplementedError
def update_auto_increment(self, table, value):
'''
Update auto_increment value of table
:param table: the table name
:param value: the auto_increment value
'''
pass
def has_returning(self):
'''
Return True if database implements RETURNING clause in INSERT or UPDATE
statements.
:return: a boolean
'''
|