-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoiceterminal.js
executable file
·166 lines (136 loc) · 3.88 KB
/
voiceterminal.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
/**
* voiceterminal.js
* Имя плагина - voiceterminal, манифест - voiceterminal.json
*/
const util = require("util");
const ut = require("./lib/utils");
const httpserver = require("./lib/httpserver");
const httpclient = require("./lib/httpclient");
const logger = require("./lib/logger");
const plugin = require("./lib/plugin");
let step = 0;
plugin.unitId = process.argv[2];
logger.log("VoiceTerminal plugin has started.", "start");
next();
function next() {
switch (step) {
case 0:
// Запрос на получение параметров
getTable("params");
step = 1;
break;
case 1:
// Запрос на получение списка входящих запросов
getTable("extra");
step = 2;
break;
case 2:
// Запуск слушающего сервера
httpserver.start(plugin, logger);
step = 3;
break;
default:
}
}
function getTable(name) {
// process.send({ type: "get", tablename: name + "/" + plugin.unitId });
process.send({ type: "get", tablename: name });
}
/**
* Интервальная функция выполняет запросы по массиву timers.
* timers упорядочен по .qtime
* В каждом цикле проверяется только первый элемент
**/
function runOutReq() {
let req = plugin.getNextReq();
if (req) {
httpclient.httpGet(req, logger, body => {
body = String(body);
if (body.indexOf("busy") >= 0) {
plugin.resetTimer(req.index, 2); // Повторить через 2 сек
} else {
let payload;
if (req.passBack) {
// была отправлена команда - если получили 200 - можно установить значение
payload = req.passBack;
} else {
// опрос
payload = ut.parse(
body,
req.url,
req.adr ? ut.portNumber(req.adr) : "",
plugin.prefun,
req.adr
);
}
if (req.index >= 0) plugin.resetTimer(req.index);
if (payload) plugin.processSendData(payload);
}
});
}
}
/** ****************************** Входящие от IH ************************************/
process.on("message", message => {
if (!message) return;
if (typeof message == "string") {
if (message == "SIGTERM") process.exit(0);
}
if (typeof message == "object") {
try {
if (message.type) parseMessageFromServer(message);
} catch (e) {
logger.log(e.message);
}
}
});
function parseMessageFromServer(message) {
switch (message.type) {
case "get":
if (message.params) {
plugin.setParams(message.params);
if (message.params.debug) logger.setDebug(message.params.debug);
}
if (message.config) plugin.setConfig(message.config);
if (message.extra) plugin.setExtra(message.extra);
next();
break;
case "act":
doAct(message.data);
break;
case "command":
doCommand(message);
break;
case "debug":
if (message.mode) logger.setDebug(message.mode);
break;
default:
}
}
function doCommand(message) {
logger.log("send command to terminal - " + util.inspect(message.command));
if (!message.command) return;
let command = message.command;
httpclient.SocketDataExchange(
{
url: command,
host: plugin.params.host,
port: plugin.params.port,
stopOnError: false
},
logger
);
}
function doAct(data) {
if (!data || !util.isArray(data) || data.length <= 0) return;
// logger.log("act: " + util.inspect(data));
data.forEach(item => {
plugin.addAct(item);
});
}
process.on("uncaughtException", err => {
var text = "ERR (uncaughtException): " + util.inspect(err);
logger.log(text);
});
process.on("disconnect", () => {
process.exit();
});