-
Notifications
You must be signed in to change notification settings - Fork 0
/
central.lua
72 lines (55 loc) · 1.6 KB
/
central.lua
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
-- load namespace
local socket = require("socket")
-- Recupera host e porta do arquivo de propriedades
local f = assert(io.open('ev.properties', "r"))
local str = f:read("*all")
f:close()
for key,value in string.gmatch(str, "(%w+)%s*=%s*(%w+[^\n]*)") do
if key == "host" then
centralHost = value
elseif key == "port" then
centralPort = value
end
end
-- Cria socke TCP
local server = assert(socket.bind(centralHost, centralPort))
local ip, port = server:getsockname()
local agents = { }
print("Nó central em execução na porta: " .. ip .. ":" .. port .. "\n")
-- Fica em loop aguardando requisicoes
while 1 do
-- Bloqueia a espera de clientes
local client = server:accept()
-- Recebe requisicoes
local line, err = client:receive('*l')
print("\nAtendendo cliente: " .. client:getsockname() .. " CMD=" .. line)
if not err then
if line == "getAgents" then
-- Envia lista de agentes
for i=1,#agents do
client:send(agents[i] .. "\n")
end
elseif line == "delAgent" then
-- Recebe identificador do agente a ser removido
local line, err = client:receive('*l')
for i=1,#agents do
if agents[i] == line then
table.remove(agents,i)
end
end
print("Removendo agente: " .. line)
elseif line == "addAgent" then
-- Recebe identificador do novo agente
local line, err = client:receive('*l')
table.insert(agents, line)
print("Adicionando novo agente: " .. line)
end
else
print("Erro ao receber requisição: " .. err)
end
-- Fecha socket do cliente
client:close()
-- Imprime tabela de agentes
print("Agentes ativos:")
table.foreach(agents,print)
end