glances_curses.py 17.7 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Glances - An eye on your system
#
# 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/>.

# Import system lib
import sys
try:
    import curses
    import curses.panel
except ImportError:
    print('Curses module not found. Glances cannot start in standalone mode.')
    sys.exit(1)

# Import Glances lib
N
Nicolas Hennion 已提交
31 32
from glances.core.glances_timer import Timer
from glances.core.glances_globals import glances_logs
33 34 35 36 37 38 39 40 41 42 43


class glancesCurses:
    """
    This class manage the curses display (and key pressed)
    """

    def __init__(self, args=None):

        # Init args
        self.args = args
N
Nicolas Hennion 已提交
44 45
        # By default, display bitrate instead of cumulative in the network plugin
        self.args.network_stats_cumulative = False
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

        # Init windows positions
        self.term_w = 80
        self.term_h = 24

        # Space between stats
        self.space_between_column = 3
        self.space_between_line = 2

        # Init the curses screen
        self.screen = curses.initscr()
        if not self.screen:
            print(_("Error: Cannot init the curses library.\n"))

        # Set curses options
        if hasattr(curses, 'start_color'):
            curses.start_color()
        if hasattr(curses, 'use_default_colors'):
            curses.use_default_colors()
        if hasattr(curses, 'noecho'):
            curses.noecho()
        if hasattr(curses, 'cbreak'):
            curses.cbreak()
        if hasattr(curses, 'curs_set'):
            try:
                curses.curs_set(0)
            except Exception:
                pass

        # Init colors
        self.hascolors = False
        if curses.has_colors() and curses.COLOR_PAIRS > 8:
            self.hascolors = True
            # FG color, BG color
            curses.init_pair(1, curses.COLOR_WHITE, -1)
            curses.init_pair(2, curses.COLOR_WHITE, curses.COLOR_RED)
            curses.init_pair(3, curses.COLOR_WHITE, curses.COLOR_GREEN)
            curses.init_pair(4, curses.COLOR_WHITE, curses.COLOR_BLUE)
            curses.init_pair(5, curses.COLOR_WHITE, curses.COLOR_MAGENTA)
            curses.init_pair(6, curses.COLOR_RED, -1)
            curses.init_pair(7, curses.COLOR_GREEN, -1)
            curses.init_pair(8, curses.COLOR_BLUE, -1)
            curses.init_pair(9, curses.COLOR_MAGENTA, -1)
        else:
            self.hascolors = False

        if (args.no_bold):
            A_BOLD = curses.A_BOLD
        else:
            A_BOLD = 0

        self.title_color = A_BOLD
        self.title_underline_color = A_BOLD | curses.A_UNDERLINE
        self.help_color = A_BOLD
        if self.hascolors:
            # Colors text styles
            self.no_color = curses.color_pair(1)
N
Nicolas Hennion 已提交
103
            self.default_color = curses.color_pair(3) | A_BOLD 
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
            self.ifCAREFUL_color = curses.color_pair(4) | A_BOLD
            self.ifWARNING_color = curses.color_pair(5) | A_BOLD
            self.ifCRITICAL_color = curses.color_pair(2) | A_BOLD
            self.default_color2 = curses.color_pair(7) | A_BOLD
            self.ifCAREFUL_color2 = curses.color_pair(8) | A_BOLD
            self.ifWARNING_color2 = curses.color_pair(9) | A_BOLD
            self.ifCRITICAL_color2 = curses.color_pair(6) | A_BOLD
        else:
            # B&W text styles
            self.no_color = curses.A_NORMAL
            self.default_color = curses.A_NORMAL
            self.ifCAREFUL_color = curses.A_UNDERLINE
            self.ifWARNING_color = A_BOLD
            self.ifCRITICAL_color = curses.A_REVERSE
            self.default_color2 = curses.A_NORMAL
            self.ifCAREFUL_color2 = curses.A_UNDERLINE
            self.ifWARNING_color2 = A_BOLD
            self.ifCRITICAL_color2 = curses.A_REVERSE

        # Define the colors list (hash table) for stats
        self.__colors_list = {
            'DEFAULT': self.no_color,
            'UNDERLINE': curses.A_UNDERLINE,
            'BOLD': A_BOLD,
            'OK': self.default_color2,
            'TITLE': self.title_color,
            'CAREFUL': self.ifCAREFUL_color2,
            'WARNING': self.ifWARNING_color2,
            'CRITICAL': self.ifCRITICAL_color2,
            'OK_LOG': self.default_color,
            'CAREFUL_LOG': self.ifCAREFUL_color,
            'WARNING_LOG': self.ifWARNING_color,
            'CRITICAL_LOG': self.ifCRITICAL_color
        }

        # Init main window
        self.term_window = self.screen.subwin(0, 0)

        # Init refresh time
        self.__refresh_time = args.time

        # Init process sort method
        self.args.process_sorted_by = 'auto'

        # Catch key pressed with non blocking mode
        self.term_window.keypad(1)
        self.term_window.nodelay(1)
        self.pressedkey = -1

    def __getkey(self, window):
        """
        A getKey function to catch ESC key AND Numlock key (issue #163)
        """
        keycode = [0, 0]
        keycode[0] = window.getch()
        keycode[1] = window.getch()

        if keycode[0] == 27 and keycode[1] != -1:
            # Do not escape on specials keys
            return -1
        else:
            return keycode[0]

    def __catchKey(self):
        # Get key
        #~ self.pressedkey = self.term_window.getch()
        self.pressedkey = self.__getkey(self.term_window)

        # Actions...
        if self.pressedkey == ord('\x1b') or self.pressedkey == ord('q'):
            # 'ESC'|'q' > Quit
            self.end()
            sys.exit(0)
        elif self.pressedkey == ord('1'):
            # '1' > Switch between CPU and PerCPU information
            self.args.percpu = not self.args.percpu
        elif self.pressedkey == ord('a'):
            # 'a' > Sort processes automatically
            self.args.process_sorted_by = 'auto'
        elif self.pressedkey == ord('b'):
            # 'b' > Switch between bit/s and Byte/s for network IO
            # self.net_byteps_tag = not self.net_byteps_tag
            self.args.byte = not self.args.byte
        elif self.pressedkey == ord('c'):
            # 'c' > Sort processes by CPU usage
            self.args.process_sorted_by = 'cpu_percent'
        elif self.pressedkey == ord('d') and diskio_tag:
            # 'd' > Show/hide disk I/O stats
            self.diskio_tag = not self.diskio_tag
        elif self.pressedkey == ord('f') and fs_tag:
            # 'f' > Show/hide fs stats
            self.fs_tag = not self.fs_tag
        elif self.pressedkey == ord('h'):
            # 'h' > Show/hide help
198
            self.args.help_tag = not self.args.help_tag
199 200 201
        elif self.pressedkey == ord('i'):
        # elif self.pressedkey == ord('i') and psutil_get_io_counter_tag:
            # !!! Manage IORate (non existing) on Mac OS
202
            # 'i' > Sort processes by IO rate (not available on OS X)
203
            self.args.process_sorted_by = 'io_counters'
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
        elif self.pressedkey == ord('l'):
            # 'l' > Show/hide log messages
            self.log_tag = not self.log_tag
        elif self.pressedkey == ord('m'):
            # 'm' > Sort processes by MEM usage
            self.args.process_sorted_by = 'memory_percent'
        elif self.pressedkey == ord('n') and network_tag:
            # 'n' > Show/hide network stats
            self.network_tag = not self.network_tag
        elif self.pressedkey == ord('p'):
            # 'p' > Sort processes by name
            self.args.process_sorted_by = 'name'
        elif self.pressedkey == ord('s'):
            # 's' > Show/hide sensors stats (Linux-only)
            self.sensors_tag = not self.sensors_tag
        elif self.pressedkey == ord('t'):
            # 't' > View network traffic as combination
            self.network_stats_combined = not self.network_stats_combined
        elif self.pressedkey == ord('u'):
            # 'u' > View cumulative network IO
N
Nicolas Hennion 已提交
224
            self.args.network_stats_cumulative = not self.args.network_stats_cumulative
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
        elif self.pressedkey == ord('w'):
            # 'w' > Delete finished warning logs
            glances_logs.clean()
        elif self.pressedkey == ord('x'):
            # 'x' > Delete finished warning and critical logs
            glances_logs.clean(critical=True)
        elif self.pressedkey == ord('y'):
            # 'y' > Show/hide hddtemp stats
            self.hddtemp_tag = not self.hddtemp_tag

        # Return the key code
        return self.pressedkey

    def end(self):
        # Shutdown the curses window
        curses.echo()
        curses.nocbreak()
        curses.curs_set(1)
        curses.endwin()

245
    def display(self, stats, cs_status="None"):
246 247
        """
        Display stats on the screen
248

249 250 251 252 253
        stats: Stats database to display
        cs_status:
            "None": standalone or server mode
            "Connected": Client is connected to the server
            "Disconnected": Client is disconnected from the server
254 255 256 257

        Return:
            True if the stats have been displayed
            False if the help have been displayed
258 259 260 261 262 263 264 265 266 267
        """

        # Init the internal line/column dict for Glances Curses
        self.line_to_y = {}
        self.column_to_x = {}

        # Get the screen size
        screen_x = self.screen.getmaxyx()[1]
        screen_y = self.screen.getmaxyx()[0]

268 269 270 271 272 273
        if (self.args.help_tag):
            # Display the stats...
            self.display_plugin(stats.get_plugin('help').get_curse(args=self.args))
            # ... and exit
            return False

A
Alessio Sergi 已提交
274
        # Update the client server status
N
Nicolas Hennion 已提交
275 276
        self.args.cs_status = cs_status

277 278 279 280 281 282
        # Display first line (system+uptime)
        stats_system = stats.get_plugin('system').get_curse(args=self.args)
        stats_uptime = stats.get_plugin('uptime').get_curse()
        l = self.get_curse_width(stats_system) + self.get_curse_width(stats_uptime) + self.space_between_column
        self.display_plugin(stats_system, display_optional=(screen_x >= l))
        self.display_plugin(stats_uptime)
A
Alessio Sergi 已提交
283

284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
        # Display second line (CPU|PERCPU+LOAD+MEM+SWAP+<SUMMARY>)
        # CPU|PERCPU
        if (self.args.percpu):
            stats_percpu = stats.get_plugin('percpu').get_curse()
            l = self.get_curse_width(stats_percpu)
        else:
            stats_cpu = stats.get_plugin('cpu').get_curse()
            l = self.get_curse_width(stats_cpu)
        stats_load = stats.get_plugin('load').get_curse()
        stats_mem = stats.get_plugin('mem').get_curse()
        stats_memswap = stats.get_plugin('memswap').get_curse()
        l += self.get_curse_width(stats_load) + self.get_curse_width(stats_mem) + self.get_curse_width(stats_memswap)
        # Space between column
        if (screen_x > (3 * self.space_between_column + l)):
            self.space_between_column = int((screen_x - l) / 3)
        # Display
        if (self.args.percpu):
            self.display_plugin(stats_percpu)
        else:
            self.display_plugin(stats_cpu, display_optional=(screen_x >= 76))
        self.display_plugin(stats_load)
        self.display_plugin(stats_mem, display_optional=(screen_x >= (3 * self.space_between_column + l)))
        self.display_plugin(stats_memswap)
        # Space between column
        self.space_between_column = 3

        # Display left sidebar (NETWORK+DISKIO+FS+SENSORS)
        self.display_plugin(stats.get_plugin('network').get_curse(args=self.args))
        self.display_plugin(stats.get_plugin('diskio').get_curse(args=self.args))
        self.display_plugin(stats.get_plugin('fs').get_curse(args=self.args))
        self.display_plugin(stats.get_plugin('sensors').get_curse(args=self.args))

        # Display last line (currenttime)
        self.display_plugin(stats.get_plugin('now').get_curse())

        # Display right sidebar (PROCESS_COUNT)
        if (screen_x > 52):
            stats_processcount = stats.get_plugin('processcount').get_curse(args=self.args)
            stats_processlist = stats.get_plugin('processlist').get_curse(args=self.args)
            stats_alert = stats.get_plugin('alert').get_curse(args=self.args)
            stats_monitor = stats.get_plugin('monitor').get_curse(args=self.args)
            self.display_plugin(stats_processcount)
            self.display_plugin(stats_monitor)
            self.display_plugin(stats_processlist, max_y=(screen_y - self.get_curse_height(stats_alert) - 3))
            self.display_plugin(stats_alert)

330 331
        return True

A
Alessio Sergi 已提交
332
    def display_plugin(self, plugin_stats, display_optional=True, max_y=65535):
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
        """
        Display the plugin_stats on the screen
        If display_optional=True display the optional stats
        max_y do not display line > max_y
        """
        # Exit if the display tag = False
        if (not plugin_stats['display']):
            return 0

        # Get the screen size
        screen_x = self.screen.getmaxyx()[1]
        screen_y = self.screen.getmaxyx()[0]

        # Set the upper/left position of the message
        if (plugin_stats['column'] < 0):
            # Right align (last column)
            display_x = screen_x - self.get_curse_width(plugin_stats)
        else:
            if (plugin_stats['column'] not in self.column_to_x):
                self.column_to_x[plugin_stats['column']] = plugin_stats['column']
            display_x = self.column_to_x[plugin_stats['column']]
        if (plugin_stats['line'] < 0):
            # Bottom (last line)
            display_y = screen_y - self.get_curse_height(plugin_stats)
        else:
            if (plugin_stats['line'] not in self.line_to_y):
                self.line_to_y[plugin_stats['line']] = plugin_stats['line']
            display_y = self.line_to_y[plugin_stats['line']]

        # Display
        x = display_x
        y = display_y
        for m in plugin_stats['msgdict']:
            # New line
            if (m['msg'].startswith('\n')):
                # Go to the next line
                y = y + 1
                # Return to the first column
                x = display_x
                continue
            # Do not display outside the screen
            if ((x < 0) or (x + len(m['msg']) > screen_x)):
                continue
            if ((y < 0) or (y + 1 > screen_y) or (y > max_y)):
                break
            # If display_optional = False do not display optional stats
            if ((not display_optional) and m['optional']):
                continue
            # Is it possible to display the stat with the current screen size
            # !!! Crach if not try/except... Why ???
            try:
A
Alessio Sergi 已提交
384 385 386
                self.term_window.addnstr(y, x,
                                         m['msg'],
                                         screen_x - x,  # Do not disply outside the screen
387 388 389 390 391 392 393 394 395
                                         self.__colors_list[m['decoration']])
            except:
                pass
            else:
                # New column
                x = x + len(m['msg'])

        # Compute the next Glances column/line position
        if (plugin_stats['column'] > -1):
A
Alessio Sergi 已提交
396
            self.column_to_x[plugin_stats['column'] + 1] = x + self.space_between_column
397 398 399 400 401 402 403
        if (plugin_stats['line'] > -1):
            self.line_to_y[plugin_stats['line'] + 1] = y + self.space_between_line

    def erase(self):
        # Erase the content of the screen
        self.term_window.erase()

404
    def flush(self, stats, cs_status="None"):
405 406 407 408 409 410 411 412 413
        """
        Clear and update screen
        stats: Stats database to display
        cs_status:
            "None": standalone or server mode
            "Connected": Client is connected to the server
            "Disconnected": Client is disconnected from the server
        """
        self.erase()
414
        self.display(stats, cs_status=cs_status)
415

416
    def update(self, stats, cs_status="None"):
417 418 419 420 421 422 423 424 425
        """
        Update the screen and wait __refresh_time sec / catch key every 100 ms
        stats: Stats database to display
        cs_status:
            "None": standalone or server mode
            "Connected": Client is connected to the server
            "Disconnected": Client is disconnected from the server
        """
        # Flush display
426
        self.flush(stats, cs_status=cs_status)
427 428 429

        # Wait
        countdown = Timer(self.__refresh_time)
N
Nicolas Hennion 已提交
430
        while (not countdown.finished()):
431 432 433
            # Getkey
            if self.__catchKey() > -1:
                # flush display
434
                self.flush(stats, cs_status=cs_status)
435 436 437 438 439
            # Wait 100ms...
            curses.napms(100)

    def get_curse_width(self, curse_msg, without_option=False):
        # Return the width of the formated curses message
A
Alessio Sergi 已提交
440
        # The height is defined by the maximum line
441 442 443 444

        try:
            if (without_option):
                # Size without options
A
Alessio Sergi 已提交
445 446
                c = len(max(''.join([(i['msg'] if not i['optional'] else "")
                        for i in curse_msg['msgdict']]).split('\n'), key=len))
447 448
            else:
                # Size with all options
A
Alessio Sergi 已提交
449 450
                c = len(max(''.join([i['msg']
                        for i in curse_msg['msgdict']]).split('\n'), key=len))
451 452 453 454 455 456 457 458 459 460
        except:
            return 0
        else:
            return c

    def get_curse_height(self, curse_msg):
        # Return the height of the formated curses message
        # The height is defined by the number of '\n'

        try:
A
Alessio Sergi 已提交
461
            c = [i['msg'] for i in curse_msg['msgdict']].count('\n')
462 463 464 465
        except:
            return 0
        else:
            return c + 1