UNPKG

vulcain-corejs

Version:
89 lines (87 loc) 4.2 kB
"use strict"; 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); } }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments)).next()); }); }; const annotations_1 = require("../../di/annotations"); const annotations_2 = require("../../di/annotations"); const metrics_1 = require("../../metrics/metrics"); const system_1 = require("../../configurations/globals/system"); /** * * * @export * @abstract * @class AbstractCommand * @template T */ let AbstractProviderCommand = class AbstractProviderCommand { /** * Creates an instance of AbstractCommand. * * @param {IContainer} container * @param {any} providerFactory */ constructor(container) { this.providerFactory = container.get(annotations_1.DefaultServiceNames.ProviderFactory); this.metrics = container.get(annotations_1.DefaultServiceNames.Metrics); } get container() { return this.requestContext.container; } /** * * * @param {string} schema */ setSchemaAsync(schema) { return __awaiter(this, void 0, void 0, function* () { if (schema && !this.provider) { this.schema = this.container.get(annotations_1.DefaultServiceNames.Domain).getSchema(schema); this.provider = yield this.providerFactory.getProviderAsync(this.requestContext, this.requestContext.tenant); this.initializeMetricsInfo(); } }); } initializeMetricsInfo() { this.setMetricsTags(this.provider.address, this.schema.name); } setMetricsTags(address, schema, tenant) { address = system_1.System.removePasswordFromUrl(address); let exists = system_1.System.manifest.dependencies.databases.find(db => db.address === address && db.schema === db.schema); if (!exists) { system_1.System.manifest.dependencies.databases.push({ address, schema }); } this.customTags = this.metrics.encodeTags("address=" + address, "schema=" + schema, "tenant=" + (tenant || this.requestContext.tenant)); } onCommandCompleted(duration, success) { if (this.schema && this.provider) { this.metrics.timing(AbstractProviderCommand.METRICS_NAME + metrics_1.MetricsConstant.duration, duration, this.customTags); if (!success) this.metrics.increment(AbstractProviderCommand.METRICS_NAME + metrics_1.MetricsConstant.failure, this.customTags); } } }; AbstractProviderCommand.METRICS_NAME = "database_io"; AbstractProviderCommand = __decorate([ __param(0, annotations_2.Inject(annotations_1.DefaultServiceNames.Container)), __metadata("design:paramtypes", [Object]) ], AbstractProviderCommand); exports.AbstractProviderCommand = AbstractProviderCommand; //# sourceMappingURL=abstractProviderCommand.js.map