glances_psutilversion.py 1.6 KB
Newer Older
A
Alessio Sergi 已提交
1 2
# -*- coding: utf-8 -*-
#
3
# This file is part of Glances.
A
Alessio Sergi 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#
# Copyright (C) 2014 Nicolargo <nicolas@nicolargo.com>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Glances is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from psutil import __version__ as __psutil_version__

N
Nicolas Hennion 已提交
22
from glances.plugins.glances_plugin import GlancesPlugin
A
Alessio Sergi 已提交
23 24 25 26 27 28 29 30 31


class Plugin(GlancesPlugin):
    """
    Glances' PsUtil version Plugin

    stats is a tuple
    """

32 33
    def __init__(self, args=None):
        GlancesPlugin.__init__(self, args=args)
A
Alessio Sergi 已提交
34

A
Alessio Sergi 已提交
35
        self.reset()
36 37 38 39 40

    def reset(self):
        """
        Reset/init the stats
        """
A
Alessio Sergi 已提交
41
        self.stats = None
42

43
    def update(self):
A
Alessio Sergi 已提交
44 45 46
        """
        Update core stats
        """
47 48 49 50

        # Reset stats
        self.reset()

A
Alessio Sergi 已提交
51
        # Return PsUtil version as a tuple
52
        if self.get_input() == 'local':
53 54 55 56 57 58 59 60 61
            # PsUtil version only available in local
            try:
                self.stats = tuple([int(num) for num in __psutil_version__.split('.')])
            except NameError:
                pass
        else:
            pass

        return self.stats