glances_curses.py 38.4 KB
Newer Older
1 2
# -*- coding: utf-8 -*-
#
3
# This file is part of Glances.
4
#
5
# Copyright (C) 2018 Nicolargo <nicolas@nicolargo.com>
6 7 8 9 10 11 12 13 14 15 16 17 18 19
#
# 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/>.

A
PEP 257  
Alessio Sergi 已提交
20 21
"""Curses interface class."""

N
Nicolargo 已提交
22
import re
A
flake8  
Alessio Sergi 已提交
23
import sys
24

25
from glances.compat import u, itervalues
A
Alessio Sergi 已提交
26
from glances.globals import MACOS, WINDOWS
27 28 29 30
from glances.logger import logger
from glances.logs import glances_logs
from glances.processes import glances_processes
from glances.timer import Timer
31

A
Alessio Sergi 已提交
32
# Import curses library for "normal" operating system
A
Alessio Sergi 已提交
33
if not WINDOWS:
34 35 36
    try:
        import curses
        import curses.panel
37
        from curses.textpad import Textbox
38
    except ImportError:
39
        logger.critical("Curses module not found. Glances cannot start in standalone mode.")
40
        sys.exit(1)
41 42


43
class _GlancesCurses(object):
44

A
PEP 257  
Alessio Sergi 已提交
45 46 47
    """This class manages the curses display (and key pressed).

    Note: It is a private class, use GlancesCursesClient or GlancesCursesBrowser.
48
    """
49

50 51 52 53 54
    _hotkeys = {
        '0': {'switch': 'disable_irix'},
        '1': {'switch': 'percpu'},
        '2': {'switch': 'disable_left_sidebar'},
        '3': {'switch': 'disable_quicklook'},
55
        '6': {'switch': 'meangpu'},
56 57 58 59
        '/': {'switch': 'process_short_name'},
        'A': {'switch': 'disable_amps'},
        'b': {'switch': 'byte'},
        'B': {'switch': 'diskio_iops'},
60
        'C': {'switch': 'disable_cloud'},
61
        'D': {'switch': 'disable_docker'},
62
        'd': {'switch': 'disable_diskio'},
63
        'F': {'switch': 'fs_free_space'},
64
        'G': {'switch': 'disable_gpu'},
65 66 67 68 69
        'h': {'switch': 'help_tag'},
        'I': {'switch': 'disable_ip'},
        'l': {'switch': 'disable_alert'},
        'M': {'switch': 'reset_minmax_tag'},
        'n': {'switch': 'disable_network'},
N
nicolargo 已提交
70
        'N': {'switch': 'disable_now'},
71
        'P': {'switch': 'disable_ports'},
72
        'Q': {'switch': 'enable_irq'},
73 74 75 76 77 78 79 80 81 82 83 84
        'R': {'switch': 'disable_raid'},
        's': {'switch': 'disable_sensors'},
        'T': {'switch': 'network_sum'},
        'U': {'switch': 'network_cumul'},
        'W': {'switch': 'disable_wifi'},
        # Processes sort hotkeys
        'a': {'auto_sort': True, 'sort_key': 'cpu_percent'},
        'c': {'auto_sort': False, 'sort_key': 'cpu_percent'},
        'i': {'auto_sort': False, 'sort_key': 'io_counters'},
        'm': {'auto_sort': False, 'sort_key': 'memory_percent'},
        'p': {'auto_sort': False, 'sort_key': 'name'},
        't': {'auto_sort': False, 'sort_key': 'cpu_times'},
85
        'u': {'auto_sort': False, 'sort_key': 'username'},
86 87
    }

88 89 90
    _sort_loop = ['cpu_percent', 'memory_percent', 'username',
                  'cpu_times', 'io_counters', 'name']

N
nicolargo 已提交
91 92 93 94
    # Define top menu
    _top = ['quicklook', 'cpu', 'gpu', 'mem', 'memswap', 'load']

    # Define left sidebar
95 96 97
    _left_sidebar = ['network', 'wifi', 'ports', 'diskio', 'fs',
                     'irq', 'folders', 'raid', 'sensors', 'now']
    _left_sidebar_min_width = 23
N
nicolargo 已提交
98
    _left_sidebar_max_width = 64
99

N
nicolargo 已提交
100 101 102
    # Define right sidebar
    _right_sidebar = ['docker', 'processcount', 'amps', 'processlist', 'alert']

103 104 105
    def __init__(self, config=None, args=None):
        # Init
        self.config = config
106
        self.args = args
N
Nicolas Hennion 已提交
107

108 109 110 111 112 113 114 115 116 117 118
        # 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:
A
Alessio Sergi 已提交
119
            logger.critical("Cannot init the curses library.\n")
N
Nicolas Hennion 已提交
120
            sys.exit(1)
121

122 123 124 125
        # Load the 'outputs' section of the configuration file
        # - Init the theme (default is black)
        self.theme = {'name': 'black'}

126 127 128
        # Load configuration file
        self.load_config(config)

129 130 131 132 133 134 135 136 137 138 139 140
        # Init cursor
        self._init_cursor()

        # Init the colors
        self._init_colors()

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

        # Init edit filter tag
        self.edit_filter = False

141 142 143
        # Init the process min/max reset
        self.args.reset_minmax_tag = False

144
        # Catch key pressed with non blocking mode
145
        self.term_window.keypad(1)
146 147 148 149 150 151
        self.term_window.nodelay(1)
        self.pressedkey = -1

        # History tag
        self._init_history()

152
    def load_config(self, config):
153
        """Load the outputs section of the configuration file."""
154
        # Load the theme
155
        if config is not None and config.has_section('outputs'):
156 157
            logger.debug('Read the outputs section in the configuration file')
            self.theme['name'] = config.get_value('outputs', 'curse_theme', default='black')
158
            logger.debug('Theme for the curse interface: {}'.format(self.theme['name']))
159 160

    def is_theme(self, name):
161
        """Return True if the theme *name* should be used."""
162 163
        return getattr(self.args, 'theme_' + name) or self.theme['name'] == name

164
    def _init_history(self):
165
        """Init the history option."""
166 167 168 169

        self.reset_history_tag = False

    def _init_cursor(self):
170
        """Init cursors."""
171

172 173 174 175
        if hasattr(curses, 'noecho'):
            curses.noecho()
        if hasattr(curses, 'cbreak'):
            curses.cbreak()
N
Nicolargo 已提交
176
        self.set_cursor(0)
177

178
    def _init_colors(self):
179
        """Init the Curses color layout."""
180 181 182 183 184 185 186

        # Set curses options
        if hasattr(curses, 'start_color'):
            curses.start_color()
        if hasattr(curses, 'use_default_colors'):
            curses.use_default_colors()

187
        # Init colors
188 189
        if self.args.disable_bold:
            A_BOLD = 0
190
            self.args.disable_bg = True
191 192
        else:
            A_BOLD = curses.A_BOLD
193 194 195 196 197 198 199

        self.title_color = A_BOLD
        self.title_underline_color = A_BOLD | curses.A_UNDERLINE
        self.help_color = A_BOLD

        if curses.has_colors():
            # The screen is compatible with a colored design
200
            if self.is_theme('white'):
201
                # White theme: black ==> white
N
Nicolargo 已提交
202 203 204
                curses.init_pair(1, curses.COLOR_BLACK, -1)
            else:
                curses.init_pair(1, curses.COLOR_WHITE, -1)
205
            if self.args.disable_bg:
206 207 208 209
                curses.init_pair(2, curses.COLOR_RED, -1)
                curses.init_pair(3, curses.COLOR_GREEN, -1)
                curses.init_pair(4, curses.COLOR_BLUE, -1)
                curses.init_pair(5, curses.COLOR_MAGENTA, -1)
210 211 212 213 214
            else:
                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)
215 216 217 218 219
            curses.init_pair(6, curses.COLOR_RED, -1)
            curses.init_pair(7, curses.COLOR_GREEN, -1)
            curses.init_pair(8, curses.COLOR_BLUE, -1)

            # Colors text styles
220 221 222 223
            if curses.COLOR_PAIRS > 8:
                try:
                    curses.init_pair(9, curses.COLOR_MAGENTA, -1)
                except Exception:
224
                    if self.is_theme('white'):
225 226 227 228 229 230
                        curses.init_pair(9, curses.COLOR_BLACK, -1)
                    else:
                        curses.init_pair(9, curses.COLOR_WHITE, -1)
                try:
                    curses.init_pair(10, curses.COLOR_CYAN, -1)
                except Exception:
231
                    if self.is_theme('white'):
232 233 234 235
                        curses.init_pair(10, curses.COLOR_BLACK, -1)
                    else:
                        curses.init_pair(10, curses.COLOR_WHITE, -1)

236 237
                self.ifWARNING_color2 = curses.color_pair(9) | A_BOLD
                self.ifCRITICAL_color2 = curses.color_pair(6) | A_BOLD
238 239
                self.filter_color = curses.color_pair(10) | A_BOLD

240
            self.no_color = curses.color_pair(1)
A
Alessio Sergi 已提交
241
            self.default_color = curses.color_pair(3) | A_BOLD
242 243
            self.nice_color = curses.color_pair(9)
            self.cpu_time_color = curses.color_pair(9)
244 245 246
            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
247
            self.default_color2 = curses.color_pair(7)
248
            self.ifCAREFUL_color2 = curses.color_pair(8) | A_BOLD
249

250
        else:
251 252
            # The screen is NOT compatible with a colored design
            # switch to B&W text styles
253 254
            self.no_color = curses.A_NORMAL
            self.default_color = curses.A_NORMAL
255
            self.nice_color = A_BOLD
256
            self.cpu_time_color = A_BOLD
257 258 259 260 261 262 263
            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
N
Nicolargo 已提交
264
            self.filter_color = A_BOLD
265 266

        # Define the colors list (hash table) for stats
267
        self.colors_list = {
268 269 270
            'DEFAULT': self.no_color,
            'UNDERLINE': curses.A_UNDERLINE,
            'BOLD': A_BOLD,
271
            'SORT': A_BOLD,
272
            'OK': self.default_color2,
273
            'MAX': self.default_color2 | curses.A_BOLD,
N
Nicolargo 已提交
274
            'FILTER': self.filter_color,
275
            'TITLE': self.title_color,
276 277
            'PROCESS': self.default_color2,
            'STATUS': self.default_color2,
278
            'NICE': self.nice_color,
279
            'CPU_TIME': self.cpu_time_color,
280 281 282 283 284 285
            '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,
286 287
            'CRITICAL_LOG': self.ifCRITICAL_color,
            'PASSWORD': curses.A_PROTECT
288 289
        }

N
Nicolargo 已提交
290
    def set_cursor(self, value):
A
PEP 257  
Alessio Sergi 已提交
291 292 293 294 295 296
        """Configure the curse cursor apparence.

        0: invisible
        1: visible
        2: very visible
        """
N
Nicolargo 已提交
297 298 299 300 301 302
        if hasattr(curses, 'curs_set'):
            try:
                curses.curs_set(value)
            except Exception:
                pass

303
    def get_key(self, window):
A
PEP 257  
Alessio Sergi 已提交
304
        # Catch ESC key AND numlock key (issue #163)
305 306 307 308
        keycode = [0, 0]
        keycode[0] = window.getch()
        keycode[1] = window.getch()

N
Nicolargo 已提交
309
        if keycode != [-1, -1]:
N
Nicolargo 已提交
310
            logger.debug("Keypressed (code: %s)" % keycode)
N
Nicolargo 已提交
311

312 313 314 315 316 317
        if keycode[0] == 27 and keycode[1] != -1:
            # Do not escape on specials keys
            return -1
        else:
            return keycode[0]

N
Nicolargo 已提交
318
    def __catch_key(self, return_to_browser=False):
A
PEP 257  
Alessio Sergi 已提交
319
        # Catch the pressed key
320
        self.pressedkey = self.get_key(self.term_window)
321

322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
        # Actions (available in the global hotkey dict)...
        for hotkey in self._hotkeys:
            if self.pressedkey == ord(hotkey) and 'switch' in self._hotkeys[hotkey]:
                setattr(self.args,
                        self._hotkeys[hotkey]['switch'],
                        not getattr(self.args,
                                    self._hotkeys[hotkey]['switch']))
            if self.pressedkey == ord(hotkey) and 'auto_sort' in self._hotkeys[hotkey]:
                setattr(glances_processes,
                        'auto_sort',
                        self._hotkeys[hotkey]['auto_sort'])
            if self.pressedkey == ord(hotkey) and 'sort_key' in self._hotkeys[hotkey]:
                setattr(glances_processes,
                        'sort_key',
                        self._hotkeys[hotkey]['sort_key'])

        # Other actions...
339 340
        if self.pressedkey == ord('\x1b') or self.pressedkey == ord('q'):
            # 'ESC'|'q' > Quit
N
Nicolargo 已提交
341 342 343
            if return_to_browser:
                logger.info("Stop Glances client and return to the browser")
            else:
344
                logger.info("Stop Glances (keypressed: {})".format(self.pressedkey))
345
        elif self.pressedkey == ord('\n'):
N
Nicolargo 已提交
346 347
            # 'ENTER' > Edit the process filter
            self.edit_filter = not self.edit_filter
N
nicolargo 已提交
348
        elif self.pressedkey == ord('4'):
N
nicolargo 已提交
349
            self.args.full_quicklook = not self.args.full_quicklook
N
nicolargo 已提交
350 351 352 353 354
            if self.args.full_quicklook:
                self.enable_fullquicklook()
            else:
                self.disable_fullquicklook()
        elif self.pressedkey == ord('5'):
N
nicolargo 已提交
355
            self.args.disable_top = not self.args.disable_top
N
nicolargo 已提交
356 357 358 359
            if self.args.disable_top:
                self.disable_top()
            else:
                self.enable_top()
360 361 362 363 364 365 366
        elif self.pressedkey == ord('e'):
            # 'e' > Enable/Disable process extended
            self.args.enable_process_extended = not self.args.enable_process_extended
            if not self.args.enable_process_extended:
                glances_processes.disable_extended()
            else:
                glances_processes.enable_extended()
367 368 369
        elif self.pressedkey == ord('E'):
            # 'E' > Erase the process filter
            glances_processes.process_filter = None
370 371 372
        elif self.pressedkey == ord('f'):
            # 'f' > Show/hide fs / folder stats
            self.args.disable_fs = not self.args.disable_fs
N
nicolargo 已提交
373
            self.args.disable_folders = not self.args.disable_folders
374 375 376 377 378 379
        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)
380
        elif self.pressedkey == ord('z'):
381
            # 'z' > Enable or disable processes
382 383 384 385 386
            self.args.disable_process = not self.args.disable_process
            if self.args.disable_process:
                glances_processes.disable()
            else:
                glances_processes.enable()
387 388 389 390 391 392 393 394 395 396
        elif self.pressedkey == curses.KEY_LEFT:
            # "<" (left arrow) navigation through process sort
            setattr(glances_processes, 'auto_sort', False)
            next_sort = (self.loop_position() - 1) % len(self._sort_loop)
            glances_processes.sort_key = self._sort_loop[next_sort]
        elif self.pressedkey == curses.KEY_RIGHT:
            # ">" (right arrow) navigation through process sort
            setattr(glances_processes, 'auto_sort', False)
            next_sort = (self.loop_position() + 1) % len(self._sort_loop)
            glances_processes.sort_key = self._sort_loop[next_sort]
397

398 399 400
        # Return the key code
        return self.pressedkey

401 402 403 404 405 406 407
    def loop_position(self):
        """Return the current sort in the loop"""
        for i, v in enumerate(self._sort_loop):
            if v == glances_processes.sort_key:
                return i
        return 0

408 409
    def disable_top(self):
        """Disable the top panel"""
410 411
        for p in ['quicklook', 'cpu', 'gpu', 'mem', 'memswap', 'load']:
            setattr(self.args, 'disable_' + p, True)
412 413 414

    def enable_top(self):
        """Enable the top panel"""
415 416
        for p in ['quicklook', 'cpu', 'gpu', 'mem', 'memswap', 'load']:
            setattr(self.args, 'disable_' + p, False)
417 418 419

    def disable_fullquicklook(self):
        """Disable the full quicklook mode"""
420 421
        for p in ['quicklook', 'cpu', 'gpu', 'mem', 'memswap']:
            setattr(self.args, 'disable_' + p, False)
422 423 424 425

    def enable_fullquicklook(self):
        """Disable the full quicklook mode"""
        self.args.disable_quicklook = False
426 427
        for p in ['cpu', 'gpu', 'mem', 'memswap']:
            setattr(self.args, 'disable_' + p, True)
428

429
    def end(self):
430
        """Shutdown the curses window."""
N
Nicolas Hennion 已提交
431 432 433 434 435 436 437 438 439
        if hasattr(curses, 'echo'):
            curses.echo()
        if hasattr(curses, 'nocbreak'):
            curses.nocbreak()
        if hasattr(curses, 'curs_set'):
            try:
                curses.curs_set(1)
            except Exception:
                pass
440
        curses.endwin()
441

442
    def init_line_column(self):
443
        """Init the line and column position for the curses interface."""
444 445
        self.init_line()
        self.init_column()
446 447

    def init_line(self):
448
        """Init the line position for the curses interface."""
449 450 451 452
        self.line = 0
        self.next_line = 0

    def init_column(self):
453
        """Init the column position for the curses interface."""
454 455 456 457
        self.column = 0
        self.next_column = 0

    def new_line(self):
A
PEP 257  
Alessio Sergi 已提交
458
        """New line in the curses interface."""
459 460 461
        self.line = self.next_line

    def new_column(self):
A
PEP 257  
Alessio Sergi 已提交
462
        """New column in the curses interface."""
463 464
        self.column = self.next_column

465 466 467 468 469 470 471 472
    def __get_stat_display(self, stats, layer):
        """Return a dict of dict with all the stats display.
        stats: Global stats dict
        layer: ~ cs_status
            "None": standalone or server mode
            "Connected": Client is connected to a Glances server
            "SNMP": Client is connected to a SNMP server
            "Disconnected": Client is disconnected from the server
473 474

        :returns: dict of dict
475 476
            * key: plugin name
            * value: dict returned by the get_stats_display Plugin method
477
        """
N
nicolargo 已提交
478
        ret = {}
479

N
nicolargo 已提交
480
        for p in stats.getPluginsList(enable=False):
481 482 483
            if p == 'quicklook' or p == 'processlist':
                # processlist is done later
                # because we need to know how many processes could be displayed
484
                continue
485 486 487 488 489 490 491 492 493 494 495 496 497

            # Compute the plugin max size
            plugin_max_width = None
            if p in self._left_sidebar:
                plugin_max_width = max(self._left_sidebar_min_width,
                                       self.screen.getmaxyx()[1] - 105)
                plugin_max_width = min(self._left_sidebar_max_width,
                                       plugin_max_width)

            # Get the view
            ret[p] = stats.get_plugin(p).get_stats_display(args=self.args,
                                                           max_width=plugin_max_width)

N
nicolargo 已提交
498
        if self.args.percpu:
499
            ret['cpu'] = ret['percpu']
500

N
nicolargo 已提交
501 502
        return ret

503
    def display(self, stats, cs_status=None):
A
PEP 257  
Alessio Sergi 已提交
504
        """Display stats on the screen.
505

506 507 508
        stats: Stats database to display
        cs_status:
            "None": standalone or server mode
509 510
            "Connected": Client is connected to a Glances server
            "SNMP": Client is connected to a SNMP server
511
            "Disconnected": Client is disconnected from the server
512 513 514 515

        Return:
            True if the stats have been displayed
            False if the help have been displayed
516
        """
517 518
        # Init the internal line/column for Glances Curses
        self.init_line_column()
519

520 521 522
        # Update the stats messages
        ###########################

523
        # Get all the plugins but quicklook and proceslist
524
        self.args.cs_status = cs_status
525
        __stat_display = self.__get_stat_display(stats, layer=cs_status)
526

527
        # Adapt number of processes to the available space
528 529
        max_processes_displayed = (
            self.screen.getmaxyx()[0] - 11 -
530 531 532 533 534
            (0 if 'alert' not in __stat_display else
                self.get_stats_display_height(__stat_display["alert"])) -
            (0 if 'docker' not in __stat_display else
                self.get_stats_display_height(__stat_display["docker"])))

535
        try:
N
nicolargo 已提交
536
            if self.args.enable_process_extended:
537 538 539
                max_processes_displayed -= 4
        except AttributeError:
            pass
540
        if max_processes_displayed < 0:
541
            max_processes_displayed = 0
542 543
        if (glances_processes.max_processes is None or
                glances_processes.max_processes != max_processes_displayed):
544
            logger.debug("Set number of displayed processes to {}".format(max_processes_displayed))
545
            glances_processes.max_processes = max_processes_displayed
546

547
        # Get the processlist
N
nicolargo 已提交
548
        __stat_display["processlist"] = stats.get_plugin(
549
            'processlist').get_stats_display(args=self.args)
550

551 552 553 554
        # Display the stats on the curses interface
        ###########################################

        # Help screen (on top of the other stats)
555
        if self.args.help_tag:
556
            # Display the stats...
557 558
            self.display_plugin(
                stats.get_plugin('help').get_stats_display(args=self.args))
559 560 561
            # ... and exit
            return False

562 563
        # =====================================
        # Display first line (system+ip+uptime)
564
        # Optionnaly: Cloud on second line
565
        # =====================================
N
nicolargo 已提交
566
        self.__display_header(__stat_display)
567 568 569 570

        # ==============================================================
        # Display second line (<SUMMARY>+CPU|PERCPU+<GPU>+LOAD+MEM+SWAP)
        # ==============================================================
N
nicolargo 已提交
571
        self.__display_top(__stat_display, stats)
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604

        # ==================================================================
        # Display left sidebar (NETWORK+PORTS+DISKIO+FS+SENSORS+Current time)
        # ==================================================================
        self.__display_left(__stat_display)

        # ====================================
        # Display right stats (process and co)
        # ====================================
        self.__display_right(__stat_display)

        # Display edit filter popup
        # Only in standalone mode (cs_status is None)
        if self.edit_filter and cs_status is None:
            new_filter = self.display_popup(
                'Process filter pattern: \n\n' +
                'Examples:\n' +
                '- python\n' +
                '- .*python.*\n' +
                '- \/usr\/lib.*\n' +
                '- name:.*nautilus.*\n' +
                '- cmdline:.*glances.*\n' +
                '- username:nicolargo\n' +
                '- username:^root        ',
                is_input=True,
                input_value=glances_processes.process_filter_input)
            glances_processes.process_filter = new_filter
        elif self.edit_filter and cs_status is not None:
            self.display_popup('Process filter only available in standalone mode')
        self.edit_filter = False

        return True

N
nicolargo 已提交
605 606
    def __display_header(self, stat_display):
        """Display the firsts lines (header) in the Curses interface.
607 608

        system + ip + uptime
N
nicolargo 已提交
609
        (cloud)
610
        """
N
nicolargo 已提交
611
        # First line
612
        self.new_line()
N
nicolargo 已提交
613
        self.space_between_column = 0
614
        l_uptime = (self.get_stats_display_width(stat_display["system"]) +
N
nicolargo 已提交
615 616
                    self.get_stats_display_width(stat_display["ip"]) +
                    self.get_stats_display_width(stat_display["uptime"]) + 1)
617
        self.display_plugin(
618 619
            stat_display["system"],
            display_optional=(self.screen.getmaxyx()[1] >= l_uptime))
N
nicolargo 已提交
620
        self.space_between_column = 3
621
        self.new_column()
622
        self.display_plugin(stat_display["ip"])
623
        self.new_column()
N
nicolargo 已提交
624 625 626 627
        self.display_plugin(
            stat_display["uptime"],
            add_space=self.get_stats_display_width(stat_display["cloud"]) == 0)
        # Second line (optional)
628 629 630
        self.init_column()
        self.new_line()
        self.display_plugin(stat_display["cloud"])
A
Alessio Sergi 已提交
631

N
nicolargo 已提交
632
    def __display_top(self, stat_display, stats):
633 634 635 636
        """Display the second line in the Curses interface.

        <QUICKLOOK> + CPU|PERCPU + <GPU> + MEM + SWAP + LOAD
        """
637
        self.init_column()
638
        self.new_line()
639

N
Nicolargo 已提交
640
        # Init quicklook
641
        stat_display['quicklook'] = {'msgdict': []}
642

643
        # Dict for plugins width
N
nicolargo 已提交
644 645 646
        plugin_widths = {}
        for p in self._top:
            plugin_widths[p] = self.get_stats_display_width(stat_display.get(p, 0)) if hasattr(self.args, 'disable_' + p) else 0
647

648 649
        # Width of all plugins
        stats_width = sum(itervalues(plugin_widths))
650 651

        # Number of plugin but quicklook
N
nicolargo 已提交
652
        stats_number = sum([int(stat_display[p]['msgdict'] != []) for p in self._top if not getattr(self.args, 'disable_' + p)])
653 654 655

        if not self.args.disable_quicklook:
            # Quick look is in the place !
656
            if self.args.full_quicklook:
657
                quicklook_width = self.screen.getmaxyx()[1] - (stats_width + 8 + stats_number * self.space_between_column)
658
            else:
N
nicolargo 已提交
659 660
                quicklook_width = min(self.screen.getmaxyx()[1] - (stats_width + 8 + stats_number * self.space_between_column),
                                      self._left_sidebar_max_width - 5)
N
Nicolargo 已提交
661
            try:
662
                stat_display["quicklook"] = stats.get_plugin(
N
Nicolargo 已提交
663 664 665 666
                    'quicklook').get_stats_display(max_width=quicklook_width, args=self.args)
            except AttributeError as e:
                logger.debug("Quicklook plugin not available (%s)" % e)
            else:
667 668
                plugin_widths['quicklook'] = self.get_stats_display_width(stat_display["quicklook"])
                stats_width = sum(itervalues(plugin_widths)) + 1
669
            self.space_between_column = 1
670
            self.display_plugin(stat_display["quicklook"])
671 672 673 674
            self.new_column()

        # Compute spaces between plugins
        # Note: Only one space between Quicklook and others
675
        plugin_display_optional = {}
N
nicolargo 已提交
676
        for p in self._top:
677
            plugin_display_optional[p] = True
678
        if stats_number > 1:
679
            self.space_between_column = max(1, int((self.screen.getmaxyx()[1] - stats_width) / (stats_number - 1)))
680 681 682 683 684 685 686
            for p in ['mem', 'cpu']:
                # No space ? Remove optional stats
                if self.space_between_column < 3:
                    plugin_display_optional[p] = False
                    plugin_widths[p] = self.get_stats_display_width(stat_display[p], without_option=True) if hasattr(self.args, 'disable_' + p) else 0
                    stats_width = sum(itervalues(plugin_widths)) + 1
                    self.space_between_column = max(1, int((self.screen.getmaxyx()[1] - stats_width) / (stats_number - 1)))
687 688 689 690
        else:
            self.space_between_column = 0

        # Display CPU, MEM, SWAP and LOAD
N
nicolargo 已提交
691 692 693
        for p in self._top:
            if p == 'quicklook':
                continue
N
nicolargo 已提交
694 695 696
            if p in stat_display:
                self.display_plugin(stat_display[p],
                                    display_optional=plugin_display_optional[p])
697 698 699
            if p is not 'load':
                # Skip last column
                self.new_column()
700

701 702 703
        # Space between column
        self.space_between_column = 3

704 705 706
        # Backup line position
        self.saved_line = self.next_line

707
    def __display_left(self, stat_display):
708
        """Display the left sidebar in the Curses interface."""
709
        self.init_column()
N
nicolargo 已提交
710
        if not self.args.disable_left_sidebar:
711
            for s in self._left_sidebar:
712 713
                if ((hasattr(self.args, 'enable_' + s) or
                     hasattr(self.args, 'disable_' + s)) and s in stat_display):
N
nicolargo 已提交
714 715
                    self.new_line()
                    self.display_plugin(stat_display[s])
716

717 718 719 720 721
    def __display_right(self, stat_display):
        """Display the right sidebar in the Curses interface.

        docker + processcount + amps + processlist + alert
        """
N
nicolargo 已提交
722 723 724
        # Do not display anything if space is not available...
        if self.screen.getmaxyx()[1] < self._left_sidebar_min_width:
            return
725

N
nicolargo 已提交
726 727 728 729 730 731
        # Restore line position
        self.next_line = self.saved_line

        # Display right sidebar
        self.new_column()
        for p in self._right_sidebar:
732
            self.new_line()
N
nicolargo 已提交
733 734 735 736 737 738 739
            if p == 'processlist':
                self.display_plugin(stat_display['processlist'],
                                    display_optional=(self.screen.getmaxyx()[1] > 102),
                                    display_additional=(not MACOS),
                                    max_y=(self.screen.getmaxyx()[0] - self.get_stats_display_height(stat_display['alert']) - 2))
            else:
                self.display_plugin(stat_display[p])
740

741 742
    def display_popup(self, message,
                      size_x=None, size_y=None,
N
Nicolargo 已提交
743 744
                      duration=3,
                      is_input=False,
N
Nicolargo 已提交
745
                      input_size=30,
N
Nicolargo 已提交
746
                      input_value=None):
747
        """
A
PEP 257  
Alessio Sergi 已提交
748 749
        Display a centered popup.

N
Nicolargo 已提交
750 751 752 753 754
        If is_input is False:
         Display a centered popup with the given message during duration seconds
         If size_x and size_y: set the popup size
         else set it automatically
         Return True if the popup could be displayed
A
PEP 257  
Alessio Sergi 已提交
755

N
Nicolargo 已提交
756 757 758 759
        If is_input is True:
         Display a centered popup with the given message and a input field
         If size_x and size_y: set the popup size
         else set it automatically
760
         Return the input string or None if the field is empty
761 762
        """
        # Center the popup
N
Nicolargo 已提交
763
        sentence_list = message.split('\n')
764
        if size_x is None:
N
Nicolargo 已提交
765
            size_x = len(max(sentence_list, key=len)) + 4
N
Nicolargo 已提交
766 767 768
            # Add space for the input field
            if is_input:
                size_x += input_size
769
        if size_y is None:
N
Nicolargo 已提交
770
            size_y = len(sentence_list) + 4
771 772 773 774
        screen_x = self.screen.getmaxyx()[1]
        screen_y = self.screen.getmaxyx()[0]
        if size_x > screen_x or size_y > screen_y:
            # No size to display the popup => abord
775
            return False
776 777
        pos_x = int((screen_x - size_x) / 2)
        pos_y = int((screen_y - size_y) / 2)
778 779 780

        # Create the popup
        popup = curses.newwin(size_y, size_x, pos_y, pos_x)
781

782 783 784 785
        # Fill the popup
        popup.border()

        # Add the message
N
nicolargo 已提交
786
        for y, m in enumerate(message.split('\n')):
787 788
            popup.addnstr(2 + y, 2, m, len(m))

A
Alessio Sergi 已提交
789
        if is_input and not WINDOWS:
N
Nicolargo 已提交
790 791
            # Create a subwindow for the text field
            subpop = popup.derwin(1, input_size, 2, 2 + len(m))
792
            subpop.attron(self.colors_list['FILTER'])
N
Nicolargo 已提交
793 794 795 796 797 798 799 800
            # Init the field with the current value
            if input_value is not None:
                subpop.addnstr(0, 0, input_value, len(input_value))
            # Display the popup
            popup.refresh()
            subpop.refresh()
            # Create the textbox inside the subwindows
            self.set_cursor(2)
801
            self.term_window.keypad(1)
A
Alessio Sergi 已提交
802
            textbox = GlancesTextbox(subpop, insert_mode=False)
N
Nicolargo 已提交
803 804
            textbox.edit()
            self.set_cursor(0)
805
            self.term_window.keypad(0)
N
Nicolargo 已提交
806
            if textbox.gather() != '':
N
Nicolargo 已提交
807
                logger.debug(
808
                    "User enters the following string: %s" % textbox.gather())
N
Nicolargo 已提交
809 810
                return textbox.gather()[:-1]
            else:
811
                logger.debug("User centers an empty string")
N
Nicolargo 已提交
812 813 814 815
                return None
        else:
            # Display the popup
            popup.refresh()
816
            self.wait(duration * 1000)
N
Nicolargo 已提交
817
            return True
818

819
    def display_plugin(self, plugin_stats,
820
                       display_optional=True,
821
                       display_additional=True,
822 823
                       max_y=65535,
                       add_space=True):
A
PEP 257  
Alessio Sergi 已提交
824 825
        """Display the plugin_stats on the screen.

826 827
        If display_optional=True display the optional stats
        If display_additional=True display additionnal stats
828 829
        max_y do not display line > max_y
        """
830 831 832
        # Exit if:
        # - the plugin_stats message is empty
        # - the display tag = False
833
        if plugin_stats is None or not plugin_stats['msgdict'] or not plugin_stats['display']:
834
            # Exit
835 836 837 838 839 840 841
            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
842
        if plugin_stats['align'] == 'right':
843
            # Right align (last column)
844
            display_x = screen_x - self.get_stats_display_width(plugin_stats)
845
        else:
846
            display_x = self.column
847
        if plugin_stats['align'] == 'bottom':
848
            # Bottom (last line)
849
            display_y = screen_y - self.get_stats_display_height(plugin_stats)
850
        else:
851
            display_y = self.line
852

853 854
        # Display
        x = display_x
855
        x_max = x
856 857 858
        y = display_y
        for m in plugin_stats['msgdict']:
            # New line
859
            if m['msg'].startswith('\n'):
860
                # Go to the next line
861
                y += 1
862 863 864 865
                # Return to the first column
                x = display_x
                continue
            # Do not display outside the screen
866
            if x < 0:
867
                continue
868
            if not m['splittable'] and (x + len(m['msg']) > screen_x):
869
                continue
870
            if y < 0 or (y + 1 > screen_y) or (y > max_y):
871 872
                break
            # If display_optional = False do not display optional stats
873
            if not display_optional and m['optional']:
874
                continue
875 876 877
            # If display_additional = False do not display additional stats
            if not display_additional and m['additional']:
                continue
878 879 880
            # Is it possible to display the stat with the current screen size
            # !!! Crach if not try/except... Why ???
            try:
A
Alessio Sergi 已提交
881 882
                self.term_window.addnstr(y, x,
                                         m['msg'],
883 884
                                         # Do not disply outside the screen
                                         screen_x - x,
885
                                         self.colors_list[m['decoration']])
A
Alessio Sergi 已提交
886
            except Exception:
887 888 889
                pass
            else:
                # New column
A
Alessio Sergi 已提交
890 891 892 893
                # Python 2: we need to decode to get real screen size because
                # UTF-8 special tree chars occupy several bytes.
                # Python 3: strings are strings and bytes are bytes, all is
                # good.
N
Nicolargo 已提交
894 895 896 897 898
                try:
                    x += len(u(m['msg']))
                except UnicodeDecodeError:
                    # Quick and dirty hack for issue #745
                    pass
899 900
                if x > x_max:
                    x_max = x
901 902

        # Compute the next Glances column/line position
N
Nicolargo 已提交
903 904
        self.next_column = max(
            self.next_column, x_max + self.space_between_column)
905
        self.next_line = max(self.next_line, y + self.space_between_line)
906

907 908 909 910
        if not add_space and self.next_line > 0:
            # Do not have empty line after
            self.next_line -= 1

911
    def erase(self):
A
PEP 257  
Alessio Sergi 已提交
912
        """Erase the content of the screen."""
913 914
        self.term_window.erase()

915
    def flush(self, stats, cs_status=None):
A
PEP 257  
Alessio Sergi 已提交
916 917
        """Clear and update the screen.

918 919 920 921 922 923 924
        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()
925
        self.display(stats, cs_status=cs_status)
926

927 928 929 930 931
    def update(self,
               stats,
               duration=3,
               cs_status=None,
               return_to_browser=False):
A
PEP 257  
Alessio Sergi 已提交
932 933
        """Update the screen.

934
        Catch key every 100 ms.
A
PEP 257  
Alessio Sergi 已提交
935

N
Nicolargo 已提交
936
        INPUT
937
        stats: Stats database to display
938
        duration: duration of the loop
939 940 941 942
        cs_status:
            "None": standalone or server mode
            "Connected": Client is connected to the server
            "Disconnected": Client is disconnected from the server
N
Nicolargo 已提交
943 944 945 946 947 948 949
        return_to_browser:
            True: Do not exist, return to the browser list
            False: Exit and return to the shell

        OUPUT
        True: Exit key has been pressed
        False: Others cases...
950 951
        """
        # Flush display
952
        self.flush(stats, cs_status=cs_status)
953

954 955 956 957 958 959
        # If the duration is < 0 (update + export time > refresh_time)
        # Then display the interface and log a message
        if duration <= 0:
            logger.debug('Update and export time higher than refresh_time.')
            duration = 0.1

960
        # Wait
N
Nicolargo 已提交
961
        exitkey = False
962
        countdown = Timer(duration)
N
Nicolargo 已提交
963
        while not countdown.finished() and not exitkey:
964
            # Getkey
N
Nicolargo 已提交
965 966 967 968
            pressedkey = self.__catch_key(return_to_browser=return_to_browser)
            # Is it an exit key ?
            exitkey = (pressedkey == ord('\x1b') or pressedkey == ord('q'))
            if not exitkey and pressedkey > -1:
969
                # Redraw display
970
                self.flush(stats, cs_status=cs_status)
971
            # Wait 100ms...
972
            self.wait()
973

N
Nicolargo 已提交
974 975
        return exitkey

976 977 978 979
    def wait(self, delay=100):
        """Wait delay in ms"""
        curses.napms(100)

980
    def get_stats_display_width(self, curse_msg, without_option=False):
A
PEP 257  
Alessio Sergi 已提交
981
        """Return the width of the formatted curses message.
982

A
PEP 257  
Alessio Sergi 已提交
983 984
        The height is defined by the maximum line.
        """
985
        try:
986
            if without_option:
987
                # Size without options
A
flake8  
Alessio Sergi 已提交
988
                c = len(max(''.join([(re.sub(r'[^\x00-\x7F]+', ' ', i['msg']) if not i['optional'] else "")
989
                                     for i in curse_msg['msgdict']]).split('\n'), key=len))
990 991
            else:
                # Size with all options
A
flake8  
Alessio Sergi 已提交
992
                c = len(max(''.join([re.sub(r'[^\x00-\x7F]+', ' ', i['msg'])
993
                                     for i in curse_msg['msgdict']]).split('\n'), key=len))
A
Alessio Sergi 已提交
994
        except Exception:
995 996 997 998
            return 0
        else:
            return c

999
    def get_stats_display_height(self, curse_msg):
A
PEP 257  
Alessio Sergi 已提交
1000
        r"""Return the height of the formatted curses message.
1001

A
PEP 257  
Alessio Sergi 已提交
1002 1003
        The height is defined by the number of '\n' (new line).
        """
1004
        try:
A
Alessio Sergi 已提交
1005
            c = [i['msg'] for i in curse_msg['msgdict']].count('\n')
A
Alessio Sergi 已提交
1006
        except Exception:
1007 1008 1009
            return 0
        else:
            return c + 1
N
Nicolargo 已提交
1010

1011

1012 1013
class GlancesCursesStandalone(_GlancesCurses):

A
PEP 257  
Alessio Sergi 已提交
1014
    """Class for the Glances curse standalone."""
1015 1016 1017 1018

    pass


1019 1020
class GlancesCursesClient(_GlancesCurses):

A
PEP 257  
Alessio Sergi 已提交
1021
    """Class for the Glances curse client."""
1022 1023 1024 1025

    pass


A
Alessio Sergi 已提交
1026
if not WINDOWS:
1027
    class GlancesTextbox(Textbox, object):
1028

1029 1030
        def __init__(self, *args, **kwargs):
            super(GlancesTextbox, self).__init__(*args, **kwargs)
1031

N
Nicolargo 已提交
1032
        def do_command(self, ch):
1033
            if ch == 10:  # Enter
N
Nicolargo 已提交
1034
                return 0
1035
            if ch == 127:  # Back
N
Nicolargo 已提交
1036
                return 8
1037
            return super(GlancesTextbox, self).do_command(ch)