UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

148 lines (146 loc) • 6.4 kB
import { __awaiter, __extends, __generator } from "tslib"; import mkdirp from 'mkdirp'; import path from 'path'; import { DriverPackageNotInstalledError } from "../../error/DriverPackageNotInstalledError"; import { SqliteQueryRunner } from "./SqliteQueryRunner"; import { DriverOptionNotSetError } from "../../error/DriverOptionNotSetError"; import { PlatformTools } from "../../platform/PlatformTools"; import { AbstractSqliteDriver } from "../sqlite-abstract/AbstractSqliteDriver"; /** * Organizes communication with sqlite DBMS. */ var SqliteDriver = /** @class */ (function (_super) { __extends(SqliteDriver, _super); // ------------------------------------------------------------------------- // Constructor // ------------------------------------------------------------------------- function SqliteDriver(connection) { var _this = _super.call(this, connection) || this; _this.connection = connection; _this.options = connection.options; _this.database = _this.options.database; // validate options to make sure everything is set if (!_this.options.database) throw new DriverOptionNotSetError("database"); // load sqlite package _this.loadDependencies(); return _this; } // ------------------------------------------------------------------------- // Public Methods // ------------------------------------------------------------------------- /** * Closes connection with database. */ SqliteDriver.prototype.disconnect = function () { return __awaiter(this, void 0, void 0, function () { var _this = this; return __generator(this, function (_a) { return [2 /*return*/, new Promise(function (ok, fail) { _this.queryRunner = undefined; _this.databaseConnection.close(function (err) { return err ? fail(err) : ok(); }); })]; }); }); }; /** * Creates a query runner used to execute database queries. */ SqliteDriver.prototype.createQueryRunner = function (mode) { if (!this.queryRunner) this.queryRunner = new SqliteQueryRunner(this); return this.queryRunner; }; SqliteDriver.prototype.normalizeType = function (column) { if (column.type === Buffer) { return "blob"; } return _super.prototype.normalizeType.call(this, column); }; // ------------------------------------------------------------------------- // Protected Methods // ------------------------------------------------------------------------- /** * Creates connection with the database. */ SqliteDriver.prototype.createDatabaseConnection = function () { return __awaiter(this, void 0, void 0, function () { // Internal function to run a command on the connection and fail if an error occured. function run(line) { return new Promise(function (ok, fail) { databaseConnection.run(line, function (err) { if (err) return fail(err); ok(); }); }); } var databaseConnection; var _this = this; return __generator(this, function (_a) { switch (_a.label) { case 0: return [4 /*yield*/, this.createDatabaseDirectory(this.options.database)]; case 1: _a.sent(); return [4 /*yield*/, new Promise(function (ok, fail) { var connection = new _this.sqlite.Database(_this.options.database, function (err) { if (err) return fail(err); ok(connection); }); })]; case 2: databaseConnection = _a.sent(); if (!this.options.enableWAL) return [3 /*break*/, 4]; return [4 /*yield*/, run("PRAGMA journal_mode = WAL;")]; case 3: _a.sent(); _a.label = 4; case 4: // we need to enable foreign keys in sqlite to make sure all foreign key related features // working properly. this also makes onDelete to work with sqlite. return [4 /*yield*/, run("PRAGMA foreign_keys = ON;")]; case 5: // we need to enable foreign keys in sqlite to make sure all foreign key related features // working properly. this also makes onDelete to work with sqlite. _a.sent(); if (!this.options.key) return [3 /*break*/, 7]; return [4 /*yield*/, run("PRAGMA key = " + JSON.stringify(this.options.key) + ";")]; case 6: _a.sent(); _a.label = 7; case 7: return [2 /*return*/, databaseConnection]; } }); }); }; /** * If driver dependency is not given explicitly, then try to load it via "require". */ SqliteDriver.prototype.loadDependencies = function () { try { this.sqlite = PlatformTools.load("sqlite3").verbose(); } catch (e) { throw new DriverPackageNotInstalledError("SQLite", "sqlite3"); } }; /** * Auto creates database directory if it does not exist. */ SqliteDriver.prototype.createDatabaseDirectory = function (fullPath) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { switch (_a.label) { case 0: return [4 /*yield*/, mkdirp(path.dirname(fullPath))]; case 1: _a.sent(); return [2 /*return*/]; } }); }); }; return SqliteDriver; }(AbstractSqliteDriver)); export { SqliteDriver }; //# sourceMappingURL=SqliteDriver.js.map