-
Notifications
You must be signed in to change notification settings - Fork 0
/
delta-folder-files.mjs
56 lines (51 loc) · 2.34 KB
/
delta-folder-files.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { MultiBar } from "cli-progress";
import { cwd } from "node:process";
import { InfrastructureService } from "./infra.mjs";
import { DELTA_LOG_FAIXA_BAIRRO_STREAM } from "./streams/DELTA_FAIXA_BAIRRO.mjs";
import { DELTA_LOG_BAIRRO_STREAM } from "./streams/DELTA_LOG_BAIRRO.mjs";
import { DELTA_LOG_CPC_STREAM } from "./streams/DELTA_LOG_CPC.mjs";
import { DELTA_LOG_FAIXA_CPC_STREAM } from "./streams/DELTA_LOG_FAIXA_CPC.mjs";
import { DELTA_LOG_FAIXA_LOCALIDADE_STREAM } from "./streams/DELTA_LOG_FAIXA_LOCALIDADE.mjs";
import { DELTA_LOG_FAIXA_UOP_STREAM } from "./streams/DELTA_LOG_FAIXA_UOP.mjs";
import { DELTA_LOG_GRANDE_USUARIO_STREAM } from "./streams/DELTA_LOG_GRANDE_USUARIO.mjs";
import { DELTA_LOG_LOCALIDADE_STREAM } from "./streams/DELTA_LOG_LOCALIDADE.mjs";
import { DELTA_LOG_LOGRADOURO_STREAM } from "./streams/DELTA_LOG_LOGRADOURO.mjs";
import { DELTA_LOG_NUM_SEC_STREAM } from "./streams/DELTA_LOG_NUM_SEC.mjs";
import { DELTA_LOG_UNID_OPER_STREAM } from "./streams/DELTA_LOG_UNID_OPER.mjs";
/**
* @typedef DeltaFolderOptions
* @type {object}
* @property {InfrastructureService} infra - InfrastructureService.
* @property {Array<number>} lineCount - Counter of lines reading.
* @property {Array<number>} fileSizeCount - Counter of fileSize.
* @property {MultiBar} multiBar - MultiBar.
*/
export class DeltaFolderFiles {
_options;
/**
* @param {DeltaFolderOptions} options
*/
constructor(options) {
this._options = options;
}
async process() {
/**
* Caminho onde se encontram os arquivos `.TXT` do modelo delta
* delimitado por `@`
*/
const basePath = `${cwd()}/eDNE/delta`;
await Promise.all([
DELTA_LOG_BAIRRO_STREAM.run(this._options, basePath),
DELTA_LOG_CPC_STREAM.run(this._options, basePath),
DELTA_LOG_FAIXA_BAIRRO_STREAM.run(this._options, basePath),
DELTA_LOG_FAIXA_CPC_STREAM.run(this._options, basePath),
DELTA_LOG_FAIXA_LOCALIDADE_STREAM.run(this._options, basePath),
DELTA_LOG_FAIXA_UOP_STREAM.run(this._options, basePath),
DELTA_LOG_GRANDE_USUARIO_STREAM.run(this._options, basePath),
DELTA_LOG_LOCALIDADE_STREAM.run(this._options, basePath),
DELTA_LOG_LOGRADOURO_STREAM.run(this._options, basePath),
DELTA_LOG_NUM_SEC_STREAM.run(this._options, basePath),
DELTA_LOG_UNID_OPER_STREAM.run(this._options, basePath),
]);
}
}