blob: c29b2768333deb00140260dffc25e7778bf4451d (
plain)
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
|
module(..., package.seeall)
local function run_command(self, cmd)
self.handle:write(cmd.."\n")
self.handle:flush()
local t = {}
local line = self.handle:read("*line")
while line ~= "" do
local key, value = string.match(line, "^(.*): (.*)$")
t[key] = value
line = self.handle:read("*line")
end
return t
end
local function host_status(self)
return self:run_command("host-status")
end
local function gateway_status(self)
return self:run_command("gateway-status")
end
local function close(self)
return self.handle:close()
end
function connect(socket_path)
local socket = require("pingu.client")
local fh, err
if socket ~= nil then
fh, err = socket.open(socket_path)
end
if fh == nil then
return fh, err
end
return {
["handle"] = fh,
["run_command"] = run_command,
["host_status"] = host_status,
["gateway_status"] = gateway_status,
["close"] = close
}
end
|