????

Your IP : 3.147.81.79


Current Path : /usr/lib/python3.6/site-packages/glances/outputs/
Upload File :
Current File : //usr/lib/python3.6/site-packages/glances/outputs/glances_stdout_json.py

# -*- coding: utf-8 -*-
#
# This file is part of Glances.
#
# SPDX-FileCopyrightText: 2022 Nicolas Hennion <nicolas@nicolargo.com>
#
# SPDX-License-Identifier: LGPL-3.0-only
#

"""Stdout interface class."""

import time

from glances.compat import printandflush


class GlancesStdoutJson(object):

    """This class manages the Stdout JSON display."""

    def __init__(self, config=None, args=None):
        # Init
        self.config = config
        self.args = args

        # Build the list of plugin to display
        self.plugins_list = self.build_list()

    def build_list(self):
        """Return a list of tuples taken from self.args.stdout_json

        :return: A list of tuples. Example -[(plugin, attribute), ... ]
        """
        return self.args.stdout_json.split(',')

    def end(self):
        pass

    def update(self, stats, duration=3):
        """Display stats in JSON format to stdout.

        Refresh every duration second.
        """
        for plugin in self.plugins_list:
            # Check if the plugin exist and is enable
            if plugin in stats.getPluginsList() and stats.get_plugin(plugin).is_enabled():
                stat = stats.get_plugin(plugin).get_json()
            else:
                continue
            # Display stats
            printandflush('{}: {}'.format(plugin, stat))

        # Wait until next refresh
        if duration > 0:
            time.sleep(duration)