Compare commits
2 Commits
46ae52a537
...
96a91c4154
Author | SHA1 | Date | |
---|---|---|---|
96a91c4154 | |||
03082b346d |
4
app.py
4
app.py
@ -40,9 +40,9 @@ if __name__ == "__main__":
|
|||||||
generateduuid = str(uuid.uuid4())
|
generateduuid = str(uuid.uuid4())
|
||||||
communicator = Communicator(currentconsumer=KNOWNCONSUMER, uuid=generateduuid)
|
communicator = Communicator(currentconsumer=KNOWNCONSUMER, uuid=generateduuid)
|
||||||
LOGGER.debug(f"My uuid is {generateduuid}")
|
LOGGER.debug(f"My uuid is {generateduuid}")
|
||||||
|
messagesender = MessageSender(communicator=communicator, uuid=generateduuid)
|
||||||
consumerlocator = ConsumerLocator(uuid=generateduuid, communicator=communicator,
|
consumerlocator = ConsumerLocator(uuid=generateduuid, communicator=communicator,
|
||||||
redisconnector=RedisConnector())
|
redisconnector=RedisConnector())
|
||||||
messagesender = MessageSender(communicator=communicator)
|
|
||||||
consumerlocator.learnconsumerlist()
|
consumerlocator.learnconsumerlist()
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
@ -7,6 +7,7 @@ Message sender component.
|
|||||||
import logging
|
import logging
|
||||||
import random
|
import random
|
||||||
import string
|
import string
|
||||||
|
import json
|
||||||
from communicator import Communicator
|
from communicator import Communicator
|
||||||
|
|
||||||
__author__ = "@kovacsbence"
|
__author__ = "@kovacsbence"
|
||||||
@ -23,13 +24,14 @@ class MessageSender:
|
|||||||
Component responsible for sending the messages. Requires an instance of :class:`communicator.Communicator`.
|
Component responsible for sending the messages. Requires an instance of :class:`communicator.Communicator`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, communicator: Communicator):
|
def __init__(self, communicator: Communicator, uuid: str):
|
||||||
"""**Constructor:**
|
"""**Constructor:**
|
||||||
Initializes the object.
|
Initializes the object.
|
||||||
|
|
||||||
:param communicator: an instance of :class:`communicator.Communicator`.
|
:param communicator: an instance of :class:`communicator.Communicator`.
|
||||||
"""
|
"""
|
||||||
self.communicator = communicator
|
self.communicator = communicator
|
||||||
|
self.uuid = uuid
|
||||||
|
|
||||||
def randomstring(self, stringlength: int) -> str:
|
def randomstring(self, stringlength: int) -> str:
|
||||||
"""Generate a random string of fixed length
|
"""Generate a random string of fixed length
|
||||||
@ -54,4 +56,4 @@ class MessageSender:
|
|||||||
data = self.randomstring(32)
|
data = self.randomstring(32)
|
||||||
else:
|
else:
|
||||||
data = message
|
data = message
|
||||||
self.communicator.sendmessage(data)
|
self.communicator.sendmessage(json.dumps({"message": data, "uuid": self.uuid}))
|
||||||
|
Reference in New Issue
Block a user