2015-04-01 09:12:33 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-04-01 09:12:33 -04: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.
|
2018-01-06 12:13:56 -05:00
|
|
|
import platform
|
2015-04-02 05:06:22 -04:00
|
|
|
|
2020-02-27 06:53:40 -05:00
|
|
|
from ._base import BaseDatabaseEngine, IncorrectDatabaseSetup
|
2018-07-09 02:09:20 -04:00
|
|
|
from .postgres import PostgresEngine
|
2019-01-24 05:31:54 -05:00
|
|
|
from .sqlite import Sqlite3Engine
|
2015-04-01 09:12:33 -04:00
|
|
|
|
|
|
|
|
2020-02-27 06:53:40 -05:00
|
|
|
def create_engine(database_config) -> BaseDatabaseEngine:
|
2016-04-06 09:08:18 -04:00
|
|
|
name = database_config["name"]
|
2015-04-01 09:12:33 -04:00
|
|
|
|
2020-02-27 06:53:40 -05:00
|
|
|
if name == "sqlite3":
|
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
return Sqlite3Engine(sqlite3, database_config)
|
|
|
|
|
|
|
|
if name == "psycopg2":
|
2018-04-09 19:21:51 -04:00
|
|
|
# pypy requires psycopg2cffi rather than psycopg2
|
2020-02-27 06:53:40 -05:00
|
|
|
if platform.python_implementation() == "PyPy":
|
|
|
|
import psycopg2cffi as psycopg2 # type: ignore
|
|
|
|
else:
|
|
|
|
import psycopg2 # type: ignore
|
|
|
|
|
|
|
|
return PostgresEngine(psycopg2, database_config)
|
2015-04-01 09:12:33 -04:00
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
raise RuntimeError("Unsupported database engine '%s'" % (name,))
|
2015-04-29 06:56:38 -04:00
|
|
|
|
|
|
|
|
2020-02-27 06:53:40 -05:00
|
|
|
__all__ = ["create_engine", "BaseDatabaseEngine", "IncorrectDatabaseSetup"]
|