2010-05-13 06:23:05 +00:00
|
|
|
import os
|
2009-08-19 01:02:53 +00:00
|
|
|
import pkg_resources
|
|
|
|
|
2009-02-05 08:05:42 +00:00
|
|
|
from sqlalchemy import MetaData, Table, create_engine, orm
|
|
|
|
|
|
|
|
from .tables import metadata
|
|
|
|
|
2010-03-17 07:44:19 +00:00
|
|
|
def connect(uri=None, session_args={}, engine_args={}):
|
2009-02-05 08:05:42 +00:00
|
|
|
"""Connects to the requested URI. Returns a session object.
|
|
|
|
|
2009-08-19 01:02:53 +00:00
|
|
|
With the URI omitted, attempts to connect to a default SQLite database
|
|
|
|
contained within the package directory.
|
|
|
|
|
2009-02-05 08:05:42 +00:00
|
|
|
Calling this function also binds the metadata object to the created engine.
|
|
|
|
"""
|
|
|
|
|
2010-05-13 06:23:05 +00:00
|
|
|
# Fall back to the environment, then a URI within the package
|
|
|
|
if not uri:
|
|
|
|
uri = os.environ.get('POKEDEX_DB_ENGINE', None)
|
|
|
|
|
2009-08-19 01:02:53 +00:00
|
|
|
if not uri:
|
|
|
|
sqlite_path = pkg_resources.resource_filename('pokedex',
|
|
|
|
'data/pokedex.sqlite')
|
|
|
|
uri = 'sqlite:///' + sqlite_path
|
|
|
|
|
2009-02-05 08:05:42 +00: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-08 02:54:01 +00:00
|
|
|
# Tables should be InnoDB, in the event that we're creating them, and
|
|
|
|
# use UTF-8 goddammit!
|
2009-02-05 08:05:42 +00:00
|
|
|
for table in metadata.tables.values():
|
|
|
|
table.kwargs['mysql_engine'] = 'InnoDB'
|
2009-03-08 02:54:01 +00:00
|
|
|
table.kwargs['mysql_charset'] = 'utf8'
|
2009-02-05 08:05:42 +00:00
|
|
|
|
|
|
|
### Connect
|
2010-03-17 07:44:19 +00:00
|
|
|
engine = create_engine(uri, **engine_args)
|
2009-02-05 08:05:42 +00:00
|
|
|
conn = engine.connect()
|
|
|
|
metadata.bind = engine
|
|
|
|
|
2010-03-17 07:44:19 +00:00
|
|
|
all_session_args = dict(autoflush=True, autocommit=False, bind=engine)
|
|
|
|
all_session_args.update(session_args)
|
|
|
|
sm = orm.sessionmaker(**all_session_args)
|
2009-02-05 08:05:42 +00:00
|
|
|
session = orm.scoped_session(sm)
|
|
|
|
|
|
|
|
return session
|