pacemaker
2.0.5-ba59be712
Scalable High-Availability cluster resource manager
|
Formatted output for pacemaker tools. More...
#include <stdbool.h>
#include <stdio.h>
#include <libxml/tree.h>
#include <libxml/HTMLtree.h>
#include <glib.h>
#include <crm/common/results.h>
Go to the source code of this file.
Data Structures | |
struct | pcmk__message_entry_s |
struct | pcmk__supported_format_s |
struct | pcmk__output_s |
This structure contains everything that makes up a single output formatter. More... | |
Macros | |
#define | PCMK__API_VERSION "2.3" |
#define | PCMK__OUTPUT_ARGS(ARGS...) |
#define | PCMK__SUPPORTED_FORMAT_HTML { "html", pcmk__mk_html_output, pcmk__html_output_entries } |
#define | PCMK__SUPPORTED_FORMAT_LOG { "log", pcmk__mk_log_output, pcmk__log_output_entries } |
#define | PCMK__SUPPORTED_FORMAT_NONE { "none", pcmk__mk_none_output, pcmk__none_output_entries } |
#define | PCMK__SUPPORTED_FORMAT_TEXT { "text", pcmk__mk_text_output, pcmk__text_output_entries } |
#define | PCMK__SUPPORTED_FORMAT_XML { "xml", pcmk__mk_xml_output, pcmk__xml_output_entries } |
#define | PCMK__OUTPUT_SPACER_IF(out_obj, cond) |
#define | PCMK__OUTPUT_LIST_HEADER(out_obj, cond, retcode, title...) |
#define | PCMK__OUTPUT_LIST_FOOTER(out_obj, retcode) |
Typedefs | |
typedef struct pcmk__output_s | pcmk__output_t |
typedef pcmk__output_t *(* | pcmk__output_factory_t) (char **argv) |
typedef int(* | pcmk__message_fn_t) (pcmk__output_t *out, va_list args) |
typedef struct pcmk__message_entry_s | pcmk__message_entry_t |
typedef struct pcmk__supported_format_s | pcmk__supported_format_t |
Variables | |
GOptionEntry | pcmk__html_output_entries [] |
GOptionEntry | pcmk__log_output_entries [] |
GOptionEntry | pcmk__none_output_entries [] |
GOptionEntry | pcmk__text_output_entries [] |
GOptionEntry | pcmk__xml_output_entries [] |
Formatted output for pacemaker tools.
Definition in file output_internal.h.
#define PCMK__API_VERSION "2.3" |
Definition at line 30 of file output_internal.h.
#define PCMK__OUTPUT_ARGS | ( | ARGS... | ) |
Definition at line 35 of file output_internal.h.
#define PCMK__OUTPUT_LIST_FOOTER | ( | out_obj, | |
retcode | |||
) |
Definition at line 758 of file output_internal.h.
#define PCMK__OUTPUT_LIST_HEADER | ( | out_obj, | |
cond, | |||
retcode, | |||
title... | |||
) |
Definition at line 751 of file output_internal.h.
#define PCMK__OUTPUT_SPACER_IF | ( | out_obj, | |
cond | |||
) |
Definition at line 746 of file output_internal.h.
#define PCMK__SUPPORTED_FORMAT_HTML { "html", pcmk__mk_html_output, pcmk__html_output_entries } |
Definition at line 155 of file output_internal.h.
#define PCMK__SUPPORTED_FORMAT_LOG { "log", pcmk__mk_log_output, pcmk__log_output_entries } |
Definition at line 156 of file output_internal.h.
#define PCMK__SUPPORTED_FORMAT_NONE { "none", pcmk__mk_none_output, pcmk__none_output_entries } |
Definition at line 157 of file output_internal.h.
#define PCMK__SUPPORTED_FORMAT_TEXT { "text", pcmk__mk_text_output, pcmk__text_output_entries } |
Definition at line 158 of file output_internal.h.
#define PCMK__SUPPORTED_FORMAT_XML { "xml", pcmk__mk_xml_output, pcmk__xml_output_entries } |
Definition at line 159 of file output_internal.h.
typedef struct pcmk__message_entry_s pcmk__message_entry_t |
typedef int(* pcmk__message_fn_t) (pcmk__output_t *out, va_list args) |
Definition at line 66 of file output_internal.h.
typedef pcmk__output_t*(* pcmk__output_factory_t) (char **argv) |
Definition at line 50 of file output_internal.h.
typedef struct pcmk__output_s pcmk__output_t |
Definition at line 38 of file output_internal.h.
typedef struct pcmk__supported_format_s pcmk__supported_format_t |
int pcmk__call_message | ( | pcmk__output_t * | out, |
const char * | message_id, | ||
... | |||
) |
void pcmk__html_add_header | ( | const char * | name, |
... | |||
) |
Definition at line 423 of file output_html.c.
void pcmk__indented_printf | ( | pcmk__output_t * | out, |
const char * | format, | ||
... | |||
) |
void void pcmk__indented_vprintf | ( | pcmk__output_t * | out, |
const char * | format, | ||
va_list | args | ||
) |
pcmk__output_t* pcmk__mk_html_output | ( | char ** | argv | ) |
Definition at line 372 of file output_html.c.
pcmk__output_t* pcmk__mk_log_output | ( | char ** | argv | ) |
Definition at line 230 of file output_log.c.
pcmk__output_t* pcmk__mk_none_output | ( | char ** | argv | ) |
Definition at line 99 of file output_none.c.
pcmk__output_t* pcmk__mk_text_output | ( | char ** | argv | ) |
Definition at line 248 of file output_text.c.
pcmk__output_t* pcmk__mk_xml_output | ( | char ** | argv | ) |
Definition at line 380 of file output_xml.c.
xmlNodePtr pcmk__output_create_html_node | ( | pcmk__output_t * | out, |
const char * | element_name, | ||
const char * | id, | ||
const char * | class_name, | ||
const char * | text | ||
) |
Definition at line 407 of file output_html.c.
xmlNodePtr pcmk__output_create_xml_node | ( | pcmk__output_t * | out, |
const char * | name | ||
) |
Definition at line 432 of file output_xml.c.
xmlNodePtr pcmk__output_create_xml_text_node | ( | pcmk__output_t * | out, |
const char * | name, | ||
const char * | content | ||
) |
Definition at line 441 of file output_xml.c.
void pcmk__output_free | ( | pcmk__output_t * | out | ) |
int pcmk__output_new | ( | pcmk__output_t ** | out, |
const char * | fmt_name, | ||
const char * | filename, | ||
char ** | argv | ||
) |
void pcmk__output_xml_add_node | ( | pcmk__output_t * | out, |
xmlNodePtr | node | ||
) |
Definition at line 422 of file output_xml.c.
void void xmlNodePtr pcmk__output_xml_create_parent | ( | pcmk__output_t * | out, |
const char * | name | ||
) |
Definition at line 415 of file output_xml.c.
xmlNodePtr pcmk__output_xml_peek_parent | ( | pcmk__output_t * | out | ) |
Definition at line 468 of file output_xml.c.
void pcmk__output_xml_pop_parent | ( | pcmk__output_t * | out | ) |
Definition at line 458 of file output_xml.c.
void pcmk__output_xml_push_parent | ( | pcmk__output_t * | out, |
xmlNodePtr | node | ||
) |
Definition at line 448 of file output_xml.c.
int pcmk__register_format | ( | GOptionGroup * | group, |
const char * | name, | ||
pcmk__output_factory_t | create, | ||
GOptionEntry * | options | ||
) |
void pcmk__register_formats | ( | GOptionGroup * | group, |
pcmk__supported_format_t * | table | ||
) |
void pcmk__register_message | ( | pcmk__output_t * | out, |
const char * | message_id, | ||
pcmk__message_fn_t | fn | ||
) |
void pcmk__register_messages | ( | pcmk__output_t * | out, |
pcmk__message_entry_t * | table | ||
) |
GOptionEntry pcmk__html_output_entries[] |
Definition at line 42 of file output_html.c.
GOptionEntry pcmk__log_output_entries[] |
Definition at line 23 of file output_log.c.
GOptionEntry pcmk__none_output_entries[] |
Definition at line 16 of file output_none.c.
GOptionEntry pcmk__text_output_entries[] |
Definition at line 19 of file output_text.c.
GOptionEntry pcmk__xml_output_entries[] |
Definition at line 33 of file output_xml.c.