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.
producer/consumerlocator.py

111 lines
3.4 KiB
Python
Raw Normal View History

2020-03-29 15:27:36 +02:00
#!/usr/bin/env python
2020-03-29 16:38:40 +02:00
import datetime
import communicator
import os
2020-03-29 15:27:36 +02:00
"""
Consumer locator module, that manages the list of consumers.
2020-03-29 15:27:36 +02:00
"""
2020-03-29 17:21:36 +02:00
__author__ = "@dscharnitzky"
2020-03-29 15:27:36 +02:00
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "consumerlocator"
__version__text__ = "1"
2020-03-29 15:54:52 +02:00
2020-03-29 15:26:01 +02:00
class ConsumerLocator:
2020-03-29 15:54:52 +02:00
2020-03-29 16:46:28 +02:00
"""
Manages the list of consumers.
"""
def __init__(self):
2020-03-29 16:46:28 +02:00
"""
Initialize class.
"""
os.environ["KnownConsumer"] = "10.69.42.2" # TODO remove
self.consumerlist = [{"Host": os.environ["KnownConsumer"], "State": True, "LastOk": datetime.datetime.now()}]
self.currentconsumer = self.consumerlist[0]
def initcommunicator(self, comm: communicator.Communicator):
"""
Initialize the reference to the communicator
:param comm: is the communicator
"""
self.communicator = comm
2020-03-29 15:54:52 +02:00
def learnconsumerlist(self):
2020-03-29 15:54:52 +02:00
""""
Learns the list of consumers.
"""
recievedconsumerlist = self.communicator.discoveravailableconsumers()
if recievedconsumerlist is None:
return
for recconsumer in recievedconsumerlist:
contains = False
for consumer in self.consumerlist:
if consumer["Host"] == recconsumer:
contains = True
if not contains:
self.consumerlist.append({"Host": recconsumer, "State": True, "LastOk": datetime.datetime.now()})
self.updateconsumerlist()
2020-03-29 16:38:40 +02:00
def updateconsumerlist(self):
2020-03-29 16:38:40 +02:00
"""
Updates the consumer list based on their availability.
"""
removelist = []
for consumer in self.consumerlist:
if not self.communicator.checkconsumer(consumer["Host"]):
2020-03-29 16:38:40 +02:00
consumer["State"] = False
if datetime.datetime.now() - consumer["LastOk"] > datetime.timedelta(hours=1):
removelist.append(consumer)
2020-03-29 16:38:40 +02:00
else:
consumer["LastOk"] = datetime.datetime.now()
consumer["State"] = True
for rem in removelist:
self.consumerlist.remove(rem)
2020-03-29 15:54:52 +02:00
def updateconsumer(self):
2020-03-29 15:54:52 +02:00
"""
If the current consumer is not available, checks all the consumers in the list and updates the current one.
2020-03-29 16:46:28 +02:00
:return: the current consumer or None if there are no available customers at the moment.
2020-03-29 15:54:52 +02:00
"""
2020-03-29 16:38:40 +02:00
if not self.checkcurrentconsumer():
self.updateconsumerlist()
newcurrentconsumer = None
2020-03-29 16:38:40 +02:00
for consumer in self.consumerlist:
2020-03-29 16:38:40 +02:00
if consumer["State"]:
newcurrentconsumer = consumer
2020-03-29 16:38:40 +02:00
break
self.currentconsumer = newcurrentconsumer
if self.currentconsumer is not None:
self.learnconsumerlist()
2020-03-29 16:38:40 +02:00
if self.currentconsumer is not None:
return self.currentconsumer["Host"]
2020-03-29 16:38:40 +02:00
else:
return None
2020-03-29 15:54:52 +02:00
def getcurrentconsumer(self):
2020-03-29 15:54:52 +02:00
"""
Returns the currently selected consumer.
:return: the current consumer
"""
return self.currentconsumer["Host"]
2020-03-29 15:54:52 +02:00
def checkcurrentconsumer(self):
2020-03-29 15:54:52 +02:00
"""
Check the consumers health.
:return: True if OK, False if fail
"""
if self.currentconsumer is None:
return False
return self.communicator.checkconsumer(self.currentconsumer["Host"])