| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| 3 | # Copyright 2018 Telefonica S.A. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 14 | # implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | |
| aticig | 3dd0db6 | 2022-03-04 19:35:45 +0300 | [diff] [blame] | 18 | import asyncio |
| 19 | from http import HTTPStatus |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 20 | import logging |
| 21 | import os |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 22 | from time import sleep |
| aticig | 3dd0db6 | 2022-03-04 19:35:45 +0300 | [diff] [blame] | 23 | |
| 24 | from osm_common.msgbase import MsgBase, MsgException |
| 25 | import yaml |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 26 | |
| 27 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 28 | """ |
| 29 | This emulated kafka bus by just using a shared file system. Useful for testing or devops. |
| tierno | 3054f78 | 2018-04-25 16:59:53 +0200 | [diff] [blame] | 30 | One file is used per topic. Only one producer and one consumer is allowed per topic. Both consumer and producer |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 31 | access to the same file. e.g. same volume if running with docker. |
| 32 | One text line per message is used in yaml format. |
| 33 | """ |
| 34 | |
| tierno | 3054f78 | 2018-04-25 16:59:53 +0200 | [diff] [blame] | 35 | |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 36 | class MsgLocal(MsgBase): |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 37 | def __init__(self, logger_name="msg", lock=False): |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 38 | super().__init__(logger_name, lock) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 39 | self.path = None |
| 40 | # create a different file for each topic |
| tierno | e74238f | 2018-04-26 17:22:09 +0200 | [diff] [blame] | 41 | self.files_read = {} |
| 42 | self.files_write = {} |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 43 | self.buffer = {} |
| 44 | |
| 45 | def connect(self, config): |
| 46 | try: |
| 47 | if "logger_name" in config: |
| 48 | self.logger = logging.getLogger(config["logger_name"]) |
| 49 | self.path = config["path"] |
| 50 | if not self.path.endswith("/"): |
| 51 | self.path += "/" |
| 52 | if not os.path.exists(self.path): |
| 53 | os.mkdir(self.path) |
| tierno | 05ede8f | 2019-01-28 16:20:18 +0000 | [diff] [blame] | 54 | |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 55 | except MsgException: |
| 56 | raise |
| 57 | except Exception as e: # TODO refine |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 58 | raise MsgException(str(e), http_code=HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 59 | |
| 60 | def disconnect(self): |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 61 | for topic, f in self.files_read.items(): |
| tierno | e74238f | 2018-04-26 17:22:09 +0200 | [diff] [blame] | 62 | try: |
| 63 | f.close() |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 64 | self.files_read[topic] = None |
| aticig | d3b582a | 2022-08-24 22:41:56 +0300 | [diff] [blame] | 65 | except Exception as read_topic_error: |
| 66 | if isinstance(read_topic_error, (IOError, FileNotFoundError)): |
| 67 | self.logger.exception( |
| 68 | f"{read_topic_error} occured while closing read topic files." |
| 69 | ) |
| 70 | elif isinstance(read_topic_error, KeyError): |
| 71 | self.logger.exception( |
| 72 | f"{read_topic_error} occured while reading from files_read dictionary." |
| 73 | ) |
| 74 | else: |
| 75 | self.logger.exception( |
| 76 | f"{read_topic_error} occured while closing read topics." |
| 77 | ) |
| 78 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 79 | for topic, f in self.files_write.items(): |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 80 | try: |
| 81 | f.close() |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 82 | self.files_write[topic] = None |
| aticig | d3b582a | 2022-08-24 22:41:56 +0300 | [diff] [blame] | 83 | except Exception as write_topic_error: |
| 84 | if isinstance(write_topic_error, (IOError, FileNotFoundError)): |
| 85 | self.logger.exception( |
| 86 | f"{write_topic_error} occured while closing write topic files." |
| 87 | ) |
| 88 | elif isinstance(write_topic_error, KeyError): |
| 89 | self.logger.exception( |
| 90 | f"{write_topic_error} occured while reading from files_write dictionary." |
| 91 | ) |
| 92 | else: |
| 93 | self.logger.exception( |
| 94 | f"{write_topic_error} occured while closing write topics." |
| 95 | ) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 96 | |
| 97 | def write(self, topic, key, msg): |
| 98 | """ |
| 99 | Insert a message into topic |
| 100 | :param topic: topic |
| 101 | :param key: key text to be inserted |
| 102 | :param msg: value object to be inserted, can be str, object ... |
| 103 | :return: None or raises and exception |
| 104 | """ |
| 105 | try: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 106 | with self.lock: |
| 107 | if topic not in self.files_write: |
| 108 | self.files_write[topic] = open(self.path + topic, "a+") |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 109 | yaml.safe_dump( |
| 110 | {key: msg}, |
| 111 | self.files_write[topic], |
| 112 | default_flow_style=True, |
| 113 | width=20000, |
| 114 | ) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 115 | self.files_write[topic].flush() |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 116 | except Exception as e: # TODO refine |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 117 | raise MsgException(str(e), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 118 | |
| 119 | def read(self, topic, blocks=True): |
| 120 | """ |
| 121 | Read from one or several topics. it is non blocking returning None if nothing is available |
| 122 | :param topic: can be str: single topic; or str list: several topics |
| 123 | :param blocks: indicates if it should wait and block until a message is present or returns None |
| 124 | :return: topic, key, message; or None if blocks==True |
| 125 | """ |
| 126 | try: |
| 127 | if isinstance(topic, (list, tuple)): |
| 128 | topic_list = topic |
| 129 | else: |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 130 | topic_list = (topic,) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 131 | while True: |
| 132 | for single_topic in topic_list: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 133 | with self.lock: |
| 134 | if single_topic not in self.files_read: |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 135 | self.files_read[single_topic] = open( |
| 136 | self.path + single_topic, "a+" |
| 137 | ) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 138 | self.buffer[single_topic] = "" |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 139 | self.buffer[single_topic] += self.files_read[ |
| 140 | single_topic |
| 141 | ].readline() |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 142 | if not self.buffer[single_topic].endswith("\n"): |
| 143 | continue |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 144 | msg_dict = yaml.safe_load(self.buffer[single_topic]) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 145 | self.buffer[single_topic] = "" |
| aticig | d3b582a | 2022-08-24 22:41:56 +0300 | [diff] [blame] | 146 | if len(msg_dict) != 1: |
| 147 | raise ValueError( |
| 148 | "Length of message dictionary is not equal to 1" |
| 149 | ) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 150 | for k, v in msg_dict.items(): |
| 151 | return single_topic, k, v |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 152 | if not blocks: |
| 153 | return None |
| 154 | sleep(2) |
| 155 | except Exception as e: # TODO refine |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 156 | raise MsgException(str(e), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 157 | |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 158 | async def aioread( |
| Gulsum Atici | a06b854 | 2023-05-09 13:42:13 +0300 | [diff] [blame] | 159 | self, topic, callback=None, aiocallback=None, group_id=None, **kwargs |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 160 | ): |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 161 | """ |
| 162 | Asyncio read from one or several topics. It blocks |
| 163 | :param topic: can be str: single topic; or str list: several topics |
| tierno | 10602af | 2019-02-18 14:53:54 +0000 | [diff] [blame] | 164 | :param callback: synchronous callback function that will handle the message |
| 165 | :param aiocallback: async callback function that will handle the message |
| 166 | :param group_id: group_id to use for load balancing. Can be False (set group_id to None), None (use general |
| 167 | group_id provided at connect inside config), or a group_id string |
| 168 | :param kwargs: optional keyword arguments for callback function |
| 169 | :return: If no callback defined, it returns (topic, key, message) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 170 | """ |
| 171 | try: |
| 172 | while True: |
| 173 | msg = self.read(topic, blocks=False) |
| 174 | if msg: |
| tierno | 1452183 | 2018-10-24 10:53:37 +0200 | [diff] [blame] | 175 | if callback: |
| 176 | callback(*msg, **kwargs) |
| 177 | elif aiocallback: |
| 178 | await aiocallback(*msg, **kwargs) |
| 179 | else: |
| 180 | return msg |
| Gulsum Atici | a06b854 | 2023-05-09 13:42:13 +0300 | [diff] [blame] | 181 | await asyncio.sleep(2) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 182 | except MsgException: |
| 183 | raise |
| 184 | except Exception as e: # TODO refine |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 185 | raise MsgException(str(e), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | ebbf353 | 2018-05-03 17:49:37 +0200 | [diff] [blame] | 186 | |
| Gulsum Atici | a06b854 | 2023-05-09 13:42:13 +0300 | [diff] [blame] | 187 | async def aiowrite(self, topic, key, msg): |
| tierno | ebbf353 | 2018-05-03 17:49:37 +0200 | [diff] [blame] | 188 | """ |
| 189 | Asyncio write. It blocks |
| 190 | :param topic: str |
| 191 | :param key: str |
| 192 | :param msg: message, can be str or yaml |
| tierno | ebbf353 | 2018-05-03 17:49:37 +0200 | [diff] [blame] | 193 | :return: nothing if ok or raises an exception |
| 194 | """ |
| 195 | return self.write(topic, key, msg) |