-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.py
150 lines (129 loc) · 4.49 KB
/
parse.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
from urllib.parse import urlparse
from multiprocessing.dummy import Pool as ThreadPool
import configparser
from lxml import etree
import requests
from lxml import html
import lxml
import ping
class Parser:
def __init__(self):
config = configparser.ConfigParser()
config.read('config.ini')
self.test = []
for i in config['testing']['test'].split('\n'):
self.test.append([l.strip() for l in i.split(': ')])
self.build = []
for i in config['testing']['build'].split('\n'):
self.build.append([l.strip() for l in i.split(': ')])
self.doc = []
for i in config['testing']['doc'].split('\n'):
self.doc.append([l.strip() for l in i.split(': ')])
self.merge = []
for i in config['testing']['merge'].split('\n'):
self.merge.append([l.strip() for l in i.split(': ')])
self.cam = []
for i in config['cameras']['cam'].split('\n'):
self.cam.append(i.strip())
self.res = []
for i in config['resources']['res'].split('\n'):
self.res.append([l.strip() for l in i.split(': ')])
self.buttons = []
for i in config['buttons']['merge'].split('\n'):
self.buttons.append([l.strip() for l in i.split(': ')])
def pinger(self, ip):
status = ping.ping(ip)
if status is None:
return False
else:
return True
def pinger_cam(self, ip):
if len(ip) == 2:
ip_adress = ip[1]
name = ip[0]
status = ping.ping(ip_adress)
if status is None:
return [name, ip_adress, False]
else:
return [name, ip_adress, True]
else:
status = ping.ping(ip)
if status is None:
return [ip, False]
else:
return [ip, True]
def revparser(self, url):
"""
url = ['SmartStation_x86 Windows', 'http://192.168.6.104:8081/tvz-win-trunk']
return:
url_name = Имя адресной строки с конфига config.ini -> SmartStation_x86 Windows
ip = получаем ip с переменной ip_port -> 192.168.6.104
port = получаем port с переменной ip_port -> 8081
name = получаем url вебсервера - > /tvz-win-trunk
rev = Ревизия
server_status = Пингуем сервер по ip и получаем ответ True или False
"""
url_name = url[0]
try:
ip_port = urlparse(url[1]).netloc
ip = ip_port.split(':')[0]
port = ip_port.split(':')[1]
except:
ip = 'Uknown'
port = 'Uknown'
try:
name = urlparse(url[1]).path[1:]
except:
name = 'Uknown'
server_status = self.pinger(ip)
try:
page = requests.get(url[1], timeout=2)
tree = html.fromstring(page.text)
rev = max(tree.xpath('//td[@class="context-menu-revision"]/@rev'))
except (requests.ConnectionError, lxml.etree.XMLSyntaxError, ValueError, requests.RequestException):
rev = 'Uknown'
return [url_name, ip, port, name, rev, server_status]
def testingTest(self):
pool = ThreadPool(3)
results = pool.map(self.revparser, self.test)
pool.close()
pool.join()
return results
def testingBuild(self):
pool = ThreadPool(3)
results = pool.map(self.revparser, self.build)
pool.close()
pool.join()
return results
def testingDoc(self):
pool = ThreadPool(3)
results = pool.map(self.revparser, self.doc)
pool.close()
pool.join()
return results
def testingMerge(self):
pool = ThreadPool(3)
results = pool.map(self.revparser, self.merge)
pool.close()
pool.join()
return results
def camerasCam(self):
pool = ThreadPool(3)
results = pool.map(self.pinger_cam, self.cam)
pool.close()
pool.join()
return results
def resourcesRes(self):
pool = ThreadPool(3)
results = pool.map(self.pinger_cam, self.res)
pool.close()
pool.join()
return results
if __name__ == '__main__':
p = Parser()
# print(p.testingTest())
# print(p.testingBuild())
print(p.testingDoc())
print(p.testingMerge())
# print(p.camerasCam())
# print(p.resourcesRes())