root/tools/crm_mon.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * Copyright 2019-2024 the Pacemaker project contributors
   3  *
   4  * The version control history for this file may have further details.
   5  *
   6  * This source code is licensed under the GNU General Public License version 2
   7  * or later (GPLv2+) WITHOUT ANY WARRANTY.
   8  */
   9 
  10 #ifndef CRM_MON__H
  11 #define CRM_MON__H
  12 
  13 #include <crm_internal.h>
  14 
  15 #include <glib.h>
  16 
  17 #include <crm/common/scheduler.h>
  18 #include <crm/common/output_internal.h>
  19 #include <crm/stonith-ng.h>
  20 
  21 /*
  22  * The man pages for both curses and ncurses suggest inclusion of "curses.h".
  23  * We believe the following to be acceptable and portable.
  24  */
  25 
  26 #  if PCMK__ENABLE_CURSES
  27 #    if defined(HAVE_NCURSES_H)
  28 #      include <ncurses.h>
  29 #    elif defined(HAVE_NCURSES_NCURSES_H)
  30 #      include <ncurses/ncurses.h>
  31 #    elif defined(HAVE_CURSES_H)
  32 #      include <curses.h>
  33 #    elif defined(HAVE_CURSES_CURSES_H)
  34 #      include <curses/curses.h>
  35 #    endif
  36 #  endif
  37 
  38 typedef enum mon_output_format_e {
  39     mon_output_unset,
  40     mon_output_none,
  41     mon_output_plain,
  42     mon_output_console,
  43     mon_output_xml,
  44     mon_output_legacy_xml,
  45     mon_output_html,
  46 } mon_output_format_t;
  47 
  48 enum mon_exec_mode {
  49     mon_exec_unset,
  50     mon_exec_daemonized,
  51     mon_exec_one_shot,
  52     mon_exec_update,
  53 };
  54 
  55 void crm_mon_register_messages(pcmk__output_t *out);
  56 
  57 #if PCMK__ENABLE_CURSES
  58 pcmk__output_t *crm_mon_mk_curses_output(char **argv);
  59 void curses_formatted_printf(pcmk__output_t *out, const char *format, ...) G_GNUC_PRINTF(2, 3);
  60 void curses_formatted_vprintf(pcmk__output_t *out, const char *format, va_list args) G_GNUC_PRINTF(2, 0);
  61 void curses_indented_printf(pcmk__output_t *out, const char *format, ...) G_GNUC_PRINTF(2, 3);
  62 void curses_indented_vprintf(pcmk__output_t *out, const char *format, va_list args) G_GNUC_PRINTF(2, 0);
  63 
  64 #define CRM_MON_SUPPORTED_FORMAT_CURSES { "console", crm_mon_mk_curses_output, NULL }
  65 #endif
  66 
  67 #endif

/* [previous][next][first][last][top][bottom][index][help] */