-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclientOne.js
More file actions
447 lines (401 loc) · 12.5 KB
/
clientOne.js
File metadata and controls
447 lines (401 loc) · 12.5 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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
const express = require("express");
const io = require("socket.io-client");
const dotenv = require("dotenv");
const inquirer = require("inquirer");
const axios = require("axios");
// Load env vars
dotenv.config({ path: "./config/.env" });
//const { configure,updatemetadata } = require("./controllers/clientController");
const Socket = io.connect(process.env.MASTER_SERVER_HOST);
const PORT = process.env.CLIENT_ONE_PORT || 7000;
const app = express();
app.use(express.json());
let metadata = null;
Socket.on("connect", function (co) {
console.log("[CLIENT1] a new client is connected to master");
Socket.emit("logging","[CLIENT1] a new client is connected to master");
});
Socket.on("updateMetadata", function (sentData) {
if (metadata == null) {
firstConnection = true;
}
metadata = sentData;
console.log("[CLIENT1] metadata is updated");
Socket.emit("logging","[CLIENT1] metadata is updated");
readInputs();
});
const server = app.listen(PORT, console.log(`Client running on port ${PORT}`));
app.use("/recieveMeta", (req, res, next) => {
console.log("[CLIENT1] metadata is updated");
metadata = req.body;
Socket.emit("logging","[CLIENT1] metadata is updated");
res.end("any");
});
// Handle unhandled promise rejections
process.on("unhandledRejection", (err, promise) => {
console.log(`Error: ${err.message}`.red);
// Close server & exit process
server.close(() => process.exit(1));
});
const axiosConfig = {
headers: {
"Content-Type": "application/json",
},
};
tabletConnectionList = {
1:
process.env.TABLET_SERVER_BASE_URL + ":" +
process.env.TABLET_SERVER_ONE_PORT +
"/movie/client/tabletServer1",
2:
process.env.TABLET_SERVER_BASE_URL + ":" +
process.env.TABLET_SERVER_TWO_PORT +
"/movie/client/tabletServer2",
};
requestsList = ["Set", "DeleteCells", "DeleteRow", "AddRow", "ReadRows"];
function getMaxTabletServer() {
let maxTablet = 1;
let maxValue = -1;
metadata.tabletServers.map((el) => {
if (maxValue < el.dataEndID) {
maxValue = el.dataEndID;
maxTablet = el.tabletServerID;
el.dataEndID +=1;
}
});
return maxTablet;
}
function getTabletServerNumber(id) {
//return 1;//remove outside of testing
//
let count = 1;
let tabletNumber = -1;
metadata.tabletServers.map((el) => {
if (el.dataStartID <= id && el.dataEndID >= id) {
tabletNumber = el.tabletServerID;
}
count += 1;
});
return tabletNumber;
}
function handleSetRequest() {
//gets data from user when the user chooses set option -> sends the data -> goes to askIfFinished function
let rowId;
inquirer
.prompt([
{
type: "input",
name: "requestData",
message:
"please add data in the following format \n" +
" <rowKey> , <columnName>: <value> , <columnName>:<value> ,..... \n",
},
])
.then((answer) => {
rowId = answer.requestData.replace(/ /g, "").split(",")[0];
let rowValueStringList = answer.requestData
.replace(/ /g, "")
.split(",")
.slice(1);
let requestJson = {};
rowValueStringList.forEach((value) => {
let col = value.split(":")[0];
let val = value.split(":")[1];
requestJson[col] = val;
});
let tabletNumber = getTabletServerNumber(rowId); // get tablet todo check if id exists in string
if (tabletNumber == -1) {
errorMessage = `this key : ${requestJson.id} doesn't exist in the database`;
return Promise.reject(new Error(errorMessage));
}
//console.log(tabletConnectionList[tabletNumber] + `/${rowId}`);
return axios.put(
tabletConnectionList[tabletNumber] + `/${rowId}`,
requestJson,
axiosConfig
);
})
.then(function (response) {
console.log(`[CLIENT1] row of id = ${rowId} successfully updated`);
Socket.emit("logging",`[CLIENT1] row of id = ${rowId} successfully updated`);
})
.catch(function (error) {
console.log(error);
Socket.emit("logging",`[CLIENT1] failed to update row id = ${rowId}`);
})
.then(function () {
askIfFinished();
});
}
function handleAddRowRequest() {
//gets data from user when the user chooses addrow option -> sends the data -> goes to askIfFinished function
inquirer
.prompt([
{
//get data from user
type: "input",
name: "requestData",
message:
"please add data in the following format \n" +
" <columnName> : <value> , <columnName> : <value> ,..... \n",
},
])
.then((answer) => {
let tabletNumber = getMaxTabletServer();
let rowValueStringList = answer.requestData.replace(/ /g, "").split(",");
let requestJson = {};
rowValueStringList.forEach((value) => {
let col = value.split(":")[0];
let val = value.split(":")[1];
requestJson[col] = val;
});
return axios.post(
tabletConnectionList[tabletNumber],
requestJson,
axiosConfig
);
}) // send data
.then(function (response) {
console.log(`[CLIENT1] new row added successfully`);
Socket.emit("logging",`[CLIENT1] new row added successfully`);
})
.catch(function (error) {
console.log(`[CLIENT1] failed to add new row`);
Socket.emit("logging",`[CLIENT1] failed to add new row`);
})
.then(function () {
askIfFinished();
});
}
function convertListToObjectWithNull(list) {
let newList = {};
list.map((el) => {
newList[el] = "";
});
return newList;
}
function handleDeleteCellsRequest() {
//gets data from user when the user chooses DeleteCells option -> sends the data -> goes to askIfFinished function
let rowId;
inquirer
.prompt([
{
type: "input",
name: "requestData",
message:
"please add data in the following format \n" +
"<rowKey> <columnName> <columnName> <columnName> ..... \n",
},
])
.then((answer) => {
let inputData = answer.requestData;
rowId = inputData.trim().split(/\s+/)[0];
let tabletNumber = getTabletServerNumber(rowId);
if (tabletNumber == -1) {
errorMessage = `this key : ${requestJson.id} doesn't exist in the database`;
return Promise.reject(new Error(errorMessage));
}
let columnsList = inputData.trim().split(/\s+/).slice(1);
let columnsListWithNullValues = convertListToObjectWithNull(columnsList);
let requestJson = columnsListWithNullValues;
//console.log(requestJson);
//console.log(rowId);
//console.log(tabletConnectionList[tabletNumber] + `/${rowId}`);
return axios.put(
`${tabletConnectionList[tabletNumber]}/${rowId}`,
requestJson,
axiosConfig
);
})
.then(function (response) {
console.log(`[CLIENT1] cells deleted successfully`);
Socket.emit("logging",`[CLIENT1] cells deleted successfully`);
})
.catch(function (error) {
console.log(`[CLIENT1] failed to delete cells from row : ${rowId}`);
Socket.emit("logging",`[CLIENT1] failed to delete cells from row : ${rowId}`);
})
.then(function () {
askIfFinished();
});
}
function handleDeleteRowRequest() {
//gets data from user when the user chooses DeleteRow option -> sends the data -> goes to askIfFinished function
let sentIdsList = [];
inquirer
.prompt([
{
type: "input",
name: "requestData",
message:
"please add data in the following format \n" +
" <row_id> <row_id> <row_id> <row_id>\n ",
},
])
.then((answer) => {
let idsList = answer.requestData.trim().split(/\s+/);
let idsListSplitIntoTablets = splitIdsAmongTablets(idsList);
let promiseList = [];
//console.log(idsListSplitIntoTablets);
if (-1 in idsListSplitIntoTablets) {
errorMessage = `ids : ${
idsListSplitIntoTablets[-1]
} are not inside the database`;
return Promise.reject(new Error(errorMessage));
}
for (var tablet in idsListSplitIntoTablets) {
var requestJson = {
ids: idsListSplitIntoTablets[tablet], //todo check for exact name
};
//console.log(requestJson);
sentIdsList.push(requestJson);
promiseList.push(
axios.delete(tabletConnectionList[tablet], { data: requestJson })
);
}
return Promise.allSettled(promiseList);
})
.then(function (results) {
let counter = 0;
results.forEach((result) => {
if (result.status == "rejected") {
//console.log(result.value);
console.log(`[CLIENT1] failed to delete ${sentIdsList[counter].ids}`);
Socket.emit("logging",`[CLIENT1] failed to delete ${sentIdsList[counter].ids}`);
} else {
console.log(`[CLIENT1] successfully deleted ${sentIdsList[counter].ids}`);
Socket.emit("logging",`[CLIENT1] successfully deleted ${sentIdsList[counter].ids}`);
}
counter += 1;
});
})
.catch(function (error) {
console.log(error);
})
.then(function () {
askIfFinished();
});
}
function handleReadRowRequest() {
//gets data from user when the user chooses ReadRow option -> sends the data -> goes to askIfFinished function
let sentIdsList = [];
inquirer
.prompt([
{
type: "input",
name: "requestData",
message:
"please add data in the following format \n" +
" <row_id> <row_id> <row_id> <row_id>\n ",
},
])
.then((answer) => {
let idsList = answer.requestData.trim().split(/\s+/);
console.log("__________ID LIST____________");
console.log(idsList);
let idsListSplitIntoTablets = splitIdsAmongTablets(idsList);
console.log("__________________Splitted_________");
console.log(idsListSplitIntoTablets);
let promiseList = [];
//console.log(idsListSplitIntoTablets);
if (-1 in idsListSplitIntoTablets) {
errorMessage = `ids : ${
idsListSplitIntoTablets[-1]
} are not inside the database`;
return Promise.reject(new Error(errorMessage));
}
for (var tablet in idsListSplitIntoTablets) {
var requestJson = {
ids: idsListSplitIntoTablets[tablet],
};
sentIdsList.push(requestJson);
promiseList.push(
axios.get(tabletConnectionList[tablet], { data: requestJson })
);
}
return Promise.allSettled(promiseList);
})
.then(function (results) {
let counter = 0;
results.forEach((result) => {
if (result.status == "rejected") {
console.log(`[CLIENT1] failed to fetch ${sentIdsList[counter].ids}`);
Socket.emit("logging",`[CLIENT1] failed to fetch ${sentIdsList[counter].ids}`);
} else {
console.log(
`[CLIENT1] successfully fetched ${sentIdsList[counter].ids}` + "\n"
);
Socket.emit("logging",`[CLIENT1] successfully fetched ${sentIdsList[counter].ids}`);
console.log(result.value.data);
}
counter += 1;
});
})
.catch(function (error) {
console.log(error);
})
.then(function () {
askIfFinished();
});
}
function splitIdsAmongTablets(ids) {
listOfRequiredTablets = {};
ids.map((el) => {
let tabletNumber = getTabletServerNumber(el);
if (listOfRequiredTablets[tabletNumber] == undefined) {
listOfRequiredTablets[tabletNumber] = [el];
} else {
listOfRequiredTablets[tabletNumber].push(el);
}
});
return listOfRequiredTablets;
}
function askIfFinished() {
inquirer
.prompt([
{
type: "rawlist",
name: "checkIfFinished",
message: "do you want to make another request?",
choices: ["yes", "no"],
},
])
.then((answer) => {
if (answer.checkIfFinished == "no") {
process.exit();
} else {
readInputs();
}
});
}
function readInputs() {
inquirer
.prompt([
{
type: "rawlist",
name: "requestType",
message: "please choose a request type ..",
choices: requestsList,
},
])
.then((answer) => {
//console.log(answer.requestType);
switch (answer.requestType) {
case "Set":
handleSetRequest();
break;
case "DeleteCells":
handleDeleteCellsRequest();
break;
case "DeleteRow":
handleDeleteRowRequest();
break;
case "AddRow":
handleAddRowRequest();
break;
case "ReadRows":
handleReadRowRequest();
break;
}
});
}