pacemaker
2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
|
This structure contains everything that makes up a single output formatter. More...
#include <include/crm/common/output_internal.h>
Data Fields | |
const char * | fmt_name |
The name of this output formatter. More... | |
bool | quiet |
Should this formatter supress most output? More... | |
gchar * | request |
A copy of the request that generated this output. More... | |
FILE * | dest |
Where output should be written. More... | |
GHashTable * | messages |
Custom messages that are currently registered on this formatter. More... | |
void * | priv |
Implementation-specific private data. More... | |
bool(* | init )(pcmk__output_t *out) |
void(* | free_priv )(pcmk__output_t *out) |
void(* | finish )(pcmk__output_t *out, crm_exit_t exit_status, bool print, void **copy_dest) |
void(* | reset )(pcmk__output_t *out) |
void(* | register_message )(pcmk__output_t *out, const char *message_id, pcmk__message_fn_t fn) |
int(* | message )(pcmk__output_t *out, const char *message_id,...) |
void(* | subprocess_output )(pcmk__output_t *out, int exit_status, const char *proc_stdout, const char *proc_stderr) |
void(* | version )(pcmk__output_t *out, bool extended) |
int(* | info )(pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2 |
int(*) int(* | transient )(pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2 |
int(*) int(*) void(* | err )(pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2 |
int(*) int(*) void(*) void(* | output_xml )(pcmk__output_t *out, const char *name, const char *buf) |
void(* | begin_list )(pcmk__output_t *out, const char *singular_noun, const char *plural_noun, const char *format,...) G_GNUC_PRINTF(4 |
void(*) void(* | list_item )(pcmk__output_t *out, const char *name, const char *format,...) G_GNUC_PRINTF(3 |
void(*) void(*) void(* | increment_list )(pcmk__output_t *out) |
void(* | end_list )(pcmk__output_t *out) |
bool(* | is_quiet )(pcmk__output_t *out) |
void(* | spacer )(pcmk__output_t *out) |
void(* | progress )(pcmk__output_t *out, bool end) |
void(* | prompt )(const char *prompt, bool echo, char **dest) |
This structure contains everything that makes up a single output formatter.
Instances of this structure may be created by calling pcmk__output_new() with the name of the desired formatter. They should later be freed with pcmk__output_free().
Definition at line 172 of file output_internal.h.
void(* pcmk__output_s::begin_list) (pcmk__output_t *out, const char *singular_noun, const char *plural_noun, const char *format,...) G_GNUC_PRINTF(4 |
Definition at line 443 of file output_internal.h.
FILE* pcmk__output_s::dest |
Where output should be written.
This could be a file handle, or stdout or stderr. This is really only useful internally.
Definition at line 202 of file output_internal.h.
void(* pcmk__output_s::end_list) (pcmk__output_t *out) |
Definition at line 483 of file output_internal.h.
int(*) int(*) void(* pcmk__output_s::err) (pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2 |
Definition at line 412 of file output_internal.h.
void(* pcmk__output_s::finish) (pcmk__output_t *out, crm_exit_t exit_status, bool print, void **copy_dest) |
Definition at line 282 of file output_internal.h.
const char* pcmk__output_s::fmt_name |
The name of this output formatter.
Definition at line 176 of file output_internal.h.
void(* pcmk__output_s::free_priv) (pcmk__output_t *out) |
Definition at line 246 of file output_internal.h.
void(*) void(*) void(* pcmk__output_s::increment_list) (pcmk__output_t *out) |
Definition at line 471 of file output_internal.h.
int(* pcmk__output_s::info) (pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2 |
Definition at line 375 of file output_internal.h.
bool(* pcmk__output_s::init) (pcmk__output_t *out) |
Definition at line 235 of file output_internal.h.
bool(* pcmk__output_s::is_quiet) (pcmk__output_t *out) |
Definition at line 496 of file output_internal.h.
void(*) void(* pcmk__output_s::list_item) (pcmk__output_t *out, const char *name, const char *format,...) G_GNUC_PRINTF(3 |
Definition at line 456 of file output_internal.h.
int(* pcmk__output_s::message) (pcmk__output_t *out, const char *message_id,...) |
Definition at line 331 of file output_internal.h.
GHashTable* pcmk__output_s::messages |
Custom messages that are currently registered on this formatter.
Keys are the string message IDs, values are pcmk__message_fn_t function pointers.
Definition at line 210 of file output_internal.h.
int(*) int(*) void(*) void(* pcmk__output_s::output_xml) (pcmk__output_t *out, const char *name, const char *buf) |
Definition at line 422 of file output_internal.h.
void* pcmk__output_s::priv |
Implementation-specific private data.
Each individual formatter may have some private data useful in its implementation. This points to that data. Callers should not rely on its contents or structure.
Definition at line 219 of file output_internal.h.
void(* pcmk__output_s::progress) (pcmk__output_t *out, bool end) |
Definition at line 516 of file output_internal.h.
void(* pcmk__output_s::prompt) (const char *prompt, bool echo, char **dest) |
Definition at line 534 of file output_internal.h.
bool pcmk__output_s::quiet |
Should this formatter supress most output?
Definition at line 186 of file output_internal.h.
void(* pcmk__output_s::register_message) (pcmk__output_t *out, const char *message_id, pcmk__message_fn_t fn) |
Definition at line 313 of file output_internal.h.
gchar* pcmk__output_s::request |
A copy of the request that generated this output.
In the case of command line usage, this would be the command line arguments. For other use cases, it could be different.
Definition at line 194 of file output_internal.h.
void(* pcmk__output_s::reset) (pcmk__output_t *out) |
Definition at line 300 of file output_internal.h.
void(* pcmk__output_s::spacer) (pcmk__output_t *out) |
Definition at line 504 of file output_internal.h.
void(* pcmk__output_s::subprocess_output) (pcmk__output_t *out, int exit_status, const char *proc_stdout, const char *proc_stderr) |
Definition at line 342 of file output_internal.h.
int(*) int(* pcmk__output_s::transient) (pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2 |
Definition at line 394 of file output_internal.h.
void(* pcmk__output_s::version) (pcmk__output_t *out, bool extended) |
Definition at line 353 of file output_internal.h.