Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import grpc, logging, queue, threading
from common.proto.dlt_gateway_pb2 import DltRecordSubscription
from common.tools.grpc.Tools import grpc_message_to_json_string
from dlt.connector.client.DltGatewayClient import DltGatewayClient
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.DEBUG)
class DltEventsCollector:
def __init__(
self, dltgateway_client : DltGatewayClient,
log_events_received : bool = False,
) -> None:
self._events_queue = queue.Queue()
self._log_events_received = log_events_received
subscription = DltRecordSubscription() # bu default subscribe to all
self._dltgateway_stream = dltgateway_client.SubscribeToDlt(subscription)
self._dltgateway_thread = self._create_collector_thread(self._dltgateway_stream)
def _create_collector_thread(self, stream, as_daemon : bool = False):
return threading.Thread(target=self._collect, args=(stream,), daemon=as_daemon)
def _collect(self, events_stream) -> None:
try:
for event in events_stream:
if self._log_events_received:
LOGGER.info('[_collect] event: {:s}'.format(grpc_message_to_json_string(event)))
self._events_queue.put_nowait(event)
except grpc.RpcError as e:
if e.code() != grpc.StatusCode.CANCELLED: # pylint: disable=no-member
raise # pragma: no cover
def start(self):
if self._dltgateway_thread is not None: self._dltgateway_thread.start()
def get_event(self, block : bool = True, timeout : float = 0.1):
try:
return self._events_queue.get(block=block, timeout=timeout)
except queue.Empty: # pylint: disable=catching-non-exception
return None
def get_events(self, block : bool = True, timeout : float = 0.1, count : int = None):
events = []
if count is None:
while True:
event = self.get_event(block=block, timeout=timeout)
if event is None: break
events.append(event)
else:
for _ in range(count):
event = self.get_event(block=block, timeout=timeout)
if event is None: continue
events.append(event)
return sorted(events, key=lambda e: e.event.timestamp.timestamp)
def stop(self):
if self._dltgateway_stream is not None: self._dltgateway_stream.cancel()
if self._dltgateway_thread is not None: self._dltgateway_thread.join()