@golemio/pid
Version:
Golemio PID Module
76 lines • 4.09 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.RopidGtfsRepository = void 0;
const const_1 = require("../../../schema-definitions/const");
const CoreToken_1 = require("@golemio/core/dist/helpers/ioc/CoreToken");
const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
let RopidGtfsRepository = exports.RopidGtfsRepository = class RopidGtfsRepository {
constructor(connector, logger) {
this.connector = connector;
this.logger = logger;
this.preparationProcedure = "ropidgtfs_prepareTmpTables";
this.cleaningTmpProcedure = "ropidgtfs_cleanTmpTables";
this.cleaningOldProcedure = "ropidgtfs_cleanOldTables";
this.replaceAllProcedure = "ropidgtfs_replaceAllSavedTables";
this.createPrecomputedTmpTablesProcedure = "ropidgtfs_preparePrecomputedTmpTables";
}
async replaceAllTable(tables, t) {
this.logger.info(`Replacing tmp for actual tables: ${tables.join(", ")}`);
const connection = this.connector.getConnection();
await connection.query(`CALL ${const_1.PG_SCHEMA}.${this.replaceAllProcedure}($1);`, {
transaction: t,
bind: [tables.join(",")],
});
}
async createTmpTables() {
this.logger.info(`Creating tmp tables`);
const connection = this.connector.getConnection();
await connection.query(`CALL ${const_1.PG_SCHEMA}.${this.preparationProcedure}();`);
}
async createPrecomputedTmpTables() {
this.logger.info(`Creating precomputed tmp tables`);
const connection = this.connector.getConnection();
await connection.query(`CALL ${const_1.PG_SCHEMA}.${this.createPrecomputedTmpTablesProcedure}();`);
}
async cleanTmpAndOldTables() {
try {
this.logger.info(`Cleaning tmp and old tables`);
const connection = this.connector.getConnection();
await connection.query(`CALL ${const_1.PG_SCHEMA}.${this.cleaningOldProcedure}();`);
await connection.query(`CALL ${const_1.PG_SCHEMA}.${this.cleaningTmpProcedure}();`);
}
catch (err) {
this.logger.error(new golemio_errors_1.GeneralError("Error while cleaning tmp and old tables", this.constructor.name, err));
}
}
async cleanOldTables() {
try {
this.logger.info(`Cleaning tmp and old tables`);
const connection = this.connector.getConnection();
await connection.query(`CALL ${const_1.PG_SCHEMA}.${this.cleaningOldProcedure}();`);
}
catch (err) {
this.logger.error(new golemio_errors_1.GeneralError("Error while cleaning old tables", this.constructor.name, err));
}
}
};
exports.RopidGtfsRepository = RopidGtfsRepository = __decorate([
(0, tsyringe_1.injectable)(),
__param(0, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.PostgresConnector)),
__param(1, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.Logger)),
__metadata("design:paramtypes", [Object, Object])
], RopidGtfsRepository);
//# sourceMappingURL=RopidGtfsRepository.js.map