2015-04-01 15:12:33 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-04-01 15:12:33 +02:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2015-04-02 11:06:22 +02:00
|
|
|
import importlib
|
2018-01-06 18:13:56 +01:00
|
|
|
import platform
|
2015-04-02 11:06:22 +02:00
|
|
|
|
2018-07-09 08:09:20 +02:00
|
|
|
from ._base import IncorrectDatabaseSetup
|
|
|
|
from .postgres import PostgresEngine
|
|
|
|
from .sqlite3 import Sqlite3Engine
|
2015-04-01 15:12:33 +02:00
|
|
|
|
|
|
|
SUPPORTED_MODULE = {
|
|
|
|
"sqlite3": Sqlite3Engine,
|
2015-04-14 14:53:20 +02:00
|
|
|
"psycopg2": PostgresEngine,
|
2015-04-01 15:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-06 15:08:18 +02:00
|
|
|
def create_engine(database_config):
|
|
|
|
name = database_config["name"]
|
2015-04-01 15:12:33 +02:00
|
|
|
engine_class = SUPPORTED_MODULE.get(name, None)
|
|
|
|
|
|
|
|
if engine_class:
|
2018-04-10 01:21:51 +02:00
|
|
|
# pypy requires psycopg2cffi rather than psycopg2
|
|
|
|
if (name == "psycopg2" and
|
|
|
|
platform.python_implementation() == "PyPy"):
|
|
|
|
name = "psycopg2cffi"
|
|
|
|
module = importlib.import_module(name)
|
2016-06-20 18:53:38 +02:00
|
|
|
return engine_class(module, database_config)
|
2015-04-01 15:12:33 +02:00
|
|
|
|
|
|
|
raise RuntimeError(
|
|
|
|
"Unsupported database engine '%s'" % (name,)
|
|
|
|
)
|
2015-04-29 12:56:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
__all__ = ["create_engine", "IncorrectDatabaseSetup"]
|