-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.py
85 lines (59 loc) · 2.09 KB
/
server.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
import zmq
import argparse
import configparser
class Server(object):
def __init__(self, chat_interface, chat_port, show_interface, show_port):
self.context = zmq.Context()
self.chat_interface = chat_interface
self.chat_port = chat_port
self.show_interface = show_interface
self.show_port = show_port
self.chat_socket = None
self.show_socket = None
# Bind respective TCP ports to corresponding sockets
def bind_tcp_ports(self):
# Reply Module
self.chat_socket = self.context.socket(zmq.REP)
chat_socket_bind_string = 'tcp://{}:{}'.format(self.chat_interface, self.chat_port)
self.chat_socket.bind(chat_socket_bind_string)
self.show_socket = self.context.socket(zmq.PUB)
show_bind_string = 'tcp://{}:{}'.format(self.show_interface, self.show_port)
self.show_socket.bind(show_bind_string)
# Return list based on received zmq message
def get_message(self):
msg = self.chat_socket.recv_json()
username = msg['username']
message = msg['message']
return [username, message]
# Refresh screen
def refresh(self, username, message):
data = {
'username' : username,
'message' : message,
}
self.chat_socket.send(b'\x00')
self.show_socket.send_json(data)
# Constant loop to receive messages
def forever_loop(self):
self.bind_tcp_ports()
while True:
username, message = self.get_message()
self.refresh(username, message)
# Function to parse argument in the command line
def parse_args():
parser = argparse.ArgumentParser(description='Server for teezeepee')
parser.add_argument('--config-file',
type=str,
help='Default path for configuration file.')
return parser.parse_args()
if '__main__' == __name__:
try:
args = parse_args()
config_file = args.config_file if args.config_file is not None else 'tzp.cfg'
config = configparser.ConfigParser()
config.read(config_file)
config = config['default']
server = Server('*', config['chat_port'], '*', config['display_port'])
server.forever_loop()
except KeyboardInterrupt:
pass