This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
consumer-scheduler/redis_super_storage.py

65 lines
1.5 KiB
Python
Raw Normal View History

2020-05-08 21:29:08 +02:00
#!/usr/bin/env python3
import redis
import os
import json
import time
class RedisSuperStorage:
2020-05-08 22:21:15 +02:00
2020-05-08 21:29:08 +02:00
def __init__(self, redis_url: str, timeout: int):
self.r = redis.from_url(redis_url)
self._timeout = timeout
def get_consumer_list(self) -> dict:
keys = self.r.keys('consumer_*')
list_of_customers = {}
for key in keys:
info = json.loads((self.r.get(key) or b"{}").decode('utf-8'))
if info:
list_of_customers[info['uuid']] = info
return list_of_customers
2020-05-08 21:48:32 +02:00
def get_producer_list(self) -> dict:
2020-05-08 21:29:08 +02:00
keys = self.r.keys('producer_*')
2020-05-08 21:48:32 +02:00
list_of_producer_ip = {}
2020-05-08 21:29:08 +02:00
for key in keys:
ip = (self.r.get(key) or b"").decode('utf-8')
if ip:
2020-05-08 21:48:32 +02:00
list_of_producer_ip[key.decode('utf-8')] = ip
2020-05-08 21:29:08 +02:00
return list_of_producer_ip
def update_consumer(self, uuid: str, ip: str):
cust_key = f"consumer_{uuid}"
info = {
"uuid": uuid,
"ip": ip,
"last_seen": time.time()
}
self.r.set(cust_key, json.dumps(info).encode('utf-8'))
2020-05-08 23:00:37 +02:00
self.r.expire(cust_key, self._timeout)
2020-05-08 22:21:15 +02:00
def get_current_ip(self) -> str:
ip = self.r.get('current_ip')
if ip:
ip = ip.decode('utf-8')
return ip
def set_current_ip(self, ip: str):
self.r.set('current_ip', ip.encode('utf-8'))
current_ip = property(get_current_ip, set_current_ip)