-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththreadedtcpserver.py
63 lines (48 loc) · 1.72 KB
/
threadedtcpserver.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
import pickle
import time
import traceback
import socket
import threading
class ConnectionThread( threading.Thread ):
horizontal_alignment = -1000.0
previous_horizontal_alignment = horizontal_alignment
HORIZONTAL_ALIGNMENT=1
HORIZONTAL_ALIGNMENT_=2
TARGET_UNKNOWN=0
TARGET_HIGH=1
TARGET_MIDDLE=2
TARGET_LOW=3
def run(self):
s = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
s.bind( ('', 1180) )
s.listen(2) # I want another listener for testing
while True:
conn, addr = s.accept()
while True:
print "conn addr:", addr
try:
# don't send duplicate information
if( self.previous_horizontal_alignment != self.horizontal_alignment ):
information = str(self.HORIZONTAL_ALIGNMENT) + ":" + str(self.horizontal_alignment) + "\n"
conn.send(information)
print "information sent"
elif(self.previous_horizontal_alignment == self.horizontal_alignment):
previous_horizontal_alignment = self.horizontal_alignment
print "duplicate information"
else:
print "error "
except socket.error:
print "socket err"
traceback.print_exc()
conn.close()
break
time.sleep(0.05)
time.sleep(1)
if __name__ == '__main__':
connThread = ConnectionThread()
connThread.start()
i = 0
while True:
time.sleep(1)
connThread.horizontal_alignment = i
i+=1