aboutsummaryrefslogtreecommitdiffstats
path: root/simulator-cli/cli/client/tailf_client.py
blob: 1f4627543b85b7976225b47558d4ee3e30d0b9e8 (plain)
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
###
# ============LICENSE_START=======================================================
# Simulator
# ================================================================================
# Copyright (C) 2021 Nokia. All rights reserved.
# ================================================================================
# 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.
# ============LICENSE_END=========================================================
###

import logging

import websockets
import asyncio
import signal
import sys


class TailfClient(object):

    def __init__(self, url: str, verbose: bool = False) -> None:
        self._url = url
        self._is_running = False
        self._connection = None
        self.logger = logging.getLogger()
        self.logger.setLevel(logging.DEBUG if verbose else logging.INFO)
        signal.signal(signal.SIGINT, self._handle_keyboard_interrupt)

    def tailf_messages(self):
        self._is_running = True
        self.logger.debug("Attempting to connect to websocket server on %s", self._url)
        asyncio.get_event_loop().run_until_complete(
            self._tailf_messages()
        )

    async def _tailf_messages(self):
        try:
            async with websockets.connect(self._url) as connection:
                self.logger.debug("Connection with %s established", self._url)
                self._connection = connection
                while self._is_running:
                    print(await self._connection.recv(), "\n")
        except ConnectionRefusedError:
            self.logger.error("Cannot establish connection with %s", self._url)

    def _handle_keyboard_interrupt(self, sig, frame):
        self.logger.warning("CTR-C pressed, interrupting.")
        self._is_running = False
        sys.exit(0)