-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathping_endpoint.py
152 lines (130 loc) · 4.53 KB
/
ping_endpoint.py
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
#!/usr/bin/env python
# encoding: utf-8
# Copyright 2010 Xinyu, He <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import threading
import os
import signal
import time
import subprocess
import errno
import json
from Queue import Queue, Empty
import collections
import logging
import zmq
import ping
from util.log import *
from util.Res import Res
class ping_endpoint(object):
PING_INTERVAL = 10
TIMEOUT = 0.8
def __init__(self):
self.devices = {}
self._queues = {}
settings = Res.init("init.json")
self.server_ip = "tcp://*:8005"
self._device_addrs = []
addrs = settings['ping']['device']
for name in addrs:
self._device_addrs.append(addrs[name])
def _do_ping(self, addr):
while True:
try:
self.devices[addr] = self._ping(addr)
print "device:", addr, "online", self.devices[addr]
DEBUG("device:%s online:%d" % (addr, self.devices[addr]))
time.sleep(ping_endpoint.PING_INTERVAL)
except (KeyboardInterrupt, SystemExit):
self.stop()
raise
except Exception, ex:
ERROR(ex)
TRACE_EX()
time.sleep(3)
def _timeout(self, proc):
print "timeout!"
if proc.poll() is None:
try:
proc.terminate()
INFO('Error: process taking too long to complete--terminating')
except OSError as e:
if e.errno != errno.ESRCH:
raise
def _ping(self, addr):
cmd = "ping -c %d -W %.1f %s > /dev/null 2>&1" % (10, ping_endpoint.TIMEOUT, addr)
proc_timeout = 10*ping_endpoint.TIMEOUT + 5
proc = subprocess.Popen(cmd, shell=True)
try:
t = threading.Timer(proc_timeout, self._timeout, [proc])
t.start()
proc.wait()
DEBUG("ping return code:%d" % proc.returncode)
t.cancel()
t.join()
except Exception, ex:
print ex
proc.terminate()
return True if proc.returncode == 0 else False
def start(self):
INFO("start ping server...")
INFO("bind to" + self.server_ip)
for addr in self._device_addrs:
INFO("load ping device:" + addr)
self.devices[addr] = False
ping_t = threading.Thread(
target=self._do_ping,
args=(addr, )
)
ping_t.daemon = True
ping_t.start()
context = zmq.Context()
poller = zmq.Poller()
self.socket = None
time.sleep(0.5)
while True:
if self.socket is None:
self.socket = context.socket(zmq.REP)
self.socket.setsockopt(zmq.LINGER, 0)
self.socket.bind(self.server_ip)
poller.register(self.socket, zmq.POLLIN | zmq.POLLOUT)
try:
if poller.poll(5*1000):
req = self.socket.recv_string()
rep = {"res": "error"}
if req in self._device_addrs:
state = self.devices[req]
rep = {"res":
{
"online": state,
}
}
self.socket.send_string(json.dumps(rep))
DEBUG("recv req:" + str(req))
except (KeyboardInterrupt, SystemExit):
self.socket.close()
poller.unregister(self.socket)
self.socket = None
self.stop()
raise
except Exception, ex:
ERROR(ex)
self.socket.close()
poller.unregister(self.socket)
self.socket = None
time.sleep(3)
def stop(self):
INFO("ping_endpoint stop.")
if __name__ == '__main__':
ping_endpoint().start()