pacemaker
2.1.4-dc6eb4362
Scalable High-Availability cluster resource manager
|
#include <crm_internal.h>
#include <sys/param.h>
#include <crm/crm.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <libgen.h>
#include <crm/msg_xml.h>
#include <crm/common/xml.h>
#include <crm/common/xml_internal.h>
#include <crm/common/output_internal.h>
#include <crm/cib/internal.h>
Go to the source code of this file.
Macros | |
#define | attr_snprintf(_str, _offset, _limit, ...) |
#define | XPATH_MAX 1024 |
#define | XPATH_UPPER_TRANS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
#define | XPATH_LOWER_TRANS "abcdefghijklmnopqrstuvwxyz" |
#define | XPATH_NODE |
Functions | |
int | cib__update_node_attr (pcmk__output_t *out, cib_t *cib, int call_options, const char *section, const char *node_uuid, const char *set_type, const char *set_name, const char *attr_id, const char *attr_name, const char *attr_value, const char *user_name, const char *node_type) |
int | cib__read_node_attr (pcmk__output_t *out, cib_t *cib, const char *section, const char *node_uuid, const char *set_type, const char *set_name, const char *attr_id, const char *attr_name, char **attr_value, const char *user_name) |
int | cib__delete_node_attr (pcmk__output_t *out, cib_t *cib, int options, const char *section, const char *node_uuid, const char *set_type, const char *set_name, const char *attr_id, const char *attr_name, const char *attr_value, const char *user_name) |
int | find_nvpair_attr_delegate (cib_t *cib, const char *attr, const char *section, const char *node_uuid, const char *attr_set_type, const char *set_name, const char *attr_id, const char *attr_name, gboolean to_console, char **value, const char *user_name) |
int | update_attr_delegate (cib_t *cib, int call_options, const char *section, const char *node_uuid, const char *set_type, const char *set_name, const char *attr_id, const char *attr_name, const char *attr_value, gboolean to_console, const char *user_name, const char *node_type) |
int | read_attr_delegate (cib_t *cib, const char *section, const char *node_uuid, const char *set_type, const char *set_name, const char *attr_id, const char *attr_name, char **attr_value, gboolean to_console, const char *user_name) |
int | delete_attr_delegate (cib_t *cib, int options, const char *section, const char *node_uuid, const char *set_type, const char *set_name, const char *attr_id, const char *attr_name, const char *attr_value, gboolean to_console, const char *user_name) |
int | query_node_uuid (cib_t *the_cib, const char *uname, char **uuid, int *is_remote_node) |
int | query_node_uname (cib_t *the_cib, const char *uuid, char **uname) |
int | set_standby (cib_t *the_cib, const char *uuid, const char *scope, const char *standby_value) |
#define attr_snprintf | ( | _str, | |
_offset, | |||
_limit, | |||
... | |||
) |
Definition at line 32 of file cib_attrs.c.
#define XPATH_LOWER_TRANS "abcdefghijklmnopqrstuvwxyz" |
Definition at line 583 of file cib_attrs.c.
#define XPATH_MAX 1024 |
Definition at line 38 of file cib_attrs.c.
#define XPATH_NODE |
Definition at line 584 of file cib_attrs.c.
#define XPATH_UPPER_TRANS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
Definition at line 582 of file cib_attrs.c.
int cib__delete_node_attr | ( | pcmk__output_t * | out, |
cib_t * | cib, | ||
int | options, | ||
const char * | section, | ||
const char * | node_uuid, | ||
const char * | set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
const char * | attr_value, | ||
const char * | user_name | ||
) |
Definition at line 371 of file cib_attrs.c.
int cib__read_node_attr | ( | pcmk__output_t * | out, |
cib_t * | cib, | ||
const char * | section, | ||
const char * | node_uuid, | ||
const char * | set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
char ** | attr_value, | ||
const char * | user_name | ||
) |
Definition at line 347 of file cib_attrs.c.
int cib__update_node_attr | ( | pcmk__output_t * | out, |
cib_t * | cib, | ||
int | call_options, | ||
const char * | section, | ||
const char * | node_uuid, | ||
const char * | set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
const char * | attr_value, | ||
const char * | user_name, | ||
const char * | node_type | ||
) |
Definition at line 188 of file cib_attrs.c.
int delete_attr_delegate | ( | cib_t * | cib, |
int | options, | ||
const char * | section, | ||
const char * | node_uuid, | ||
const char * | set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
const char * | attr_value, | ||
gboolean | to_console, | ||
const char * | user_name | ||
) |
Definition at line 480 of file cib_attrs.c.
int find_nvpair_attr_delegate | ( | cib_t * | cib, |
const char * | attr, | ||
const char * | section, | ||
const char * | node_uuid, | ||
const char * | attr_set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
gboolean | to_console, | ||
char ** | value, | ||
const char * | user_name | ||
) |
Definition at line 413 of file cib_attrs.c.
int query_node_uname | ( | cib_t * | the_cib, |
const char * | uuid, | ||
char ** | uname | ||
) |
Definition at line 637 of file cib_attrs.c.
int query_node_uuid | ( | cib_t * | the_cib, |
const char * | uname, | ||
char ** | uuid, | ||
int * | is_remote_node | ||
) |
Definition at line 597 of file cib_attrs.c.
int read_attr_delegate | ( | cib_t * | cib, |
const char * | section, | ||
const char * | node_uuid, | ||
const char * | set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
char ** | attr_value, | ||
gboolean | to_console, | ||
const char * | user_name | ||
) |
Definition at line 458 of file cib_attrs.c.
int set_standby | ( | cib_t * | the_cib, |
const char * | uuid, | ||
const char * | scope, | ||
const char * | standby_value | ||
) |
Definition at line 685 of file cib_attrs.c.
int update_attr_delegate | ( | cib_t * | cib, |
int | call_options, | ||
const char * | section, | ||
const char * | node_uuid, | ||
const char * | set_type, | ||
const char * | set_name, | ||
const char * | attr_id, | ||
const char * | attr_name, | ||
const char * | attr_value, | ||
gboolean | to_console, | ||
const char * | user_name, | ||
const char * | node_type | ||
) |
Definition at line 435 of file cib_attrs.c.