-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHose.js
338 lines (255 loc) · 9.37 KB
/
Hose.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
const { jsonParser } = require("./parsers/jsonParser");
const { yamlParser } = require("./parsers/yamlParser");
const { envParser } = require("./parsers/envParser");
const HoseError = require("./utils/HoseError");
const _ = require('lodash');
const { isString, isFunction, isFile, isObject } = require("./utils/typeValidators");
const { getFileURI, getDefaultParserTypeForFile } = require("./utils/getFileInfo");
const { log } = require("./utils/debugLog");
class Hose {
/**
* Initialize variaous objects to be used as registers
*/
initRegistries() {
this.customParsers = {};
this.supportedDefinitionFormats = ["JSON", "YAML"];
this.fileRegister = {};
this.config = {};
this.variableGroups = [];
}
/**
* Loads default parsers for later usage
* Parsers loaded are:
* 1. jsonParser
* 2. yamlParser
* 3. envParser
*/
loadDefaultParsers() {
this.defaultParsers = {
"JSON": jsonParser,
"YAML": yamlParser,
"ENV": envParser
}
log(`Default parsers loaded. Parsers available are - ${Object.keys(this.defaultParsers)}`);
}
/**
* Load definition from source-definition file
* @param {String} configDefinitionSource
* @param {String} fileType
*/
loadDefinition(configDefinitionSource, fileType) {
if (!this.supportedDefinitionFormats.includes(fileType)) {
throw new HoseError(`Hose Error: Definition file of unsupported format - ${fileType}`);
}
// let defUri = getFileURI(configDefinitionSource);
let defUri = configDefinitionSource;
if (!isFile(defUri)) {
throw new HoseError("Hose Error: Definition file does not exist");
}
//Load definition
this.definition = this.defaultParsers[fileType](defUri);
//Load config-identifier
this.config_identifier = isString(this.definition.config_identifier) ?
process.env[this.definition.config_identifier]
: process.env["NODE_ENV"];
if(!isString(this.config_identifier)) {
throw new HoseError("Hose Error: The configuration identifier is undefined");
}
//Load error-mode
let defined_error_mode = (isString(this.definition.error_mode)) ? this.definition.error_mode : "noisy";
this.noisyError = (defined_error_mode === "silent") ? false : true;
//Immuatability
this.isImmutable = (this.definition.immutable === false) ? false : true;
log(`Definition loaded.`);
log(`Config Identifier - ${this.config_identifier}`);
log(`Is error noisy? - ${this.noisyError}`);
log(`Are variables immutable? - ${this.isImmutable}`);
}
/**
* Loads file register with file-parser mappings
*/
loadFileMetadata() {
let files = this.definition.files;
for (const file in files) {
let fileUri = null;
let isDefault = false;
let parserAlias = null;
if (isString(files[file])) {
fileUri = getFileURI(files[file]);
isDefault = true;
parserAlias = getDefaultParserTypeForFile(fileUri);
} else if (isObject(files[file])) {
let fileData = files[file];
fileUri = (fileData["isAbsolute"] === true) ?
fileData["fileUri"] : getFileURI(fileData["fileUri"]);
// If a specific default parser is mentioned.
if (isString(fileData["useDefault"])) {
let defaultParserAvailable = this.defaultParsers
.hasOwnProperty(fileData["useDefault"].trim().toUpperCase());
if (defaultParserAvailable) {
isDefault = true;
parserAlias = fileData["useDefault"].trim().toUpperCase();
} else {
throw new HoseError(`Hose Error: The requested default parser for file ${file} is not available`);
}
} else {
if (isString(fileData["parserAlias"])) {
isDefault = false;
parserAlias = fileData["parserAlias"];
} else {
isDefault = true;
parserAlias = getDefaultParserTypeForFile(fileUri);
}
}
}
this.fileRegister[file] = {
fileUri,
isDefault,
parserAlias
}
}
log("File register loaded. Following files available");
log(this.fileRegister);
}
/**
* Register custom parsers provided by the user
* @param {String} alias Alias to the custom parser the user wants to set
* @param {Function} parser The custom parser function
*/
setCustomParser(alias, parser) {
if (!isFunction(parser)) {
throw new HoseError("Hose Error: Custom parser must be a function");
}
if (!isString(alias)) {
throw new HoseError("Hose Error: Alias to a custom parser must be a string");
}
this.customParsers[alias] = parser;
log(`Custom parser with alias - ${alias} registered. Now refreshing the config register`);
this.populateVariables();
}
/**
* Get registered custom parser
* @param {String} alias Alias to the required custom parser
*/
getCustomParser(alias) {
if (!isString(alias)) {
throw new HoseError("Hose Error: Alias to a custom parser must be a string");
}
if (!this.customParsers.hasOwnProperty(alias)) {
throw new HoseError(`Hose Error: The parser with alias ${alias} is not registered`);
}
return this.customParsers[alias];
}
/**
* Initialize variable register
*/
loadVariableRegister() {
log("Loading variable register..");
for (const group of this.definition.variableGroups) {
if (group["source"].hasOwnProperty(this.config_identifier)) {
this.variableGroups.push({
"variables": [...group["variables"]],
"source": group["source"][this.config_identifier],
"resolved": false,
"head": 0
});
for (const variable of group["variables"]) {
this.config[variable] = {
"value": undefined,
"available": false
}
}
}
}
if (this.variableGroups.length === 0 && this.noisyError) {
throw new HoseError("Hose Error: No variables defined for the provided config-mode");
}
log(`Following variables are declared for the current config-mode - ${Object.keys(this.config).join(", ")}`);
}
/**
* Populate config variables with values fetched from the source files
*/
populateVariables() {
for (const group of this.variableGroups) {
if (!group.resolved){
let variableList = group.variables;
let variableCount = group.variables.length;
let head = group.head;
while (true) {
if(head === group.source.length) {
let variables = group.variables.join(", ")
throw new HoseError(`Hose Error: Variable(s) - ${variables} - not found in the designated fiels`);
}
let resolvedCount = 0;
let unresolvedVariables = [];
let fileAlias = group.source[head];
if(!this.fileRegister.hasOwnProperty(fileAlias)) {
throw new HoseError(`Hose Error: File alias - ${fileAlias} is not provided in list of files`)
}
let parserGroup = (this.fileRegister[fileAlias].isDefault) ? this.defaultParsers : this.customParsers;
let parserAlias = this.fileRegister[fileAlias].parserAlias;
if (!this.fileRegister[fileAlias].isDefault && !this.customParsers.hasOwnProperty(parserAlias)) break;
let parser = parserGroup[parserAlias];
let content = parser(this.fileRegister[fileAlias].fileUri);
if (!isObject(content)) {
throw new HoseError(`Hose Error: Parsed content is not an object for file with alias - ${fileAlias}`);
}
for (const variable of variableList) {
if (content.hasOwnProperty(variable)) {
this.config[variable].value = content[variable];
this.config[variable].available = true;
resolvedCount += 1;
} else {
unresolvedVariables.push(variable);
}
}
if (resolvedCount === variableCount) {
group.resolved = true;
break;
} else {
variableList = [...unresolvedVariables];
group.variables = [...unresolvedVariables];
variableCount = variableList.length;
head += 1;
group.head = head;
}
}
}
}
log("Population attempt complete. Following is the status of variables.");
log(this.config);
}
/**
* Getter function for getting the value of a config-variable
* @param {String} key
*/
get(key) {
if(!isString(key)) {
throw new HoseError("Hose Error: The key to a config-variable must be a string");
}
if(!this.config.hasOwnProperty(key)) {
throw new HoseError("Hose Error: The requested config-variable is not declared in definition file");
}
if(!this.config[key].available) {
if (this.noisyError) {
throw new HoseError("Hose Error: The custom parser required for fetching the value of requested variable is not set");
} else {
return null;
}
}
if(this.isImmutable) {
return _.cloneDeep(this.config[key].value);
} else {
return this.config[key].value;
}
}
constructor(configDefinitionSource, fileType = 'JSON') {
this.initRegistries();
this.loadDefaultParsers();
this.loadDefinition(configDefinitionSource, fileType);
this.loadFileMetadata();
this.loadVariableRegister();
this.populateVariables();
}
}
module.exports = Hose;