-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProxy.py
29 lines (23 loc) · 951 Bytes
/
Proxy.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
from RedisClient import RedisClient
from Endpoint import Endpoint
from config import config
class Proxy:
def __init__(self, redsmin_prod):
#creating both sockets
self.redisClient = RedisClient(config["uri"])
self.endpoint = Endpoint(redsmin_prod)
#binding data's transfer to the sockets
self.redisClient.handle_read = self.sendDataFromRedisToEndPoint
self.endpoint.handle_read = self.sendDataFromEndPointToRedis
#calling the handshake
self.endpoint.handshake()
#transfer data from Redsmin to Redis (called when the sockets have something to read)
def sendDataFromEndPointToRedis(self):
data = self.endpoint.recv(8192)
if(not self.endpoint.handshaken):
print data
self.redisClient.send(data)
#transfer data from Redis to Redsmin (called when the sockets have something to read)
def sendDataFromRedisToEndPoint(self):
data = self.redisClient.recv(8192)
self.endpoint.send(data)