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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
|
# engine.py
# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""builds upon the schema and sql packages to provide a central object for tying schema
objects and sql constructs to database-specific query compilation and execution"""
import sqlalchemy.schema as schema
import sqlalchemy.pool
import sqlalchemy.util as util
import sqlalchemy.sql as sql
import StringIO, sys, re
import sqlalchemy.types as types
import sqlalchemy.databases
__all__ = ['create_engine', 'engine_descriptors']
def create_engine(name, *args ,**kwargs):
"""creates a new SQLEngine instance.
name - the type of engine to load, i.e. 'sqlite', 'postgres', 'oracle'
*args, **kwargs - sent directly to the specific engine instance as connect arguments,
options.
"""
m = re.match(r'(\w+)://(.*)', name)
if m is not None:
(name, args) = m.group(1, 2)
opts = {}
def assign(m):
opts[m.group(1)] = m.group(2)
re.sub(r'([^&]+)=([^&]*)', assign, args)
args = [opts]
module = getattr(__import__('sqlalchemy.databases.%s' % name).databases, name)
return module.engine(*args, **kwargs)
def engine_descriptors():
result = []
for module in sqlalchemy.databases.__all__:
module = getattr(__import__('sqlalchemy.databases.%s' % module).databases, module)
result.append(module.descriptor())
return result
class SchemaIterator(schema.SchemaVisitor):
"""a visitor that can gather text into a buffer and execute the contents of the buffer."""
def __init__(self, sqlproxy, **params):
"""initializes this SchemaIterator and initializes its buffer.
sqlproxy - a callable function returned by SQLEngine.proxy(), which executes a
statement plus optional parameters.
"""
self.sqlproxy = sqlproxy
self.buffer = StringIO.StringIO()
def append(self, s):
"""appends content to the SchemaIterator's query buffer."""
self.buffer.write(s)
def execute(self):
"""executes the contents of the SchemaIterator's buffer using its sql proxy and
clears out the buffer."""
try:
return self.sqlproxy(self.buffer.getvalue())
finally:
self.buffer.truncate(0)
class DefaultRunner(schema.SchemaVisitor):
def __init__(self, proxy):
self.proxy = proxy
def visit_sequence(self, seq):
"""sequences are not supported by default"""
return None
def visit_column_default(self, default):
if isinstance(default.arg, ClauseElement):
c = default.arg.compile()
return proxy.execute(str(c), c.get_params())
elif callable(default.arg):
return default.arg()
else:
return default.arg
class SQLEngine(schema.SchemaEngine):
"""base class for a series of database-specific engines. serves as an abstract factory
for implementation objects as well as database connections, transactions, SQL generators,
etc."""
def __init__(self, pool = None, echo = False, logger = None, **params):
# get a handle on the connection pool via the connect arguments
# this insures the SQLEngine instance integrates with the pool referenced
# by direct usage of pool.manager(<module>).connect(*args, **params)
(cargs, cparams) = self.connect_args()
if pool is None:
self._pool = sqlalchemy.pool.manage(self.dbapi(), **params).get_pool(*cargs, **cparams)
else:
self._pool = pool
self.echo = echo
self.context = util.ThreadLocal(raiseerror=False)
self.tables = {}
self.notes = {}
if logger is None:
self.logger = sys.stdout
else:
self.logger = logger
def type_descriptor(self, typeobj):
if type(typeobj) is type:
typeobj = typeobj()
return typeobj
def schemagenerator(self, proxy, **params):
raise NotImplementedError()
def schemadropper(self, proxy, **params):
raise NotImplementedError()
def defaultrunner(self, proxy):
return DefaultRunner(proxy)
def compiler(self, statement, bindparams):
raise NotImplementedError()
def rowid_column_name(self):
"""returns the ROWID column name for this engine."""
return "oid"
def supports_sane_rowcount(self):
"""ill give everyone one guess which database warrants this method."""
return True
def create(self, table, **params):
"""creates a table given a schema.Table object."""
table.accept_visitor(self.schemagenerator(self.proxy(), **params))
def drop(self, table, **params):
"""drops a table given a schema.Table object."""
table.accept_visitor(self.schemadropper(self.proxy(), **params))
def compile(self, statement, bindparams, **kwargs):
"""given a sql.ClauseElement statement plus optional bind parameters, creates a new
instance of this engine's SQLCompiler, compiles the ClauseElement, and returns the
newly compiled object."""
compiler = self.compiler(statement, bindparams, **kwargs)
statement.accept_visitor(compiler)
compiler.after_compile()
return compiler
def reflecttable(self, table):
"""given a Table object, reflects its columns and properties from the database."""
raise NotImplementedError()
def tableimpl(self, table):
"""returns a new sql.TableImpl object to correspond to the given Table object."""
return sql.TableImpl(table)
def columnimpl(self, column):
"""returns a new sql.ColumnImpl object to correspond to the given Column object."""
return sql.ColumnImpl(column)
def get_default_schema_name(self):
return None
def last_inserted_ids(self):
"""returns a thread-local list of the primary keys for the last insert statement executed.
This does not apply to straight textual clauses; only to sql.Insert objects compiled against a schema.Table object, which are executed via statement.execute(). The order of items in the list is the same as that of the Table's 'primary_key' attribute."""
raise NotImplementedError()
def connect_args(self):
"""subclasses override this method to provide a two-item tuple containing the *args
and **kwargs used to establish a connection."""
raise NotImplementedError()
def dbapi(self):
"""subclasses override this method to provide the DBAPI module used to establish
connections."""
raise NotImplementedError()
def do_begin(self, connection):
"""implementations might want to put logic here for turning autocommit on/off,
etc."""
pass
def do_rollback(self, connection):
"""implementations might want to put logic here for turning autocommit on/off,
etc."""
connection.rollback()
def do_commit(self, connection):
"""implementations might want to put logic here for turning autocommit on/off, etc."""
connection.commit()
def proxy(self, **kwargs):
return lambda s, p = None: self.execute(s, p, **kwargs)
def connection(self):
"""returns a managed DBAPI connection from this SQLEngine's connection pool."""
return self._pool.connect()
def multi_transaction(self, tables, func):
"""provides a transaction boundary across tables which may be in multiple databases.
clearly, this approach only goes so far, such as if database A commits, then database B commits
and fails, A is already committed. Any failure conditions have to be raised before anyone
commits for this to be useful."""
engines = util.HashSet()
for table in tables:
engines.append(table.engine)
for engine in engines:
engine.begin()
try:
func()
except:
for engine in engines:
engine.rollback()
raise
for engine in engines:
engine.commit()
def transaction(self, func):
self.begin()
try:
func()
except:
self.rollback()
raise
self.commit()
def begin(self):
if getattr(self.context, 'transaction', None) is None:
conn = self.connection()
self.do_begin(conn)
self.context.transaction = conn
self.context.tcount = 1
else:
self.context.tcount += 1
def rollback(self):
if self.context.transaction is not None:
self.do_rollback(self.context.transaction)
self.context.transaction = None
self.context.tcount = None
def commit(self):
if self.context.transaction is not None:
count = self.context.tcount - 1
self.context.tcount = count
if count == 0:
self.do_commit(self.context.transaction)
self.context.transaction = None
self.context.tcount = None
def _process_defaults(self, proxy, statement, parameters, compiled=None, **kwargs):
if compiled is None: return
if getattr(compiled, "isinsert", False):
# TODO: this sucks. we have to get "parameters" to be a more standardized object
if isinstance(parameters, list) and (isinstance(parameters[0], list) or isinstance(parameters[0], dict)):
plist = parameters
else:
plist = [parameters]
# inserts are usually one at a time. but if we got a list of parameters,
# it will calculate last_inserted_ids for just the last row in the list.
# TODO: why not make last_inserted_ids a 2D array since we have to explicitly sequence
# it or post-select anyway
drunner = self.defaultrunner(proxy)
for param in plist:
# the parameters might be positional, so convert them
# to a dictionary
# TODO: this is stupid. or, is this stupid ?
# any way we can just have an OrderedDict so we have the
# dictionary + postional version each time ?
param = compiled.get_named_params(param)
last_inserted_ids = []
need_lastrowid=False
for c in compiled.statement.table.c:
if not param.has_key(c.key) or param[c.key] is None:
if c.default is not None:
newid = c.default.accept_visitor(drunner)
else:
newid = None
if newid is not None:
param[c.key] = newid
if c.primary_key:
last_inserted_ids.append(param[c.key])
elif c.primary_key:
need_lastrowid = True
elif c.primary_key:
last_inserted_ids.append(param[c.key])
if need_lastrowid:
self.context.last_inserted_ids = None
else:
self.context.last_inserted_ids = last_inserted_ids
def pre_exec(self, proxy, statement, parameters, **kwargs):
pass
def post_exec(self, proxy, statement, parameters, **kwargs):
pass
def execute(self, statement, parameters, connection=None, cursor=None, echo = None, typemap = None, commit=False, **kwargs):
"""executes the given string-based SQL statement with the given parameters.
The parameters can be a dictionary or a list, or a list of dictionaries or lists, depending
on the paramstyle of the DBAPI.
If the current thread has specified a transaction begin() for this engine, the
statement will be executed in the context of the current transactional connection.
Otherwise, a commit() will be performed immediately after execution, since the local
pooled connection is returned to the pool after execution without a transaction set
up.
In all error cases, a rollback() is immediately performed on the connection before
propigating the exception outwards.
Other options include:
connection - a DBAPI connection to use for the execute. If None, a connection is
pulled from this engine's connection pool.
echo - enables echo for this execution, which causes all SQL and parameters
to be dumped to the engine's logging output before execution.
typemap - a map of column names mapped to sqlalchemy.types.TypeEngine objects.
These will be passed to the created ResultProxy to perform
post-processing on result-set values.
commit - if True, will automatically commit the statement after completion. """
if parameters is None:
parameters = {}
if connection is None:
connection = self.connection()
if cursor is None:
cursor = connection.cursor()
def proxy(statement=None, parameters=None):
if statement is None:
return cursor
if echo is True or self.echo is not False:
self.log(statement)
self.log(repr(parameters))
if parameters is not None and isinstance(parameters, list) and len(parameters) > 0 and (isinstance(parameters[0], list) or isinstance(parameters[0], dict)):
self._executemany(cursor, statement, parameters)
else:
self._execute(cursor, statement, parameters)
return cursor
try:
self.pre_exec(proxy, statement, parameters, **kwargs)
self._process_defaults(proxy, statement, parameters, **kwargs)
proxy(statement, parameters)
self.post_exec(proxy, statement, parameters, **kwargs)
if commit or self.context.transaction is None:
self.do_commit(connection)
except:
self.do_rollback(connection)
# TODO: wrap DB exceptions ?
raise
return ResultProxy(cursor, self, typemap = typemap)
def _execute(self, c, statement, parameters):
c.execute(statement, parameters)
self.context.rowcount = c.rowcount
def _executemany(self, c, statement, parameters):
c.executemany(statement, parameters)
self.context.rowcount = c.rowcount
def log(self, msg):
"""logs a message using this SQLEngine's logger stream."""
self.logger.write(msg + "\n")
class ResultProxy:
"""wraps a DBAPI cursor object to provide access to row columns based on integer
position, case-insensitive column name, or by schema.Column object. e.g.:
row = fetchone()
col1 = row[0] # access via integer position
col2 = row['col2'] # access via name
col3 = row[mytable.c.mycol] # access via Column object.
#the Column's 'label', 'key', and 'name' properties are
# searched in that order.
"""
class AmbiguousColumn(object):
def __init__(self, key):
self.key = key
def convert_result_value(self, arg):
raise "Ambiguous column name '%s' in result set! try 'use_labels' option on select statement." % (self.key)
def __init__(self, cursor, engine, typemap = None):
self.cursor = cursor
self.echo = engine.echo=="debug"
self.rowcount = engine.context.rowcount
metadata = cursor.description
self.props = {}
i = 0
if metadata is not None:
for item in metadata:
# sqlite possibly prepending table name to colnames so strip
colname = item[0].split('.')[-1].lower()
if typemap is not None:
rec = (typemap.get(colname, types.NULLTYPE), i)
else:
rec = (types.NULLTYPE, i)
if self.props.setdefault(colname, rec) is not rec:
self.props[colname] = (ResultProxy.AmbiguousColumn(colname), 0)
self.props[i] = rec
i+=1
def _get_col(self, row, key):
if isinstance(key, schema.Column):
try:
rec = self.props[key.label.lower()]
except KeyError:
try:
rec = self.props[key.key.lower()]
except KeyError:
rec = self.props[key.name.lower()]
elif isinstance(key, str):
rec = self.props[key.lower()]
else:
rec = self.props[key]
return rec[0].convert_result_value(row[rec[1]])
def fetchall(self):
"""fetches all rows, just like DBAPI cursor.fetchall()."""
l = []
while True:
v = self.fetchone()
if v is None:
return l
l.append(v)
def fetchone(self):
"""fetches one row, just like DBAPI cursor.fetchone()."""
row = self.cursor.fetchone()
if row is not None:
if self.echo: print repr(row)
return RowProxy(self, row)
else:
return None
class RowProxy:
"""proxies a single cursor row for a parent ResultProxy."""
def __init__(self, parent, row):
self.parent = parent
self.row = row
def __iter__(self):
return iter(self.row)
def __eq__(self, other):
return (other is self) or (other == tuple([self.parent._get_col(self.row, key) for key in range(0, len(self.row))]))
def __repr__(self):
return repr(tuple([self.parent._get_col(self.row, key) for key in range(0, len(self.row))]))
def __getitem__(self, key):
return self.parent._get_col(self.row, key)
|