2011-01-30 22:29:23 -08:00
|
|
|
from sqlalchemy import MetaData, Table, engine_from_config, orm
|
2009-02-05 00:05:42 -08:00
|
|
|
|
2010-05-13 10:33:07 -07:00
|
|
|
from ..defaults import get_default_db_uri
|
2009-02-05 00:05:42 -08:00
|
|
|
from .tables import metadata
|
2011-03-21 22:32:52 -07:00
|
|
|
from .multilang import MultilangSession
|
2009-02-05 00:05:42 -08:00
|
|
|
|
2010-05-13 10:33:07 -07:00
|
|
|
|
2011-01-30 22:29:23 -08:00
|
|
|
def connect(uri=None, session_args={}, engine_args={}, engine_prefix=''):
|
2009-02-05 00:05:42 -08:00
|
|
|
"""Connects to the requested URI. Returns a session object.
|
|
|
|
|
2009-08-18 18:02:53 -07:00
|
|
|
With the URI omitted, attempts to connect to a default SQLite database
|
|
|
|
contained within the package directory.
|
|
|
|
|
2009-02-05 00:05:42 -08:00
|
|
|
Calling this function also binds the metadata object to the created engine.
|
|
|
|
"""
|
|
|
|
|
2010-05-13 10:33:07 -07:00
|
|
|
# If we didn't get a uri, fall back to the default
|
2011-01-30 22:29:23 -08:00
|
|
|
if uri is None:
|
2011-03-12 16:46:04 +02:00
|
|
|
uri = engine_args.get(engine_prefix + 'url', None)
|
2010-05-13 10:33:07 -07:00
|
|
|
if uri is None:
|
|
|
|
uri = get_default_db_uri()
|
2009-08-18 18:02:53 -07:00
|
|
|
|
2009-02-05 00:05:42 -08:00
|
|
|
### Do some fixery for MySQL
|
|
|
|
if uri[0:5] == 'mysql':
|
|
|
|
# MySQL uses latin1 for connections by default even if the server is
|
|
|
|
# otherwise oozing with utf8; charset fixes this
|
|
|
|
if 'charset' not in uri:
|
|
|
|
uri += '?charset=utf8'
|
|
|
|
|
2009-03-07 18:54:01 -08:00
|
|
|
# Tables should be InnoDB, in the event that we're creating them, and
|
|
|
|
# use UTF-8 goddammit!
|
2009-02-05 00:05:42 -08:00
|
|
|
for table in metadata.tables.values():
|
|
|
|
table.kwargs['mysql_engine'] = 'InnoDB'
|
2009-03-07 18:54:01 -08:00
|
|
|
table.kwargs['mysql_charset'] = 'utf8'
|
2009-02-05 00:05:42 -08:00
|
|
|
|
|
|
|
### Connect
|
2011-01-30 22:29:23 -08:00
|
|
|
engine_args[engine_prefix + 'url'] = uri
|
|
|
|
engine = engine_from_config(engine_args, prefix=engine_prefix)
|
2009-02-05 00:05:42 -08:00
|
|
|
conn = engine.connect()
|
|
|
|
metadata.bind = engine
|
|
|
|
|
2010-03-17 00:44:19 -07:00
|
|
|
all_session_args = dict(autoflush=True, autocommit=False, bind=engine)
|
|
|
|
all_session_args.update(session_args)
|
2011-03-21 22:32:52 -07:00
|
|
|
sm = orm.sessionmaker(class_=MultilangSession, **all_session_args)
|
2009-02-05 00:05:42 -08:00
|
|
|
session = orm.scoped_session(sm)
|
|
|
|
|
|
|
|
return session
|