blob: 2f9030763274ac0073e97d2e7d4c401cd213085b [file] [log] [blame]
tierno87858ca2018-10-08 16:30:15 +02001# -*- 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
aticig3dd0db62022-03-04 19:35:45 +030018import asyncio
19from http import HTTPStatus
tierno5c012612018-04-19 16:01:59 +020020import logging
21import os
tierno5c012612018-04-19 16:01:59 +020022from time import sleep
aticig3dd0db62022-03-04 19:35:45 +030023
24from osm_common.msgbase import MsgBase, MsgException
25import yaml
tierno5c012612018-04-19 16:01:59 +020026
27__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno5c012612018-04-19 16:01:59 +020028"""
29This emulated kafka bus by just using a shared file system. Useful for testing or devops.
tierno3054f782018-04-25 16:59:53 +020030One file is used per topic. Only one producer and one consumer is allowed per topic. Both consumer and producer
tierno5c012612018-04-19 16:01:59 +020031access to the same file. e.g. same volume if running with docker.
32One text line per message is used in yaml format.
33"""
34
tierno3054f782018-04-25 16:59:53 +020035
tierno5c012612018-04-19 16:01:59 +020036class MsgLocal(MsgBase):
garciadeblas2644b762021-03-24 09:21:01 +010037 def __init__(self, logger_name="msg", lock=False):
tierno1e9a3292018-11-05 18:18:45 +010038 super().__init__(logger_name, lock)
tierno5c012612018-04-19 16:01:59 +020039 self.path = None
40 # create a different file for each topic
tiernoe74238f2018-04-26 17:22:09 +020041 self.files_read = {}
42 self.files_write = {}
tierno5c012612018-04-19 16:01:59 +020043 self.buffer = {}
tierno05ede8f2019-01-28 16:20:18 +000044 self.loop = None
tierno5c012612018-04-19 16:01:59 +020045
46 def connect(self, config):
47 try:
48 if "logger_name" in config:
49 self.logger = logging.getLogger(config["logger_name"])
50 self.path = config["path"]
51 if not self.path.endswith("/"):
52 self.path += "/"
53 if not os.path.exists(self.path):
54 os.mkdir(self.path)
tierno05ede8f2019-01-28 16:20:18 +000055 self.loop = config.get("loop")
56
tierno5c012612018-04-19 16:01:59 +020057 except MsgException:
58 raise
59 except Exception as e: # TODO refine
tierno136f2952018-10-19 13:01:03 +020060 raise MsgException(str(e), http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
tierno5c012612018-04-19 16:01:59 +020061
62 def disconnect(self):
tierno1e9a3292018-11-05 18:18:45 +010063 for topic, f in self.files_read.items():
tiernoe74238f2018-04-26 17:22:09 +020064 try:
65 f.close()
tierno1e9a3292018-11-05 18:18:45 +010066 self.files_read[topic] = None
tiernoe74238f2018-04-26 17:22:09 +020067 except Exception: # TODO refine
68 pass
tierno1e9a3292018-11-05 18:18:45 +010069 for topic, f in self.files_write.items():
tierno5c012612018-04-19 16:01:59 +020070 try:
71 f.close()
tierno1e9a3292018-11-05 18:18:45 +010072 self.files_write[topic] = None
tierno3054f782018-04-25 16:59:53 +020073 except Exception: # TODO refine
tierno5c012612018-04-19 16:01:59 +020074 pass
75
76 def write(self, topic, key, msg):
77 """
78 Insert a message into topic
79 :param topic: topic
80 :param key: key text to be inserted
81 :param msg: value object to be inserted, can be str, object ...
82 :return: None or raises and exception
83 """
84 try:
tierno1e9a3292018-11-05 18:18:45 +010085 with self.lock:
86 if topic not in self.files_write:
87 self.files_write[topic] = open(self.path + topic, "a+")
garciadeblas2644b762021-03-24 09:21:01 +010088 yaml.safe_dump(
89 {key: msg},
90 self.files_write[topic],
91 default_flow_style=True,
92 width=20000,
93 )
tierno1e9a3292018-11-05 18:18:45 +010094 self.files_write[topic].flush()
tierno5c012612018-04-19 16:01:59 +020095 except Exception as e: # TODO refine
tierno136f2952018-10-19 13:01:03 +020096 raise MsgException(str(e), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno5c012612018-04-19 16:01:59 +020097
98 def read(self, topic, blocks=True):
99 """
100 Read from one or several topics. it is non blocking returning None if nothing is available
101 :param topic: can be str: single topic; or str list: several topics
102 :param blocks: indicates if it should wait and block until a message is present or returns None
103 :return: topic, key, message; or None if blocks==True
104 """
105 try:
106 if isinstance(topic, (list, tuple)):
107 topic_list = topic
108 else:
garciadeblas2644b762021-03-24 09:21:01 +0100109 topic_list = (topic,)
tierno5c012612018-04-19 16:01:59 +0200110 while True:
111 for single_topic in topic_list:
tierno1e9a3292018-11-05 18:18:45 +0100112 with self.lock:
113 if single_topic not in self.files_read:
garciadeblas2644b762021-03-24 09:21:01 +0100114 self.files_read[single_topic] = open(
115 self.path + single_topic, "a+"
116 )
tierno1e9a3292018-11-05 18:18:45 +0100117 self.buffer[single_topic] = ""
garciadeblas2644b762021-03-24 09:21:01 +0100118 self.buffer[single_topic] += self.files_read[
119 single_topic
120 ].readline()
tierno1e9a3292018-11-05 18:18:45 +0100121 if not self.buffer[single_topic].endswith("\n"):
122 continue
tierno6472e2b2019-09-02 16:04:16 +0000123 msg_dict = yaml.safe_load(self.buffer[single_topic])
tierno5c012612018-04-19 16:01:59 +0200124 self.buffer[single_topic] = ""
tierno1e9a3292018-11-05 18:18:45 +0100125 assert len(msg_dict) == 1
126 for k, v in msg_dict.items():
127 return single_topic, k, v
tierno5c012612018-04-19 16:01:59 +0200128 if not blocks:
129 return None
130 sleep(2)
131 except Exception as e: # TODO refine
tierno136f2952018-10-19 13:01:03 +0200132 raise MsgException(str(e), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno5c012612018-04-19 16:01:59 +0200133
garciadeblas2644b762021-03-24 09:21:01 +0100134 async def aioread(
135 self, topic, loop=None, callback=None, aiocallback=None, group_id=None, **kwargs
136 ):
tierno5c012612018-04-19 16:01:59 +0200137 """
138 Asyncio read from one or several topics. It blocks
139 :param topic: can be str: single topic; or str list: several topics
tierno10602af2019-02-18 14:53:54 +0000140 :param loop: asyncio loop. To be DEPRECATED! in near future!!! loop must be provided inside config at connect
141 :param callback: synchronous callback function that will handle the message
142 :param aiocallback: async callback function that will handle the message
143 :param group_id: group_id to use for load balancing. Can be False (set group_id to None), None (use general
144 group_id provided at connect inside config), or a group_id string
145 :param kwargs: optional keyword arguments for callback function
146 :return: If no callback defined, it returns (topic, key, message)
tierno5c012612018-04-19 16:01:59 +0200147 """
tierno05ede8f2019-01-28 16:20:18 +0000148 _loop = loop or self.loop
tierno5c012612018-04-19 16:01:59 +0200149 try:
150 while True:
151 msg = self.read(topic, blocks=False)
152 if msg:
tierno14521832018-10-24 10:53:37 +0200153 if callback:
154 callback(*msg, **kwargs)
155 elif aiocallback:
156 await aiocallback(*msg, **kwargs)
157 else:
158 return msg
tierno05ede8f2019-01-28 16:20:18 +0000159 await asyncio.sleep(2, loop=_loop)
tierno5c012612018-04-19 16:01:59 +0200160 except MsgException:
161 raise
162 except Exception as e: # TODO refine
tierno136f2952018-10-19 13:01:03 +0200163 raise MsgException(str(e), HTTPStatus.INTERNAL_SERVER_ERROR)
tiernoebbf3532018-05-03 17:49:37 +0200164
165 async def aiowrite(self, topic, key, msg, loop=None):
166 """
167 Asyncio write. It blocks
168 :param topic: str
169 :param key: str
170 :param msg: message, can be str or yaml
171 :param loop: asyncio loop
172 :return: nothing if ok or raises an exception
173 """
174 return self.write(topic, key, msg)