blob: ce2346c09e8b5f65352712d329675be49c739b51 (
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
|
from src.ogClient import *
from src.ogConfig import *
def main():
ogconfig = ogConfig()
if (not ogconfig.parserFile('cfg/ogagent.cfg')):
print 'Error: Parsing configuration file'
return 0
ip = ogconfig.getValueSection('opengnsys', 'ip')
port = ogconfig.getValueSection('opengnsys', 'port')
client = ogClient(ip, int(port))
client.connect()
while 1:
sock = client.get_socket()
state = client.get_state()
if state == State.CONNECTING:
readset = [ sock ]
writeset = [ sock ]
else:
readset = [ sock ]
writeset = [ ]
readable, writable, exception = select.select(readset, writeset, [ ])
if state == State.CONNECTING and sock in writable:
client.connect2()
elif state == State.RECEIVING and sock in readable:
client.receive()
else:
print "bad state" + str(state)
if __name__ == "__main__":
main()
|