This repository was archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatajo.fork.js
More file actions
256 lines (167 loc) · 6.87 KB
/
atajo.fork.js
File metadata and controls
256 lines (167 loc) · 6.87 KB
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
const Log = require('./atajo.log');
var fs = require('fs');
var path = require('path');
var hasResponded = false;
class Fork {
constructor(Lambda) {
this.interface = Lambda;
this.cachePath = path.join(__dirname, 'cache', 'tx');
process.on('message', message => {
switch (message.action) {
case 'configure':
this.configure(message);
break;
case 'rx':
this.rx(message.request);
break;
}
});
}
configure(message) {
//SET GLOBALS
global.release = message.release || 'dev';
global.domain = message.domain;
global.config = require('./config');
global.log = new Log(release, config.get("LOGPATH") || path.join(__dirname, 'logs'));
var DBI = require('./dbi');
let dbi = new DBI();
dbi.init().then(() => {
dbi.connect('mongodb://localhost/' + domain + '_' + release).then((models) => {
global.dbi = models;
this.api = false; // TODO : BIND API
//LEGACY HANDLER SHIM --> DEPRECATING
if (this.interface.init) {
log.warn("YOUR HANDLER IS OUT OF DATE AND IT'S IMPLEMENTATION IS MARKED FOR DEPRECATION. PLEASE SEE ES6 HANDLER STRUCTURE FOR FUTURE HANDLER DEVELOPMENT");
} else {
this.lambda = new this.interface(this.api);
}
})
})
}
rx(data) {
if (!data || !data.pid) return log.warn("INVALID LAMBDA REQUEST -> DROPPING : ", data);
this.transaction = data;
log.debug("TRANSACTION IS ", data);
data.request.resolve = (response) => {
this.resolve(response, false);
};
data.request.reject = (error) => {
this.resolve(error, true);
};
try {
//// LEGACY SUPPORT -> REMOVE FOR DEPRECATION
if (this.interface.init) {
this.lambda = this.interface.init(data.request, response => {
this.resolve(response, !response.RESPONSE);
});
this.lambda.req();
} else {
this.lambda = new this.interface(this.api);
this.lambda.request(data.request);
}
} catch (e) {
log.error("FORK:LAMBDA REQUEST ERROR ", e.stack);
}
}
resolve(response, error) {
if (!response.RESPONSE && response.MESSAGE) {
response = response.MESSAGE
} else if (response.RESPONSE) {
response = response.RESPONSE;
}
log.debug("GOT HANDLER RESULT (ERROR : " + error + ")", response);
let pid = this.transaction.pid;
if (!response) {
log.error("FORK:LAMBDA:RESOLVE NO RESPONSE -> DROPPING PID ", pid);
return;
}
if (typeof response === 'string') {
response = [response];
}
response = this.chunkResponse(pid, response);
if (response) {
try {
process.send({
error: error ? 1 : 0,
pid: pid,
response: response,
version: this.transaction.version,
latency: this.transaction.latency
});
} catch (e) {
log.error("FORK:LAMBDA:RESOLVE COULD NOT RESPOND TO PROVIDER CONTROLLER -> ", e.stack);
}
}
/*
var cachedResponseFile = path.join(this.cachePath, pid + '.json');
fs.writeFile(cachedResponseFile, responseString, function(err) {
if (err) {
log.error("FORK.L:LAMBDA:RESOLVE COULD NOT WRITE RESPONSE TO CACHE FOR " + fnam, err);
process.exit(1);
}
try {
process.send({
status: error ? 1 : 0,
type: 'pid',
pid: pid
});
} catch (e) {
log.error("FORK:LAMBDA:RESOLVE COULD NOT RESPOND TO PROVIDER CONTROLLER -> " + e);
}
});
*/
}
//TODO
chunkResponse(pid, response, chunkSize = 2000000) {
try {
if (!Array.isArray(response)) {
log.error("RESPONSE IS NOT A STRING OR ARRAY - NOT CHUNKING - PLEASE ENSURE OBJECT EMITS ARE 1MB or less");
let chunkFileName = path.join(this.cachePath, pid + '.0.chunk');
fs.writeFileSync(chunkFileName, JSON.stringify(response));
return {
chunkTotal: 1,
pid: pid
}
}
let responseString = JSON.stringify(response);
let byteLength = responseString.length;
let responseData = response;
let elementsInArray = responseData.length;
let bytesPerElement = byteLength / elementsInArray;
let arrayElementsPerChunk = 1;
if (bytesPerElement < chunkSize) {
arrayElementsPerChunk = Math.round(chunkSize / bytesPerElement);
}
log.debug("CHUNKING RESPONSE ARRAY OF " + elementsInArray + " ELEMENTS");
log.debug(" @ ~ " + bytesPerElement + " bytes PER ELEMENT ");
log.debug(" WITH DESIRED CHUNK SIZE OF " + chunkSize + " bytes PER CHUNK");
log.debug(" AND A CALCULATED " + arrayElementsPerChunk + " ARRAY ELEMENTS PER CHUNK");
let chunks = [];
for (let i = 0, j = elementsInArray; i < j; i += arrayElementsPerChunk) {
chunks.push(responseData.slice(i, i + arrayElementsPerChunk));
}
log.debug("WE HAVE " + chunks.length + " CHUNKS : ", chunks);
for (let i = 0; i < chunks.length; i++) {
let chunkFileName = path.join(this.cachePath, pid + '.' + i + '.chunk');
log.debug("WRITING CHUNK : ", JSON.stringify(chunks[i]));
fs.writeFileSync(chunkFileName, JSON.stringify(chunks[i]));
/*
fs.writeFile(chunkFileName, JSON.stringify(chunks[i]), function(err) {
if (err) {
log.error("COULD NOT WRITE CHUNK TO CACHE FOR " + chunkFileName, err);
}
}); */
}
return {
chunkTotal: chunks.length,
pid: pid
}
} catch (e) {
log.error("COULD NOT CHUNK RESPONSE. DROPPING. ", e.stack);
return false;
}
}
}
exports.bind = (Lambda) => {
let fork = new Fork(Lambda);
}